Skip to content

Latest commit

 

History

History
42 lines (36 loc) · 1.79 KB

File metadata and controls

42 lines (36 loc) · 1.79 KB

Akeyless::TargetCreateLinked

Properties

Name Type Description Notes
delete_protection String Protection from accidental deletion of this object [true/false] [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]
lock_on_read String Lock this secret after each successful value read [optional]
lock_ttl String Lock TTL in minutes [optional]
max_versions String Set the maximum number of versions, limited by the account settings defaults. [optional]
name String Target name
parent_target_name String The parent Target name [optional]
rotate_on_unlock String Rotate this secret after it is unlocked [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::TargetCreateLinked.new(
  delete_protection: null,
  description: null,
  hosts: null,
  json: null,
  lock_on_read: null,
  lock_ttl: null,
  max_versions: null,
  name: null,
  parent_target_name: null,
  rotate_on_unlock: null,
  token: null,
  type: null,
  uid_token: null
)