Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1CrowdStrikeXdrConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb

Overview

CrowdStrike XDR connector config.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementVersionsV1CrowdStrikeXdrConfig

Returns a new instance of GoogleChromeManagementVersionsV1CrowdStrikeXdrConfig.



5214
5215
5216
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5214

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#api_keyString

Required. Input only. API key to use on the ingestion API. Corresponds to the JSON property apiKey

Returns:

  • (String)


5202
5203
5204
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5202

def api_key
  @api_key
end

#hostString

Required. Host to identify the customer specific server to receive the events. Corresponds to the JSON property host

Returns:

  • (String)


5207
5208
5209
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5207

def host
  @host
end

#xdr_settingsGoogle::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1XdrSettings

XDR settings for connector configs. Corresponds to the JSON property xdrSettings



5212
5213
5214
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5212

def xdr_settings
  @xdr_settings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5219
5220
5221
5222
5223
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5219

def update!(**args)
  @api_key = args[:api_key] if args.key?(:api_key)
  @host = args[:host] if args.key?(:host)
  @xdr_settings = args[:xdr_settings] if args.key?(:xdr_settings)
end