123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- syntax = "proto3";
- package google.cloud.tasks.v2beta3;
- import "google/api/resource.proto";
- import "google/cloud/tasks/v2beta3/target.proto";
- import "google/protobuf/duration.proto";
- import "google/protobuf/timestamp.proto";
- import "google/rpc/status.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/tasks/v2beta3;tasks";
- option java_multiple_files = true;
- option java_outer_classname = "TaskProto";
- option java_package = "com.google.cloud.tasks.v2beta3";
- message Task {
- option (google.api.resource) = {
- type: "cloudtasks.googleapis.com/Task"
- pattern: "projects/{project}/locations/{location}/queues/{queue}/tasks/{task}"
- };
-
-
-
-
-
-
-
- enum View {
-
- VIEW_UNSPECIFIED = 0;
-
-
-
-
-
-
-
-
- BASIC = 1;
-
-
-
-
-
- FULL = 2;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string name = 1;
-
- oneof payload_type {
-
-
-
- AppEngineHttpRequest app_engine_http_request = 3;
-
-
-
- HttpRequest http_request = 11;
-
-
-
-
-
-
-
- PullMessage pull_message = 13;
- }
-
-
-
-
-
- google.protobuf.Timestamp schedule_time = 4;
-
-
-
- google.protobuf.Timestamp create_time = 5;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- google.protobuf.Duration dispatch_deadline = 12;
-
-
-
-
- int32 dispatch_count = 6;
-
- int32 response_count = 7;
-
-
-
-
- Attempt first_attempt = 8;
-
- Attempt last_attempt = 9;
-
-
- View view = 10;
- }
- message Attempt {
-
-
-
- google.protobuf.Timestamp schedule_time = 1;
-
-
-
- google.protobuf.Timestamp dispatch_time = 2;
-
-
-
- google.protobuf.Timestamp response_time = 3;
-
-
-
-
- google.rpc.Status response_status = 4;
- }
|