Skip to main content

connections_custom_tool_names

Creates, updates, deletes, gets or lists a connections_custom_tool_names resource.

Overview

Nameconnections_custom_tool_names
TypeResource
Idgoogle.connectors.connections_custom_tool_names

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
toolNamesarrayList of custom tools.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_custom_tool_namesselectprojectsId, locationsId, connectionsIdLists 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.

NameDatatypeDescription
connectionsIdstring
locationsIdstring
projectsIdstring

SELECT examples

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
;