File tree Expand file tree Collapse file tree
src/google/adk/tools/bigquery Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515from __future__ import annotations
1616
1717import logging
18- from typing import Any
18+ from typing import Any , Optional
1919
2020from google .api_core import exceptions as api_exceptions
2121from google .auth .credentials import Credentials
@@ -42,11 +42,11 @@ def search_catalog(
4242 * ,
4343 credentials : Credentials ,
4444 settings : BigQueryToolConfig ,
45- location : str | None = None ,
45+ location : Optional [ str ] = None ,
4646 page_size : int = 10 ,
47- project_ids_filter : list [str ] | None = None ,
48- dataset_ids_filter : list [str ] | None = None ,
49- types_filter : list [str ] | None = None ,
47+ project_ids_filter : Optional [ list [str ]] = None ,
48+ dataset_ids_filter : Optional [ list [str ]] = None ,
49+ types_filter : Optional [ list [str ]] = None ,
5050) -> dict [str , Any ]:
5151 """Finds BigQuery datasets and tables using natural language semantic search via Dataplex.
5252
You can’t perform that action at this time.
0 commit comments