mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.6 KiB
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)