Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.3 KB

File metadata and controls

36 lines (30 loc) · 1.3 KB

Akeyless::FolderUpdate

Properties

Name Type Description Notes
accessibility String for personal password manager [optional][default to 'regular']
add_tag Array<String> List of the new tags that will be attached to this folder [optional]
delete_protection String Protection from accidental deletion of this object [true/false] [optional]
description String Description of the object [optional]
json Boolean Set output format to JSON [optional][default to false]
name String Folder name
rm_tag Array<String> List of the existent tags that will be removed from this folder [optional]
token String Authentication token (see `/auth` and `/configure`) [optional]
type String [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]

Example

require 'akeyless'

instance = Akeyless::FolderUpdate.new(
  accessibility: null,
  add_tag: null,
  delete_protection: null,
  description: null,
  json: null,
  name: null,
  rm_tag: null,
  token: null,
  type: null,
  uid_token: null
)