Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

DynamicSecretDeleteOutput.md

File metadata and controls

29 lines (20 loc) · 1.03 KB

DynamicSecretDeleteOutput

Properties

Name Type Description Notes
dynamic_secret_name str [optional]

Example

from akeyless.models.dynamic_secret_delete_output import DynamicSecretDeleteOutput

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

# convert the object into a dict
dynamic_secret_delete_output_dict = dynamic_secret_delete_output_instance.to_dict()
# create an instance of DynamicSecretDeleteOutput from a dict
dynamic_secret_delete_output_from_dict = DynamicSecretDeleteOutput.from_dict(dynamic_secret_delete_output_dict)

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