Class: Google::Apis::AlertcenterV1beta1::CloudPubsubTopic
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::CloudPubsubTopic
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/alertcenter_v1beta1/classes.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb
Overview
A reference to a Cloud Pubsub topic.
To register for notifications, the owner of the topic must grant
alerts-api-push-notifications@system.gserviceaccount.com
the
projects.topics.publish
permission.
Instance Attribute Summary collapse
-
#payload_format ⇒ String
Optional.
-
#topic_name ⇒ String
The
name
field of a Cloud Pubsub Topic.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudPubsubTopic
constructor
A new instance of CloudPubsubTopic.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CloudPubsubTopic
Returns a new instance of CloudPubsubTopic
267 268 269 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 267 def initialize(**args) update!(**args) end |
Instance Attribute Details
#payload_format ⇒ String
Optional. The format of the payload that would be sent.
If not specified the format will be JSON.
Corresponds to the JSON property payloadFormat
259 260 261 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 259 def payload_format @payload_format end |
#topic_name ⇒ String
The name
field of a Cloud Pubsub Topic.
Corresponds to the JSON property topicName
265 266 267 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 265 def topic_name @topic_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
272 273 274 275 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 272 def update!(**args) @payload_format = args[:payload_format] if args.key?(:payload_format) @topic_name = args[:topic_name] if args.key?(:topic_name) end |