thousandeyes-sdk-python/thousandeyes-sdk-connectors/docs/GenericConnectorAuth.md
2026-02-03 09:52:22 +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]