调用 CreateTimer 接口,在指定函数中创建 Timer 触发器。
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | CreateTimer | 接口名称。当前 API 的名称为 CreateTimer 。 |
Version | String | 是 | 2024-06-06 | 接口版本。当前 API 的版本为 2024-06-06 。 |
FunctionId | String | 是 | qtqzj*** | 指定函数 ID,在该函数中创建 Timer 触发器。 |
Name | String | 是 | doc-timer | 自定义设置 Timer 触发器名称。
|
Description | String | 否 | Timer触发器 | Timer 触发器的备注信息。 |
Enabled | Boolean | 否 | true | Timer 触发器是否启用。
|
Crontab | String | 是 |
| 设置 Timer 触发器的定时触发时间。 |
Payload | String | 否 |
| Timer 触发器发送请求的内容负载,即触发消息。 |
EnableConcurrency | Boolean | 否 | false | Timer 触发器是否允许并发。
|
Retries | Integer | 否 | 0 | Timer 触发器的重试次数。 |
POST http://open.volcengineapi.com/?Action=CreateTimer&Version=2024-06-06 HTTP/1.1 Content-Type: application/json { "FunctionId": "qtqzj**", "Name": "doc-timer", "Description": "Timer触发器", "Enabled": true, "Crontab": "*/5 * * * *", "EnableConcurrency": false }
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
FunctionId | String | qtqzj** | 函数 ID。 |
Id | String | v02ww8** | Timer 触发器 ID。 |
Name | String | doc-timer | Timer 触发器名称。 |
Description | String | Timer触发器 | Timer 触发器的备注信息。 |
Enabled | Boolean | true | Timer 触发器是否启用,true 表示启用。 |
Crontab | String | */5 * * * * | Timer 触发器的触发时间,时间格式为 crontab 表达式。 |
Payload | String | {"body": "update event payload"} | Timer 触发器发送请求的 payload,即触发消息。 |
CreationTime | String | 2024-06-14 15:31:07.143863441 +0800 CST m=+88714.902440864 | Timer 触发器创建时间。 |
LastUpdateTime | String | 2024-06-14 15:31:07.143863441 +0800 CST m=+88714.902440864 | Timer 触发器更新时间。 |
EnableConcurrency | Boolean | true | Timer 触发器是否允许并发,true 表示允许并发。 |
Retries | Integer | 0 | Timer 触发器的重试次数。 |
HTTP/1.1 200 OK Content-Type: application/json { "ResponseMetadata": { "RequestId": "202411291616311B603AD90**", "Action": "CreateTimer", "Version": "2024-06-06", "Service": "vefaas", "Region": "cn-beijing" }, "Result": { "FunctionId": "qtqzj**", "Id": "ing3qa2**", "Name": "doc-timer", "Description": "Timer触发器", "Enabled": true, "Crontab": "*/5 * * * *", "Payload": "", "CreationTime": "2024-11-29 16:16:31.540584873 +0800 CST m=+65768.359252459", "LastUpdateTime": "2024-11-29 16:16:31.540584953 +0800 CST m=+65768.359252522", "EnableConcurrency": false, "Retries": 0 } }
当前接口暂无独立错误码,若接口调用返回异常,可参考 公共错误码 进行故障排查。