Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

K8SAuthsConfigLastChange.md

File metadata and controls

31 lines (22 loc) · 1.15 KB

K8SAuthsConfigLastChange

Properties

Name Type Description Notes
changed_k8s_auths_ids List[str] [optional]
created_k8s_auths_ids List[str] [optional]
deleted_k8s_auths_ids List[str] [optional]

Example

from akeyless.models.k8_s_auths_config_last_change import K8SAuthsConfigLastChange

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

# convert the object into a dict
k8_s_auths_config_last_change_dict = k8_s_auths_config_last_change_instance.to_dict()
# create an instance of K8SAuthsConfigLastChange from a dict
k8_s_auths_config_last_change_from_dict = K8SAuthsConfigLastChange.from_dict(k8_s_auths_config_last_change_dict)

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