thousandeyes-sdk-python/thousandeyes-sdk-connectors/docs/PanoramaTokenAuthentication.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.2 KiB

PanoramaTokenAuthentication

Authentication using an existing Panorama API key.

Properties

Name Type Description Notes
token str Panorama API key used for authentication.
type str Authentication type.

Example

from thousandeyes_sdk.connectors.models.panorama_token_authentication import PanoramaTokenAuthentication

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

# convert the object into a dict
panorama_token_authentication_dict = panorama_token_authentication_instance.to_dict()
# create an instance of PanoramaTokenAuthentication from a dict
panorama_token_authentication_from_dict = PanoramaTokenAuthentication.from_dict(panorama_token_authentication_dict)

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