endpoints
Creates, updates, deletes, gets or lists an endpoints resource.
Overview
| Name | endpoints |
| Type | Resource |
| Id | google.agentregistry.endpoints |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
name | string | Identifier. The resource name of the Endpoint. Format: projects/{project}/locations/{location}/endpoints/{endpoint}. |
attributes | object | Output only. Attributes of the Endpoint. Valid values: * agentregistry.googleapis.com/system/RuntimeReference: {"uri": "//..."} - the URI of the underlying resource hosting the Endpoint, for example, the GKE Deployment. |
createTime | string (google-datetime) | Output only. Create time. |
description | string | Output only. Description of an Endpoint. |
displayName | string | Output only. Display name for the Endpoint. |
endpointId | string | Output only. A stable, globally unique identifier for Endpoint. |
interfaces | array | Required. The connection details for the Endpoint. |
updateTime | string (google-datetime) | Output only. Update time. |
| Name | Datatype | Description |
|---|---|---|
name | string | Identifier. The resource name of the Endpoint. Format: projects/{project}/locations/{location}/endpoints/{endpoint}. |
attributes | object | Output only. Attributes of the Endpoint. Valid values: * agentregistry.googleapis.com/system/RuntimeReference: {"uri": "//..."} - the URI of the underlying resource hosting the Endpoint, for example, the GKE Deployment. |
createTime | string (google-datetime) | Output only. Create time. |
description | string | Output only. Description of an Endpoint. |
displayName | string | Output only. Display name for the Endpoint. |
endpointId | string | Output only. A stable, globally unique identifier for Endpoint. |
interfaces | array | Required. The connection details for the Endpoint. |
updateTime | string (google-datetime) | Output only. Update time. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | projectsId, locationsId, endpointsId | Gets details of a single Endpoint. | |
list | select | projectsId, locationsId | filter, pageToken, pageSize | Lists Endpoints in a given project and location. |
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 |
|---|---|---|
endpointsId | string | |
locationsId | string | |
projectsId | string | |
filter | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- get
- list
Gets details of a single Endpoint.
SELECT
name,
attributes,
createTime,
description,
displayName,
endpointId,
interfaces,
updateTime
FROM google.agentregistry.endpoints
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND endpointsId = '{{ endpointsId }}' -- required
;
Lists Endpoints in a given project and location.
SELECT
name,
attributes,
createTime,
description,
displayName,
endpointId,
interfaces,
updateTime
FROM google.agentregistry.endpoints
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND filter = '{{ filter }}'
AND pageToken = '{{ pageToken }}'
AND pageSize = '{{ pageSize }}'
;