Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.15 KB

File metadata and controls

30 lines (24 loc) · 1.15 KB

Akeyless::KmipCreateClient

Properties

Name Type Description Notes
activate_keys_on_creation String If set to 'true', newly created keys on the client will be set to an 'active' state [optional][default to 'false']
certificate_ttl Integer Client certificate TTL in days [optional][default to 90]
expiration_event_in Array<String> How many days before the expiration of the certificate would you like to be notified. [optional]
json Boolean Set output format to JSON [optional][default to false]
name String Client name
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::KmipCreateClient.new(
  activate_keys_on_creation: null,
  certificate_ttl: null,
  expiration_event_in: null,
  json: null,
  name: null,
  token: null,
  uid_token: null
)