feat: Add Bigtable source and tool (#418)

# Add Bigtable support

A `bigtable` source can be added as the following example

```
sources:
  test-bigtable-source:
    kind: "bigtable"
    project: "sample-project"
    instance: "sample-instance"
```

A `bigtable` tool can be added as below

```
tools:
  get-test-tool-data:
    kind: bigtable-sql
    source: test-bigtable-source
    description: Some description
    statement: SELECT * FROM `test-table` WHERE address['state'] = @state;
    parameters:
      - name: state
        type: string
        description: Filter by state
```

---------

Co-authored-by: Yuan <45984206+Yuan325@users.noreply.github.com>
Co-authored-by: Kurtis Van Gent <31518063+kurtisvg@users.noreply.github.com>
Co-authored-by: Wenxin Du <117315983+duwenxin99@users.noreply.github.com>
This commit is contained in:
An Nguyen
2025-04-18 09:48:28 -07:00
committed by GitHub
parent 91f4402a71
commit ae53b8eeff
12 changed files with 876 additions and 0 deletions

View File

@@ -45,3 +45,4 @@ run:
- mysql
- http
- alloydb_ai_nl
- bigtable