Class: Google::Apis::CloudschedulerV1beta1::PubsubTarget
- Inherits:
-
Object
- Object
- Google::Apis::CloudschedulerV1beta1::PubsubTarget
- Defined in:
- generated/google/apis/cloudscheduler_v1beta1/classes.rb,
generated/google/apis/cloudscheduler_v1beta1/representations.rb,
generated/google/apis/cloudscheduler_v1beta1/representations.rb
Overview
Pub/Sub target. The job will be delivered by publishing a message to the given Pub/Sub topic.
Instance Attribute Summary collapse
-
#attributes ⇒ Hash<String,String>
Attributes for PubsubMessage.
-
#data ⇒ String
The message payload for PubsubMessage.
-
#topic_name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PubsubTarget
constructor
A new instance of PubsubTarget.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ PubsubTarget
Returns a new instance of PubsubTarget
686 687 688 |
# File 'generated/google/apis/cloudscheduler_v1beta1/classes.rb', line 686 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attributes ⇒ Hash<String,String>
Attributes for PubsubMessage.
Pubsub message must contain either non-empty data, or at least one
attribute.
Corresponds to the JSON property attributes
664 665 666 |
# File 'generated/google/apis/cloudscheduler_v1beta1/classes.rb', line 664 def attributes @attributes end |
#data ⇒ String
The message payload for PubsubMessage.
Pubsub message must contain either non-empty data, or at least one
attribute.
Corresponds to the JSON property data
NOTE: Values are automatically base64 encoded/decoded in the client library.
672 673 674 |
# File 'generated/google/apis/cloudscheduler_v1beta1/classes.rb', line 672 def data @data end |
#topic_name ⇒ String
Required.
The name of the Cloud Pub/Sub topic to which messages will
be published when a job is delivered. The topic name must be in the
same format as required by PubSub's
PublishRequest.name,
for example projects/PROJECT_ID/topics/TOPIC_ID
.
The topic must be in the same project as the Cloud Scheduler job.
Corresponds to the JSON property topicName
684 685 686 |
# File 'generated/google/apis/cloudscheduler_v1beta1/classes.rb', line 684 def topic_name @topic_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
691 692 693 694 695 |
# File 'generated/google/apis/cloudscheduler_v1beta1/classes.rb', line 691 def update!(**args) @attributes = args[:attributes] if args.key?(:attributes) @data = args[:data] if args.key?(:data) @topic_name = args[:topic_name] if args.key?(:topic_name) end |