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.
5508 5509 5510 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5508 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
5501 5502 5503 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5501 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
5506 5507 5508 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5506 def xdr_settings @xdr_settings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5513 5514 5515 5516 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5513 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 |