| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- Type: Application
- Name: timer-trigger-fc-event-java11
- Provider:
- - 阿里云
- Version: 0.0.1
- Description: 快速部署一个具备 定时器触发器 Event 类型的函数到阿里云函数计算
- HomePage: https://github.com/devsapp/start-fc
- Tags:
- - 函数计算
- - 新手入门
- Category: 新手入门
- Service:
- 函数计算:
- Runtime: Java11
- Authorities:
- - AliyunFCFullAccess
- Parameters:
- type: object
- additionalProperties: false # 不允许增加其他属性
- required: # 必填项
- - region
- - serviceName
- - functionName
- - payLoad
- - cronExpression
- properties:
- region:
- title: 地域
- type: string
- default: cn-hangzhou
- description: 创建应用所在的地区
- enum:
- - cn-beijing
- - cn-hangzhou
- - cn-shanghai
- - cn-qingdao
- - cn-zhangjiakou
- - cn-huhehaote
- - cn-shenzhen
- - cn-chengdu
- - cn-hongkong
- - ap-southeast-1
- - ap-southeast-2
- - ap-southeast-3
- - ap-southeast-5
- - ap-northeast-1
- - eu-central-1
- - eu-west-1
- - us-west-1
- - us-east-1
- - ap-south-1
- serviceName:
- title: 服务名
- type: string
- default: timer-trigger-quick-start
- description: 服务名称,只能包含字母、数字、下划线和中划线。不能以数字、中划线开头。长度在 1-128 之间
- functionName:
- title: 函数名
- type: string
- default: timer-trigger-event-function-java11
- description: 数据预处理函数名称,只能包含字母、数字、下划线和中划线。不能以数字、中划线开头。长度在 1-128 之间
- cronExpression:
- title: 时间触发器表达式
- type: string
- default: '@every 2m'
- description: 时间触发器表达式,支持两种设置:@every、cron 表达式
- payLoad:
- title: 触发器内容
- type: string
- default: TestPayload
- description: 代表触发器事件本身的输入内容
|