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.
5233 5234 5235 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5233 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
5221 5222 5223 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5221 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
5226 5227 5228 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5226 def host @host end |
#xdr_settings ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1XdrSettings
XDR settings for connector configs.
Corresponds to the JSON property xdrSettings
5231 5232 5233 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5231 def xdr_settings @xdr_settings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5238 5239 5240 5241 5242 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5238 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 |