mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-06-19 23:15:30 +00:00
1.3 KiB
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)