mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 16:05:30 +00:00
1.7 KiB
1.7 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] |
Example
from 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)