Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

LastConfigChange.md

File metadata and controls

30 lines (21 loc) · 1.07 KB

LastConfigChange

Properties

Name Type Description Notes
last_k8s_auths_change K8SAuthsConfigLastChange [optional]
last_migrations_change MigrationsConfigLastChange [optional]

Example

from akeyless.models.last_config_change import LastConfigChange

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

# convert the object into a dict
last_config_change_dict = last_config_change_instance.to_dict()
# create an instance of LastConfigChange from a dict
last_config_change_from_dict = LastConfigChange.from_dict(last_config_change_dict)

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