gatewayGetCache is a command that get cache settings
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] |
from akeyless.models.gateway_get_cache import GatewayGetCache
# TODO update the JSON string below
json = "{}"
# create an instance of GatewayGetCache from a JSON string
gateway_get_cache_instance = GatewayGetCache.from_json(json)
# print the JSON string representation of the object
print(GatewayGetCache.to_json())
# convert the object into a dict
gateway_get_cache_dict = gateway_get_cache_instance.to_dict()
# create an instance of GatewayGetCache from a dict
gateway_get_cache_from_dict = GatewayGetCache.from_dict(gateway_get_cache_dict)