doc-exports/docs/ecs/api-ref/en-us_topic_0065817706.html
Zaoxu, Li 4edaa4a4cc ECS API 20231016 version
Reviewed-by: Pristromskaia, Margarita <margarita.pristromskaia@t-systems.com>
Co-authored-by: Zaoxu, Li <lizaoxu@huawei.com>
Co-committed-by: Zaoxu, Li <lizaoxu@huawei.com>
2024-04-29 11:04:13 +00:00

7.1 KiB

Querying the extra_specs Value for an ECS Flavor

Function

This API is used to query the extra_specs value for a specified ECS flavor.

URI

GET /v2.1/{project_id}/flavors/{flavor_id}/os-extra_specs

GET /v2/{project_id}/flavors/{flavor_id}/os-extra_specs

Table 1 describes the parameters in the URI.
Table 1 Parameter description

Parameter

Mandatory

Description

project_id

Yes

Specifies the project ID.

flavors_id

Yes

Specifies the flavor ID.

Request

None

Response

Table 2 describes the response parameters.

Table 2 Response parameters

Parameter

Type

Description

extra_specs

Map<String,String>

Specifies the key-value pair of an ECS flavor.

For details about the returned fields, see the os_extra_specs field description in "Querying Details About Flavors and Extended Flavor Information".

Example Request

Query the extra_specs details of a specified ECS flavor.

GET https://{endpoint}/v2/743b4c0428d94531b9f2add666642e6b/flavors/c3.2xlarge.2/os-extra_specs
GET https://{endpoint}/v2.1/743b4c0428d94531b9f2add666642e6b/flavors/c3.2xlarge.2/os-extra_specs

Example Response

{
    "extra_specs": {
        "ecs:performancetype": "computingv3",
        "resource_type": "IOoptimizedC3_2"
    }
}