Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 977 Bytes

Unconfigure.md

File metadata and controls

30 lines (21 loc) · 977 Bytes

Unconfigure

Properties

Name Type Description Notes
var_json bool Set output format to JSON [optional] [default to False]
profile str The profile name to be removed [optional] [default to 'default']

Example

from akeyless.models.unconfigure import Unconfigure

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

# convert the object into a dict
unconfigure_dict = unconfigure_instance.to_dict()
# create an instance of Unconfigure from a dict
unconfigure_from_dict = Unconfigure.from_dict(unconfigure_dict)

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