123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- syntax = "proto3";
- package google.cloud.automl.v1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/automl/v1/annotation_payload.proto";
- import "google/cloud/automl/v1/data_items.proto";
- import "google/cloud/automl/v1/io.proto";
- import "google/longrunning/operations.proto";
- option csharp_namespace = "Google.Cloud.AutoML.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/automl/v1;automl";
- option java_multiple_files = true;
- option java_outer_classname = "PredictionServiceProto";
- option java_package = "com.google.cloud.automl.v1";
- option php_namespace = "Google\\Cloud\\AutoMl\\V1";
- option ruby_package = "Google::Cloud::AutoML::V1";
- service PredictionService {
- option (google.api.default_host) = "automl.googleapis.com";
- option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- rpc Predict(PredictRequest) returns (PredictResponse) {
- option (google.api.http) = {
- post: "/v1/{name=projects/*/locations/*/models/*}:predict"
- body: "*"
- };
- option (google.api.method_signature) = "name,payload,params";
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- rpc BatchPredict(BatchPredictRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- post: "/v1/{name=projects/*/locations/*/models/*}:batchPredict"
- body: "*"
- };
- option (google.api.method_signature) = "name,input_config,output_config,params";
- option (google.longrunning.operation_info) = {
- response_type: "BatchPredictResult"
- metadata_type: "OperationMetadata"
- };
- }
- }
- message PredictRequest {
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "automl.googleapis.com/Model"
- }
- ];
-
-
- ExamplePayload payload = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- map<string, string> params = 3;
- }
- message PredictResponse {
-
-
-
- repeated AnnotationPayload payload = 1;
-
-
-
-
-
-
-
-
- ExamplePayload preprocessed_input = 3;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- map<string, string> metadata = 2;
- }
- message BatchPredictRequest {
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "automl.googleapis.com/Model"
- }
- ];
-
- BatchPredictInputConfig input_config = 3 [(google.api.field_behavior) = REQUIRED];
-
-
- BatchPredictOutputConfig output_config = 4 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- map<string, string> params = 5;
- }
- message BatchPredictResult {
-
-
-
-
-
-
-
-
-
-
-
- map<string, string> metadata = 1;
- }
|