Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1CrowdStrikeXdrConfig
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1CrowdStrikeXdrConfig
- 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
-
#api_key ⇒ String
Required.
-
#host ⇒ String
Required.
-
#xdr_settings ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1XdrSettings
XDR settings for connector configs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1CrowdStrikeXdrConfig
constructor
A new instance of GoogleChromeManagementVersionsV1CrowdStrikeXdrConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1CrowdStrikeXdrConfig
Returns a new instance of GoogleChromeManagementVersionsV1CrowdStrikeXdrConfig.
5332 5333 5334 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5332 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_key ⇒ String
Required. Input only. API key to use on the ingestion API.
Corresponds to the JSON property apiKey
5320 5321 5322 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5320 def api_key @api_key end |
#host ⇒ String
Required. Host to identify the customer specific server to receive the events.
Corresponds to the JSON property host
5325 5326 5327 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5325 def host @host end |
#xdr_settings ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1XdrSettings
XDR settings for connector configs.
Corresponds to the JSON property xdrSettings
5330 5331 5332 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5330 def xdr_settings @xdr_settings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5337 5338 5339 5340 5341 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5337 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 |