thousandeyes-sdk-python/credentials_api/docs/Credential.md
2023-12-11 09:29:15 +00:00

1.1 KiB

Credential

Properties

Name Type Description Notes
id str Unique ID of the credential. [optional]
name str The name of the credential. [optional]
links SelfLinksLinks [optional]
value str The value of the credential that will be encrypted. [optional]

Example

from credentials_api.models.credential import Credential

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

# convert the object into a dict
credential_dict = credential_instance.to_dict()
# create an instance of Credential from a dict
credential_form_dict = credential.from_dict(credential_dict)

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