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
Copy file name to clipboardExpand all lines: vertexai/_genai/types/common.py
+106Lines changed: 106 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4703,6 +4703,68 @@ class ReasoningEngineSpecPackageSpecDict(TypedDict, total=False):
4703
4703
]
4704
4704
4705
4705
4706
+
class ReasoningEngineSpecSourceCodeSpecDeveloperConnectConfig(_common.BaseModel):
4707
+
"""Specifies the configuration for fetching source code from a Git repository that is managed by Developer Connect. This includes the repository, revision, and directory to use."""
4708
+
4709
+
dir: Optional[str] = Field(
4710
+
default=None,
4711
+
description="""Required. Directory, relative to the source root, in which to run the build.""",
4712
+
)
4713
+
git_repository_link: Optional[str] = Field(
4714
+
default=None,
4715
+
description="""Required. The Developer Connect Git repository link, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*`.""",
4716
+
)
4717
+
revision: Optional[str] = Field(
4718
+
default=None,
4719
+
description="""Required. The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.""",
4720
+
)
4721
+
4722
+
4723
+
class ReasoningEngineSpecSourceCodeSpecDeveloperConnectConfigDict(
4724
+
TypedDict, total=False
4725
+
):
4726
+
"""Specifies the configuration for fetching source code from a Git repository that is managed by Developer Connect. This includes the repository, revision, and directory to use."""
4727
+
4728
+
dir: Optional[str]
4729
+
"""Required. Directory, relative to the source root, in which to run the build."""
4730
+
4731
+
git_repository_link: Optional[str]
4732
+
"""Required. The Developer Connect Git repository link, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*`."""
4733
+
4734
+
revision: Optional[str]
4735
+
"""Required. The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref."""
description="""Required. The Developer Connect configuration thats defines the specific repository, revision, and directory to use as the source code root.""",
4750
+
)
4751
+
4752
+
4753
+
class ReasoningEngineSpecSourceCodeSpecDeveloperConnectSourceDict(
4754
+
TypedDict, total=False
4755
+
):
4756
+
"""Specifies source code to be fetched from a Git repository managed through the Developer Connect service."""
description="""Specifies the configuration for fetching source code from a Git repository that is managed by Developer Connect. This includes the repository, revision, and directory to use.""",
5521
+
)
5443
5522
entrypoint_module: Optional[str] = Field(
5444
5523
default=None,
5445
5524
description="""The entrypoint module to be used for the Agent Engine
@@ -5572,6 +5651,11 @@ class CreateAgentEngineConfigDict(TypedDict, total=False):
"""Specifies the configuration for fetching source code from a Git repository that is managed by Developer Connect. This includes the repository, revision, and directory to use."""
5658
+
5575
5659
entrypoint_module: Optional[str]
5576
5660
"""The entrypoint module to be used for the Agent Engine
5577
5661
This field only used when source_packages is specified."""
@@ -6200,6 +6284,12 @@ class UpdateAgentEngineConfig(_common.BaseModel):
description="""Specifies the configuration for fetching source code from a Git repository that is managed by Developer Connect. This includes the repository, revision, and directory to use.""",
6292
+
)
6203
6293
entrypoint_module: Optional[str] = Field(
6204
6294
default=None,
6205
6295
description="""The entrypoint module to be used for the Agent Engine
@@ -6337,6 +6427,11 @@ class UpdateAgentEngineConfigDict(TypedDict, total=False):
"""Specifies the configuration for fetching source code from a Git repository that is managed by Developer Connect. This includes the repository, revision, and directory to use."""
6434
+
6340
6435
entrypoint_module: Optional[str]
6341
6436
"""The entrypoint module to be used for the Agent Engine
6342
6437
This field only used when source_packages is specified."""
@@ -13446,6 +13541,12 @@ class AgentEngineConfig(_common.BaseModel):
description="""Specifies the configuration for fetching source code from a Git repository that is managed by Developer Connect. This includes the repository, revision, and directory to use.""",
13549
+
)
13449
13550
entrypoint_module: Optional[str] = Field(
13450
13551
default=None,
13451
13552
description="""The entrypoint module to be used for the Agent Engine
@@ -13610,6 +13711,11 @@ class AgentEngineConfigDict(TypedDict, total=False):
"""Specifies the configuration for fetching source code from a Git repository that is managed by Developer Connect. This includes the repository, revision, and directory to use."""
13718
+
13613
13719
entrypoint_module: Optional[str]
13614
13720
"""The entrypoint module to be used for the Agent Engine
13615
13721
This field only used when source_packages is specified."""
0 commit comments