mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
53 lines
2.2 KiB
Python
53 lines
2.2 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Internet Insights API
|
|
|
|
We are happy to announce the release of the Internet Insights API set. This limited release includes endpoints that: * Make our catalog provider and Internet outage data accessible to API users. * Provide access to advanced filtering, which is part of our next-generation API efforts to allow API users to fine-tune queries across all of our APIs in a consistent manner. Internet Insights provide visibility into core Internet infrastructure, including ISPs, DNS providers, IaaS, CDNs , and SaaS providers. It tracks the macro-level impact of Internet events on individual users and enterprise networks connecting at the edge of the Internet. These events include Outages, Routing hijacks and leaks, DDoS attacks, And political interference, among others. Future releases of the Internet Insights API set will further unlock access to core Internet Insights functionality, unlocking potential integrations to enrich customer process flows.
|
|
|
|
The version of the OpenAPI document: 7.0.4
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
""" # noqa: E501
|
|
|
|
|
|
import unittest
|
|
|
|
from thousandeyes_sdk.internet_insights.models.api_asn import ApiAsn
|
|
|
|
class TestApiAsn(unittest.TestCase):
|
|
"""ApiAsn unit test stubs"""
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def make_instance(self, include_optional) -> ApiAsn:
|
|
"""Test ApiAsn
|
|
include_option is a boolean, when False only required
|
|
params are included, when True both required and
|
|
optional params are included """
|
|
# uncomment below to create an instance of `ApiAsn`
|
|
"""
|
|
model = ApiAsn()
|
|
if include_optional:
|
|
return ApiAsn(
|
|
id = 1,
|
|
name = 'LVLT-1 - Level 3 Communications, Inc.'
|
|
)
|
|
else:
|
|
return ApiAsn(
|
|
)
|
|
"""
|
|
|
|
def testApiAsn(self):
|
|
"""Test ApiAsn"""
|
|
# inst_req_only = self.make_instance(include_optional=False)
|
|
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|