File tree Expand file tree Collapse file tree
google/cloud/aiplatform/v1 Expand file tree Collapse file tree Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments