| // Copyright 2025 Google LLC |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| // Code generated by protoc-gen-go. DO NOT EDIT. |
| // versions: |
| // protoc-gen-go v1.36.11 |
| // protoc v6.33.2 |
| // source: google/cloud/tasks/v2beta2/cloudtasks.proto |
| |
| package cloudtaskspb |
| |
| import ( |
| reflect "reflect" |
| sync "sync" |
| unsafe "unsafe" |
| |
| iampb "cloud.google.com/go/iam/apiv1/iampb" |
| _ "google.golang.org/genproto/googleapis/api/annotations" |
| httpbody "google.golang.org/genproto/googleapis/api/httpbody" |
| protoreflect "google.golang.org/protobuf/reflect/protoreflect" |
| protoimpl "google.golang.org/protobuf/runtime/protoimpl" |
| durationpb "google.golang.org/protobuf/types/known/durationpb" |
| emptypb "google.golang.org/protobuf/types/known/emptypb" |
| fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb" |
| timestamppb "google.golang.org/protobuf/types/known/timestamppb" |
| ) |
| |
| const ( |
| // Verify that this generated code is sufficiently up-to-date. |
| _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) |
| // Verify that runtime/protoimpl is sufficiently up-to-date. |
| _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) |
| ) |
| |
| // Request message for |
| // [ListQueues][google.cloud.tasks.v2beta2.CloudTasks.ListQueues]. |
| type ListQueuesRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The location name. |
| // For example: `projects/PROJECT_ID/locations/LOCATION_ID` |
| Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` |
| // `filter` can be used to specify a subset of queues. Any |
| // [Queue][google.cloud.tasks.v2beta2.Queue] field can be used as a filter and |
| // several operators as supported. For example: `<=, <, >=, >, !=, =, :`. The |
| // filter syntax is the same as described in [Stackdriver's Advanced Logs |
| // Filters](https://cloud.google.com/logging/docs/view/advanced_filters). |
| // |
| // Sample filter "app_engine_http_target: *". |
| // |
| // Note that using filters might cause fewer queues than the |
| // requested_page size to be returned. |
| Filter string `protobuf:"bytes,2,opt,name=filter,proto3" json:"filter,omitempty"` |
| // Requested page size. |
| // |
| // The maximum page size is 9800. If unspecified, the page size will |
| // be the maximum. Fewer queues than requested might be returned, |
| // even if more queues exist; use the |
| // [next_page_token][google.cloud.tasks.v2beta2.ListQueuesResponse.next_page_token] |
| // in the response to determine if more queues exist. |
| PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` |
| // A token identifying the page of results to return. |
| // |
| // To request the first page results, page_token must be empty. To |
| // request the next page of results, page_token must be the value of |
| // [next_page_token][google.cloud.tasks.v2beta2.ListQueuesResponse.next_page_token] |
| // returned from the previous call to |
| // [ListQueues][google.cloud.tasks.v2beta2.CloudTasks.ListQueues] method. It |
| // is an error to switch the value of the |
| // [filter][google.cloud.tasks.v2beta2.ListQueuesRequest.filter] while |
| // iterating through pages. |
| PageToken string `protobuf:"bytes,4,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` |
| // Optional. Read mask is used for a more granular control over what the API |
| // returns. If the mask is not present all fields will be returned except |
| // [Queue.stats]. [Queue.stats] will be returned only if it was explicitly |
| // specified in the mask. |
| ReadMask *fieldmaskpb.FieldMask `protobuf:"bytes,5,opt,name=read_mask,json=readMask,proto3" json:"read_mask,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *ListQueuesRequest) Reset() { |
| *x = ListQueuesRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[0] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *ListQueuesRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*ListQueuesRequest) ProtoMessage() {} |
| |
| func (x *ListQueuesRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[0] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use ListQueuesRequest.ProtoReflect.Descriptor instead. |
| func (*ListQueuesRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{0} |
| } |
| |
| func (x *ListQueuesRequest) GetParent() string { |
| if x != nil { |
| return x.Parent |
| } |
| return "" |
| } |
| |
| func (x *ListQueuesRequest) GetFilter() string { |
| if x != nil { |
| return x.Filter |
| } |
| return "" |
| } |
| |
| func (x *ListQueuesRequest) GetPageSize() int32 { |
| if x != nil { |
| return x.PageSize |
| } |
| return 0 |
| } |
| |
| func (x *ListQueuesRequest) GetPageToken() string { |
| if x != nil { |
| return x.PageToken |
| } |
| return "" |
| } |
| |
| func (x *ListQueuesRequest) GetReadMask() *fieldmaskpb.FieldMask { |
| if x != nil { |
| return x.ReadMask |
| } |
| return nil |
| } |
| |
| // Response message for |
| // [ListQueues][google.cloud.tasks.v2beta2.CloudTasks.ListQueues]. |
| type ListQueuesResponse struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // The list of queues. |
| Queues []*Queue `protobuf:"bytes,1,rep,name=queues,proto3" json:"queues,omitempty"` |
| // A token to retrieve next page of results. |
| // |
| // To return the next page of results, call |
| // [ListQueues][google.cloud.tasks.v2beta2.CloudTasks.ListQueues] with this |
| // value as the |
| // [page_token][google.cloud.tasks.v2beta2.ListQueuesRequest.page_token]. |
| // |
| // If the next_page_token is empty, there are no more results. |
| // |
| // The page token is valid for only 2 hours. |
| NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *ListQueuesResponse) Reset() { |
| *x = ListQueuesResponse{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[1] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *ListQueuesResponse) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*ListQueuesResponse) ProtoMessage() {} |
| |
| func (x *ListQueuesResponse) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[1] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use ListQueuesResponse.ProtoReflect.Descriptor instead. |
| func (*ListQueuesResponse) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{1} |
| } |
| |
| func (x *ListQueuesResponse) GetQueues() []*Queue { |
| if x != nil { |
| return x.Queues |
| } |
| return nil |
| } |
| |
| func (x *ListQueuesResponse) GetNextPageToken() string { |
| if x != nil { |
| return x.NextPageToken |
| } |
| return "" |
| } |
| |
| // Request message for |
| // [GetQueue][google.cloud.tasks.v2beta2.CloudTasks.GetQueue]. |
| type GetQueueRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The resource name of the queue. For example: |
| // `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| // Optional. Read mask is used for a more granular control over what the API |
| // returns. If the mask is not present all fields will be returned except |
| // [Queue.stats]. [Queue.stats] will be returned only if it was explicitly |
| // specified in the mask. |
| ReadMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=read_mask,json=readMask,proto3" json:"read_mask,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *GetQueueRequest) Reset() { |
| *x = GetQueueRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[2] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *GetQueueRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*GetQueueRequest) ProtoMessage() {} |
| |
| func (x *GetQueueRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[2] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use GetQueueRequest.ProtoReflect.Descriptor instead. |
| func (*GetQueueRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{2} |
| } |
| |
| func (x *GetQueueRequest) GetName() string { |
| if x != nil { |
| return x.Name |
| } |
| return "" |
| } |
| |
| func (x *GetQueueRequest) GetReadMask() *fieldmaskpb.FieldMask { |
| if x != nil { |
| return x.ReadMask |
| } |
| return nil |
| } |
| |
| // Request message for |
| // [CreateQueue][google.cloud.tasks.v2beta2.CloudTasks.CreateQueue]. |
| type CreateQueueRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The location name in which the queue will be created. |
| // For example: `projects/PROJECT_ID/locations/LOCATION_ID` |
| // |
| // The list of allowed locations can be obtained by calling Cloud |
| // Tasks' implementation of |
| // [ListLocations][google.cloud.location.Locations.ListLocations]. |
| Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` |
| // Required. The queue to create. |
| // |
| // [Queue's name][google.cloud.tasks.v2beta2.Queue.name] cannot be the same as |
| // an existing queue. |
| Queue *Queue `protobuf:"bytes,2,opt,name=queue,proto3" json:"queue,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *CreateQueueRequest) Reset() { |
| *x = CreateQueueRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[3] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *CreateQueueRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*CreateQueueRequest) ProtoMessage() {} |
| |
| func (x *CreateQueueRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[3] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use CreateQueueRequest.ProtoReflect.Descriptor instead. |
| func (*CreateQueueRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{3} |
| } |
| |
| func (x *CreateQueueRequest) GetParent() string { |
| if x != nil { |
| return x.Parent |
| } |
| return "" |
| } |
| |
| func (x *CreateQueueRequest) GetQueue() *Queue { |
| if x != nil { |
| return x.Queue |
| } |
| return nil |
| } |
| |
| // Request message for |
| // [UpdateQueue][google.cloud.tasks.v2beta2.CloudTasks.UpdateQueue]. |
| type UpdateQueueRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The queue to create or update. |
| // |
| // The queue's [name][google.cloud.tasks.v2beta2.Queue.name] must be |
| // specified. |
| // |
| // Output only fields cannot be modified using UpdateQueue. |
| // Any value specified for an output only field will be ignored. |
| // The queue's [name][google.cloud.tasks.v2beta2.Queue.name] cannot be |
| // changed. |
| Queue *Queue `protobuf:"bytes,1,opt,name=queue,proto3" json:"queue,omitempty"` |
| // A mask used to specify which fields of the queue are being updated. |
| // |
| // If empty, then all fields will be updated. |
| UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *UpdateQueueRequest) Reset() { |
| *x = UpdateQueueRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[4] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *UpdateQueueRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*UpdateQueueRequest) ProtoMessage() {} |
| |
| func (x *UpdateQueueRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[4] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use UpdateQueueRequest.ProtoReflect.Descriptor instead. |
| func (*UpdateQueueRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{4} |
| } |
| |
| func (x *UpdateQueueRequest) GetQueue() *Queue { |
| if x != nil { |
| return x.Queue |
| } |
| return nil |
| } |
| |
| func (x *UpdateQueueRequest) GetUpdateMask() *fieldmaskpb.FieldMask { |
| if x != nil { |
| return x.UpdateMask |
| } |
| return nil |
| } |
| |
| // Request message for |
| // [DeleteQueue][google.cloud.tasks.v2beta2.CloudTasks.DeleteQueue]. |
| type DeleteQueueRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The queue name. For example: |
| // `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *DeleteQueueRequest) Reset() { |
| *x = DeleteQueueRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[5] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *DeleteQueueRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*DeleteQueueRequest) ProtoMessage() {} |
| |
| func (x *DeleteQueueRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[5] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use DeleteQueueRequest.ProtoReflect.Descriptor instead. |
| func (*DeleteQueueRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{5} |
| } |
| |
| func (x *DeleteQueueRequest) GetName() string { |
| if x != nil { |
| return x.Name |
| } |
| return "" |
| } |
| |
| // Request message for |
| // [PurgeQueue][google.cloud.tasks.v2beta2.CloudTasks.PurgeQueue]. |
| type PurgeQueueRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The queue name. For example: |
| // `projects/PROJECT_ID/location/LOCATION_ID/queues/QUEUE_ID` |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *PurgeQueueRequest) Reset() { |
| *x = PurgeQueueRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[6] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *PurgeQueueRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*PurgeQueueRequest) ProtoMessage() {} |
| |
| func (x *PurgeQueueRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[6] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use PurgeQueueRequest.ProtoReflect.Descriptor instead. |
| func (*PurgeQueueRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{6} |
| } |
| |
| func (x *PurgeQueueRequest) GetName() string { |
| if x != nil { |
| return x.Name |
| } |
| return "" |
| } |
| |
| // Request message for |
| // [PauseQueue][google.cloud.tasks.v2beta2.CloudTasks.PauseQueue]. |
| type PauseQueueRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The queue name. For example: |
| // `projects/PROJECT_ID/location/LOCATION_ID/queues/QUEUE_ID` |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *PauseQueueRequest) Reset() { |
| *x = PauseQueueRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[7] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *PauseQueueRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*PauseQueueRequest) ProtoMessage() {} |
| |
| func (x *PauseQueueRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[7] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use PauseQueueRequest.ProtoReflect.Descriptor instead. |
| func (*PauseQueueRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{7} |
| } |
| |
| func (x *PauseQueueRequest) GetName() string { |
| if x != nil { |
| return x.Name |
| } |
| return "" |
| } |
| |
| // Request message for |
| // [ResumeQueue][google.cloud.tasks.v2beta2.CloudTasks.ResumeQueue]. |
| type ResumeQueueRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The queue name. For example: |
| // `projects/PROJECT_ID/location/LOCATION_ID/queues/QUEUE_ID` |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *ResumeQueueRequest) Reset() { |
| *x = ResumeQueueRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[8] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *ResumeQueueRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*ResumeQueueRequest) ProtoMessage() {} |
| |
| func (x *ResumeQueueRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[8] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use ResumeQueueRequest.ProtoReflect.Descriptor instead. |
| func (*ResumeQueueRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{8} |
| } |
| |
| func (x *ResumeQueueRequest) GetName() string { |
| if x != nil { |
| return x.Name |
| } |
| return "" |
| } |
| |
| // Request message for |
| // [UploadQueueYaml][google.cloud.tasks.v2beta2.CloudTasks.UploadQueueYaml]. |
| type UploadQueueYamlRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The App ID is supplied as an HTTP parameter. Unlike internal |
| // usage of App ID, it does not include a region prefix. Rather, the App ID |
| // represents the Project ID against which to make the request. |
| AppId string `protobuf:"bytes,1,opt,name=app_id,json=appId,proto3" json:"app_id,omitempty"` |
| // The http body contains the queue.yaml file which used to update queue lists |
| HttpBody *httpbody.HttpBody `protobuf:"bytes,2,opt,name=http_body,json=httpBody,proto3,oneof" json:"http_body,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *UploadQueueYamlRequest) Reset() { |
| *x = UploadQueueYamlRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[9] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *UploadQueueYamlRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*UploadQueueYamlRequest) ProtoMessage() {} |
| |
| func (x *UploadQueueYamlRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[9] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use UploadQueueYamlRequest.ProtoReflect.Descriptor instead. |
| func (*UploadQueueYamlRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{9} |
| } |
| |
| func (x *UploadQueueYamlRequest) GetAppId() string { |
| if x != nil { |
| return x.AppId |
| } |
| return "" |
| } |
| |
| func (x *UploadQueueYamlRequest) GetHttpBody() *httpbody.HttpBody { |
| if x != nil { |
| return x.HttpBody |
| } |
| return nil |
| } |
| |
| // Request message for listing tasks using |
| // [ListTasks][google.cloud.tasks.v2beta2.CloudTasks.ListTasks]. |
| type ListTasksRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The queue name. For example: |
| // `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` |
| Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` |
| // The response_view specifies which subset of the |
| // [Task][google.cloud.tasks.v2beta2.Task] will be returned. |
| // |
| // By default response_view is |
| // [BASIC][google.cloud.tasks.v2beta2.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 [FULL][google.cloud.tasks.v2beta2.Task.View.FULL] |
| // requires `cloudtasks.tasks.fullView` [Google |
| // IAM](https://cloud.google.com/iam/) permission on the |
| // [Task][google.cloud.tasks.v2beta2.Task] resource. |
| ResponseView Task_View `protobuf:"varint,2,opt,name=response_view,json=responseView,proto3,enum=google.cloud.tasks.v2beta2.Task_View" json:"response_view,omitempty"` |
| // Maximum page size. |
| // |
| // Fewer tasks than requested might be returned, even if more tasks exist; use |
| // [next_page_token][google.cloud.tasks.v2beta2.ListTasksResponse.next_page_token] |
| // in the response to determine if more tasks exist. |
| // |
| // The maximum page size is 1000. If unspecified, the page size will be the |
| // maximum. |
| PageSize int32 `protobuf:"varint,4,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` |
| // A token identifying the page of results to return. |
| // |
| // To request the first page results, page_token must be empty. To |
| // request the next page of results, page_token must be the value of |
| // [next_page_token][google.cloud.tasks.v2beta2.ListTasksResponse.next_page_token] |
| // returned from the previous call to |
| // [ListTasks][google.cloud.tasks.v2beta2.CloudTasks.ListTasks] method. |
| // |
| // The page token is valid for only 2 hours. |
| PageToken string `protobuf:"bytes,5,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *ListTasksRequest) Reset() { |
| *x = ListTasksRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[10] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *ListTasksRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*ListTasksRequest) ProtoMessage() {} |
| |
| func (x *ListTasksRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[10] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use ListTasksRequest.ProtoReflect.Descriptor instead. |
| func (*ListTasksRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{10} |
| } |
| |
| func (x *ListTasksRequest) GetParent() string { |
| if x != nil { |
| return x.Parent |
| } |
| return "" |
| } |
| |
| func (x *ListTasksRequest) GetResponseView() Task_View { |
| if x != nil { |
| return x.ResponseView |
| } |
| return Task_VIEW_UNSPECIFIED |
| } |
| |
| func (x *ListTasksRequest) GetPageSize() int32 { |
| if x != nil { |
| return x.PageSize |
| } |
| return 0 |
| } |
| |
| func (x *ListTasksRequest) GetPageToken() string { |
| if x != nil { |
| return x.PageToken |
| } |
| return "" |
| } |
| |
| // Response message for listing tasks using |
| // [ListTasks][google.cloud.tasks.v2beta2.CloudTasks.ListTasks]. |
| type ListTasksResponse struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // The list of tasks. |
| Tasks []*Task `protobuf:"bytes,1,rep,name=tasks,proto3" json:"tasks,omitempty"` |
| // A token to retrieve next page of results. |
| // |
| // To return the next page of results, call |
| // [ListTasks][google.cloud.tasks.v2beta2.CloudTasks.ListTasks] with this |
| // value as the |
| // [page_token][google.cloud.tasks.v2beta2.ListTasksRequest.page_token]. |
| // |
| // If the next_page_token is empty, there are no more results. |
| NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *ListTasksResponse) Reset() { |
| *x = ListTasksResponse{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[11] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *ListTasksResponse) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*ListTasksResponse) ProtoMessage() {} |
| |
| func (x *ListTasksResponse) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[11] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use ListTasksResponse.ProtoReflect.Descriptor instead. |
| func (*ListTasksResponse) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{11} |
| } |
| |
| func (x *ListTasksResponse) GetTasks() []*Task { |
| if x != nil { |
| return x.Tasks |
| } |
| return nil |
| } |
| |
| func (x *ListTasksResponse) GetNextPageToken() string { |
| if x != nil { |
| return x.NextPageToken |
| } |
| return "" |
| } |
| |
| // Request message for getting a task using |
| // [GetTask][google.cloud.tasks.v2beta2.CloudTasks.GetTask]. |
| type GetTaskRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The task name. For example: |
| // `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID` |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| // The response_view specifies which subset of the |
| // [Task][google.cloud.tasks.v2beta2.Task] will be returned. |
| // |
| // By default response_view is |
| // [BASIC][google.cloud.tasks.v2beta2.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 [FULL][google.cloud.tasks.v2beta2.Task.View.FULL] |
| // requires `cloudtasks.tasks.fullView` [Google |
| // IAM](https://cloud.google.com/iam/) permission on the |
| // [Task][google.cloud.tasks.v2beta2.Task] resource. |
| ResponseView Task_View `protobuf:"varint,2,opt,name=response_view,json=responseView,proto3,enum=google.cloud.tasks.v2beta2.Task_View" json:"response_view,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *GetTaskRequest) Reset() { |
| *x = GetTaskRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[12] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *GetTaskRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*GetTaskRequest) ProtoMessage() {} |
| |
| func (x *GetTaskRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[12] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use GetTaskRequest.ProtoReflect.Descriptor instead. |
| func (*GetTaskRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{12} |
| } |
| |
| func (x *GetTaskRequest) GetName() string { |
| if x != nil { |
| return x.Name |
| } |
| return "" |
| } |
| |
| func (x *GetTaskRequest) GetResponseView() Task_View { |
| if x != nil { |
| return x.ResponseView |
| } |
| return Task_VIEW_UNSPECIFIED |
| } |
| |
| // Request message for |
| // [CreateTask][google.cloud.tasks.v2beta2.CloudTasks.CreateTask]. |
| type CreateTaskRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The queue name. For example: |
| // `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` |
| // |
| // The queue must already exist. |
| Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` |
| // Required. The task to add. |
| // |
| // Task names have the following format: |
| // `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID`. |
| // The user can optionally specify a task |
| // [name][google.cloud.tasks.v2beta2.Task.name]. If a name is not specified |
| // then the system will generate a random unique task id, which will be set in |
| // the task returned in the [response][google.cloud.tasks.v2beta2.Task.name]. |
| // |
| // If [schedule_time][google.cloud.tasks.v2beta2.Task.schedule_time] is not |
| // set or is in the past then Cloud Tasks will set it to the current time. |
| // |
| // Task De-duplication: |
| // |
| // Explicitly specifying a task ID enables task de-duplication. If |
| // a task's ID is identical to that of an existing task or a task |
| // that was deleted or completed recently then the call will fail |
| // with [ALREADY_EXISTS][google.rpc.Code.ALREADY_EXISTS]. |
| // If the task's queue was created using Cloud Tasks, then another task with |
| // the same name can't be created for ~1 hour after the original task was |
| // deleted or completed. If the task's queue was created using queue.yaml or |
| // queue.xml, then another task with the same name can't be created |
| // for ~9 days after the original task was deleted or completed. |
| // |
| // Because there is an extra lookup cost to identify duplicate task |
| // names, these [CreateTask][google.cloud.tasks.v2beta2.CloudTasks.CreateTask] |
| // calls have significantly increased latency. Using hashed strings for the |
| // task id or for the prefix of the task id is recommended. Choosing task ids |
| // that are sequential or have sequential prefixes, for example using a |
| // timestamp, causes an increase in latency and error rates in all |
| // task commands. The infrastructure relies on an approximately |
| // uniform distribution of task ids to store and serve tasks |
| // efficiently. |
| Task *Task `protobuf:"bytes,2,opt,name=task,proto3" json:"task,omitempty"` |
| // The response_view specifies which subset of the |
| // [Task][google.cloud.tasks.v2beta2.Task] will be returned. |
| // |
| // By default response_view is |
| // [BASIC][google.cloud.tasks.v2beta2.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 [FULL][google.cloud.tasks.v2beta2.Task.View.FULL] |
| // requires `cloudtasks.tasks.fullView` [Google |
| // IAM](https://cloud.google.com/iam/) permission on the |
| // [Task][google.cloud.tasks.v2beta2.Task] resource. |
| ResponseView Task_View `protobuf:"varint,3,opt,name=response_view,json=responseView,proto3,enum=google.cloud.tasks.v2beta2.Task_View" json:"response_view,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *CreateTaskRequest) Reset() { |
| *x = CreateTaskRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[13] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *CreateTaskRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*CreateTaskRequest) ProtoMessage() {} |
| |
| func (x *CreateTaskRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[13] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use CreateTaskRequest.ProtoReflect.Descriptor instead. |
| func (*CreateTaskRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{13} |
| } |
| |
| func (x *CreateTaskRequest) GetParent() string { |
| if x != nil { |
| return x.Parent |
| } |
| return "" |
| } |
| |
| func (x *CreateTaskRequest) GetTask() *Task { |
| if x != nil { |
| return x.Task |
| } |
| return nil |
| } |
| |
| func (x *CreateTaskRequest) GetResponseView() Task_View { |
| if x != nil { |
| return x.ResponseView |
| } |
| return Task_VIEW_UNSPECIFIED |
| } |
| |
| // Request message for deleting a task using |
| // [DeleteTask][google.cloud.tasks.v2beta2.CloudTasks.DeleteTask]. |
| type DeleteTaskRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The task name. For example: |
| // `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID` |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *DeleteTaskRequest) Reset() { |
| *x = DeleteTaskRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[14] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *DeleteTaskRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*DeleteTaskRequest) ProtoMessage() {} |
| |
| func (x *DeleteTaskRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[14] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use DeleteTaskRequest.ProtoReflect.Descriptor instead. |
| func (*DeleteTaskRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{14} |
| } |
| |
| func (x *DeleteTaskRequest) GetName() string { |
| if x != nil { |
| return x.Name |
| } |
| return "" |
| } |
| |
| // Request message for leasing tasks using |
| // [LeaseTasks][google.cloud.tasks.v2beta2.CloudTasks.LeaseTasks]. |
| type LeaseTasksRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The queue name. For example: |
| // `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID` |
| Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` |
| // The maximum number of tasks to lease. |
| // |
| // The system will make a best effort to return as close to as |
| // `max_tasks` as possible. |
| // |
| // The largest that `max_tasks` can be is 1000. |
| // |
| // The maximum total size of a [lease tasks |
| // response][google.cloud.tasks.v2beta2.LeaseTasksResponse] is 32 MB. If the |
| // sum of all task sizes requested reaches this limit, fewer tasks than |
| // requested are returned. |
| MaxTasks int32 `protobuf:"varint,2,opt,name=max_tasks,json=maxTasks,proto3" json:"max_tasks,omitempty"` |
| // Required. The duration of the lease. |
| // |
| // Each task returned in the |
| // [response][google.cloud.tasks.v2beta2.LeaseTasksResponse] will have its |
| // [schedule_time][google.cloud.tasks.v2beta2.Task.schedule_time] set to the |
| // current time plus the `lease_duration`. The task is leased until its |
| // [schedule_time][google.cloud.tasks.v2beta2.Task.schedule_time]; thus, the |
| // task will not be returned to another |
| // [LeaseTasks][google.cloud.tasks.v2beta2.CloudTasks.LeaseTasks] call before |
| // its [schedule_time][google.cloud.tasks.v2beta2.Task.schedule_time]. |
| // |
| // After the worker has successfully finished the work associated |
| // with the task, the worker must call via |
| // [AcknowledgeTask][google.cloud.tasks.v2beta2.CloudTasks.AcknowledgeTask] |
| // before the [schedule_time][google.cloud.tasks.v2beta2.Task.schedule_time]. |
| // Otherwise the task will be returned to a later |
| // [LeaseTasks][google.cloud.tasks.v2beta2.CloudTasks.LeaseTasks] call so that |
| // another worker can retry it. |
| // |
| // The maximum lease duration is 1 week. |
| // `lease_duration` will be truncated to the nearest second. |
| LeaseDuration *durationpb.Duration `protobuf:"bytes,3,opt,name=lease_duration,json=leaseDuration,proto3" json:"lease_duration,omitempty"` |
| // The response_view specifies which subset of the |
| // [Task][google.cloud.tasks.v2beta2.Task] will be returned. |
| // |
| // By default response_view is |
| // [BASIC][google.cloud.tasks.v2beta2.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 [FULL][google.cloud.tasks.v2beta2.Task.View.FULL] |
| // requires `cloudtasks.tasks.fullView` [Google |
| // IAM](https://cloud.google.com/iam/) permission on the |
| // [Task][google.cloud.tasks.v2beta2.Task] resource. |
| ResponseView Task_View `protobuf:"varint,4,opt,name=response_view,json=responseView,proto3,enum=google.cloud.tasks.v2beta2.Task_View" json:"response_view,omitempty"` |
| // `filter` can be used to specify a subset of tasks to lease. |
| // |
| // When `filter` is set to `tag=<my-tag>` then the |
| // [response][google.cloud.tasks.v2beta2.LeaseTasksResponse] will contain only |
| // tasks whose [tag][google.cloud.tasks.v2beta2.PullMessage.tag] is equal to |
| // `<my-tag>`. `<my-tag>` must be less than 500 characters. |
| // |
| // When `filter` is set to `tag_function=oldest_tag()`, only tasks which have |
| // the same tag as the task with the oldest |
| // [schedule_time][google.cloud.tasks.v2beta2.Task.schedule_time] will be |
| // returned. |
| // |
| // Grammar Syntax: |
| // |
| // * `filter = "tag=" tag | "tag_function=" function` |
| // |
| // * `tag = string` |
| // |
| // * `function = "oldest_tag()"` |
| // |
| // The `oldest_tag()` function returns tasks which have the same tag as the |
| // oldest task (ordered by schedule time). |
| // |
| // SDK compatibility: Although the SDK allows tags to be either |
| // string or |
| // [bytes](https://cloud.google.com/appengine/docs/standard/java/javadoc/com/google/appengine/api/taskqueue/TaskOptions.html#tag-byte:A-), |
| // only UTF-8 encoded tags can be used in Cloud Tasks. Tag which |
| // aren't UTF-8 encoded can't be used in the |
| // [filter][google.cloud.tasks.v2beta2.LeaseTasksRequest.filter] and the |
| // task's [tag][google.cloud.tasks.v2beta2.PullMessage.tag] will be displayed |
| // as empty in Cloud Tasks. |
| Filter string `protobuf:"bytes,5,opt,name=filter,proto3" json:"filter,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *LeaseTasksRequest) Reset() { |
| *x = LeaseTasksRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[15] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *LeaseTasksRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*LeaseTasksRequest) ProtoMessage() {} |
| |
| func (x *LeaseTasksRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[15] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use LeaseTasksRequest.ProtoReflect.Descriptor instead. |
| func (*LeaseTasksRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{15} |
| } |
| |
| func (x *LeaseTasksRequest) GetParent() string { |
| if x != nil { |
| return x.Parent |
| } |
| return "" |
| } |
| |
| func (x *LeaseTasksRequest) GetMaxTasks() int32 { |
| if x != nil { |
| return x.MaxTasks |
| } |
| return 0 |
| } |
| |
| func (x *LeaseTasksRequest) GetLeaseDuration() *durationpb.Duration { |
| if x != nil { |
| return x.LeaseDuration |
| } |
| return nil |
| } |
| |
| func (x *LeaseTasksRequest) GetResponseView() Task_View { |
| if x != nil { |
| return x.ResponseView |
| } |
| return Task_VIEW_UNSPECIFIED |
| } |
| |
| func (x *LeaseTasksRequest) GetFilter() string { |
| if x != nil { |
| return x.Filter |
| } |
| return "" |
| } |
| |
| // Response message for leasing tasks using |
| // [LeaseTasks][google.cloud.tasks.v2beta2.CloudTasks.LeaseTasks]. |
| type LeaseTasksResponse struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // The leased tasks. |
| Tasks []*Task `protobuf:"bytes,1,rep,name=tasks,proto3" json:"tasks,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *LeaseTasksResponse) Reset() { |
| *x = LeaseTasksResponse{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[16] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *LeaseTasksResponse) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*LeaseTasksResponse) ProtoMessage() {} |
| |
| func (x *LeaseTasksResponse) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[16] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use LeaseTasksResponse.ProtoReflect.Descriptor instead. |
| func (*LeaseTasksResponse) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{16} |
| } |
| |
| func (x *LeaseTasksResponse) GetTasks() []*Task { |
| if x != nil { |
| return x.Tasks |
| } |
| return nil |
| } |
| |
| // Request message for acknowledging a task using |
| // [AcknowledgeTask][google.cloud.tasks.v2beta2.CloudTasks.AcknowledgeTask]. |
| type AcknowledgeTaskRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The task name. For example: |
| // `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID` |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| // Required. The task's current schedule time, available in the |
| // [schedule_time][google.cloud.tasks.v2beta2.Task.schedule_time] returned by |
| // [LeaseTasks][google.cloud.tasks.v2beta2.CloudTasks.LeaseTasks] response or |
| // [RenewLease][google.cloud.tasks.v2beta2.CloudTasks.RenewLease] response. |
| // This restriction is to ensure that your worker currently holds the lease. |
| ScheduleTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=schedule_time,json=scheduleTime,proto3" json:"schedule_time,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *AcknowledgeTaskRequest) Reset() { |
| *x = AcknowledgeTaskRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[17] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *AcknowledgeTaskRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*AcknowledgeTaskRequest) ProtoMessage() {} |
| |
| func (x *AcknowledgeTaskRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[17] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use AcknowledgeTaskRequest.ProtoReflect.Descriptor instead. |
| func (*AcknowledgeTaskRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{17} |
| } |
| |
| func (x *AcknowledgeTaskRequest) GetName() string { |
| if x != nil { |
| return x.Name |
| } |
| return "" |
| } |
| |
| func (x *AcknowledgeTaskRequest) GetScheduleTime() *timestamppb.Timestamp { |
| if x != nil { |
| return x.ScheduleTime |
| } |
| return nil |
| } |
| |
| // Request message for renewing a lease using |
| // [RenewLease][google.cloud.tasks.v2beta2.CloudTasks.RenewLease]. |
| type RenewLeaseRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The task name. For example: |
| // `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID` |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| // Required. The task's current schedule time, available in the |
| // [schedule_time][google.cloud.tasks.v2beta2.Task.schedule_time] returned by |
| // [LeaseTasks][google.cloud.tasks.v2beta2.CloudTasks.LeaseTasks] response or |
| // [RenewLease][google.cloud.tasks.v2beta2.CloudTasks.RenewLease] response. |
| // This restriction is to ensure that your worker currently holds the lease. |
| ScheduleTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=schedule_time,json=scheduleTime,proto3" json:"schedule_time,omitempty"` |
| // 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. |
| LeaseDuration *durationpb.Duration `protobuf:"bytes,3,opt,name=lease_duration,json=leaseDuration,proto3" json:"lease_duration,omitempty"` |
| // The response_view specifies which subset of the |
| // [Task][google.cloud.tasks.v2beta2.Task] will be returned. |
| // |
| // By default response_view is |
| // [BASIC][google.cloud.tasks.v2beta2.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 [FULL][google.cloud.tasks.v2beta2.Task.View.FULL] |
| // requires `cloudtasks.tasks.fullView` [Google |
| // IAM](https://cloud.google.com/iam/) permission on the |
| // [Task][google.cloud.tasks.v2beta2.Task] resource. |
| ResponseView Task_View `protobuf:"varint,4,opt,name=response_view,json=responseView,proto3,enum=google.cloud.tasks.v2beta2.Task_View" json:"response_view,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *RenewLeaseRequest) Reset() { |
| *x = RenewLeaseRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[18] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *RenewLeaseRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*RenewLeaseRequest) ProtoMessage() {} |
| |
| func (x *RenewLeaseRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[18] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use RenewLeaseRequest.ProtoReflect.Descriptor instead. |
| func (*RenewLeaseRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{18} |
| } |
| |
| func (x *RenewLeaseRequest) GetName() string { |
| if x != nil { |
| return x.Name |
| } |
| return "" |
| } |
| |
| func (x *RenewLeaseRequest) GetScheduleTime() *timestamppb.Timestamp { |
| if x != nil { |
| return x.ScheduleTime |
| } |
| return nil |
| } |
| |
| func (x *RenewLeaseRequest) GetLeaseDuration() *durationpb.Duration { |
| if x != nil { |
| return x.LeaseDuration |
| } |
| return nil |
| } |
| |
| func (x *RenewLeaseRequest) GetResponseView() Task_View { |
| if x != nil { |
| return x.ResponseView |
| } |
| return Task_VIEW_UNSPECIFIED |
| } |
| |
| // Request message for canceling a lease using |
| // [CancelLease][google.cloud.tasks.v2beta2.CloudTasks.CancelLease]. |
| type CancelLeaseRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The task name. For example: |
| // `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID` |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| // Required. The task's current schedule time, available in the |
| // [schedule_time][google.cloud.tasks.v2beta2.Task.schedule_time] returned by |
| // [LeaseTasks][google.cloud.tasks.v2beta2.CloudTasks.LeaseTasks] response or |
| // [RenewLease][google.cloud.tasks.v2beta2.CloudTasks.RenewLease] response. |
| // This restriction is to ensure that your worker currently holds the lease. |
| ScheduleTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=schedule_time,json=scheduleTime,proto3" json:"schedule_time,omitempty"` |
| // The response_view specifies which subset of the |
| // [Task][google.cloud.tasks.v2beta2.Task] will be returned. |
| // |
| // By default response_view is |
| // [BASIC][google.cloud.tasks.v2beta2.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 [FULL][google.cloud.tasks.v2beta2.Task.View.FULL] |
| // requires `cloudtasks.tasks.fullView` [Google |
| // IAM](https://cloud.google.com/iam/) permission on the |
| // [Task][google.cloud.tasks.v2beta2.Task] resource. |
| ResponseView Task_View `protobuf:"varint,3,opt,name=response_view,json=responseView,proto3,enum=google.cloud.tasks.v2beta2.Task_View" json:"response_view,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *CancelLeaseRequest) Reset() { |
| *x = CancelLeaseRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[19] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *CancelLeaseRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*CancelLeaseRequest) ProtoMessage() {} |
| |
| func (x *CancelLeaseRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[19] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use CancelLeaseRequest.ProtoReflect.Descriptor instead. |
| func (*CancelLeaseRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{19} |
| } |
| |
| func (x *CancelLeaseRequest) GetName() string { |
| if x != nil { |
| return x.Name |
| } |
| return "" |
| } |
| |
| func (x *CancelLeaseRequest) GetScheduleTime() *timestamppb.Timestamp { |
| if x != nil { |
| return x.ScheduleTime |
| } |
| return nil |
| } |
| |
| func (x *CancelLeaseRequest) GetResponseView() Task_View { |
| if x != nil { |
| return x.ResponseView |
| } |
| return Task_VIEW_UNSPECIFIED |
| } |
| |
| // Request message for forcing a task to run now using |
| // [RunTask][google.cloud.tasks.v2beta2.CloudTasks.RunTask]. |
| type RunTaskRequest struct { |
| state protoimpl.MessageState `protogen:"open.v1"` |
| // Required. The task name. For example: |
| // `projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID` |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| // The response_view specifies which subset of the |
| // [Task][google.cloud.tasks.v2beta2.Task] will be returned. |
| // |
| // By default response_view is |
| // [BASIC][google.cloud.tasks.v2beta2.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 [FULL][google.cloud.tasks.v2beta2.Task.View.FULL] |
| // requires `cloudtasks.tasks.fullView` [Google |
| // IAM](https://cloud.google.com/iam/) permission on the |
| // [Task][google.cloud.tasks.v2beta2.Task] resource. |
| ResponseView Task_View `protobuf:"varint,2,opt,name=response_view,json=responseView,proto3,enum=google.cloud.tasks.v2beta2.Task_View" json:"response_view,omitempty"` |
| unknownFields protoimpl.UnknownFields |
| sizeCache protoimpl.SizeCache |
| } |
| |
| func (x *RunTaskRequest) Reset() { |
| *x = RunTaskRequest{} |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[20] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| |
| func (x *RunTaskRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*RunTaskRequest) ProtoMessage() {} |
| |
| func (x *RunTaskRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[20] |
| if x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use RunTaskRequest.ProtoReflect.Descriptor instead. |
| func (*RunTaskRequest) Descriptor() ([]byte, []int) { |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP(), []int{20} |
| } |
| |
| func (x *RunTaskRequest) GetName() string { |
| if x != nil { |
| return x.Name |
| } |
| return "" |
| } |
| |
| func (x *RunTaskRequest) GetResponseView() Task_View { |
| if x != nil { |
| return x.ResponseView |
| } |
| return Task_VIEW_UNSPECIFIED |
| } |
| |
| var File_google_cloud_tasks_v2beta2_cloudtasks_proto protoreflect.FileDescriptor |
| |
| const file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDesc = "" + |
| "\n" + |
| "+google/cloud/tasks/v2beta2/cloudtasks.proto\x12\x1agoogle.cloud.tasks.v2beta2\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/httpbody.proto\x1a\x19google/api/resource.proto\x1a&google/cloud/tasks/v2beta2/queue.proto\x1a%google/cloud/tasks/v2beta2/task.proto\x1a\x1egoogle/iam/v1/iam_policy.proto\x1a\x1agoogle/iam/v1/policy.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xe6\x01\n" + |
| "\x11ListQueuesRequest\x12?\n" + |
| "\x06parent\x18\x01 \x01(\tB'\xe0A\x02\xfaA!\x12\x1fcloudtasks.googleapis.com/QueueR\x06parent\x12\x16\n" + |
| "\x06filter\x18\x02 \x01(\tR\x06filter\x12\x1b\n" + |
| "\tpage_size\x18\x03 \x01(\x05R\bpageSize\x12\x1d\n" + |
| "\n" + |
| "page_token\x18\x04 \x01(\tR\tpageToken\x12<\n" + |
| "\tread_mask\x18\x05 \x01(\v2\x1a.google.protobuf.FieldMaskB\x03\xe0A\x01R\breadMask\"w\n" + |
| "\x12ListQueuesResponse\x129\n" + |
| "\x06queues\x18\x01 \x03(\v2!.google.cloud.tasks.v2beta2.QueueR\x06queues\x12&\n" + |
| "\x0fnext_page_token\x18\x02 \x01(\tR\rnextPageToken\"\x8c\x01\n" + |
| "\x0fGetQueueRequest\x12;\n" + |
| "\x04name\x18\x01 \x01(\tB'\xe0A\x02\xfaA!\n" + |
| "\x1fcloudtasks.googleapis.com/QueueR\x04name\x12<\n" + |
| "\tread_mask\x18\x02 \x01(\v2\x1a.google.protobuf.FieldMaskB\x03\xe0A\x01R\breadMask\"\x93\x01\n" + |
| "\x12CreateQueueRequest\x12?\n" + |
| "\x06parent\x18\x01 \x01(\tB'\xe0A\x02\xfaA!\x12\x1fcloudtasks.googleapis.com/QueueR\x06parent\x12<\n" + |
| "\x05queue\x18\x02 \x01(\v2!.google.cloud.tasks.v2beta2.QueueB\x03\xe0A\x02R\x05queue\"\x8f\x01\n" + |
| "\x12UpdateQueueRequest\x12<\n" + |
| "\x05queue\x18\x01 \x01(\v2!.google.cloud.tasks.v2beta2.QueueB\x03\xe0A\x02R\x05queue\x12;\n" + |
| "\vupdate_mask\x18\x02 \x01(\v2\x1a.google.protobuf.FieldMaskR\n" + |
| "updateMask\"Q\n" + |
| "\x12DeleteQueueRequest\x12;\n" + |
| "\x04name\x18\x01 \x01(\tB'\xe0A\x02\xfaA!\n" + |
| "\x1fcloudtasks.googleapis.com/QueueR\x04name\"P\n" + |
| "\x11PurgeQueueRequest\x12;\n" + |
| "\x04name\x18\x01 \x01(\tB'\xe0A\x02\xfaA!\n" + |
| "\x1fcloudtasks.googleapis.com/QueueR\x04name\"P\n" + |
| "\x11PauseQueueRequest\x12;\n" + |
| "\x04name\x18\x01 \x01(\tB'\xe0A\x02\xfaA!\n" + |
| "\x1fcloudtasks.googleapis.com/QueueR\x04name\"Q\n" + |
| "\x12ResumeQueueRequest\x12;\n" + |
| "\x04name\x18\x01 \x01(\tB'\xe0A\x02\xfaA!\n" + |
| "\x1fcloudtasks.googleapis.com/QueueR\x04name\"z\n" + |
| "\x16UploadQueueYamlRequest\x12\x1a\n" + |
| "\x06app_id\x18\x01 \x01(\tB\x03\xe0A\x02R\x05appId\x126\n" + |
| "\thttp_body\x18\x02 \x01(\v2\x14.google.api.HttpBodyH\x00R\bhttpBody\x88\x01\x01B\f\n" + |
| "\n" + |
| "_http_body\"\xda\x01\n" + |
| "\x10ListTasksRequest\x12>\n" + |
| "\x06parent\x18\x01 \x01(\tB&\xe0A\x02\xfaA \x12\x1ecloudtasks.googleapis.com/TaskR\x06parent\x12J\n" + |
| "\rresponse_view\x18\x02 \x01(\x0e2%.google.cloud.tasks.v2beta2.Task.ViewR\fresponseView\x12\x1b\n" + |
| "\tpage_size\x18\x04 \x01(\x05R\bpageSize\x12\x1d\n" + |
| "\n" + |
| "page_token\x18\x05 \x01(\tR\tpageToken\"s\n" + |
| "\x11ListTasksResponse\x126\n" + |
| "\x05tasks\x18\x01 \x03(\v2 .google.cloud.tasks.v2beta2.TaskR\x05tasks\x12&\n" + |
| "\x0fnext_page_token\x18\x02 \x01(\tR\rnextPageToken\"\x98\x01\n" + |
| "\x0eGetTaskRequest\x12:\n" + |
| "\x04name\x18\x01 \x01(\tB&\xe0A\x02\xfaA \n" + |
| "\x1ecloudtasks.googleapis.com/TaskR\x04name\x12J\n" + |
| "\rresponse_view\x18\x02 \x01(\x0e2%.google.cloud.tasks.v2beta2.Task.ViewR\fresponseView\"\xda\x01\n" + |
| "\x11CreateTaskRequest\x12>\n" + |
| "\x06parent\x18\x01 \x01(\tB&\xe0A\x02\xfaA \x12\x1ecloudtasks.googleapis.com/TaskR\x06parent\x129\n" + |
| "\x04task\x18\x02 \x01(\v2 .google.cloud.tasks.v2beta2.TaskB\x03\xe0A\x02R\x04task\x12J\n" + |
| "\rresponse_view\x18\x03 \x01(\x0e2%.google.cloud.tasks.v2beta2.Task.ViewR\fresponseView\"O\n" + |
| "\x11DeleteTaskRequest\x12:\n" + |
| "\x04name\x18\x01 \x01(\tB&\xe0A\x02\xfaA \n" + |
| "\x1ecloudtasks.googleapis.com/TaskR\x04name\"\x9b\x02\n" + |
| "\x11LeaseTasksRequest\x12>\n" + |
| "\x06parent\x18\x01 \x01(\tB&\xe0A\x02\xfaA \x12\x1ecloudtasks.googleapis.com/TaskR\x06parent\x12\x1b\n" + |
| "\tmax_tasks\x18\x02 \x01(\x05R\bmaxTasks\x12E\n" + |
| "\x0elease_duration\x18\x03 \x01(\v2\x19.google.protobuf.DurationB\x03\xe0A\x02R\rleaseDuration\x12J\n" + |
| "\rresponse_view\x18\x04 \x01(\x0e2%.google.cloud.tasks.v2beta2.Task.ViewR\fresponseView\x12\x16\n" + |
| "\x06filter\x18\x05 \x01(\tR\x06filter\"L\n" + |
| "\x12LeaseTasksResponse\x126\n" + |
| "\x05tasks\x18\x01 \x03(\v2 .google.cloud.tasks.v2beta2.TaskR\x05tasks\"\x9a\x01\n" + |
| "\x16AcknowledgeTaskRequest\x12:\n" + |
| "\x04name\x18\x01 \x01(\tB&\xe0A\x02\xfaA \n" + |
| "\x1ecloudtasks.googleapis.com/TaskR\x04name\x12D\n" + |
| "\rschedule_time\x18\x02 \x01(\v2\x1a.google.protobuf.TimestampB\x03\xe0A\x02R\fscheduleTime\"\xa8\x02\n" + |
| "\x11RenewLeaseRequest\x12:\n" + |
| "\x04name\x18\x01 \x01(\tB&\xe0A\x02\xfaA \n" + |
| "\x1ecloudtasks.googleapis.com/TaskR\x04name\x12D\n" + |
| "\rschedule_time\x18\x02 \x01(\v2\x1a.google.protobuf.TimestampB\x03\xe0A\x02R\fscheduleTime\x12E\n" + |
| "\x0elease_duration\x18\x03 \x01(\v2\x19.google.protobuf.DurationB\x03\xe0A\x02R\rleaseDuration\x12J\n" + |
| "\rresponse_view\x18\x04 \x01(\x0e2%.google.cloud.tasks.v2beta2.Task.ViewR\fresponseView\"\xe2\x01\n" + |
| "\x12CancelLeaseRequest\x12:\n" + |
| "\x04name\x18\x01 \x01(\tB&\xe0A\x02\xfaA \n" + |
| "\x1ecloudtasks.googleapis.com/TaskR\x04name\x12D\n" + |
| "\rschedule_time\x18\x02 \x01(\v2\x1a.google.protobuf.TimestampB\x03\xe0A\x02R\fscheduleTime\x12J\n" + |
| "\rresponse_view\x18\x03 \x01(\x0e2%.google.cloud.tasks.v2beta2.Task.ViewR\fresponseView\"\x98\x01\n" + |
| "\x0eRunTaskRequest\x12:\n" + |
| "\x04name\x18\x01 \x01(\tB&\xe0A\x02\xfaA \n" + |
| "\x1ecloudtasks.googleapis.com/TaskR\x04name\x12J\n" + |
| "\rresponse_view\x18\x02 \x01(\x0e2%.google.cloud.tasks.v2beta2.Task.ViewR\fresponseView2\xb5\x1d\n" + |
| "\n" + |
| "CloudTasks\x12\xad\x01\n" + |
| "\n" + |
| "ListQueues\x12-.google.cloud.tasks.v2beta2.ListQueuesRequest\x1a..google.cloud.tasks.v2beta2.ListQueuesResponse\"@\xdaA\x06parent\x82\xd3\xe4\x93\x021\x12//v2beta2/{parent=projects/*/locations/*}/queues\x12\x9a\x01\n" + |
| "\bGetQueue\x12+.google.cloud.tasks.v2beta2.GetQueueRequest\x1a!.google.cloud.tasks.v2beta2.Queue\">\xdaA\x04name\x82\xd3\xe4\x93\x021\x12//v2beta2/{name=projects/*/locations/*/queues/*}\x12\xaf\x01\n" + |
| "\vCreateQueue\x12..google.cloud.tasks.v2beta2.CreateQueueRequest\x1a!.google.cloud.tasks.v2beta2.Queue\"M\xdaA\fparent,queue\x82\xd3\xe4\x93\x028:\x05queue\"//v2beta2/{parent=projects/*/locations/*}/queues\x12\xba\x01\n" + |
| "\vUpdateQueue\x12..google.cloud.tasks.v2beta2.UpdateQueueRequest\x1a!.google.cloud.tasks.v2beta2.Queue\"X\xdaA\x11queue,update_mask\x82\xd3\xe4\x93\x02>:\x05queue25/v2beta2/{queue.name=projects/*/locations/*/queues/*}\x12\x95\x01\n" + |
| "\vDeleteQueue\x12..google.cloud.tasks.v2beta2.DeleteQueueRequest\x1a\x16.google.protobuf.Empty\">\xdaA\x04name\x82\xd3\xe4\x93\x021*//v2beta2/{name=projects/*/locations/*/queues/*}\x12\xa7\x01\n" + |
| "\n" + |
| "PurgeQueue\x12-.google.cloud.tasks.v2beta2.PurgeQueueRequest\x1a!.google.cloud.tasks.v2beta2.Queue\"G\xdaA\x04name\x82\xd3\xe4\x93\x02::\x01*\"5/v2beta2/{name=projects/*/locations/*/queues/*}:purge\x12\xa7\x01\n" + |
| "\n" + |
| "PauseQueue\x12-.google.cloud.tasks.v2beta2.PauseQueueRequest\x1a!.google.cloud.tasks.v2beta2.Queue\"G\xdaA\x04name\x82\xd3\xe4\x93\x02::\x01*\"5/v2beta2/{name=projects/*/locations/*/queues/*}:pause\x12\xaa\x01\n" + |
| "\vResumeQueue\x12..google.cloud.tasks.v2beta2.ResumeQueueRequest\x1a!.google.cloud.tasks.v2beta2.Queue\"H\xdaA\x04name\x82\xd3\xe4\x93\x02;:\x01*\"6/v2beta2/{name=projects/*/locations/*/queues/*}:resume\x12_\n" + |
| "\x0fUploadQueueYaml\x122.google.cloud.tasks.v2beta2.UploadQueueYamlRequest\x1a\x16.google.protobuf.Empty\"\x00\x12\xa1\x01\n" + |
| "\fGetIamPolicy\x12\".google.iam.v1.GetIamPolicyRequest\x1a\x15.google.iam.v1.Policy\"V\xdaA\bresource\x82\xd3\xe4\x93\x02E:\x01*\"@/v2beta2/{resource=projects/*/locations/*/queues/*}:getIamPolicy\x12\xa8\x01\n" + |
| "\fSetIamPolicy\x12\".google.iam.v1.SetIamPolicyRequest\x1a\x15.google.iam.v1.Policy\"]\xdaA\x0fresource,policy\x82\xd3\xe4\x93\x02E:\x01*\"@/v2beta2/{resource=projects/*/locations/*/queues/*}:setIamPolicy\x12\xd3\x01\n" + |
| "\x12TestIamPermissions\x12(.google.iam.v1.TestIamPermissionsRequest\x1a).google.iam.v1.TestIamPermissionsResponse\"h\xdaA\x14resource,permissions\x82\xd3\xe4\x93\x02K:\x01*\"F/v2beta2/{resource=projects/*/locations/*/queues/*}:testIamPermissions\x12\xb2\x01\n" + |
| "\tListTasks\x12,.google.cloud.tasks.v2beta2.ListTasksRequest\x1a-.google.cloud.tasks.v2beta2.ListTasksResponse\"H\xdaA\x06parent\x82\xd3\xe4\x93\x029\x127/v2beta2/{parent=projects/*/locations/*/queues/*}/tasks\x12\x9f\x01\n" + |
| "\aGetTask\x12*.google.cloud.tasks.v2beta2.GetTaskRequest\x1a .google.cloud.tasks.v2beta2.Task\"F\xdaA\x04name\x82\xd3\xe4\x93\x029\x127/v2beta2/{name=projects/*/locations/*/queues/*/tasks/*}\x12\xaf\x01\n" + |
| "\n" + |
| "CreateTask\x12-.google.cloud.tasks.v2beta2.CreateTaskRequest\x1a .google.cloud.tasks.v2beta2.Task\"P\xdaA\vparent,task\x82\xd3\xe4\x93\x02<:\x01*\"7/v2beta2/{parent=projects/*/locations/*/queues/*}/tasks\x12\x9b\x01\n" + |
| "\n" + |
| "DeleteTask\x12-.google.cloud.tasks.v2beta2.DeleteTaskRequest\x1a\x16.google.protobuf.Empty\"F\xdaA\x04name\x82\xd3\xe4\x93\x029*7/v2beta2/{name=projects/*/locations/*/queues/*/tasks/*}\x12\xcd\x01\n" + |
| "\n" + |
| "LeaseTasks\x12-.google.cloud.tasks.v2beta2.LeaseTasksRequest\x1a..google.cloud.tasks.v2beta2.LeaseTasksResponse\"`\xdaA\x15parent,lease_duration\x82\xd3\xe4\x93\x02B:\x01*\"=/v2beta2/{parent=projects/*/locations/*/queues/*}/tasks:lease\x12\xc2\x01\n" + |
| "\x0fAcknowledgeTask\x122.google.cloud.tasks.v2beta2.AcknowledgeTaskRequest\x1a\x16.google.protobuf.Empty\"c\xdaA\x12name,schedule_time\x82\xd3\xe4\x93\x02H:\x01*\"C/v2beta2/{name=projects/*/locations/*/queues/*/tasks/*}:acknowledge\x12\xd0\x01\n" + |
| "\n" + |
| "RenewLease\x12-.google.cloud.tasks.v2beta2.RenewLeaseRequest\x1a .google.cloud.tasks.v2beta2.Task\"q\xdaA!name,schedule_time,lease_duration\x82\xd3\xe4\x93\x02G:\x01*\"B/v2beta2/{name=projects/*/locations/*/queues/*/tasks/*}:renewLease\x12\xc4\x01\n" + |
| "\vCancelLease\x12..google.cloud.tasks.v2beta2.CancelLeaseRequest\x1a .google.cloud.tasks.v2beta2.Task\"c\xdaA\x12name,schedule_time\x82\xd3\xe4\x93\x02H:\x01*\"C/v2beta2/{name=projects/*/locations/*/queues/*/tasks/*}:cancelLease\x12\xa6\x01\n" + |
| "\aRunTask\x12*.google.cloud.tasks.v2beta2.RunTaskRequest\x1a .google.cloud.tasks.v2beta2.Task\"M\xdaA\x04name\x82\xd3\xe4\x93\x02@:\x01*\";/v2beta2/{name=projects/*/locations/*/queues/*/tasks/*}:run\x1aM\xcaA\x19cloudtasks.googleapis.com\xd2A.https://www.googleapis.com/auth/cloud-platformB\xd0\x01\xeaAM\n" + |
| "\"cloudtasks.googleapis.com/Location\x12'projects/{project}/locations/{location}\n" + |
| "\x1ecom.google.cloud.tasks.v2beta2B\x0fCloudTasksProtoP\x01ZCcloud.google.com/go/cloudtasks/apiv2beta2/cloudtaskspb;cloudtaskspb\xa2\x02\x05TASKSb\x06proto3" |
| |
| var ( |
| file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescOnce sync.Once |
| file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescData []byte |
| ) |
| |
| func file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescGZIP() []byte { |
| file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescOnce.Do(func() { |
| file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDesc), len(file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDesc))) |
| }) |
| return file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDescData |
| } |
| |
| var file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes = make([]protoimpl.MessageInfo, 21) |
| var file_google_cloud_tasks_v2beta2_cloudtasks_proto_goTypes = []any{ |
| (*ListQueuesRequest)(nil), // 0: google.cloud.tasks.v2beta2.ListQueuesRequest |
| (*ListQueuesResponse)(nil), // 1: google.cloud.tasks.v2beta2.ListQueuesResponse |
| (*GetQueueRequest)(nil), // 2: google.cloud.tasks.v2beta2.GetQueueRequest |
| (*CreateQueueRequest)(nil), // 3: google.cloud.tasks.v2beta2.CreateQueueRequest |
| (*UpdateQueueRequest)(nil), // 4: google.cloud.tasks.v2beta2.UpdateQueueRequest |
| (*DeleteQueueRequest)(nil), // 5: google.cloud.tasks.v2beta2.DeleteQueueRequest |
| (*PurgeQueueRequest)(nil), // 6: google.cloud.tasks.v2beta2.PurgeQueueRequest |
| (*PauseQueueRequest)(nil), // 7: google.cloud.tasks.v2beta2.PauseQueueRequest |
| (*ResumeQueueRequest)(nil), // 8: google.cloud.tasks.v2beta2.ResumeQueueRequest |
| (*UploadQueueYamlRequest)(nil), // 9: google.cloud.tasks.v2beta2.UploadQueueYamlRequest |
| (*ListTasksRequest)(nil), // 10: google.cloud.tasks.v2beta2.ListTasksRequest |
| (*ListTasksResponse)(nil), // 11: google.cloud.tasks.v2beta2.ListTasksResponse |
| (*GetTaskRequest)(nil), // 12: google.cloud.tasks.v2beta2.GetTaskRequest |
| (*CreateTaskRequest)(nil), // 13: google.cloud.tasks.v2beta2.CreateTaskRequest |
| (*DeleteTaskRequest)(nil), // 14: google.cloud.tasks.v2beta2.DeleteTaskRequest |
| (*LeaseTasksRequest)(nil), // 15: google.cloud.tasks.v2beta2.LeaseTasksRequest |
| (*LeaseTasksResponse)(nil), // 16: google.cloud.tasks.v2beta2.LeaseTasksResponse |
| (*AcknowledgeTaskRequest)(nil), // 17: google.cloud.tasks.v2beta2.AcknowledgeTaskRequest |
| (*RenewLeaseRequest)(nil), // 18: google.cloud.tasks.v2beta2.RenewLeaseRequest |
| (*CancelLeaseRequest)(nil), // 19: google.cloud.tasks.v2beta2.CancelLeaseRequest |
| (*RunTaskRequest)(nil), // 20: google.cloud.tasks.v2beta2.RunTaskRequest |
| (*fieldmaskpb.FieldMask)(nil), // 21: google.protobuf.FieldMask |
| (*Queue)(nil), // 22: google.cloud.tasks.v2beta2.Queue |
| (*httpbody.HttpBody)(nil), // 23: google.api.HttpBody |
| (Task_View)(0), // 24: google.cloud.tasks.v2beta2.Task.View |
| (*Task)(nil), // 25: google.cloud.tasks.v2beta2.Task |
| (*durationpb.Duration)(nil), // 26: google.protobuf.Duration |
| (*timestamppb.Timestamp)(nil), // 27: google.protobuf.Timestamp |
| (*iampb.GetIamPolicyRequest)(nil), // 28: google.iam.v1.GetIamPolicyRequest |
| (*iampb.SetIamPolicyRequest)(nil), // 29: google.iam.v1.SetIamPolicyRequest |
| (*iampb.TestIamPermissionsRequest)(nil), // 30: google.iam.v1.TestIamPermissionsRequest |
| (*emptypb.Empty)(nil), // 31: google.protobuf.Empty |
| (*iampb.Policy)(nil), // 32: google.iam.v1.Policy |
| (*iampb.TestIamPermissionsResponse)(nil), // 33: google.iam.v1.TestIamPermissionsResponse |
| } |
| var file_google_cloud_tasks_v2beta2_cloudtasks_proto_depIdxs = []int32{ |
| 21, // 0: google.cloud.tasks.v2beta2.ListQueuesRequest.read_mask:type_name -> google.protobuf.FieldMask |
| 22, // 1: google.cloud.tasks.v2beta2.ListQueuesResponse.queues:type_name -> google.cloud.tasks.v2beta2.Queue |
| 21, // 2: google.cloud.tasks.v2beta2.GetQueueRequest.read_mask:type_name -> google.protobuf.FieldMask |
| 22, // 3: google.cloud.tasks.v2beta2.CreateQueueRequest.queue:type_name -> google.cloud.tasks.v2beta2.Queue |
| 22, // 4: google.cloud.tasks.v2beta2.UpdateQueueRequest.queue:type_name -> google.cloud.tasks.v2beta2.Queue |
| 21, // 5: google.cloud.tasks.v2beta2.UpdateQueueRequest.update_mask:type_name -> google.protobuf.FieldMask |
| 23, // 6: google.cloud.tasks.v2beta2.UploadQueueYamlRequest.http_body:type_name -> google.api.HttpBody |
| 24, // 7: google.cloud.tasks.v2beta2.ListTasksRequest.response_view:type_name -> google.cloud.tasks.v2beta2.Task.View |
| 25, // 8: google.cloud.tasks.v2beta2.ListTasksResponse.tasks:type_name -> google.cloud.tasks.v2beta2.Task |
| 24, // 9: google.cloud.tasks.v2beta2.GetTaskRequest.response_view:type_name -> google.cloud.tasks.v2beta2.Task.View |
| 25, // 10: google.cloud.tasks.v2beta2.CreateTaskRequest.task:type_name -> google.cloud.tasks.v2beta2.Task |
| 24, // 11: google.cloud.tasks.v2beta2.CreateTaskRequest.response_view:type_name -> google.cloud.tasks.v2beta2.Task.View |
| 26, // 12: google.cloud.tasks.v2beta2.LeaseTasksRequest.lease_duration:type_name -> google.protobuf.Duration |
| 24, // 13: google.cloud.tasks.v2beta2.LeaseTasksRequest.response_view:type_name -> google.cloud.tasks.v2beta2.Task.View |
| 25, // 14: google.cloud.tasks.v2beta2.LeaseTasksResponse.tasks:type_name -> google.cloud.tasks.v2beta2.Task |
| 27, // 15: google.cloud.tasks.v2beta2.AcknowledgeTaskRequest.schedule_time:type_name -> google.protobuf.Timestamp |
| 27, // 16: google.cloud.tasks.v2beta2.RenewLeaseRequest.schedule_time:type_name -> google.protobuf.Timestamp |
| 26, // 17: google.cloud.tasks.v2beta2.RenewLeaseRequest.lease_duration:type_name -> google.protobuf.Duration |
| 24, // 18: google.cloud.tasks.v2beta2.RenewLeaseRequest.response_view:type_name -> google.cloud.tasks.v2beta2.Task.View |
| 27, // 19: google.cloud.tasks.v2beta2.CancelLeaseRequest.schedule_time:type_name -> google.protobuf.Timestamp |
| 24, // 20: google.cloud.tasks.v2beta2.CancelLeaseRequest.response_view:type_name -> google.cloud.tasks.v2beta2.Task.View |
| 24, // 21: google.cloud.tasks.v2beta2.RunTaskRequest.response_view:type_name -> google.cloud.tasks.v2beta2.Task.View |
| 0, // 22: google.cloud.tasks.v2beta2.CloudTasks.ListQueues:input_type -> google.cloud.tasks.v2beta2.ListQueuesRequest |
| 2, // 23: google.cloud.tasks.v2beta2.CloudTasks.GetQueue:input_type -> google.cloud.tasks.v2beta2.GetQueueRequest |
| 3, // 24: google.cloud.tasks.v2beta2.CloudTasks.CreateQueue:input_type -> google.cloud.tasks.v2beta2.CreateQueueRequest |
| 4, // 25: google.cloud.tasks.v2beta2.CloudTasks.UpdateQueue:input_type -> google.cloud.tasks.v2beta2.UpdateQueueRequest |
| 5, // 26: google.cloud.tasks.v2beta2.CloudTasks.DeleteQueue:input_type -> google.cloud.tasks.v2beta2.DeleteQueueRequest |
| 6, // 27: google.cloud.tasks.v2beta2.CloudTasks.PurgeQueue:input_type -> google.cloud.tasks.v2beta2.PurgeQueueRequest |
| 7, // 28: google.cloud.tasks.v2beta2.CloudTasks.PauseQueue:input_type -> google.cloud.tasks.v2beta2.PauseQueueRequest |
| 8, // 29: google.cloud.tasks.v2beta2.CloudTasks.ResumeQueue:input_type -> google.cloud.tasks.v2beta2.ResumeQueueRequest |
| 9, // 30: google.cloud.tasks.v2beta2.CloudTasks.UploadQueueYaml:input_type -> google.cloud.tasks.v2beta2.UploadQueueYamlRequest |
| 28, // 31: google.cloud.tasks.v2beta2.CloudTasks.GetIamPolicy:input_type -> google.iam.v1.GetIamPolicyRequest |
| 29, // 32: google.cloud.tasks.v2beta2.CloudTasks.SetIamPolicy:input_type -> google.iam.v1.SetIamPolicyRequest |
| 30, // 33: google.cloud.tasks.v2beta2.CloudTasks.TestIamPermissions:input_type -> google.iam.v1.TestIamPermissionsRequest |
| 10, // 34: google.cloud.tasks.v2beta2.CloudTasks.ListTasks:input_type -> google.cloud.tasks.v2beta2.ListTasksRequest |
| 12, // 35: google.cloud.tasks.v2beta2.CloudTasks.GetTask:input_type -> google.cloud.tasks.v2beta2.GetTaskRequest |
| 13, // 36: google.cloud.tasks.v2beta2.CloudTasks.CreateTask:input_type -> google.cloud.tasks.v2beta2.CreateTaskRequest |
| 14, // 37: google.cloud.tasks.v2beta2.CloudTasks.DeleteTask:input_type -> google.cloud.tasks.v2beta2.DeleteTaskRequest |
| 15, // 38: google.cloud.tasks.v2beta2.CloudTasks.LeaseTasks:input_type -> google.cloud.tasks.v2beta2.LeaseTasksRequest |
| 17, // 39: google.cloud.tasks.v2beta2.CloudTasks.AcknowledgeTask:input_type -> google.cloud.tasks.v2beta2.AcknowledgeTaskRequest |
| 18, // 40: google.cloud.tasks.v2beta2.CloudTasks.RenewLease:input_type -> google.cloud.tasks.v2beta2.RenewLeaseRequest |
| 19, // 41: google.cloud.tasks.v2beta2.CloudTasks.CancelLease:input_type -> google.cloud.tasks.v2beta2.CancelLeaseRequest |
| 20, // 42: google.cloud.tasks.v2beta2.CloudTasks.RunTask:input_type -> google.cloud.tasks.v2beta2.RunTaskRequest |
| 1, // 43: google.cloud.tasks.v2beta2.CloudTasks.ListQueues:output_type -> google.cloud.tasks.v2beta2.ListQueuesResponse |
| 22, // 44: google.cloud.tasks.v2beta2.CloudTasks.GetQueue:output_type -> google.cloud.tasks.v2beta2.Queue |
| 22, // 45: google.cloud.tasks.v2beta2.CloudTasks.CreateQueue:output_type -> google.cloud.tasks.v2beta2.Queue |
| 22, // 46: google.cloud.tasks.v2beta2.CloudTasks.UpdateQueue:output_type -> google.cloud.tasks.v2beta2.Queue |
| 31, // 47: google.cloud.tasks.v2beta2.CloudTasks.DeleteQueue:output_type -> google.protobuf.Empty |
| 22, // 48: google.cloud.tasks.v2beta2.CloudTasks.PurgeQueue:output_type -> google.cloud.tasks.v2beta2.Queue |
| 22, // 49: google.cloud.tasks.v2beta2.CloudTasks.PauseQueue:output_type -> google.cloud.tasks.v2beta2.Queue |
| 22, // 50: google.cloud.tasks.v2beta2.CloudTasks.ResumeQueue:output_type -> google.cloud.tasks.v2beta2.Queue |
| 31, // 51: google.cloud.tasks.v2beta2.CloudTasks.UploadQueueYaml:output_type -> google.protobuf.Empty |
| 32, // 52: google.cloud.tasks.v2beta2.CloudTasks.GetIamPolicy:output_type -> google.iam.v1.Policy |
| 32, // 53: google.cloud.tasks.v2beta2.CloudTasks.SetIamPolicy:output_type -> google.iam.v1.Policy |
| 33, // 54: google.cloud.tasks.v2beta2.CloudTasks.TestIamPermissions:output_type -> google.iam.v1.TestIamPermissionsResponse |
| 11, // 55: google.cloud.tasks.v2beta2.CloudTasks.ListTasks:output_type -> google.cloud.tasks.v2beta2.ListTasksResponse |
| 25, // 56: google.cloud.tasks.v2beta2.CloudTasks.GetTask:output_type -> google.cloud.tasks.v2beta2.Task |
| 25, // 57: google.cloud.tasks.v2beta2.CloudTasks.CreateTask:output_type -> google.cloud.tasks.v2beta2.Task |
| 31, // 58: google.cloud.tasks.v2beta2.CloudTasks.DeleteTask:output_type -> google.protobuf.Empty |
| 16, // 59: google.cloud.tasks.v2beta2.CloudTasks.LeaseTasks:output_type -> google.cloud.tasks.v2beta2.LeaseTasksResponse |
| 31, // 60: google.cloud.tasks.v2beta2.CloudTasks.AcknowledgeTask:output_type -> google.protobuf.Empty |
| 25, // 61: google.cloud.tasks.v2beta2.CloudTasks.RenewLease:output_type -> google.cloud.tasks.v2beta2.Task |
| 25, // 62: google.cloud.tasks.v2beta2.CloudTasks.CancelLease:output_type -> google.cloud.tasks.v2beta2.Task |
| 25, // 63: google.cloud.tasks.v2beta2.CloudTasks.RunTask:output_type -> google.cloud.tasks.v2beta2.Task |
| 43, // [43:64] is the sub-list for method output_type |
| 22, // [22:43] is the sub-list for method input_type |
| 22, // [22:22] is the sub-list for extension type_name |
| 22, // [22:22] is the sub-list for extension extendee |
| 0, // [0:22] is the sub-list for field type_name |
| } |
| |
| func init() { file_google_cloud_tasks_v2beta2_cloudtasks_proto_init() } |
| func file_google_cloud_tasks_v2beta2_cloudtasks_proto_init() { |
| if File_google_cloud_tasks_v2beta2_cloudtasks_proto != nil { |
| return |
| } |
| file_google_cloud_tasks_v2beta2_queue_proto_init() |
| file_google_cloud_tasks_v2beta2_task_proto_init() |
| file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes[9].OneofWrappers = []any{} |
| type x struct{} |
| out := protoimpl.TypeBuilder{ |
| File: protoimpl.DescBuilder{ |
| GoPackagePath: reflect.TypeOf(x{}).PkgPath(), |
| RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDesc), len(file_google_cloud_tasks_v2beta2_cloudtasks_proto_rawDesc)), |
| NumEnums: 0, |
| NumMessages: 21, |
| NumExtensions: 0, |
| NumServices: 1, |
| }, |
| GoTypes: file_google_cloud_tasks_v2beta2_cloudtasks_proto_goTypes, |
| DependencyIndexes: file_google_cloud_tasks_v2beta2_cloudtasks_proto_depIdxs, |
| MessageInfos: file_google_cloud_tasks_v2beta2_cloudtasks_proto_msgTypes, |
| }.Build() |
| File_google_cloud_tasks_v2beta2_cloudtasks_proto = out.File |
| file_google_cloud_tasks_v2beta2_cloudtasks_proto_goTypes = nil |
| file_google_cloud_tasks_v2beta2_cloudtasks_proto_depIdxs = nil |
| } |