Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 980 Bytes

File metadata and controls

30 lines (21 loc) · 980 Bytes

UpdateSecretRequest

Request body for PUT /secrets/{name}

Properties

Name Type Description Notes
value str

Example

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)

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