thousandeyes-sdk-python/thousandeyes-sdk-internet-insights/docs/ApiCatalogProvider.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

1.8 KiB

ApiCatalogProvider

Catalog provider

Properties

Name Type Description Notes
id str The catalog provider ID. [optional]
provider_name str The name of the catalog provider. [optional]
provider_type str The type of catalog provider. [optional]
region str The catalog provider region. [optional]
data_type str The type of data produced by the provider. [optional]
asns_count int The number of ASN's covered by the provider. [optional]
countries_count int The number of countries covered by the provider. [optional]
locations_count int The number of locations covered by the provider. [optional]
interfaces_count int The number of interfaces covered by the provider. [optional]
included bool Indicates whether the catalog provider is included in the licensed packages. [optional]
links SelfLinks [optional]

Example

from thousandeyes_sdk.internet_insights.models.api_catalog_provider import ApiCatalogProvider

# TODO update the JSON string below
json = "{}"
# create an instance of ApiCatalogProvider from a JSON string
api_catalog_provider_instance = ApiCatalogProvider.from_json(json)
# print the JSON string representation of the object
print(ApiCatalogProvider.to_json())

# convert the object into a dict
api_catalog_provider_dict = api_catalog_provider_instance.to_dict()
# create an instance of ApiCatalogProvider from a dict
api_catalog_provider_from_dict = ApiCatalogProvider.from_dict(api_catalog_provider_dict)

[Back to Model list] [Back to API list] [Back to README]