Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

GatewayGetConfig.md

File metadata and controls

32 lines (23 loc) · 1.23 KB

GatewayGetConfig

gatewayGetConfig is a command that returns gateway configuration

Properties

Name Type Description Notes
var_json bool Set output format to JSON [optional] [default to False]
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_get_config import GatewayGetConfig

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

# convert the object into a dict
gateway_get_config_dict = gateway_get_config_instance.to_dict()
# create an instance of GatewayGetConfig from a dict
gateway_get_config_from_dict = GatewayGetConfig.from_dict(gateway_get_config_dict)

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