Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

UpdateRotatedSecretOutput.md

File metadata and controls

29 lines (20 loc) · 1.01 KB

UpdateRotatedSecretOutput

Properties

Name Type Description Notes
name str [optional]

Example

from akeyless.models.update_rotated_secret_output import UpdateRotatedSecretOutput

# TODO update the JSON string below
json = "{}"
# create an instance of UpdateRotatedSecretOutput from a JSON string
update_rotated_secret_output_instance = UpdateRotatedSecretOutput.from_json(json)
# print the JSON string representation of the object
print(UpdateRotatedSecretOutput.to_json())

# convert the object into a dict
update_rotated_secret_output_dict = update_rotated_secret_output_instance.to_dict()
# create an instance of UpdateRotatedSecretOutput from a dict
update_rotated_secret_output_from_dict = UpdateRotatedSecretOutput.from_dict(update_rotated_secret_output_dict)

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