Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.52 KB

File metadata and controls

36 lines (30 loc) · 1.52 KB

Akeyless::PolicyUpdateKeys

Properties

Name Type Description Notes
allowed_algorithms Array<String> Specify allowed key algorithms (e.g., [RSA2048,AES128GCM]) [optional]
allowed_key_names Array<String> Specify allowed protection key names. To enforce using the account's default protection key, use 'default-account-key' [optional]
allowed_key_types Array<String> Specify allowed key protection types (dfc, classic-key) [optional]
id String Policy id
json Boolean Set output format to JSON [optional][default to false]
max_rotation_interval_days Integer Set the maximum rotation interval for automatic key rotation. [optional]
object_types Array<String> The object type this policy will apply to (items, targets) [optional]
path String The path the policy refers to [optional]
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::PolicyUpdateKeys.new(
  allowed_algorithms: null,
  allowed_key_names: null,
  allowed_key_types: null,
  id: null,
  json: null,
  max_rotation_interval_days: null,
  object_types: null,
  path: null,
  token: null,
  uid_token: null
)