Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.32 KB

GetLastUserEventStatus.md

File metadata and controls

32 lines (26 loc) · 1.32 KB

Akeyless::GetLastUserEventStatus

Properties

Name Type Description Notes
event_source String [optional]
event_type String
item_name String Event item name
item_type String Event item type can be either "target" or type of item eg "static_secret"/"dynamic_secret" To get type of some item run `akeyless describe-item -n {ITEM_NAME} --jq-expression .item_type`
json Boolean Set output format to JSON [optional][default to false]
time_back String The time back to search the event, for example if the value is "5m" we will return the last user event issued in the last 5 minutes. By default, we will search without any time boundary. [optional]
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::GetLastUserEventStatus.new(
  event_source: null,
  event_type: null,
  item_name: null,
  item_type: null,
  json: null,
  time_back: null,
  token: null,
  uid_token: null
)