connections_custom_tool_names
Creates, updates, deletes, gets or lists a connections_custom_tool_names resource.
Overview
| Name | connections_custom_tool_names |
| Type | Resource |
| Id | google.connectors.connections_custom_tool_names |
Fields
The following fields are returned by SELECT queries:
- list_custom_tool_names
| Name | Datatype | Description |
|---|---|---|
toolNames | array | List of custom tools. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_custom_tool_names | select | projectsId, locationsId, connectionsId | Lists custom tool names. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
connectionsId | string | |
locationsId | string | |
projectsId | string |
SELECT examples
- list_custom_tool_names
Lists custom tool names.
SELECT
toolNames
FROM google.connectors.connections_custom_tool_names
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND connectionsId = '{{ connectionsId }}' -- required
;