All Products
Search
Document Center

ApsaraDB RDS:DescribeParameterGroup

Last Updated:Jul 05, 2024

Queries the information about a parameter template.

Operation description

Supported database engines

  • MySQL
  • PostgreSQL

References

Note Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
ParameterGroupIdstringYes

The parameter template ID. You can call the DescribeParameterGroups operation to query the parameter template ID.

rpg-dp****
RegionIdstringYes

The region ID. You can call the DescribeRegions operation to query the most recent region list.

cn-hangzhou

Response parameters

ParameterTypeDescriptionExample
object

The response parameters.

RequestIdstring

The request ID.

498AE8CA-8C81-4A01-AF37-2B902014ED30
ParamGrouparray<object>

The information about the parameter template.

object
UpdateTimestring

The time when the parameter template was last updated. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.

2019-10-22T06:07:54Z
ParameterGroupDescstring

The description of the parameter template.

testGroup1
CreateTimestring

The time when the parameter template was created.

2019-10-22T06:02:53Z
ForceRestartinteger

Indicates whether the restart of an instance is required for the parameter template to take effect. Valid values:

  • 0: A restart is not required.
  • 1: A restart is required.
1
ParameterGroupIdstring

The ID of the parameter template.

rpg-dp****
ParameterGroupNamestring

The name of the parameter template.

test123456
Enginestring

The database engine of the instance.

mysql
ParamCountsinteger

The number of parameters in the parameter template.

2
EngineVersionstring

The database engine version of the instance.

5.6
ParameterGroupTypeinteger

The type of the parameter template. Valid values:

  • 0: the default parameter template.
  • 1: a custom parameter template.
  • 2: an automatic backup parameter template. After you apply this type of template, the system automatically backs up the original parameter settings and saves the backup as a template.
1
ParamDetailarray<object>

The details of the parameters.

object
ParamNamestring

The name of the parameter.

back_log
ParamValuestring

The value of the parameter.

2000
RelatedCustinsInfoarray<object>

The information about the instance to which the parameter template is applied.

Note This parameter is available only for ApsaraDB RDS for PostgreSQL instances.
object
DBInstanceNamestring

The instance ID.

rm-bp170****
AppliedTimestring

The time when the parameter template was applied.

2022-10-17T03:19:02Z

Examples

Sample success responses

JSONformat

{
  "RequestId": "498AE8CA-8C81-4A01-AF37-2B902014ED30",
  "ParamGroup": {
    "ParameterGroup": [
      {
        "UpdateTime": "2019-10-22T06:07:54Z",
        "ParameterGroupDesc": "testGroup1",
        "CreateTime": "2019-10-22T06:02:53Z",
        "ForceRestart": 1,
        "ParameterGroupId": "rpg-dp****",
        "ParameterGroupName": "test123456",
        "Engine": "mysql",
        "ParamCounts": 2,
        "EngineVersion": "5.6",
        "ParameterGroupType": 1,
        "ParamDetail": {
          "ParameterDetail": [
            {
              "ParamName": "back_log",
              "ParamValue": "2000"
            }
          ]
        }
      }
    ]
  },
  "RelatedCustinsInfo": {
    "RelatedCustinsInfo": [
      {
        "DBInstanceName": "rm-bp170****",
        "AppliedTime": "2022-10-17T03:19:02Z"
      }
    ]
  }
}

Error codes

HTTP status codeError codeError messageDescription
400ParamGroupsNotExistThe specified paramGroups does not exist.The parameter template cannot be found. You can call the DescribeParameterGroups operation to query the parameter templates that are available to a specified region.
403InvalidUserOperatorPermissionThe user permission does not support this operation.The user is not authorized to perform this operation.

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

Change history

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