Request body for PUT /secrets/{name}
| Name | Type | Description | Notes |
|---|---|---|---|
| value | str |
from hotdata.models.update_secret_request import UpdateSecretRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateSecretRequest from a JSON string
update_secret_request_instance = UpdateSecretRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateSecretRequest.to_json())
# convert the object into a dict
update_secret_request_dict = update_secret_request_instance.to_dict()
# create an instance of UpdateSecretRequest from a dict
update_secret_request_from_dict = UpdateSecretRequest.from_dict(update_secret_request_dict)