Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.58 KB

GatewayUpdateCache.md

File metadata and controls

32 lines (26 loc) · 1.58 KB

Akeyless::GatewayUpdateCache

Properties

Name Type Description Notes
backup_interval String 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 String Enable cache [true/false] [optional]
enable_proactive String Enable proactive caching [true/false] [optional]
json Boolean Set output format to JSON [optional][default to false]
minimum_fetch_interval String 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 String Stale timeout in minutes, cache entries which are not accessed within timeout will be removed from cache [optional][default to '60']
token String Authentication token (see `/auth` and `/configure`) [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]

Example

require 'akeyless'

instance = Akeyless::GatewayUpdateCache.new(
  backup_interval: null,
  enable_cache: null,
  enable_proactive: null,
  json: null,
  minimum_fetch_interval: null,
  stale_timeout: null,
  token: null,
  uid_token: null
)