Class: Google::Apis::PubsubV1beta2::AcknowledgeRequest
- Inherits:
-
Object
- Object
- Google::Apis::PubsubV1beta2::AcknowledgeRequest
- 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
-
#ack_ids ⇒ Array<String>
The acknowledgment ID for the messages being acknowledged that was returned by the Pub/Sub system in the
Pull
response.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AcknowledgeRequest
constructor
A new instance of AcknowledgeRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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_ids ⇒ Array<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
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 |