Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.19 KB

CreateLinkedTarget.md

File metadata and controls

32 lines (26 loc) · 1.19 KB

Akeyless::CreateLinkedTarget

Properties

Name Type Description Notes
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]
name String Target name
parent_target_name String The parent Target name [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::CreateLinkedTarget.new(
  description: null,
  hosts: null,
  json: null,
  name: null,
  parent_target_name: null,
  token: null,
  type: null,
  uid_token: null
)