mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
1.8 KiB
1.8 KiB
ApiCatalogProviderDetailsResponse
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[ApiCatalogProviderDetailsLocationsInner]** | List of locations covered by the Provider. | [optional] |
| links | SelfLinksLinks | [optional] |
Example
from internet_insights.models.api_catalog_provider_details_response import ApiCatalogProviderDetailsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ApiCatalogProviderDetailsResponse from a JSON string
api_catalog_provider_details_response_instance = ApiCatalogProviderDetailsResponse.from_json(json)
# print the JSON string representation of the object
print(ApiCatalogProviderDetailsResponse.to_json())
# convert the object into a dict
api_catalog_provider_details_response_dict = api_catalog_provider_details_response_instance.to_dict()
# create an instance of ApiCatalogProviderDetailsResponse from a dict
api_catalog_provider_details_response_from_dict = ApiCatalogProviderDetailsResponse.from_dict(api_catalog_provider_details_response_dict)