123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566 |
- syntax = "proto3";
- package google.cloud.batch.v1alpha;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/batch/v1alpha/task.proto";
- import "google/protobuf/duration.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.Batch.V1Alpha";
- option go_package = "google.golang.org/genproto/googleapis/cloud/batch/v1alpha;batch";
- option java_multiple_files = true;
- option java_outer_classname = "JobProto";
- option java_package = "com.google.cloud.batch.v1alpha";
- option objc_class_prefix = "GCB";
- option php_namespace = "Google\\Cloud\\Batch\\V1alpha";
- option ruby_package = "Google::Cloud::Batch::V1alpha";
- message Job {
- option (google.api.resource) = {
- type: "batch.googleapis.com/Job"
- pattern: "projects/{project}/locations/{location}/jobs/{job}"
- };
-
-
-
- enum SchedulingPolicy {
-
- SCHEDULING_POLICY_UNSPECIFIED = 0;
-
- AS_SOON_AS_POSSIBLE = 1;
- }
-
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string uid = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
- int64 priority = 3;
-
- repeated TaskGroup task_groups = 4 [(google.api.field_behavior) = REQUIRED];
-
- SchedulingPolicy scheduling_policy = 5;
-
-
-
-
- repeated JobDependency dependencies = 6;
-
- AllocationPolicy allocation_policy = 7;
-
-
-
-
-
-
-
-
-
-
- map<string, string> labels = 8;
-
- JobStatus status = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- JobNotification notification = 10 [deprecated = true];
-
- google.protobuf.Timestamp create_time = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp update_time = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- LogsPolicy logs_policy = 13;
-
- repeated JobNotification notifications = 14;
- }
- message LogsPolicy {
-
- enum Destination {
-
- DESTINATION_UNSPECIFIED = 0;
-
- CLOUD_LOGGING = 1;
-
- PATH = 2;
- }
-
- Destination destination = 1;
-
-
-
- string logs_path = 2;
- }
- message JobDependency {
-
- enum Type {
-
- TYPE_UNSPECIFIED = 0;
-
- SUCCEEDED = 1;
-
- FAILED = 2;
-
- FINISHED = 3;
- }
-
-
-
-
-
- map<string, Type> items = 1;
- }
- message JobStatus {
-
- message InstanceStatus {
-
- string machine_type = 1;
-
- AllocationPolicy.ProvisioningModel provisioning_model = 2;
-
- int64 task_pack = 3;
- }
-
- message TaskGroupStatus {
-
-
- map<string, int64> counts = 1;
-
- repeated InstanceStatus instances = 2;
- }
-
- enum State {
- STATE_UNSPECIFIED = 0;
-
- QUEUED = 1;
-
-
-
- SCHEDULED = 2;
-
-
- RUNNING = 3;
-
- SUCCEEDED = 4;
-
- FAILED = 5;
-
-
- DELETION_IN_PROGRESS = 6;
- }
-
- State state = 1;
-
- repeated StatusEvent status_events = 2;
-
-
- map<string, TaskGroupStatus> task_groups = 4;
-
- google.protobuf.Duration run_duration = 5;
- }
- message JobNotification {
-
-
-
- message Message {
-
- Type type = 1;
-
- JobStatus.State new_job_state = 2;
-
- TaskStatus.State new_task_state = 3;
- }
-
- enum Type {
-
- TYPE_UNSPECIFIED = 0;
-
- JOB_STATE_CHANGED = 1;
-
- TASK_STATE_CHANGED = 2;
- }
-
-
-
-
-
- string pubsub_topic = 1;
-
-
- Message message = 2;
- }
- message AllocationPolicy {
- message LocationPolicy {
-
-
-
-
-
-
-
-
-
-
-
-
- repeated string allowed_locations = 1;
-
-
-
- repeated string denied_locations = 2;
- }
-
-
-
-
- message Disk {
-
- oneof data_source {
-
- string image = 4;
-
- string snapshot = 5;
- }
-
-
- string type = 1;
-
-
-
-
- int64 size_gb = 2;
-
-
-
- string disk_interface = 6;
- }
-
-
- message AttachedDisk {
- oneof attached {
- Disk new_disk = 1;
-
- string existing_disk = 2;
- }
-
-
-
-
- string device_name = 3;
- }
-
- message Accelerator {
-
-
- string type = 1;
-
- int64 count = 2;
-
- bool install_gpu_drivers = 3 [deprecated = true];
- }
-
-
- message InstancePolicy {
-
- repeated string allowed_machine_types = 1 [deprecated = true];
-
- string machine_type = 2;
-
-
-
-
- string min_cpu_platform = 3;
-
- ProvisioningModel provisioning_model = 4;
-
- repeated Accelerator accelerators = 5;
-
-
- repeated AttachedDisk disks = 6;
-
- string reservation = 7;
- }
-
- message InstancePolicyOrTemplate {
- oneof policy_template {
-
- InstancePolicy policy = 1;
-
-
-
- string instance_template = 2;
- }
-
-
-
-
- bool install_gpu_drivers = 3;
- }
-
- message NetworkInterface {
-
- string network = 1;
-
- string subnetwork = 2;
-
-
-
-
-
-
-
- bool no_external_ip_address = 3;
- }
-
- message NetworkPolicy {
-
- repeated NetworkInterface network_interfaces = 1;
- }
-
- enum ProvisioningModel {
-
- PROVISIONING_MODEL_UNSPECIFIED = 0;
-
- STANDARD = 1;
-
- SPOT = 2;
-
-
-
-
-
-
- PREEMPTIBLE = 3;
- }
-
- LocationPolicy location = 1;
-
- InstancePolicy instance = 2 [deprecated = true];
-
-
- repeated InstancePolicyOrTemplate instances = 8;
-
- repeated string instance_templates = 3 [deprecated = true];
-
- repeated ProvisioningModel provisioning_models = 4 [deprecated = true];
-
- string service_account_email = 5 [deprecated = true];
-
- ServiceAccount service_account = 9;
-
-
-
-
-
-
-
- map<string, string> labels = 6;
-
- NetworkPolicy network = 7;
- }
- message TaskGroup {
- option (google.api.resource) = {
- type: "batch.googleapis.com/TaskGroup"
- pattern: "projects/{project}/locations/{location}/jobs/{job}/taskGroups/{task_group}"
- };
-
- enum SchedulingPolicy {
-
- SCHEDULING_POLICY_UNSPECIFIED = 0;
-
- AS_SOON_AS_POSSIBLE = 1;
- }
-
-
-
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- TaskSpec task_spec = 3 [(google.api.field_behavior) = REQUIRED];
-
-
- int64 task_count = 4;
-
-
- int64 parallelism = 5;
-
- SchedulingPolicy scheduling_policy = 6;
-
-
- AllocationPolicy allocation_policy = 7;
-
-
-
-
-
-
- map<string, string> labels = 8;
-
-
-
-
-
-
-
-
-
-
-
- repeated Environment task_environments = 9;
-
-
-
- int64 task_count_per_node = 10;
-
-
-
- bool require_hosts_file = 11;
-
-
- bool permissive_ssh = 12;
- }
- message ServiceAccount {
-
-
-
-
- string email = 1;
-
-
- repeated string scopes = 2 [deprecated = true];
- }
|