Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1CrowdStrikeConfig
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1CrowdStrikeConfig
- 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 connector config.
Instance Attribute Summary collapse
-
#api_key ⇒ String
Required.
-
#host ⇒ String
Required.
-
#reporting_settings ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ReportingSettings
Reporting settings for connector configs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1CrowdStrikeConfig
constructor
A new instance of GoogleChromeManagementVersionsV1CrowdStrikeConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1CrowdStrikeConfig
Returns a new instance of GoogleChromeManagementVersionsV1CrowdStrikeConfig.
5171 5172 5173 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5171 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
5159 5160 5161 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5159 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
5164 5165 5166 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5164 def host @host end |
#reporting_settings ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ReportingSettings
Reporting settings for connector configs.
Corresponds to the JSON property reportingSettings
5169 5170 5171 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5169 def reporting_settings @reporting_settings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5176 5177 5178 5179 5180 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5176 def update!(**args) @api_key = args[:api_key] if args.key?(:api_key) @host = args[:host] if args.key?(:host) @reporting_settings = args[:reporting_settings] if args.key?(:reporting_settings) end |