All Products
Search
Document Center

ApsaraDB for OceanBase (Deprecated):DescribeParametersHistory

Last Updated:May 20, 2026

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

There is currently no authorization information disclosed in the API.

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