Skip to content

Commit 32f3753

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

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

google/cloud/aiplatform/v1/reasoning_engine.proto

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

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

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

0 commit comments

Comments
 (0)