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
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -6198,13 +6198,13 @@ class ReasoningEngineSpecSourceCodeSpecDeveloperConnectConfig(_common.BaseModel)
6198
6198
This includes the repository, revision, and directory to use.
6199
6199
"""
6200
6200
6201
-
dir: Optional[str] = Field(
6201
+
git_repository_link: Optional[str] = Field(
6202
6202
default=None,
6203
-
description="""Required. Directory, relative to the source root, in which to run the build.""",
6203
+
description="""Required. The Developer Connect Git repository link, formatted as `projects/{project_id}/locations/{location_id}/connections/{connection_id}/gitRepositoryLink/{repository_link_id}`.""",
6204
6204
)
6205
-
git_repository_link: Optional[str] = Field(
6205
+
dir: Optional[str] = Field(
6206
6206
default=None,
6207
-
description="""Required. The Developer Connect Git repository link, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*`.""",
6207
+
description="""Required. Directory, relative to the source root, in which to run the build.""",
6208
6208
)
6209
6209
revision: Optional[str] = Field(
6210
6210
default=None,
@@ -6220,12 +6220,12 @@ class ReasoningEngineSpecSourceCodeSpecDeveloperConnectConfigDict(
6220
6220
This includes the repository, revision, and directory to use.
6221
6221
"""
6222
6222
6223
+
git_repository_link: Optional[str]
6224
+
"""Required. The Developer Connect Git repository link, formatted as `projects/{project_id}/locations/{location_id}/connections/{connection_id}/gitRepositoryLink/{repository_link_id}`."""
6225
+
6223
6226
dir: Optional[str]
6224
6227
"""Required. Directory, relative to the source root, in which to run the build."""
6225
6228
6226
-
git_repository_link: Optional[str]
6227
-
"""Required. The Developer Connect Git repository link, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*`."""
6228
-
6229
6229
revision: Optional[str]
6230
6230
"""Required. The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref."""
0 commit comments