e04ed9c211
CF: Deploy Dev Docs / deploy (push) Has been cancelled
Sync Labels / build (push) Has been cancelled
tests / unit tests (macos-latest) (push) Has been cancelled
tests / unit tests (windows-latest) (push) Has been cancelled
tests / unit tests (ubuntu-latest) (push) Has been cancelled
71 lines
2.4 KiB
YAML
71 lines
2.4 KiB
YAML
# Copyright 2025 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
kind: source
|
|
name: spanner-source
|
|
type: spanner
|
|
project: ${SPANNER_PROJECT}
|
|
instance: ${SPANNER_INSTANCE}
|
|
database: ${SPANNER_DATABASE}
|
|
dialect: ${SPANNER_DIALECT:googlesql}
|
|
---
|
|
kind: tool
|
|
name: execute_sql
|
|
type: spanner-execute-sql
|
|
source: spanner-source
|
|
description: Use this tool to execute DML SQL. Please use the ${SPANNER_DIALECT:googlesql} interface for Spanner.
|
|
---
|
|
kind: tool
|
|
name: execute_sql_dql
|
|
type: spanner-execute-sql
|
|
source: spanner-source
|
|
description: Use this tool to execute DQL SQL. Please use the ${SPANNER_DIALECT:googlesql} interface for Spanner.
|
|
readOnly: true
|
|
---
|
|
kind: tool
|
|
name: list_tables
|
|
type: spanner-list-tables
|
|
source: spanner-source
|
|
description: Lists detailed schema information (object type, columns, constraints, indexes) as JSON for user-created tables (ordinary or partitioned). Filters by a comma-separated list of names. If names are omitted, lists all tables in user schemas. The output can be 'simple' (table names only) or 'detailed' (full schema).
|
|
---
|
|
kind: tool
|
|
name: list_graphs
|
|
type: spanner-list-graphs
|
|
source: spanner-source
|
|
description: Lists detailed graph schema information (node tables, edge tables, labels and property declarations) as JSON for user-created graphs. Filters by a comma-separated list of graph names. If names are omitted, lists all graphs. The output can be 'simple' (graph names only) or 'detailed' (full schema).
|
|
---
|
|
kind: tool
|
|
name: search_catalog
|
|
type: spanner-search-catalog
|
|
source: spanner-source
|
|
description: Searches for data assets (eg. Spanner instances, tables, views, or databases) in catalog based on the provided search query
|
|
---
|
|
kind: toolset
|
|
name: data
|
|
tools:
|
|
- execute_sql
|
|
- execute_sql_dql
|
|
- list_tables
|
|
- list_graphs
|
|
---
|
|
kind: toolset
|
|
name: data_with_discovery
|
|
tools:
|
|
- execute_sql
|
|
- execute_sql_dql
|
|
- list_tables
|
|
- list_graphs
|
|
- search_catalog
|
|
|