123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- syntax = "proto3";
- package google.cloud.scheduler.v1;
- import "google/api/resource.proto";
- import "google/cloud/scheduler/v1/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/scheduler/v1;scheduler";
- option java_multiple_files = true;
- option java_outer_classname = "JobProto";
- option java_package = "com.google.cloud.scheduler.v1";
- message Job {
- option (google.api.resource) = {
- type: "cloudscheduler.googleapis.com/Job"
- pattern: "projects/{project}/locations/{location}/jobs/{job}"
- };
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- ENABLED = 1;
-
-
-
- PAUSED = 2;
-
-
- DISABLED = 3;
-
-
-
- UPDATE_FAILED = 4;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string name = 1;
-
-
-
-
-
- string description = 2;
-
-
-
- oneof target {
-
- PubsubTarget pubsub_target = 4;
-
- AppEngineHttpTarget app_engine_http_target = 5;
-
- HttpTarget http_target = 6;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string schedule = 20;
-
-
-
-
-
-
-
-
-
- string time_zone = 21;
-
- google.protobuf.Timestamp user_update_time = 9;
-
- State state = 10;
-
- google.rpc.Status status = 11;
-
-
-
- google.protobuf.Timestamp schedule_time = 17;
-
- google.protobuf.Timestamp last_attempt_time = 18;
-
- RetryConfig retry_config = 19;
-
-
-
-
-
-
-
-
-
-
- google.protobuf.Duration attempt_deadline = 22;
- }
- message RetryConfig {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- int32 retry_count = 1;
-
-
-
-
-
-
-
- google.protobuf.Duration max_retry_duration = 2;
-
-
-
-
- google.protobuf.Duration min_backoff_duration = 3;
-
-
-
-
- google.protobuf.Duration max_backoff_duration = 4;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- int32 max_doublings = 5;
- }
|