Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 1.81 KB

TargetUpdateLinked.md

File metadata and controls

40 lines (34 loc) · 1.81 KB

Akeyless::TargetUpdateLinked

Properties

Name Type Description Notes
add_hosts String A comma seperated list of new server hosts and server descriptions joined by semicolon ';' that will be added to the Linked Target hosts. [optional]
description String Description of the object [optional]
hosts String A comma seperated list of server hosts and server descriptions joined by semicolon ';' (i.e. 'server-dev.com;My Dev server,server-prod.com;My Prod server description') [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]
name String Linked Target name
new_name String New Linked Target name [optional]
parent_target_name String The parent Target name [optional]
rm_hosts String Comma separated list of existing hosts that will be removed from Linked Target hosts. [optional]
token String Authentication token (see `/auth` and `/configure`) [optional]
type String Specifies the hosts type, relevant only when working without parent target [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]

Example

require 'akeyless'

instance = Akeyless::TargetUpdateLinked.new(
  add_hosts: null,
  description: null,
  hosts: null,
  json: null,
  keep_prev_version: null,
  name: null,
  new_name: null,
  parent_target_name: null,
  rm_hosts: null,
  token: null,
  type: null,
  uid_token: null
)