Class: Google::Apis::PubsubV1beta2::ModifyAckDeadlineRequest

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

Overview

Request for the ModifyAckDeadline method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ModifyAckDeadlineRequest

Returns a new instance of ModifyAckDeadlineRequest.



289
290
291
# File 'lib/google/apis/pubsub_v1beta2/classes.rb', line 289

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

Instance Attribute Details

#ack_deadline_secondsFixnum

The new ack deadline with respect to the time this request was sent to the Pub/ Sub system. Must be >= 0. For example, if the value is 10, the new ack deadline will expire 10 seconds after the ModifyAckDeadline call was made. Specifying zero may immediately make the message available for another pull request. Corresponds to the JSON property ackDeadlineSeconds

Returns:

  • (Fixnum)


277
278
279
# File 'lib/google/apis/pubsub_v1beta2/classes.rb', line 277

def ack_deadline_seconds
  @ack_deadline_seconds
end

#ack_idString

The acknowledgment ID. Either this or ack_ids must be populated, but not both. Corresponds to the JSON property ackId

Returns:

  • (String)


282
283
284
# File 'lib/google/apis/pubsub_v1beta2/classes.rb', line 282

def ack_id
  @ack_id
end

#ack_idsArray<String>

List of acknowledgment IDs. Corresponds to the JSON property ackIds

Returns:

  • (Array<String>)


287
288
289
# File 'lib/google/apis/pubsub_v1beta2/classes.rb', line 287

def ack_ids
  @ack_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



294
295
296
297
298
# File 'lib/google/apis/pubsub_v1beta2/classes.rb', line 294

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