Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.24 KB

GatewayDeleteK8SAuthConfigOutput.md

File metadata and controls

31 lines (22 loc) · 1.24 KB

GatewayDeleteK8SAuthConfigOutput

Properties

Name Type Description Notes
cluster_id str [optional]
parts_change ConfigChange [optional]
total_hash str [optional]

Example

from akeyless.models.gateway_delete_k8_s_auth_config_output import GatewayDeleteK8SAuthConfigOutput

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

# convert the object into a dict
gateway_delete_k8_s_auth_config_output_dict = gateway_delete_k8_s_auth_config_output_instance.to_dict()
# create an instance of GatewayDeleteK8SAuthConfigOutput from a dict
gateway_delete_k8_s_auth_config_output_from_dict = GatewayDeleteK8SAuthConfigOutput.from_dict(gateway_delete_k8_s_auth_config_output_dict)

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