123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349 |
- syntax = "proto3";
- package google.cloud.notebooks.v1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/protobuf/timestamp.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/notebooks/v1;notebooks";
- option java_multiple_files = true;
- option java_outer_classname = "ExecutionProto";
- option java_package = "com.google.cloud.notebooks.v1";
- option (google.api.resource_definition) = {
- type: "aiplatform.googleapis.com/Tensorboard"
- pattern: "projects/{project}/locations/{location}/tensorboards/{tensorboard}"
- };
- message ExecutionTemplate {
-
-
- enum ScaleTier {
-
- SCALE_TIER_UNSPECIFIED = 0;
-
-
- BASIC = 1;
-
- STANDARD_1 = 2;
-
- PREMIUM_1 = 3;
-
- BASIC_GPU = 4;
-
- BASIC_TPU = 5;
-
-
-
-
-
-
-
- CUSTOM = 6;
- }
-
- enum SchedulerAcceleratorType {
-
- SCHEDULER_ACCELERATOR_TYPE_UNSPECIFIED = 0;
-
- NVIDIA_TESLA_K80 = 1;
-
- NVIDIA_TESLA_P100 = 2;
-
- NVIDIA_TESLA_V100 = 3;
-
- NVIDIA_TESLA_P4 = 4;
-
- NVIDIA_TESLA_T4 = 5;
-
- NVIDIA_TESLA_A100 = 10;
-
- TPU_V2 = 6;
-
- TPU_V3 = 7;
- }
-
-
-
-
- message SchedulerAcceleratorConfig {
-
- SchedulerAcceleratorType type = 1;
-
- int64 core_count = 2;
- }
-
- enum JobType {
-
- JOB_TYPE_UNSPECIFIED = 0;
-
-
- VERTEX_AI = 1;
-
-
- DATAPROC = 2;
- }
-
- message DataprocParameters {
-
-
- string cluster = 1;
- }
-
- message VertexAIParameters {
-
-
-
-
-
-
-
-
-
-
- string network = 1;
-
-
-
- map<string, string> env = 2;
- }
-
-
- ScaleTier scale_tier = 1 [
- deprecated = true,
- (google.api.field_behavior) = REQUIRED
- ];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string master_type = 2;
-
-
- SchedulerAcceleratorConfig accelerator_config = 3;
-
-
-
-
-
- map<string, string> labels = 4;
-
-
-
-
- string input_notebook_file = 5;
-
-
-
-
- string container_image_uri = 6;
-
-
-
-
- string output_notebook_folder = 7;
-
-
-
-
-
- string params_yaml_file = 8;
-
- string parameters = 9;
-
-
-
- string service_account = 10;
-
- JobType job_type = 11;
-
-
- oneof job_parameters {
-
- DataprocParameters dataproc_parameters = 12;
-
- VertexAIParameters vertex_ai_parameters = 13;
- }
-
-
-
- string kernel_spec = 14;
-
-
-
-
- string tensorboard = 15 [(google.api.resource_reference) = {
- type: "aiplatform.googleapis.com/Tensorboard"
- }];
- }
- message Execution {
- option (google.api.resource) = {
- type: "notebooks.googleapis.com/Execution"
- pattern: "projects/{project}/location/{location}/executions/{execution}"
- };
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- QUEUED = 1;
-
- PREPARING = 2;
-
- RUNNING = 3;
-
- SUCCEEDED = 4;
-
-
- FAILED = 5;
-
-
- CANCELLING = 6;
-
-
- CANCELLED = 7;
-
-
- EXPIRED = 9;
-
- INITIALIZING = 10;
- }
-
- ExecutionTemplate execution_template = 1;
-
-
- string name = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string display_name = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string description = 4;
-
- google.protobuf.Timestamp create_time = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp update_time = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- State state = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string output_notebook_file = 8;
-
- string job_uri = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
|