thousandeyes-sdk-python/thousandeyes-sdk-internet-insights/docs/ApiCatalogProviderDetails.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.6 KiB

ApiCatalogProviderDetails

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 **List[ApiAsn]** List of ASN's covered by the Provider. [optional]
locations **List[ProviderLocation]** List of locations covered by the Provider. [optional]
links SelfLinks [optional]

Example

from thousandeyes_sdk.internet_insights.models.api_catalog_provider_details import ApiCatalogProviderDetails

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

# convert the object into a dict
api_catalog_provider_details_dict = api_catalog_provider_details_instance.to_dict()
# create an instance of ApiCatalogProviderDetails from a dict
api_catalog_provider_details_from_dict = ApiCatalogProviderDetails.from_dict(api_catalog_provider_details_dict)

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