Name |
Type |
Description |
Notes |
created |
datetime |
|
[optional] |
description |
str |
|
[optional] |
expiration |
datetime |
|
[optional] |
last_retrieved |
datetime |
|
[optional] |
location |
object |
|
[optional] |
name |
str |
|
[optional] |
secret_id |
str |
|
[optional] |
status |
bool |
|
[optional] |
tags |
Dict[str, str] |
|
[optional] |
type |
str |
|
[optional] |
version |
int |
|
[optional] |
from akeyless.models.secret_info import SecretInfo
# TODO update the JSON string below
json = "{}"
# create an instance of SecretInfo from a JSON string
secret_info_instance = SecretInfo.from_json(json)
# print the JSON string representation of the object
print(SecretInfo.to_json())
# convert the object into a dict
secret_info_dict = secret_info_instance.to_dict()
# create an instance of SecretInfo from a dict
secret_info_from_dict = SecretInfo.from_dict(secret_info_dict)
[Back to Model list] [Back to API list] [Back to README]