thousandeyes-sdk-python/thousandeyes-sdk-connectors/docs/ConjurHostAuthentication.md
2026-05-28 16:31:37 +00:00

1.1 KiB

ConjurHostAuthentication

Properties

Name Type Description Notes
host_id str
api_key str
type AuthenticationType

Example

from thousandeyes_sdk.connectors.models.conjur_host_authentication import ConjurHostAuthentication

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

# convert the object into a dict
conjur_host_authentication_dict = conjur_host_authentication_instance.to_dict()
# create an instance of ConjurHostAuthentication from a dict
conjur_host_authentication_from_dict = ConjurHostAuthentication.from_dict(conjur_host_authentication_dict)

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