Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.11 KB

UpdateTarget.md

File metadata and controls

32 lines (26 loc) · 1.11 KB

Akeyless::UpdateTarget

Properties

Name Type Description Notes
description String Description of the object [optional][default to 'default_comment']
json Boolean Set output format to JSON [optional][default to false]
max_versions String Set the maximum number of versions, limited by the account settings defaults. [optional]
name String Target name
new_comment String Deprecated - use description [optional][default to 'default_comment']
new_name String New target name [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::UpdateTarget.new(
  description: null,
  json: null,
  max_versions: null,
  name: null,
  new_comment: null,
  new_name: null,
  token: null,
  uid_token: null
)