thousandeyes-sdk-python/thousandeyes-sdk-connectors/docs/GenericConnectorAuth.md
Miguel Pragosa 15ad3554e9
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#143)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-03-19 14:31:20 +00:00

1.3 KiB

GenericConnectorAuth

Properties

Name Type Description Notes
username str
password str
type AuthenticationType
token str
refresh_token str [optional]
oauth_client_id str
oauth_auth_url str
oauth_token_url str
oauth_client_secret str
code str
redirect_uri str

Example

from thousandeyes_sdk.connectors.models.generic_connector_auth import GenericConnectorAuth

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

# convert the object into a dict
generic_connector_auth_dict = generic_connector_auth_instance.to_dict()
# create an instance of GenericConnectorAuth from a dict
generic_connector_auth_from_dict = GenericConnectorAuth.from_dict(generic_connector_auth_dict)

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