Class: Google::Apis::PubsubV1beta1a::PubsubMessage

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#dataString

The message payload. Corresponds to the JSON property data NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


350
351
352
# File 'generated/google/apis/pubsub_v1beta1a/classes.rb', line 350

def data
  @data
end

#labelArray<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_idString

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

Returns:

  • (String)


364
365
366
# File 'generated/google/apis/pubsub_v1beta1a/classes.rb', line 364

def message_id
  @message_id
end

#publish_timeFixnum

The time at which the message was published. The time is milliseconds since the UNIX epoch. Corresponds to the JSON property publishTime

Returns:

  • (Fixnum)


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