Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.51 KB

File metadata and controls

34 lines (28 loc) · 1.51 KB

Akeyless::PolicyCreateKeys

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]
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 types this policy will apply to (items, targets). If not provided, defaults to [items, targets]. [optional]
path String The path the policy refers to
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::PolicyCreateKeys.new(
  allowed_algorithms: null,
  allowed_key_names: null,
  allowed_key_types: null,
  json: null,
  max_rotation_interval_days: null,
  object_types: null,
  path: null,
  token: null,
  uid_token: null
)