123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- // Copyright 2021 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- syntax = "proto3";
- package google.cloud.aiplatform.v1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/httpbody.proto";
- import "google/api/resource.proto";
- import "google/protobuf/struct.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 = "PredictionServiceProto";
- option java_package = "com.google.cloud.aiplatform.v1";
- option php_namespace = "Google\\Cloud\\AIPlatform\\V1";
- option ruby_package = "Google::Cloud::AIPlatform::V1";
- // A service for online predictions and explanations.
- service PredictionService {
- option (google.api.default_host) = "aiplatform.googleapis.com";
- option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
- // Perform an online prediction.
- rpc Predict(PredictRequest) returns (PredictResponse) {
- option (google.api.http) = {
- post: "/v1/{endpoint=projects/*/locations/*/endpoints/*}:predict"
- body: "*"
- };
- option (google.api.method_signature) = "endpoint,instances,parameters";
- }
- }
- // Request message for [PredictionService.Predict][google.cloud.aiplatform.v1.PredictionService.Predict].
- message PredictRequest {
- // Required. The name of the Endpoint requested to serve the prediction.
- // Format:
- // `projects/{project}/locations/{location}/endpoints/{endpoint}`
- string endpoint = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "aiplatform.googleapis.com/Endpoint"
- }
- ];
- // Required. The instances that are the input to the prediction call.
- // A DeployedModel may have an upper limit on the number of instances it
- // supports per request, and when it is exceeded the prediction call errors
- // in case of AutoML Models, or, in case of customer created Models, the
- // behaviour is as documented by that Model.
- // The schema of any single instance may be specified via Endpoint's
- // DeployedModels' [Model's][google.cloud.aiplatform.v1.DeployedModel.model]
- // [PredictSchemata's][google.cloud.aiplatform.v1.Model.predict_schemata]
- // [instance_schema_uri][google.cloud.aiplatform.v1.PredictSchemata.instance_schema_uri].
- repeated google.protobuf.Value instances = 2 [(google.api.field_behavior) = REQUIRED];
- // The parameters that govern the prediction. The schema of the parameters may
- // be specified via Endpoint's DeployedModels' [Model's ][google.cloud.aiplatform.v1.DeployedModel.model]
- // [PredictSchemata's][google.cloud.aiplatform.v1.Model.predict_schemata]
- // [parameters_schema_uri][google.cloud.aiplatform.v1.PredictSchemata.parameters_schema_uri].
- google.protobuf.Value parameters = 3;
- }
- // Response message for [PredictionService.Predict][google.cloud.aiplatform.v1.PredictionService.Predict].
- message PredictResponse {
- // The predictions that are the output of the predictions call.
- // The schema of any single prediction may be specified via Endpoint's
- // DeployedModels' [Model's ][google.cloud.aiplatform.v1.DeployedModel.model]
- // [PredictSchemata's][google.cloud.aiplatform.v1.Model.predict_schemata]
- // [prediction_schema_uri][google.cloud.aiplatform.v1.PredictSchemata.prediction_schema_uri].
- repeated google.protobuf.Value predictions = 1;
- // ID of the Endpoint's DeployedModel that served this prediction.
- string deployed_model_id = 2;
- }
|