Class: Google::Apis::PubsubV1::AcknowledgeRequest

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

Overview

Request for the Acknowledge method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AcknowledgeRequest

Returns a new instance of AcknowledgeRequest.



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

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

Instance Attribute Details

#ack_idsArray<String>

Required. 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_v1/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_v1/classes.rb', line 40

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