Class: Google::Apis::CloudtasksV2beta2::RenewLeaseRequest
- Inherits:
-
Object
- Object
- Google::Apis::CloudtasksV2beta2::RenewLeaseRequest
- Defined in:
- generated/google/apis/cloudtasks_v2beta2/classes.rb,
generated/google/apis/cloudtasks_v2beta2/representations.rb,
generated/google/apis/cloudtasks_v2beta2/representations.rb
Overview
Request message for renewing a lease using CloudTasks.RenewLease.
Instance Attribute Summary collapse
-
#lease_duration ⇒ String
Required.
-
#response_view ⇒ String
The response_view specifies which subset of the Task will be returned.
-
#schedule_time ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RenewLeaseRequest
constructor
A new instance of RenewLeaseRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ RenewLeaseRequest
Returns a new instance of RenewLeaseRequest
1113 1114 1115 |
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 1113 def initialize(**args) update!(**args) end |
Instance Attribute Details
#lease_duration ⇒ String
Required.
The desired new lease duration, starting from now.
The maximum lease duration is 1 week.
lease_duration will be truncated to the nearest second.
Corresponds to the JSON property leaseDuration
1088 1089 1090 |
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 1088 def lease_duration @lease_duration end |
#response_view ⇒ String
The response_view specifies which subset of the Task will be
returned.
By default response_view is Task.View.BASIC; not all
information is retrieved by default because some data, such as
payloads, might be desirable to return only when needed because
of its large size or because of the sensitivity of data that it
contains.
Authorization for Task.View.FULL requires cloudtasks.tasks.fullView
Google IAM permission on the
Task.name resource.
Corresponds to the JSON property responseView
1102 1103 1104 |
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 1102 def response_view @response_view end |
#schedule_time ⇒ String
Required.
The task's current schedule time, available in the Task.schedule_time
returned in LeaseTasksResponse.tasks or
CloudTasks.RenewLease. This restriction is to ensure that your
worker currently holds the lease.
Corresponds to the JSON property scheduleTime
1111 1112 1113 |
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 1111 def schedule_time @schedule_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1118 1119 1120 1121 1122 |
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 1118 def update!(**args) @lease_duration = args[:lease_duration] if args.key?(:lease_duration) @response_view = args[:response_view] if args.key?(:response_view) @schedule_time = args[:schedule_time] if args.key?(:schedule_time) end |