Help Center> Resource Access Manager> API Reference> APIs> Tag Management> Querying Number of Resource Shares by Tag
Updated on 2024-03-15 GMT+08:00

Querying Number of Resource Shares by Tag

Function

This API is used to query the number of resource shares by tag.

Debugging

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

URI

POST /v1/resource-shares/resource-instances/count

Request Parameters

Table 1 Request header parameters

Parameter

Mandatory

Type

Description

X-Security-Token

No

String

Security token (session token) for temporary security credentials. This parameter is mandatory when you make an API call using temporary security credentials.

Table 2 Request body parameters

Parameter

Mandatory

Type

Description

without_any_tag

No

Boolean

If this parameter is set to true, all resources without tags are queried.

tags

No

Array of TagFilter objects

A maximum of 20 keys can be queried at a time, and each key can contain a maximum of 20 values. The structure body must be included. The tag key cannot be left blank or be an empty string. Each tag key must be unique, and each tag value for a key must be unique. Resources that contain all keys and one or multiple values listed in tags will be found and returned. If no tag filtering criteria is specified, all data is returned.

Array Length: 0 - 20

matches

No

Array of Match objects

Matching field used for attaching tags to resource shares.

Array Length: 0 - 20

Table 3 TagFilter

Parameter

Mandatory

Type

Description

key

Yes

String

Identifier or name of the tag key.

Minimum: 1

Maximum: 128

values

No

Array of strings

List of values for the tag key.

Minimum: 0

Maximum: 255

Array Length: 0 - 20

Table 4 Match

Parameter

Mandatory

Type

Description

key

Yes

String

Key. The value can be policy, organizational-unit, or account.

Minimum: 0

Maximum: 128

value

Yes

String

Value. Each value can contain a maximum of 255 characters.

Minimum: 0

Maximum: 255

Response Parameters

Status code: 200

Table 5 Response body parameters

Parameter

Type

Description

total_count

Integer

Total number of records.

Minimum: 0

Maximum: 1000000

Example Requests

Querying the number of resource shares by tag

POST https://{hostname}/v1/resource-shares/resource-instances/count

{
  "without_any_tag" : true,
  "tags" : [ {
    "key" : "string",
    "values" : [ "string" ]
  } ],
  "matches" : [ {
    "key" : "string",
    "value" : "string"
  } ]
}

Example Responses

Status code: 200

Request succeeded.

{
  "total_count" : 100
}

Status Codes

Status Code

Description

200

Request succeeded.

Error Codes

See Error Codes.