Creating Tags in Batches
Function
This API is used to create tags in batches.
URI
POST /v5/{project_id}/{resource_type}/{resource_id}/tags/create
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID |
resource_type |
Yes |
String |
Resource type defined by TMS. When HSS calls the API, the resource type is HSS. |
resource_id |
Yes |
String |
Resource ID defined by TMS. When HSS calls the API, the resource ID is the quota ID. |
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
X-Auth-Token |
Yes |
String |
IAM token. It can be obtained by calling the IAM API used to obtain an IAM token. The value of X-Subject-Token in the response header is a token. |
Content-Type |
No |
String |
Default value: application/json; charset=utf-8 |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
tags |
Yes |
Array of ResourceTagInfo objects |
Tag List |
Response Parameters
Status code: 200
success
None
Example Requests
Create a tag key TESTKEY20220831190155 (the tag value is 2) and a tag key test (the tag value is hss).
POST https://{endpoint}/v5/05e1e8b7ba8010dd2f80c01070a8d4cd/hss/fbaa9aca-2b5f-11ee-8c64-fa163e139e02/tags/create { "tags" : [ { "key" : "TESTKEY20220831190155", "value" : "2" }, { "key" : "test", "value" : "hss" } ] }
Example Responses
None
Status Codes
Status Code |
Description |
---|---|
200 |
success |
400 |
Invalid parameter. |
401 |
Authentication failed. |
403 |
Insufficient permission. |
404 |
Resources not found. |
500 |
System error. |
Error Codes
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.