123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- syntax = "proto3";
- package google.cloud.aiplatform.logging;
- import "google/rpc/status.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/logging;logging";
- option java_multiple_files = true;
- option java_outer_classname = "PredictionProto";
- option java_package = "com.google.cloud.aiplatform.logging";
- message OnlinePredictionLogEntry {
-
-
- string endpoint = 1;
-
- string deployed_model_id = 2;
-
- int64 instance_count = 3;
-
-
- int64 prediction_count = 4;
-
-
- google.rpc.Status error = 5;
- }
|