Skip to content

Commit 080b57f

Browse files
Google APIscopybara-github
authored andcommitted
feat: Add container_spec to Reasoning Engine public protos
PiperOrigin-RevId: 891818094
1 parent 32f3753 commit 080b57f

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

google/cloud/aiplatform/v1beta1/reasoning_engine.proto

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,12 +204,23 @@ message ReasoningEngineSpec {
204204
}
205205
}
206206

207+
// Specification for deploying from a container image.
208+
message ContainerSpec {
209+
// Required. The Artifact Registry Docker image URI (e.g.,
210+
// us-central1-docker.pkg.dev/my-project/my-repo/my-image:tag) of the
211+
// container image that is to be run on each worker replica.
212+
string image_uri = 1 [(google.api.field_behavior) = REQUIRED];
213+
}
214+
207215
// Defines the source for the deployment.
208216
// The `package_spec` field should not be set if `deployment_source` is
209217
// specified.
210218
oneof deployment_source {
211219
// Deploy from source code files with a defined entrypoint.
212220
SourceCodeSpec source_code_spec = 11;
221+
222+
// Deploy from a container image with a defined entrypoint and commands.
223+
ContainerSpec container_spec = 15;
213224
}
214225

215226
// Optional. The service account that the Reasoning Engine artifact runs as.

0 commit comments

Comments
 (0)