forked from docs/doc-exports
Reviewed-by: gtema <artem.goncharov@gmail.com> Co-authored-by: Qin Ying, Fan <fanqinying@huawei.com> Co-committed-by: Qin Ying, Fan <fanqinying@huawei.com>
9.3 KiB
9.3 KiB
Querying Tags of a Tenant's Resource
Function
This API is used to obtain tags of resources of a tenant based on the tenant ID and resource type.
Request
- Parameter description
- Example request
GET https://127.0.0.1:7443/v1/{project_id}/endpoint_service/tags
or https://127.0.0.1:7443/v1/{project_id}/endpoint/tags GET /v1/{project_id}/{resource_type}/tags
Response
- Parameter description
Table 2 Response parameters Parameter
Mandatory
Type
Description
tags
Yes
List<resource_tag>
Lists the tags.
Table 3 Data structure of field resource_tag Parameter
Mandatory
Type
Description
key
Yes
String
Specifies the tag key.
values
Yes
List<String>
Lists the tag values.
- Example response
{ "tags": [ { "key": "key1", "values": [ "*value1", "value2" ] } ] }
Status Code
For details about status codes, see Status Code.
Parent topic: Tag Function