Network Load Balancer API, gRPC: TargetGroupService.List
Retrieves the list of TargetGroup resources in the specified folder.
gRPC request
rpc List (ListTargetGroupsRequest) returns (ListTargetGroupsResponse)
ListTargetGroupsRequest
{
"folderId": "string",
"pageSize": "int64",
"pageToken": "string",
"filter": "string"
}
Field |
Description |
folderId |
string Required field. ID of the folder to list target groups in. |
pageSize |
int64 The maximum number of results per page to return. If the number of available |
pageToken |
string Page token. To get the next page of results, set |
filter |
string A filter expression that filters resources listed in the response.
|
ListTargetGroupsResponse
{
"targetGroups": [
{
"id": "string",
"folderId": "string",
"createdAt": "google.protobuf.Timestamp",
"name": "string",
"description": "string",
"labels": "string",
"regionId": "string",
"targets": [
{
"subnetId": "string",
"address": "string"
}
]
}
],
"nextPageToken": "string"
}
Field |
Description |
targetGroups[] |
List of TargetGroup resources. |
nextPageToken |
string This token allows you to get the next page of results for list requests. If the number of results |
TargetGroup
A TargetGroup resource. For more information, see Target groups and resources.
Field |
Description |
id |
string Output only. ID of the target group. |
folderId |
string ID of the folder that the target group belongs to. |
createdAt |
Output only. Creation timestamp in RFC3339 |
name |
string Name of the target group. |
description |
string Description of the target group. 0-256 characters long. |
labels |
string Resource labels as |
regionId |
string ID of the region where the target group resides. |
targets[] |
A list of targets in the target group. |
Target
A Target resource. For more information, see Target groups and resources.
Field |
Description |
subnetId |
string ID of the subnet that targets are connected to. |
address |
string IP address of the target. |