修改参数组

url参数

ActionVersionMethod描述
ModifyParameterGroup2018-03-22POST修改参数组

请求参数

参数名称说明参数类型是否必填
Name参数组名称String
Description描述信息, 最长100字符String
Id参数组IdInteger
ActionModifyParameterGroupString
Version2018-03-22String

Body

参数名称说明参数类型是否必填
maxmemory-policyvolatile-randomString
loglevelnoticeString

返回参数

参数名称参数类型描述
RequestIdString请求id
CodeString公共状态码, “Success”表示成功,其他值表示失败。
MessageString信息描述

状态码

错误码(Code)错误提示(Message)HTTP状态码说明
Success200请求成功
InvalidParameterValue参数XX不合法400参数不合法
InvalidParameterLength参数XX超过指定长度{长度}400参数超长度
ParameterGroupExist参数组已存在,请重新指定.400参数组已存在
RedisParameterNotFoundRedis没有XX参数400无效的参数名
RedisParameterForbid参数XX为系统配置参数,用户无需传入403系统配置无法修改
RedisParameterRepeat参数XX不允许重复400参数重复
RedisParameterValueErrorRedis参数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"
}