Reviewed-by: Kacur, Michal <michal.kacur@t-systems.com> Co-authored-by: Zheng, Xiu <zhengxiu@huawei.com> Co-committed-by: Zheng, Xiu <zhengxiu@huawei.com>
11 KiB
Obtaining the Parameter Configuration List
Function
This API is used to obtain the parameter configuration list of the current cluster.
Debugging
You can debug this API in . Automatic authentication is supported.
URI
GET /v1.0/{project_id}/clusters/{cluster_id}/ymls/template
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
project_id |
Yes |
String |
Project ID. For details, see Obtaining a Project ID and Name. |
cluster_id |
Yes |
String |
ID of the cluster to be queried |
Request Parameters
None
Response Parameters
Status code: 200
Parameter |
Type |
Description |
|---|---|---|
configurations |
Object |
Cluster parameter configuration list. The key value in the object is subject to the actual situation. The value has the following attributes:
|
Request Example
None
Response Example
Status code: 200
The request is processed successfully.
{
"configurations" : {
"http.cors.allow-credentials" : {
"id" : "b462d13c-294b-4e0f-91d3-58be2ad02b99",
"key" : "http.cors.allow-credentials",
"value" : "false",
"defaultValue" : "false",
"regex" : "^(true|false)$",
"desc" : "Indicates whether to return Access-Control-Allow-Credentials in the header during cross-domain access. The value is of the Boolean type and can be true or false.
"type" : "Boolean",
"moduleDesc" : "Cross-domain access",
"modifyEnable" : "true",
"enableValue" : "true,false",
"fileName" : "elasticsearch.yml",
"version" : null,
"descENG" : "Whether to return the Access-Control-Allow-Credentials of the header during cross-domain access. The value is a Boolean value and the options are true and false.",
"moduleDescENG" : "Cross-domain Access"
}
}
}
Status Codes
Status Code |
Description |
|---|---|
200 |
The request is processed successfully. |
400 |
Invalid request. Modify the request instead of retrying. |
409 |
The request cannot be processed due to a conflict. This status code indicates that the resource that the client attempts to create already exists, or the request fails to be processed because of the update of the conflict request. |
412 |
The server does not meet one of the requirements that the requester puts on the request. |