Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.05 KB

File metadata and controls

30 lines (24 loc) · 1.05 KB

Akeyless::AccountCustomFieldCreate

Properties

Name Type Description Notes
json Boolean Set output format to JSON [optional][default to false]
name String The name of the custom field
object String The object to create the custom field [default to 'ITEM']
object_type String The object type to create the custom field [e.g. STATIC_SECRET,DYNAMIC_SECRET,ROTATED_SECRET]
required Boolean Specify whether the custom field is mandatory [optional][default to false]
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::AccountCustomFieldCreate.new(
  json: null,
  name: null,
  object: null,
  object_type: null,
  required: null,
  token: null,
  uid_token: null
)