thousandeyes-sdk-python/thousandeyes-sdk-connectors/docs/PanoramaConnector.md
api-team-automation[bot] c6ae90df0d
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#181)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-08-06 14:10:18 +01:00

1.4 KiB

PanoramaConnector

Palo Alto Networks Panorama connector configuration.

Properties

Name Type Description Notes
id str Unique ID of the Panorama connector. [optional] [readonly]
type str Connector type.
name str Name of the Panorama connector.
target str URL of the Panorama instance.
last_modified_date int Time when the connector was last modified, in milliseconds since the Unix epoch. [optional] [readonly]
authentication PanoramaConnectorAuth
links SelfLinks [optional]

Example

from thousandeyes_sdk.connectors.models.panorama_connector import PanoramaConnector

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

# convert the object into a dict
panorama_connector_dict = panorama_connector_instance.to_dict()
# create an instance of PanoramaConnector from a dict
panorama_connector_from_dict = PanoramaConnector.from_dict(panorama_connector_dict)

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