mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-09-19 16:13:55 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.1 KiB
1.1 KiB
PanoramaConnectors
Collection of Panorama connectors.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| items | **List[PanoramaConnector]** | [optional] | |
| links | SelfLinks | [optional] |
Example
from thousandeyes_sdk.connectors.models.panorama_connectors import PanoramaConnectors
# TODO update the JSON string below
json = "{}"
# create an instance of PanoramaConnectors from a JSON string
panorama_connectors_instance = PanoramaConnectors.from_json(json)
# print the JSON string representation of the object
print(PanoramaConnectors.to_json())
# convert the object into a dict
panorama_connectors_dict = panorama_connectors_instance.to_dict()
# create an instance of PanoramaConnectors from a dict
panorama_connectors_from_dict = PanoramaConnectors.from_dict(panorama_connectors_dict)