Skip to content

Commit

Permalink
feat: add disable_container_logging to BatchPredictionJob in aiplatfo…
Browse files Browse the repository at this point in the history
…rm v1,v1beta1 batch_prediction_job.proto

PiperOrigin-RevId: 513711185
  • Loading branch information
Google APIs authored and Copybara-Service committed Mar 3, 2023
1 parent 87d52d2 commit 4a6262f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions google/cloud/aiplatform/v1/batch_prediction_job.proto
Original file line number Diff line number Diff line change
Expand Up @@ -443,4 +443,13 @@ message BatchPredictionJob {
// is set, then all resources created by the BatchPredictionJob will be
// encrypted with the provided encryption key.
EncryptionSpec encryption_spec = 24;

// For custom-trained Models and AutoML Tabular Models, the container of the
// DeployedModel instances will send `stderr` and `stdout` streams to
// Stackdriver Logging by default. Please note that the logs incur cost,
// which are subject to [Cloud Logging
// pricing](https://cloud.google.com/stackdriver/pricing).
//
// User can disable container logging by setting this flag to true.
bool disable_container_logging = 34;
}
9 changes: 9 additions & 0 deletions google/cloud/aiplatform/v1beta1/batch_prediction_job.proto
Original file line number Diff line number Diff line change
Expand Up @@ -460,4 +460,13 @@ message BatchPredictionJob {
// Output only. The running status of the model monitoring pipeline.
google.rpc.Status model_monitoring_status = 32
[(google.api.field_behavior) = OUTPUT_ONLY];

// For custom-trained Models and AutoML Tabular Models, the container of the
// DeployedModel instances will send `stderr` and `stdout` streams to
// Stackdriver Logging by default. Please note that the logs incur cost,
// which are subject to [Cloud Logging
// pricing](https://cloud.google.com/stackdriver/pricing).
//
// User can disable container logging by setting this flag to true.
bool disable_container_logging = 34;
}

0 comments on commit 4a6262f

Please sign in to comment.