Skip to main content

bindings_available

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

Overview

Namebindings_available
TypeResource
Idgoogle.agentregistry.bindings_available

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
bindingsarrayThe list of Bindings.
nextPageTokenstringA token identifying a page of results the server should return.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
fetch_availableselectprojectsId, locationsIdsourceIdentifier, targetIdentifier, pageSize, pageTokenFetches available Bindings.

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
locationsIdstring
projectsIdstring
pageSizeinteger (int32)
pageTokenstring
sourceIdentifierstring
targetIdentifierstring

SELECT examples

Fetches available Bindings.

SELECT
bindings,
nextPageToken
FROM google.agentregistry.bindings_available
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND sourceIdentifier = '{{ sourceIdentifier }}'
AND targetIdentifier = '{{ targetIdentifier }}'
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
;