Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1PubSubConfig
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1PubSubConfig
- 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
Pub/Sub connector config.
Instance Attribute Summary collapse
-
#reporting_settings ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ReportingSettings
Reporting settings for connector configs.
-
#topic_full_path ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1PubSubConfig
constructor
A new instance of GoogleChromeManagementVersionsV1PubSubConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1PubSubConfig
Returns a new instance of GoogleChromeManagementVersionsV1PubSubConfig.
5483 5484 5485 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5483 def initialize(**args) update!(**args) end |
Instance Attribute Details
#reporting_settings ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ReportingSettings
Reporting settings for connector configs.
Corresponds to the JSON property reportingSettings
5476 5477 5478 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5476 def reporting_settings @reporting_settings end |
#topic_full_path ⇒ String
Required. The full path to the topic to send the event to.
Corresponds to the JSON property topicFullPath
5481 5482 5483 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5481 def topic_full_path @topic_full_path end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5488 5489 5490 5491 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5488 def update!(**args) @reporting_settings = args[:reporting_settings] if args.key?(:reporting_settings) @topic_full_path = args[:topic_full_path] if args.key?(:topic_full_path) end |