12345678910111213141516171819202122232425262728293031323334 |
- edition: 1.0.0 # 命令行YAML规范版本,遵循语义化版本(Semantic Versioning)规范。
- name: honghe-plat # 项目名称。
- access: default # 密钥别名。
-
- services:
- dianyang: # 服务名称。
- component: devsapp/fc
- props: # 组件的属性值。
- region: cn-shanghai
- service:
- name: honghe-plat
- description: '红鹤集团'
- internetAccess: true
- function:
- name: roundabout-func
- description: 'Roundabout h5'
- ossBucket: yz-serverless
- ossKey: honghe/roundabout-0.0.4.zip
- handler: 'com.yunzhi.roundabout.Application::main'
- memorySize: 1024
- timeout: 30
- runtime: custom
- caPort: 9000
- initializationTimeout: 30
- triggers:
- - name: httpRoundabout
- type: http
- config:
- authType: anonymous
- methods:
- - GET
- - POST
- - PUT
- - DELETE
|