All Products
Search
Document Center

:QueryIpcQuota - Query IPC usage

Last Updated:Dec 26, 2025

Queries the usage of Inter-Process Communication (IPC).

Debug

You can call this operation directly in OpenAPI Explorer. This eliminates the need to calculate signatures. After a successful call, OpenAPI Explorer automatically generates an SDK code example.

Authorization information

The following table describes the authorization information that is required to call this operation. You can add this information to the Action element of a Resource Access Management (RAM) access policy statement to grant a RAM user or RAM role the permissions to call this operation. The columns are described as follows:

  • **Operation**: The specific permission.
  • **Access level**: The access level of each operation. Valid values: Write, Read, and List.
  • **Resource type**: The resource type on which you can grant permissions for the operation.
    • An asterisk ( * ) indicates a required resource type.
    • If an operation does not support resource-level authorization, the resource type is indicated by All resources.
  • **Condition key**: The condition key defined by the cloud product.
  • **Associated operation**: Other permissions that are required for the operation to succeed. The caller must also be granted the permissions for the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
ice:QueryIpcQuotaRetrieve
*All resources
*
    None
None

Request parameters

NameTypeRequiredDescriptionExample
StartTimestringNo

The start time. Specify the time in UTC. The format is yyyy-MM-ddTHH:mm:ssZ.

2025-05-08T08:52:00Z
EndTimestringNo

The end time. Specify the time in UTC. The format is yyyy-MM-ddTHH:mm:ssZ. The interval between the start time and the end time cannot exceed 180 days.

2025-05-09T08:52:00Z
CapabilitystringNo

The capability. The default value is understand. Valid values:

  • understand: understanding
  • understand-reid: understanding with person re-identification (ReID)
  • search: search
understand
PageNointegerNo

The page number. The default value is 1.

1
PageSizeintegerNo

The number of entries to return on each page. The default value is 10. The maximum value is 50.

10

Response parameters

NameTypeDescriptionExample
object

The response schema.

RequestIdstring

The request ID.

******11-DB8D-4A9A-875B-275798******
IpcQuotaInfosarray<object>

A list of IPC usage information.

IpcQuotaInfoobject

The IPC usage information.

Capabilitystring

The capability. Valid values:

  • understand: understanding
  • understand-reid: understanding with person re-identification (ReID)
  • search: search
understand
DateTimestring

The corresponding time. The time is in UTC. The format is yyyy-MM-ddTHH:mm:ssZ.

2025-12-21T16:00:00Z
MaxQuotalong

The maximum available quota.

10000
ConsumedQuotalong

The consumed quota.

32
Totalstring

The total number of records.

39

Examples

Sample success response

Format: JSON

{
  "RequestId": "******11-DB8D-4A9A-875B-275798******",
  "IpcQuotaInfos": [
    {
      "Capability": "understand",
      "DateTime": "2025-12-21T16:00:00Z",
      "MaxQuota": 10000,
      "ConsumedQuota": 32
    }
  ],
  "Total": 39
}

Error codes

For more information, see the Error Center.

Change history

Change timeChange summaryOperation
2025-12-23Added the OpenAPI.View change details