123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622 |
- syntax = "proto3";
- package google.cloud.aiplatform.v1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/aiplatform/v1/deployed_model_ref.proto";
- import "google/cloud/aiplatform/v1/encryption_spec.proto";
- import "google/cloud/aiplatform/v1/env_var.proto";
- import "google/cloud/aiplatform/v1/explanation.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 = "ModelProto";
- option java_package = "com.google.cloud.aiplatform.v1";
- option php_namespace = "Google\\Cloud\\AIPlatform\\V1";
- option ruby_package = "Google::Cloud::AIPlatform::V1";
- message Model {
- option (google.api.resource) = {
- type: "aiplatform.googleapis.com/Model"
- pattern: "projects/{project}/locations/{location}/models/{model}"
- };
-
-
- message ExportFormat {
-
- enum ExportableContent {
-
- EXPORTABLE_CONTENT_UNSPECIFIED = 0;
-
-
-
- ARTIFACT = 1;
-
-
-
- IMAGE = 2;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string id = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- repeated ExportableContent exportable_contents = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
-
- enum DeploymentResourcesType {
-
- DEPLOYMENT_RESOURCES_TYPE_UNSPECIFIED = 0;
-
-
- DEDICATED_RESOURCES = 1;
-
-
- AUTOMATIC_RESOURCES = 2;
-
-
- SHARED_RESOURCES = 3;
- }
-
- string name = 1;
-
-
-
-
- string version_id = 28 [
- (google.api.field_behavior) = IMMUTABLE,
- (google.api.field_behavior) = OUTPUT_ONLY
- ];
-
-
-
-
-
-
-
-
-
- repeated string version_aliases = 29;
-
- google.protobuf.Timestamp version_create_time = 31 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp version_update_time = 32 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- string display_name = 2 [(google.api.field_behavior) = REQUIRED];
-
- string description = 3;
-
- string version_description = 30;
-
-
-
- PredictSchemata predict_schemata = 4;
-
-
-
-
-
-
-
-
-
-
- string metadata_schema_uri = 5 [(google.api.field_behavior) = IMMUTABLE];
-
-
-
- google.protobuf.Value metadata = 6 [(google.api.field_behavior) = IMMUTABLE];
-
-
- repeated ExportFormat supported_export_formats = 20 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string training_pipeline = 7 [
- (google.api.field_behavior) = OUTPUT_ONLY,
- (google.api.resource_reference) = {
- type: "aiplatform.googleapis.com/TrainingPipeline"
- }
- ];
-
-
-
-
-
- ModelContainerSpec container_spec = 9 [(google.api.field_behavior) = INPUT_ONLY];
-
-
-
- string artifact_uri = 26 [(google.api.field_behavior) = IMMUTABLE];
-
-
-
-
-
-
-
-
-
-
-
- repeated DeploymentResourcesType supported_deployment_resources_types = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated string supported_input_storage_formats = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated string supported_output_storage_formats = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp create_time = 13 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp update_time = 14 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- repeated DeployedModelRef deployed_models = 15 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ExplanationSpec explanation_spec = 23;
-
-
- string etag = 16;
-
-
-
-
-
-
-
- map<string, string> labels = 17;
-
-
- EncryptionSpec encryption_spec = 24;
-
-
- ModelSourceInfo model_source_info = 38 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- string metadata_artifact = 44 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message PredictSchemata {
-
-
-
-
-
-
-
-
-
-
- string instance_schema_uri = 1 [(google.api.field_behavior) = IMMUTABLE];
-
-
-
-
-
-
-
-
-
-
-
- string parameters_schema_uri = 2 [(google.api.field_behavior) = IMMUTABLE];
-
-
-
-
-
-
-
-
-
-
- string prediction_schema_uri = 3 [(google.api.field_behavior) = IMMUTABLE];
- }
- message ModelContainerSpec {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string image_uri = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.field_behavior) = IMMUTABLE
- ];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated string command = 2 [(google.api.field_behavior) = IMMUTABLE];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated string args = 3 [(google.api.field_behavior) = IMMUTABLE];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated EnvVar env = 4 [(google.api.field_behavior) = IMMUTABLE];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated Port ports = 5 [(google.api.field_behavior) = IMMUTABLE];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string predict_route = 6 [(google.api.field_behavior) = IMMUTABLE];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string health_route = 7 [(google.api.field_behavior) = IMMUTABLE];
- }
- message Port {
-
-
- int32 container_port = 3;
- }
- message ModelSourceInfo {
-
- enum ModelSourceType {
-
- MODEL_SOURCE_TYPE_UNSPECIFIED = 0;
-
- AUTOML = 1;
-
- CUSTOM = 2;
-
- BQML = 3;
- }
-
- ModelSourceType source_type = 1;
- }
|