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>
9.7 KiB
Modifying ECS Metadata with a Specified Key
Function
This API is used to modify the ECS metadata with a specified key.
- If the metadata does not contain the target field, the field is automatically added.
- If the metadata contains the target field, the field value is automatically updated.
Constraints
An ECS must be in active, stopped, paused, or suspended state, which is specified by OS-EXT-STS:vm_state.
URI
PUT /v2.1/{project_id}/servers/{server_id}/metadata/{key}
PUT /v2/{project_id}/servers/{server_id}/metadata/{key}
Request
Table 2 describes the request parameters.
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
meta |
Yes |
Object |
Specifies the user-defined metadata key pair. For a metadata key: It contains a maximum of 255 Unicode characters and cannot be left blank. A key can contain uppercase letters (A-Z), lowercase letters (a-z), digits (0-9), hyphens (-), underscores (_), colons (:), and periods (.). For a metadata value: It contains a maximum of 255 Unicode characters. |
Response
Example Request
Set the metadata with a specified key of an ECS.
PUT https://{endpoint}/v2/{project_id}/servers/{server_id}/metadata/{key} PUT https://{endpoint}/v2.1/{project_id}/servers/{server_id}/metadata/{key} { "meta":{ "key":"value" } }
Example Response
{ "meta":{ "key":"value" } }