Class: Google::Apis::PubsubV1beta1a::PubsubMessage
- Inherits:
-
Object
- Object
- Google::Apis::PubsubV1beta1a::PubsubMessage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/pubsub_v1beta1a/classes.rb,
generated/google/apis/pubsub_v1beta1a/representations.rb,
generated/google/apis/pubsub_v1beta1a/representations.rb
Overview
A message data and its labels.
Instance Attribute Summary collapse
-
#data ⇒ String
The message payload.
-
#label ⇒ Array<Google::Apis::PubsubV1beta1a::Label>
Optional list of labels for this message.
-
#message_id ⇒ String
ID of this message assigned by the server at publication time.
-
#publish_time ⇒ Fixnum
The time at which the message was published.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PubsubMessage
constructor
A new instance of PubsubMessage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PubsubMessage
Returns a new instance of PubsubMessage.
372 373 374 |
# File 'generated/google/apis/pubsub_v1beta1a/classes.rb', line 372 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data ⇒ String
The message payload.
Corresponds to the JSON property data
NOTE: Values are automatically base64 encoded/decoded in the client library.
350 351 352 |
# File 'generated/google/apis/pubsub_v1beta1a/classes.rb', line 350 def data @data end |
#label ⇒ Array<Google::Apis::PubsubV1beta1a::Label>
Optional list of labels for this message. Keys in this collection must be
unique.
Corresponds to the JSON property label
356 357 358 |
# File 'generated/google/apis/pubsub_v1beta1a/classes.rb', line 356 def label @label end |
#message_id ⇒ String
ID of this message assigned by the server at publication time. Guaranteed to
be unique within the topic. This value may be read by a subscriber that
receives a PubsubMessage via a Pull call or a push delivery. It must not be
populated by a publisher in a Publish call.
Corresponds to the JSON property messageId
364 365 366 |
# File 'generated/google/apis/pubsub_v1beta1a/classes.rb', line 364 def @message_id end |
#publish_time ⇒ Fixnum
The time at which the message was published. The time is milliseconds since
the UNIX epoch.
Corresponds to the JSON property publishTime
370 371 372 |
# File 'generated/google/apis/pubsub_v1beta1a/classes.rb', line 370 def publish_time @publish_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
377 378 379 380 381 382 |
# File 'generated/google/apis/pubsub_v1beta1a/classes.rb', line 377 def update!(**args) @data = args[:data] if args.key?(:data) @label = args[:label] if args.key?(:label) @message_id = args[:message_id] if args.key?(:message_id) @publish_time = args[:publish_time] if args.key?(:publish_time) end |