bindings_available
Creates, updates, deletes, gets or lists a bindings_available resource.
Overview
| Name | bindings_available |
| Type | Resource |
| Id | google.agentregistry.bindings_available |
Fields
The following fields are returned by SELECT queries:
- fetch_available
| Name | Datatype | Description |
|---|---|---|
bindings | array | The list of Bindings. |
nextPageToken | string | A token identifying a page of results the server should return. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
fetch_available | select | projectsId, locationsId | sourceIdentifier, targetIdentifier, pageSize, pageToken | Fetches 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.
| Name | Datatype | Description |
|---|---|---|
locationsId | string | |
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string | |
sourceIdentifier | string | |
targetIdentifier | string |
SELECT examples
- fetch_available
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 }}'
;