Class: Google::Apis::AlertcenterV1beta1::CloudPubsubTopic

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/alertcenter_v1beta1/classes.rb,
lib/google/apis/alertcenter_v1beta1/representations.rb,
lib/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CloudPubsubTopic

Returns a new instance of CloudPubsubTopic.



708
709
710
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 708

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#payload_formatString

Optional. The format of the payload that would be sent. If not specified the format will be JSON. Corresponds to the JSON property payloadFormat

Returns:

  • (String)


700
701
702
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 700

def payload_format
  @payload_format
end

#topic_nameString

The name field of a Cloud Pubsub Topic. Corresponds to the JSON property topicName

Returns:

  • (String)


706
707
708
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 706

def topic_name
  @topic_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



713
714
715
716
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 713

def update!(**args)
  @payload_format = args[:payload_format] if args.key?(:payload_format)
  @topic_name = args[:topic_name] if args.key?(:topic_name)
end