Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.2 KB

File metadata and controls

34 lines (28 loc) · 1.2 KB

Akeyless::SplunkTargetDetails

Properties

Name Type Description Notes
audience String Token audience [optional]
auth_mode String Authentication mode: "username" or "token" [optional]
password String [optional]
splunk_payload SplunkPayload [optional]
splunk_url String Splunk server URL [optional]
token String Token is used when AuthMode == "token" [optional]
token_owner String Token owner (the Splunk user who owns the token, required for token rotation) [optional]
use_tls Boolean Use TLS certificate verification when connecting to the Splunk management API. [optional]
username String Username & Password are used when AuthMode == "username" [optional]

Example

require 'akeyless'

instance = Akeyless::SplunkTargetDetails.new(
  audience: null,
  auth_mode: null,
  password: null,
  splunk_payload: null,
  splunk_url: null,
  token: null,
  token_owner: null,
  use_tls: null,
  username: null
)