mirror of
https://github.com/Sitoi/dailycheckin.git
synced 2024-11-17 21:58:03 +08:00
35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
#组件信息
|
||
component: scf # (必选) 组件名称,在该实例中为scf
|
||
name: dailycheckin # (必选) 组件实例名称。
|
||
|
||
#组件参数配置
|
||
inputs:
|
||
name: scf-${name} # 云函数名称,默认为 ${name}-${stage}-${app}
|
||
enableRoleAuth: true # 默认会尝试创建 SCF_QcsRole 角色,如果不需要配置成 false 即可
|
||
src: ./
|
||
handler: index.main_handler #入口
|
||
runtime: Python3.6 # 运行环境 默认 Nodejs10.15
|
||
region: ap-hongkong # 函数所在区域
|
||
description: This is a function in ${app} application.
|
||
memorySize: 128 # 内存大小,单位MB
|
||
timeout: 900 # 超时时间,单位秒
|
||
events: # 触发器
|
||
- timer: # 签到
|
||
parameters:
|
||
name: dailycheckin
|
||
cronExpression: "0 45 8 * * * *"
|
||
enable: false
|
||
argument: None
|
||
- timer: # 喜马拉雅极速版
|
||
parameters:
|
||
name: xmly
|
||
cronExpression: "0 */30 * * * * *"
|
||
enable: false
|
||
argument: xmly
|
||
- timer: # 企鹅读书
|
||
parameters:
|
||
name: qqread
|
||
cronExpression: "0 */11 * * * * *"
|
||
enable: true
|
||
argument: qqread
|