调用PutDcdnKv设置指定Namespace的Key-Value(KV)对。
接口说明
说明
单用户调用频率:50 次/秒。
调试
您可以在OpenAPI Explorer中直接运行该接口,免去您计算签名的困扰。运行成功后,OpenAPI Explorer可以自动生成SDK代码示例。
授权信息
当前API暂无授权信息透出。
请求参数
名称 | 类型 | 必填 | 描述 | 示例值 |
---|---|---|---|---|
Namespace | string | 是 | Namespace 名称。 | ns1 |
Key | string | 是 | 需要设置的 Key 名称,最长不超过 512 个字符,不能包含空格、反斜杠(/)。 | key1 |
Value | string | 是 | Key 的内容,最大 2 MB(2*1000*1000)。 | value1 |
Expiration | long | 否 | 过期时间(秒级时间戳,不能小于当前时间),同时设置 Expiration 和 ExpirationTtl 时,以 ExpirationTtl 为准。 | 1690081381 |
ExpirationTtl | long | 否 | 过期时间(相对时间,单位:秒),同时设置 Expiration 和 ExpirationTtl 时,以 ExpirationTtl 为准。 | 3600 |
返回参数
示例
正常返回示例
JSON
格式
{
"Length": 5,
"Value": "value1",
"RequestId": "96ED3127-EC7A-57C5-AFA6-A689B24B2530"
}
错误码
HTTP status code | 错误码 | 错误信息 | 描述 |
---|---|---|---|
400 | Invalid.Parameter | The specified parameter is invalid. | 输入参数无效 |
400 | InvalidAccount.Malformed | The specified account is invalid. | 账号输入不对,比如输入为空 |
400 | InvalidNameSpace.Malformed | The specified namespace is invalid. | namespace输入不对,比如输入为空 |
400 | InvalidKey.Malformed | The specified key is invalid. | key输入不对,比如输入为空 |
400 | InvalidKey.ExceedsMaximum | The size of the key cannot exceed 512 bytes. | key长度不能超过512B |
400 | InvalidValue.ExceedsMaximum | The size of the value cannot exceed 2,000,000 bytes. | value长度不能越过2000000B |
403 | InvalidKey.ExceedsCapacity | The maximum capacity of a single namespace cannot exceed 1 GB. | namespace容量超过限制,单个namespace最大容量为1G |
403 | Unauthorized.InvalidParameters | The specified authentication parameters are invalid. | 鉴权参数输入错误 |
403 | Unauthorized.InvalidTime | The specified authentication time is invalid. | 您输入的鉴权时间参数无效,请检查参数值后重试。 |
403 | Unauthorized.InvalidToken | Token authentication failed. | 您输入的token无效,请检查并输入正确的token后进行重试。 |
403 | Unauthorized.InvalidResource | Resource authentication failed. | 资源校验失败 |
404 | InvalidAccount.NotFound | The specified account does not exist. | 账号不存在,未创建 |
404 | InvalidNameSpace.NotFound | The specified namespace does not exist. | namespace不存在 |
404 | InvalidKey.NotFound | The specified key does not exist. | 请求的key不存在 |
406 | InvalidNameSpace.Duplicate | The specified namespace already exists. | namespace已存在 |
406 | InvalidNameSpace.QuotaFull | The maximum number of namespaces is exceeded. | namespace个数超过quota限制 |
406 | InvalidKey.QuotaFull | The maximum number of keys is exceeded. | key个数超过quota限制 |
429 | TooManyRequests | Too many requests are submitted. | 请求速率过快 |
429 | TooQuickRequests | Request for putting or deleting keys are frequently submitted. | key put/delete操作太频繁 |
访问错误中心查看更多错误码。
变更历史
变更时间 | 变更内容概要 | 操作 |
---|---|---|
2023-07-20 | OpenAPI 描述信息更新、OpenAPI 错误码发生变更、OpenAPI 入参发生变更 | 查看变更详情 |