thousandeyes-sdk-python/thousandeyes-sdk-connectors/docs/CredentialVaultOperation.md
2026-05-14 15:43:12 +00:00

1.3 KiB

CredentialVaultOperation

Properties

Name Type Description Notes
id str [optional] [readonly]
name str
secrets **List[CredentialVaultSecret]**
type OperationType [optional]
status OperationStatus [optional]
links SelfLinks [optional]

Example

from thousandeyes_sdk.connectors.models.credential_vault_operation import CredentialVaultOperation

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

# convert the object into a dict
credential_vault_operation_dict = credential_vault_operation_instance.to_dict()
# create an instance of CredentialVaultOperation from a dict
credential_vault_operation_from_dict = CredentialVaultOperation.from_dict(credential_vault_operation_dict)

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