Reviewed-by: Pristromskaia, Margarita <margarita.pristromskaia@t-systems.com> Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com> Co-authored-by: wanghuijuan738 <wanghuijuan738@huawei.com> Co-committed-by: wanghuijuan738 <wanghuijuan738@huawei.com>
13 KiB
Querying the List of ECS Groups
Function
This API is used to query the list of ECS groups.
URI
GET /v2.1/{project_id}/os-server-groups
GET /v2/{project_id}/os-server-groups
Parameters in the following table can be used as URI parameters to filter query results.
Usage: /v2/{project_id}/os-server-groups?
Request
None
Response
Table 2 describes the response parameters.
Parameter |
Type |
Description |
|---|---|---|
server_groups |
Array of objects |
Specifies the ECS group information. For details, see Table 3. |
Parameter |
Type |
Description |
|---|---|---|
id |
String |
Specifies the ECS group UUID. |
name |
String |
Specifies the ECS group name. |
members |
Array of strings |
Specifies the ECSs in an ECS group. |
metadata |
Object |
Specifies the ECS group metadata. |
project_id |
String |
Specifies the tenant ID in UUID format for the ECS group. This parameter is supported in microversion 2.13 and later. |
policies |
Array of strings |
Specifies the policies associated with the ECS group. Options:
|
user_id |
String |
Specifies the user ID in UUID format for the ECS group. This parameter is supported in microversion 2.13 and later. |
Example Request
Query a list of ECS groups.
GET https://{endpoint}/v2/9c53a566cb3443ab910cf0daebca90c4/os-server-groups
GET https://{endpoint}/v2.1/9c53a566cb3443ab910cf0daebca90c4/os-server-groups
Example Response
{
"server_groups": [
{
"id": "616fb98f-46ca-475e-917e-2563e5a8cd19",
"name": "test",
"policies": ["anti-affinity"],
"members": [],
"metadata": {},
"project_id": "9c53a566cb3443ab910cf0daebca90c4"
}
]
}