Skip to content

Latest commit

 

History

History
42 lines (36 loc) · 1.5 KB

UpdateLdapTargetDetails.md

File metadata and controls

42 lines (36 loc) · 1.5 KB

Akeyless::UpdateLdapTargetDetails

Properties

Name Type Description Notes
bind_dn String [optional]
bind_dn_password String [optional]
json Boolean Set output format to JSON [optional][default to false]
keep_prev_version String Whether to keep previous version [true/false]. If not set, use default according to account settings [optional]
key String [optional]
ldap_ca_cert String [optional]
ldap_url String [optional]
name String Target name
new_version Boolean Deprecated [optional]
protection_key String The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used) [optional]
token String Authentication token (see `/auth` and `/configure`) [optional]
token_expiration String [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]

Example

require 'akeyless'

instance = Akeyless::UpdateLdapTargetDetails.new(
  bind_dn: null,
  bind_dn_password: null,
  json: null,
  keep_prev_version: null,
  key: null,
  ldap_ca_cert: null,
  ldap_url: null,
  name: null,
  new_version: null,
  protection_key: null,
  token: null,
  token_expiration: null,
  uid_token: null
)