gatewayUpdateCache is a command that updates cache settings
Name | Type | Description | Notes |
---|---|---|---|
backup_interval | str | Secure backup interval in minutes. To ensure service continuity in case of power cycle and network outage secrets will be backed up periodically per backup interval | [optional] [default to '1'] |
enable_cache | str | Enable cache [true/false] | [optional] |
enable_proactive | str | Enable proactive caching [true/false] | [optional] |
var_json | bool | Set output format to JSON | [optional] [default to False] |
minimum_fetch_interval | str | When using Cache or/and Proactive Cache, additional secrets will be fetched upon requesting a secret, based on the requestor's access policy. Define minimum fetching interval to avoid over fetching in a given time frame | [optional] [default to '5'] |
stale_timeout | str | Stale timeout in minutes, cache entries which are not accessed within timeout will be removed from cache | [optional] [default to '60'] |
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_update_cache import GatewayUpdateCache
# TODO update the JSON string below
json = "{}"
# create an instance of GatewayUpdateCache from a JSON string
gateway_update_cache_instance = GatewayUpdateCache.from_json(json)
# print the JSON string representation of the object
print(GatewayUpdateCache.to_json())
# convert the object into a dict
gateway_update_cache_dict = gateway_update_cache_instance.to_dict()
# create an instance of GatewayUpdateCache from a dict
gateway_update_cache_from_dict = GatewayUpdateCache.from_dict(gateway_update_cache_dict)