123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- syntax = "proto3";
- package google.cloud.aiplatform.v1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/protobuf/struct.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.AIPlatform.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1;aiplatform";
- option java_multiple_files = true;
- option java_outer_classname = "ExecutionProto";
- option java_package = "com.google.cloud.aiplatform.v1";
- option php_namespace = "Google\\Cloud\\AIPlatform\\V1";
- option ruby_package = "Google::Cloud::AIPlatform::V1";
- message Execution {
- option (google.api.resource) = {
- type: "aiplatform.googleapis.com/Execution"
- pattern: "projects/{project}/locations/{location}/metadataStores/{metadata_store}/executions/{execution}"
- };
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- NEW = 1;
-
- RUNNING = 2;
-
- COMPLETE = 3;
-
- FAILED = 4;
-
- CACHED = 5;
-
- CANCELLED = 6;
- }
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string display_name = 2;
-
-
-
-
- State state = 6;
-
-
- string etag = 9;
-
-
-
-
-
-
-
- map<string, string> labels = 10;
-
- google.protobuf.Timestamp create_time = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp update_time = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- string schema_title = 13;
-
-
-
-
-
- string schema_version = 14;
-
-
-
- google.protobuf.Struct metadata = 15;
-
- string description = 16;
- }
|