Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.24 KB

GatewayCreateK8SAuthConfigOutput.md

File metadata and controls

31 lines (22 loc) · 1.24 KB

GatewayCreateK8SAuthConfigOutput

Properties

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

Example

from akeyless.models.gateway_create_k8_s_auth_config_output import GatewayCreateK8SAuthConfigOutput

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

# convert the object into a dict
gateway_create_k8_s_auth_config_output_dict = gateway_create_k8_s_auth_config_output_instance.to_dict()
# create an instance of GatewayCreateK8SAuthConfigOutput from a dict
gateway_create_k8_s_auth_config_output_from_dict = GatewayCreateK8SAuthConfigOutput.from_dict(gateway_create_k8_s_auth_config_output_dict)

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