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

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

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AcknowledgeRequest

Returns a new instance of AcknowledgeRequest.



511
512
513
# File 'generated/google/apis/pubsub_v1beta2/classes.rb', line 511

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>)


509
510
511
# File 'generated/google/apis/pubsub_v1beta2/classes.rb', line 509

def ack_ids
  @ack_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



516
517
518
# File 'generated/google/apis/pubsub_v1beta2/classes.rb', line 516

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