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