Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.03 KB

ListSRASessions.md

File metadata and controls

26 lines (20 loc) · 1.03 KB

Akeyless::ListSRASessions

Properties

Name Type Description Notes
json Boolean Set output format to JSON [optional][default to false]
resource_type Array<String> session resource type. In case it is empty, all resources type will be returned. options: [mysql, k8s, ssh, mongodb, mssql, postgres, aws, eks, gke, rdp] [optional]
status_type Array<String> session status type. In case it is empty, only active sessions will be returned. options: [connecting, connected, failed, completed, terminated] [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::ListSRASessions.new(
  json: null,
  resource_type: null,
  status_type: null,
  token: null,
  uid_token: null
)