修改参数组
url参数
Action | Version | Method | 描述 |
ModifyParameterGroup | 2018-03-22 | POST | 修改参数组 |
请求参数
参数名称 | 说明 | 参数类型 | 是否必填 |
Name | 参数组名称 | String | 否 |
Description | 描述信息, 最长100字符 | String | 否 |
Id | 参数组Id | Integer | 是 |
Action | ModifyParameterGroup | String | 是 |
Version | 2018-03-22 | String | 是 |
Body
参数名称 | 说明 | 参数类型 | 是否必填 |
maxmemory-policy | volatile-random | String | 是 |
loglevel | notice | String | 是 |
返回参数
参数名称 | 参数类型 | 描述 |
RequestId | String | 请求id |
Code | String | 公共状态码, “Success”表示成功,其他值表示失败。 |
Message | String | 信息描述 |
状态码
错误码(Code) | 错误提示(Message) | HTTP状态码 | 说明 |
Success | | 200 | 请求成功 |
InvalidParameterValue | 参数XX不合法 | 400 | 参数不合法 |
InvalidParameterLength | 参数XX超过指定长度{长度} | 400 | 参数超长度 |
ParameterGroupExist | 参数组已存在,请重新指定. | 400 | 参数组已存在 |
RedisParameterNotFound | Redis没有XX参数 | 400 | 无效的参数名 |
RedisParameterForbid | 参数XX为系统配置参数,用户无需传入 | 403 | 系统配置无法修改 |
RedisParameterRepeat | 参数XX不允许重复 | 400 | 参数重复 |
RedisParameterValueError | Redis参数XX格式错误 | 400 | 参数格式错误 |
请求示例
POST https://open.cn-east-1.163yun.com/ncr?Action=ModifyParameterGroup&Version=2018-03-22&Name=parameter-group-1-new&id=21&Description=newdescription
RequestBody:
{
"maxmemory-policy":"volatile-random",
"hash-max-ziplist-entries":"512",
"activedefrag":"no",
"zset-max-ziplist-entries":"512",
"maxmemory-samples":"3",
"active-defrag-cycle-max":"75",
"active-defrag-ignore-bytes":"100mb",
"reserved-memory-percent":"25",
"hll-sparse-max-bytes":"3000",
"active-defrag-threshold-lower":"10",
"loglevel":"notice",
"list-max-ziplist-entries":"512",
"list-max-ziplist-value":"64",
"set-max-intset-entries":"512",
"zset-max-ziplist-value":"64",
"hash-max-ziplist-value":"64",
"active-defrag-threshold-upper":"100",
"active-defrag-cycle-min":"25"
}
返回示例
{
"RequestId": "e8afd798-7fb8-49ee-8a98-80092a0eab1e",
"Code": "Success"
}