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.
5138 5139 5140 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5138 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
5126 5127 5128 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5126 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
5131 5132 5133 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5131 def host @host end |
#xdr_settings ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1XdrSettings
XDR settings for connector configs.
Corresponds to the JSON property xdrSettings
5136 5137 5138 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5136 def xdr_settings @xdr_settings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5143 5144 5145 5146 5147 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5143 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 |