Querying Tags of a Specified Project
Function
This API is used to query tags of a specified project.
URI
GET /v3/{project_id}/tags
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID of a tenant in a region. To obtain this value, see Obtaining a Project ID. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
offset |
No |
Integer |
Index offset.
|
limit |
No |
Integer |
Maximum records to be queried.
|
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
X-Auth-Token |
Yes |
String |
User token. |
Response Parameters
Status code: 200
Parameter |
Type |
Description |
---|---|---|
tags |
Array of Tag objects |
All tags. |
total_count |
Integer |
Total number of records. |
Parameter |
Type |
Description |
---|---|---|
type |
String |
Tag type
|
key |
String |
Tag key. The tag key must be specified and can include a maximum of 36 Unicode characters. The key is case-sensitive and can contain digits, uppercase letters, lowercase letters, underscores (_), and hyphens (-). |
values |
Array of strings |
Tag values. The value can include a maximum of 43 Unicode characters and can also be an empty string. The value is case-sensitive and can contain digits, uppercase letters, lowercase letters, underscores (_), periods (.), and hyphens (-). |
Example Request
GET https://gaussdb-nosql.ap-southeast-1.myhuaweicloud.com/v3/0549b4a43100d4f32f51c01c2fe4acdb/tags?offset=1&limit=10
Example Response
Status code: 200
Successful request
{ "tags" : [ { "key" : "key1", "values" : [ "value1", "value2" ], "type" : "user" }, { "key" : "key2", "values" : [ "value1", "value2" ], "type" : "system" } ], "total_count" : 2 }
Status Codes
For details, see Status Codes.
Error Codes
For details, see Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot