Help Center> Cloud Search Service> API Reference> Cluster Management> Querying Tags of a Specified Cluster
Updated on 2023-04-14 GMT+08:00

Querying Tags of a Specified Cluster

Function

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

Debugging

You can debug this API through automatic authentication in API Explorer or use the SDK sample code generated by API Explorer.

URI

GET /v1.0/{project_id}/{resource_type}/{cluster_id}/tags

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Project ID. For details about how to obtain the project ID and name, see Obtaining the Project ID and Name.

cluster_id

Yes

String

ID of the cluster you want to query.

resource_type

Yes

String

Resource type. Currently, its value can only be css-cluster.

Request Parameters

None

Response Parameters

Status code: 200

Table 2 Response body parameters

Parameter

Type

Description

tags

Array of ShowTagsTagsResp objects

List of cluster tags

Table 3 ShowTagsTagsResp

Parameter

Type

Description

key

String

Tag key

value

String

Tag value

Example Requests

None

Example Responses

Status code: 200

Request succeeded.

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

Status Codes

Status Code

Description

200

Request succeeded.

400

Invalid request.

The client should modify the request instead of re-initiating it.

404

The requested resource could not be found.

The client should not repeat the request without modifications.

Error Codes

See Error Codes.