Skip to content

Latest commit

 

History

History
48 lines (42 loc) · 2.11 KB

UpdateEventForwarder.md

File metadata and controls

48 lines (42 loc) · 2.11 KB

Akeyless::UpdateEventForwarder

Properties

Name Type Description Notes
admin_name String Workstation Admin Name [optional]
auth_type String The authentication type to use when connecting to ServiceNow (user-pass / jwt) [optional][default to 'user-pass']
client_id String The client ID to use when connecting to ServiceNow with jwt authentication [optional]
description String Description of the object [optional][default to 'default_comment']
email_to String A comma seperated list of email addresses to send event to (relevant only for "email" Event Forwarder) [optional]
enable String Enable/Disable Event Forwarder [true/false] [optional][default to 'true']
event_source_locations Array<String> Event sources [optional]
event_types Array<String> Event types [optional]
host String Workstation Host [optional]
json Boolean Set output format to JSON [optional][default to false]
name String EventForwarder name
new_comment String Deprecated - use description [optional][default to 'default_comment']
new_name String New EventForwarder name [optional]
token String Authentication token (see `/auth` and `/configure`) [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]
user_email String The user email to use when connecting to ServiceNow with jwt authentication [optional]

Example

require 'akeyless'

instance = Akeyless::UpdateEventForwarder.new(
  admin_name: null,
  auth_type: null,
  client_id: null,
  description: null,
  email_to: null,
  enable: null,
  event_source_locations: null,
  event_types: null,
  host: null,
  json: null,
  name: null,
  new_comment: null,
  new_name: null,
  token: null,
  uid_token: null,
  user_email: null
)