Class: Google::Apis::PubsubV1beta2::AcknowledgeRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/pubsub_v1beta2/classes.rb,
generated/google/apis/pubsub_v1beta2/representations.rb,
generated/google/apis/pubsub_v1beta2/representations.rb

Overview

Request for the Acknowledge method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AcknowledgeRequest

Returns a new instance of AcknowledgeRequest.



35
36
37
# File 'generated/google/apis/pubsub_v1beta2/classes.rb', line 35

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

Instance Attribute Details

#ack_idsArray<String>

The acknowledgment ID for the messages being acknowledged that was returned by the Pub/Sub system in the Pull response. Must not be empty. Corresponds to the JSON property ackIds

Returns:

  • (Array<String>)


33
34
35
# File 'generated/google/apis/pubsub_v1beta2/classes.rb', line 33

def ack_ids
  @ack_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



40
41
42
# File 'generated/google/apis/pubsub_v1beta2/classes.rb', line 40

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