thousandeyes-sdk-python/thousandeyes-sdk-connectors/docs/CredentialVaultSecret.md
Miguel Pragosa 23bfb1d946
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#158)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-06-23 11:11:56 +01:00

32 lines
1.0 KiB
Markdown

# CredentialVaultSecret
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | | [optional]
**name** | **str** | |
**secret_key** | **str** | |
## Example
```python
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)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)