All Products
Search
Document Center

ApsaraDB for OceanBase:DescribeParametersHistory

Last Updated:Nov 14, 2025

You can call this operation to query the modification history of cluster or tenant parameters.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:

  • Operation: the value that you can use in the Action element to specify the operation on a resource.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
    • For mandatory resource types, indicate with a prefix of * .
    • If the permissions cannot be granted at the resource level, All Resources is used in the Resource type column of the operation.
  • Condition Key: the condition key that is defined by the cloud service.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
oceanbase:DescribeParametersHistoryget
*All Resources
*
    none
none

Request parameters

ParameterTypeRequiredDescriptionExample
InstanceIdstringYes

The ID of the OceanBase cluster.

ob317v4uif****
DimensionstringYes

The type of the parameter.
Valid values: CLUSTER and TENANT.

TENANT
DimensionValuestringNo

The resource ID of the parameter type.
You can leave this parameter unspecified when you call this operation to query cluster parameters. In the case of tenant parameters, pass the tenant ID.

t4qx8****
StartTimestringYes

The start time of querying the slow query execution. The value must be UTC time in the format of YYYY-MM-DDThh:mm:ssZ.

2021-06-13 15:40:43
EndTimestringYes

The end time of the time range for querying the SQL execution history.
The value must be UTC time in the format of YYYY-MM-DDThh:mm:ssZ.

2021-09-13 15:40:43
PageSizeintegerYes

The number of rows to return on each page.

  • Maximum value: 100.
  • Default value: 10
10
PageNumberintegerYes

The number of the page to return.

  • Start value: 1
  • Default value: 1
1

Response parameters

ParameterTypeDescriptionExample
object

The return result of the request.

RequestIdstring

The ID of the request.

EE205C00-30E4-XXXX-XXXX-87E3A8A2AA0C
Respondobject

The list of parameter modification records.

TotalCountinteger

The total count, which takes effect in a pagination query.

5
PageNumberinteger

The number of the page to return.

  • Start value: 1
  • Default value: 1
1
Parametersarray<object>

The information about parameters.

Parametersobject

The information about parameters.

Statusstring

The modification status of the parameter. Valid values:

  • APPLIED: The parameter was modified.
  • SCHEDULING: The parameter was to be modified.
APPLIED
OldValuestring

The value of the parameter before the modification.

10
UpdateTimestring

The time when the parameter modification took effect.

2024-11-26T08:03:34Z
CreateTimestring

The time when the parameter modification was initiated.

2024-11-26T08:03:34Z
DimensionValuestring

The resource ID of the parameter type. When you called this operation to query the modification history of cluster parameters, the value is DEFAULT_DIMENSION_VALUE. When you called this operation to query the modification history of tenant parameters, the value is the tenant ID.

t69uo********
Namestring

The name of the parameter.

connect_timeout
NewValuestring

The value of the parameter after the modification.

30

Examples

Sample success responses

JSONformat

{
  "RequestId": "EE205C00-30E4-XXXX-XXXX-87E3A8A2AA0C",
  "Respond": {
    "TotalCount": 5,
    "PageNumber": 1,
    "Parameters": [
      {
        "Status": "APPLIED",
        "OldValue": 10,
        "UpdateTime": "2024-11-26T08:03:34Z",
        "CreateTime": "2024-11-26T08:03:34Z",
        "DimensionValue": "t69uo********",
        "Name": "connect_timeout",
        "NewValue": 30
      }
    ]
  }
}

Error codes

HTTP status codeError codeError message
500InternalErrorThe request processing has failed due to some unknown error.

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
2024-10-29The Error code has changed. The response structure of the API has changedView Change Details