| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- Type: Application
- Name: oss-trigger-fc-event-java11
- Version: 0.1.7
- Provider:
- - 阿里云
- Description: 快速部署一个 具备 OSS 触发器 Event 类型的图像处理函数到阿里云函数计算。
- HomePage: https://github.com/devsapp/start-fc
- Tags:
- - 函数计算
- - 新手入门
- Category: 新手入门
- Service:
- 函数计算:
- Authorities:
- - AliyunFCFullAccess
- Runtime: Java11
- Parameters:
- type: object
- additionalProperties: false # 不允许增加其他属性
- required: # 必填项
- - region
- - serviceName
- - functionName
- - ossBucketRegion
- - accountId
- - bucketName
- 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: oss-trigger-quick-start
- description: 服务名称,只能包含字母、数字、下划线和中划线。不能以数字、中划线开头。长度在 1-128 之间
- functionName:
- title: 函数名
- type: string
- default: oss-trigger-event-function-java
- description: 函数名称,只能包含字母、数字、下划线和中划线。不能以数字、中划线开头。长度在 1-64 之间
- accountId:
- title: 主账号ID
- type: string
- description: 拥有 OSS Bucket 资源的主账号ID
- ossBucketRegion:
- title: OSS Bucket 地域
- type: string
- default: cn-hangzhou
- description: OSS Bucket 资源所在的地区
- 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
- bucketName:
- title: OSS Bucket 名称
- type: string
- description: 同即将创建的函数同一地域下的已经创建的 bucket 名称。
- pathPrefix:
- title: OSS Bucket object 前缀
- type: string
- default: 'home'
- description:
- pathSuffix:
- title: OSS Bucket object 后缀
- type: string
- default: '.zip'
- description:
|