Help Center> MapReduce Service> API Reference> API V1.1> Tag Management APIs> Querying Tags of a Specified Cluster
Updated on 2023-10-24 GMT+08:00

Querying Tags of a Specified Cluster

Function

This API is used to query tags of a specified cluster.

Constraints

None

Debugging

You can debug this API in API Explorer. Automatic authentication is supported. API Explorer can automatically generate sample SDK code and provide the sample SDK code debugging.

URI

GET /v1.1/{project_id}/clusters/{cluster_id}/tags
Table 1 URI parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Project ID. For details about how to obtain the project ID, see Obtaining a Project ID.

cluster_id

Yes

String

Cluster ID For details about how to obtain the cluster ID, see Obtaining the MRS Cluster Information.

Request Parameters

None

Response Parameters

Status code: 200

Table 2 Response parameter

Parameter

Type

Description

tags

Array of TagPlain objects

Tag list. For details, see Table 3.

Table 3 TagPlain parameters

Parameter

Type

Description

key

String

Key. A tag key cannot contain special characters (=*<>\,|/) or start or end with a space.

value

String

Tag value. A tag value cannot contain special characters (=*<>\,|/) or start or end with a space.

Example Request

GET /v1.1/{project_id}/clusters/{cluster_id}/tags

Example Response

Status code: 200

The operation is successful.

{
  "tags" : [ {
    "key" : "key1",
    "value" : "value1"
  }, {
    "key" : "key2",
    "value" : "value3"
  } ]
}

Status Codes

Table 4 describes the status code.

Table 4 Status code

Status Code

Description

200

The operation is successful.

Error Codes

See Error Codes.