Files
doc-exports/docs/rds/api-ref/rds_11_0014.html
wangdengke2 1ddaec1a62 rds_api
Reviewed-by: Gladkov, Maksim <mgladkov@noreply.gitea.eco.tsi-dev.otc-service.com>
Co-authored-by: wangdengke2 <wangdengke2@huawei.com>
Co-committed-by: wangdengke2 <wangdengke2@huawei.com>
2026-01-29 11:28:26 +00:00

15 KiB

Obtaining the Value of a Specified Parameter for an Instance

Function

This API is used to obtain the value of a specified parameter for an instance.

Constraints

  • This operation cannot be performed when the instance is in the abnormal state.
  • Only the value of shared_preload_libraries can be queried.

URI

  • URI format

    GET /v3/{project_id}/instances/{instance_id}/parameter/{name}

  • Parameter description
    Table 1 Parameters

    Parameter

    Mandatory

    Description

    project_id

    Yes

    Specifies the project ID of a tenant in a region.

    For details about how to obtain the project ID, see Obtaining a Project ID.

    instance_id

    Yes

    Specifies the DB instance ID.

    name

    Yes

    Parameter name.

    Only the shared_preload_libraries parameter can be modified.

    The default value is shared_preload_libraries.

Request

Response

  • Normal response
    Table 3 Parameters

    Parameter

    Type

    Description

    name

    String

    Parameter name.

    value

    String

    Parameter value.

    restart_required

    Boolean

    Whether a reboot is required.

    • true: A reboot is required.
    • false: A reboot is not required.

    value_range

    String

    Parameter value range.

    If the parameter type is integer, the value is 0 or 1. If the type is boolean, the value is true or false.

    type

    String

    Parameter type.

    The value can be string, integer, boolean, list, or float.

    description

    String

    Parameter description.

  • Example normal response
    {
      "name" : "shared_preload_libraries",  
      "value" : "passwordcheck.so,pg_sql_history",  
      "restart_required" : true,  
      "value_range" : "passwordcheck.so,pg_stat_statements,pg_sql_history",  
      "type" : "list",  
      "description" : "Lists shared libraries to preload into server."  
    }
  • Abnormal response

    For details, see Abnormal Request Results.

Status Code

Error Code

For details, see Error Codes.