Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.24 KB

ShareItem.md

File metadata and controls

34 lines (28 loc) · 1.24 KB

Akeyless::ShareItem

Properties

Name Type Description Notes
accessibility String for personal password manager [optional][default to 'regular']
action String Action to be performed on the item [start/stop/describe]
emails Array<String> For Password Management use, reflect the website context [optional]
item_name String Item name
json Boolean Set output format to JSON [optional][default to false]
token String Authentication token (see `/auth` and `/configure`) [optional]
ttl Integer TTL of the Availability of the shared secret in seconds [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]
view_once Boolean ViewOnlyOnce Shared secrets can only be viewed once [true/false] [optional][default to false]

Example

require 'akeyless'

instance = Akeyless::ShareItem.new(
  accessibility: null,
  action: null,
  emails: null,
  item_name: null,
  json: null,
  token: null,
  ttl: null,
  uid_token: null,
  view_once: null
)