123456789101112131415161718192021222324 |
- ROSTemplateFormatVersion: '2015-09-01'
- Transform: 'Aliyun::Serverless-2018-04-03'
- Resources:
- medical-plat:
- Type: 'Aliyun::Serverless::Service'
- Properties:
- InternetAccess: true
- Description: '医疗平台'
- medical-plat-fn:
- Type: 'Aliyun::Serverless::Function'
- Properties:
- Handler: com.yunzhi.demo.SpringApplication::main
- Runtime: custom
- CodeUri: 'oss://yz-serverless/medical-plat/medical-plat-0.0.3.zip'
- MemorySize: 1024
- Timeout: 30
- InitializationTimeout: 30
- CAPort: 8822
- Events:
- http-medical-plat:
- Type: HTTP
- Properties:
- AuthType: ANONYMOUS
- Methods: [ 'GET', 'POST', 'PUT', 'DELETE' ]
|