mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-06-19 23:15:30 +00:00
1.0 KiB
1.0 KiB
CredentialVaultSecret
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| name | str | ||
| secret_key | str |
Example
from thousandeyes_sdk.connectors.models.credential_vault_secret import CredentialVaultSecret
# TODO update the JSON string below
json = "{}"
# create an instance of CredentialVaultSecret from a JSON string
credential_vault_secret_instance = CredentialVaultSecret.from_json(json)
# print the JSON string representation of the object
print(CredentialVaultSecret.to_json())
# convert the object into a dict
credential_vault_secret_dict = credential_vault_secret_instance.to_dict()
# create an instance of CredentialVaultSecret from a dict
credential_vault_secret_from_dict = CredentialVaultSecret.from_dict(credential_vault_secret_dict)