Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 993 Bytes

KmipCreateClient.md

File metadata and controls

28 lines (22 loc) · 993 Bytes

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]
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,
  json: null,
  name: null,
  token: null,
  uid_token: null
)