Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1PubSubXdrConfig
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1PubSubXdrConfig
- 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 XDR connector config.
Instance Attribute Summary collapse
-
#topic_full_path ⇒ String
Required.
-
#xdr_settings ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1XdrSettings
XDR settings for connector configs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1PubSubXdrConfig
constructor
A new instance of GoogleChromeManagementVersionsV1PubSubXdrConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1PubSubXdrConfig
Returns a new instance of GoogleChromeManagementVersionsV1PubSubXdrConfig.
5611 5612 5613 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5611 def initialize(**args) update!(**args) end |
Instance Attribute Details
#topic_full_path ⇒ String
Required. The full path to the topic to send the event to.
Corresponds to the JSON property topicFullPath
5604 5605 5606 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5604 def topic_full_path @topic_full_path end |
#xdr_settings ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1XdrSettings
XDR settings for connector configs.
Corresponds to the JSON property xdrSettings
5609 5610 5611 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5609 def xdr_settings @xdr_settings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5616 5617 5618 5619 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5616 def update!(**args) @topic_full_path = args[:topic_full_path] if args.key?(:topic_full_path) @xdr_settings = args[:xdr_settings] if args.key?(:xdr_settings) end |