Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions google/genai/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -16598,8 +16598,8 @@ class _GetBatchJobParameters(_common.BaseModel):
name: Optional[str] = Field(
default=None,
description="""A fully-qualified BatchJob resource name or ID.
Example: "projects/.../locations/.../batchPredictionJobs/456"
or "456" when project and location are initialized in the client.
Example: "projects/.../locations/.../batchPredictionJobs/123"
or "123" when project and location are initialized in the client.
""",
)
config: Optional[GetBatchJobConfig] = Field(
Expand All @@ -16612,8 +16612,8 @@ class _GetBatchJobParametersDict(TypedDict, total=False):

name: Optional[str]
"""A fully-qualified BatchJob resource name or ID.
Example: "projects/.../locations/.../batchPredictionJobs/456"
or "456" when project and location are initialized in the client.
Example: "projects/.../locations/.../batchPredictionJobs/123"
or "123" when project and location are initialized in the client.
"""

config: Optional[GetBatchJobConfigDict]
Expand Down Expand Up @@ -16651,8 +16651,8 @@ class _CancelBatchJobParameters(_common.BaseModel):
name: Optional[str] = Field(
default=None,
description="""A fully-qualified BatchJob resource name or ID.
Example: "projects/.../locations/.../batchPredictionJobs/456"
or "456" when project and location are initialized in the client.
Example: "projects/.../locations/.../batchPredictionJobs/123"
or "123" when project and location are initialized in the client.
""",
)
config: Optional[CancelBatchJobConfig] = Field(
Expand All @@ -16665,8 +16665,8 @@ class _CancelBatchJobParametersDict(TypedDict, total=False):

name: Optional[str]
"""A fully-qualified BatchJob resource name or ID.
Example: "projects/.../locations/.../batchPredictionJobs/456"
or "456" when project and location are initialized in the client.
Example: "projects/.../locations/.../batchPredictionJobs/123"
or "123" when project and location are initialized in the client.
"""

config: Optional[CancelBatchJobConfigDict]
Expand Down Expand Up @@ -16782,8 +16782,8 @@ class _DeleteBatchJobParameters(_common.BaseModel):
name: Optional[str] = Field(
default=None,
description="""A fully-qualified BatchJob resource name or ID.
Example: "projects/.../locations/.../batchPredictionJobs/456"
or "456" when project and location are initialized in the client.
Example: "projects/.../locations/.../batchPredictionJobs/123"
or "123" when project and location are initialized in the client.
""",
)
config: Optional[DeleteBatchJobConfig] = Field(
Expand All @@ -16796,8 +16796,8 @@ class _DeleteBatchJobParametersDict(TypedDict, total=False):

name: Optional[str]
"""A fully-qualified BatchJob resource name or ID.
Example: "projects/.../locations/.../batchPredictionJobs/456"
or "456" when project and location are initialized in the client.
Example: "projects/.../locations/.../batchPredictionJobs/123"
or "123" when project and location are initialized in the client.
"""

config: Optional[DeleteBatchJobConfigDict]
Expand Down
Loading