123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- syntax = "proto3";
- package google.cloud.aiplatform.v1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/aiplatform/v1/encryption_spec.proto";
- import "google/cloud/aiplatform/v1/explanation.proto";
- import "google/cloud/aiplatform/v1/io.proto";
- import "google/cloud/aiplatform/v1/machine_resources.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 = "EndpointProto";
- option java_package = "com.google.cloud.aiplatform.v1";
- option php_namespace = "Google\\Cloud\\AIPlatform\\V1";
- option ruby_package = "Google::Cloud::AIPlatform::V1";
- message Endpoint {
- option (google.api.resource) = {
- type: "aiplatform.googleapis.com/Endpoint"
- pattern: "projects/{project}/locations/{location}/endpoints/{endpoint}"
- };
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- string display_name = 2 [(google.api.field_behavior) = REQUIRED];
-
- string description = 3;
-
-
-
- repeated DeployedModel deployed_models = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
-
-
- map<string, int32> traffic_split = 5;
-
-
- string etag = 6;
-
-
-
-
-
-
-
- map<string, string> labels = 7;
-
- google.protobuf.Timestamp create_time = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp update_time = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- EncryptionSpec encryption_spec = 10;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string network = 13 [(google.api.resource_reference) = {
- type: "compute.googleapis.com/Network"
- }];
-
-
-
-
-
- bool enable_private_service_connect = 17 [deprecated = true];
-
-
-
-
- string model_deployment_monitoring_job = 14 [
- (google.api.field_behavior) = OUTPUT_ONLY,
- (google.api.resource_reference) = {
- type: "aiplatform.googleapis.com/ModelDeploymentMonitoringJob"
- }
- ];
-
- PredictRequestResponseLoggingConfig predict_request_response_logging_config = 18;
- }
- message DeployedModel {
-
-
-
-
-
- oneof prediction_resources {
-
-
- DedicatedResources dedicated_resources = 7;
-
-
- AutomaticResources automatic_resources = 8;
- }
-
-
-
-
- string id = 1 [(google.api.field_behavior) = IMMUTABLE];
-
-
-
-
-
- string model = 2 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "aiplatform.googleapis.com/Model"
- }
- ];
-
- string model_version_id = 18 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string display_name = 3;
-
- google.protobuf.Timestamp create_time = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
-
-
-
- ExplanationSpec explanation_spec = 9;
-
-
-
-
-
-
-
- string service_account = 11;
-
-
-
-
-
-
-
- bool disable_container_logging = 15;
-
-
-
-
-
-
- bool enable_access_logging = 13;
-
-
-
- PrivateEndpoints private_endpoints = 14 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message PrivateEndpoints {
-
- string predict_http_uri = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string explain_http_uri = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string health_http_uri = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string service_attachment = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message PredictRequestResponseLoggingConfig {
-
- bool enabled = 1;
-
-
- double sampling_rate = 2;
-
-
-
-
-
-
- BigQueryDestination bigquery_destination = 3;
- }
|