Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.49 KB

File metadata and controls

38 lines (32 loc) · 1.49 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> List of emails to start/stop sharing the secret with [optional]
item_name String Item name
json Boolean Set output format to JSON [optional][default to false]
share_type String Share type [email/token] [optional][default to 'email']
shared_token_id Array<String> Shared token ids in order to stop sharing a secret [optional]
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,
  share_type: null,
  shared_token_id: null,
  token: null,
  ttl: null,
  uid_token: null,
  view_once: null
)