--- catalog_title: Bigtable Tools catalog_description: Interact with Bigtable to retrieve data and execute SQL catalog_icon: /adk-docs/integrations/assets/bigtable.png catalog_tags: ["data", "google"] --- # Bigtable tool for ADK
Supported in ADKPython v1.12.0
These are a set of tools aimed to provide integration with Bigtable, namely: * **`list_instances`**: Fetches Bigtable instances in a Google Cloud project. * **`get_instance_info`**: Fetches metadata instance information in a Google Cloud project. * **`list_clusters`**: Fetches Bigtable clusters in a Bigtable instance in a Google Cloud project. * **`get_cluster_info`**: Fetches metadata cluster information in a Bigtable instance in a Google Cloud project. * **`list_tables`**: Fetches tables in a GCP Bigtable instance. * **`get_table_info`**: Fetches metadata table information in a GCP Bigtable. * **`execute_sql`**: Runs a SQL query in Bigtable table and fetch the result. They are packaged in the toolset `BigtableToolset`. ```py --8<-- "examples/python/snippets/tools/built-in-tools/bigtable.py" ```