@@ -15722,8 +15722,14 @@ class RunQueryJobAgentEngineConfig(_common.BaseModel):
1572215722 query: Optional[str] = Field(
1572315723 default=None, description="""The query to send to the agent engine."""
1572415724 )
15725- gcs_bucket: Optional[str] = Field(
15726- default=None, description="""The GCS bucket to use for the query."""
15725+ output_gcs_uri: Optional[str] = Field(
15726+ default=None,
15727+ description="""The GCS URI to use for the output.
15728+ If it is a file, the system use this file to store the response.
15729+ If it represents a directory, the system automatically generate a file
15730+ for the response.
15731+ In both cases, the input query will be stored in the same directory under
15732+ the same file name prefix as the output file.""",
1572715733 )
1572815734
1572915735
@@ -15736,8 +15742,13 @@ class RunQueryJobAgentEngineConfigDict(TypedDict, total=False):
1573615742 query: Optional[str]
1573715743 """The query to send to the agent engine."""
1573815744
15739- gcs_bucket: Optional[str]
15740- """The GCS bucket to use for the query."""
15745+ output_gcs_uri: Optional[str]
15746+ """The GCS URI to use for the output.
15747+ If it is a file, the system use this file to store the response.
15748+ If it represents a directory, the system automatically generate a file
15749+ for the response.
15750+ In both cases, the input query will be stored in the same directory under
15751+ the same file name prefix as the output file."""
1574115752
1574215753
1574315754RunQueryJobAgentEngineConfigOrDict = Union[
0 commit comments