Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1012 Bytes

RequestAccess.md

File metadata and controls

32 lines (26 loc) · 1012 Bytes

Akeyless::RequestAccess

Properties

Name Type Description Notes
capability Array<String> List of the required capabilities options: [read, update, delete]
comment String Deprecated - use description [optional]
description String Description of the object [optional]
json Boolean Set output format to JSON [optional][default to false]
name String Item name
token String Authentication token (see `/auth` and `/configure`) [optional]
type String Item type
uid_token String The universal identity token, Required only for universal_identity authentication [optional]

Example

require 'akeyless'

instance = Akeyless::RequestAccess.new(
  capability: null,
  comment: null,
  description: null,
  json: null,
  name: null,
  token: null,
  type: null,
  uid_token: null
)