You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Optional. DNS peering configurations. When specified, Vertex AI will attempt to configure DNS peering zones in the tenant project VPC to resolve the specified domains using the target network's Cloud DNS. The user must grant the dns.peer role to the Vertex AI Service Agent on the target project."""
@@ -6429,7 +6429,7 @@ class ReasoningEngineContextSpecMemoryBankConfigDict(TypedDict, total=False):
6429
6429
6430
6430
6431
6431
class ReasoningEngineContextSpec(_common.BaseModel):
6432
-
"""The configuration for agent engine sub-resources to manage context."""
6432
+
"""Configuration for how Agent Engine sub-resources should manage context."""
"""Optional. Specification for a Memory Bank, which manages memories for the Agent Engine."""
@@ -6756,10 +6756,7 @@ class ReasoningEngineSpecSourceCodeSpecDeveloperConnectSourceDict(
6756
6756
6757
6757
6758
6758
class ReasoningEngineSpecSourceCodeSpecImageSpec(_common.BaseModel):
6759
-
"""The image spec for building an image (within a single build step).
6760
-
6761
-
It is based on the config file (i.e. Dockerfile) in the source directory.
6762
-
"""
6759
+
"""The image spec for building an image (within a single build step), based on the config file (i.e. Dockerfile) in the source directory."""
6763
6760
6764
6761
build_args: Optional[dict[str, str]] = Field(
6765
6762
default=None,
@@ -6768,10 +6765,7 @@ class ReasoningEngineSpecSourceCodeSpecImageSpec(_common.BaseModel):
6768
6765
6769
6766
6770
6767
class ReasoningEngineSpecSourceCodeSpecImageSpecDict(TypedDict, total=False):
6771
-
"""The image spec for building an image (within a single build step).
6772
-
6773
-
It is based on the config file (i.e. Dockerfile) in the source directory.
6774
-
"""
6768
+
"""The image spec for building an image (within a single build step), based on the config file (i.e. Dockerfile) in the source directory."""
6775
6769
6776
6770
build_args: Optional[dict[str, str]]
6777
6771
"""Optional. Build arguments to be used. They will be passed through --build-arg flags."""
@@ -6880,6 +6874,27 @@ class ReasoningEngineSpecSourceCodeSpecDict(TypedDict, total=False):
6880
6874
]
6881
6875
6882
6876
6877
+
class ReasoningEngineSpecContainerSpec(_common.BaseModel):
6878
+
"""Specification for deploying from a container image."""
6879
+
6880
+
image_uri: Optional[str] = Field(
6881
+
default=None,
6882
+
description="""Required. The Artifact Registry Docker image URI (e.g., us-central1-docker.pkg.dev/my-project/my-repo/my-image:tag) of the container image that is to be run on each worker replica.""",
6883
+
)
6884
+
6885
+
6886
+
class ReasoningEngineSpecContainerSpecDict(TypedDict, total=False):
6887
+
"""Specification for deploying from a container image."""
6888
+
6889
+
image_uri: Optional[str]
6890
+
"""Required. The Artifact Registry Docker image URI (e.g., us-central1-docker.pkg.dev/my-project/my-repo/my-image:tag) of the container image that is to be run on each worker replica."""
0 commit comments