Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.42 KB

GatewayDeleteK8SAuthConfig.md

File metadata and controls

33 lines (24 loc) · 1.42 KB

GatewayDeleteK8SAuthConfig

gatewayDeleteK8SAuth is a command that deletes k8s auth config

Properties

Name Type Description Notes
var_json bool Set output format to JSON [optional] [default to False]
name str K8S Auth config name
token str Authentication token (see `/auth` and `/configure`) [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]

Example

from akeyless.models.gateway_delete_k8_s_auth_config import GatewayDeleteK8SAuthConfig

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

# convert the object into a dict
gateway_delete_k8_s_auth_config_dict = gateway_delete_k8_s_auth_config_instance.to_dict()
# create an instance of GatewayDeleteK8SAuthConfig from a dict
gateway_delete_k8_s_auth_config_from_dict = GatewayDeleteK8SAuthConfig.from_dict(gateway_delete_k8_s_auth_config_dict)

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