1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
| {
| "groups": [
| {
| "name": "oss",
| "type": "com.qianwen.core.oss.props.OssProperties",
| "sourceType": "com.qianwen.core.oss.props.OssProperties"
| }
| ],
| "properties": [
| {
| "name": "oss.access-key",
| "type": "java.lang.String",
| "description": "Access key就像用户ID,可以唯一标识你的账户",
| "sourceType": "com.qianwen.core.oss.props.OssProperties"
| },
| {
| "name": "oss.app-id",
| "type": "java.lang.String",
| "description": "应用ID TencentCOS需要",
| "sourceType": "com.qianwen.core.oss.props.OssProperties"
| },
| {
| "name": "oss.args",
| "type": "com.qianwen.core.tool.support.Kv",
| "description": "自定义属性",
| "sourceType": "com.qianwen.core.oss.props.OssProperties"
| },
| {
| "name": "oss.bucket-name",
| "type": "java.lang.String",
| "description": "默认的存储桶名称",
| "sourceType": "com.qianwen.core.oss.props.OssProperties",
| "defaultValue": "bladex"
| },
| {
| "name": "oss.enabled",
| "type": "java.lang.Boolean",
| "description": "是否启用",
| "sourceType": "com.qianwen.core.oss.props.OssProperties"
| },
| {
| "name": "oss.endpoint",
| "type": "java.lang.String",
| "description": "对象存储服务的URL",
| "sourceType": "com.qianwen.core.oss.props.OssProperties"
| },
| {
| "name": "oss.name",
| "type": "java.lang.String",
| "description": "对象存储名称",
| "sourceType": "com.qianwen.core.oss.props.OssProperties"
| },
| {
| "name": "oss.region",
| "type": "java.lang.String",
| "description": "区域简称 TencentCOS需要",
| "sourceType": "com.qianwen.core.oss.props.OssProperties"
| },
| {
| "name": "oss.secret-key",
| "type": "java.lang.String",
| "description": "Secret key是你账户的密码",
| "sourceType": "com.qianwen.core.oss.props.OssProperties"
| },
| {
| "name": "oss.tenant-mode",
| "type": "java.lang.Boolean",
| "description": "是否开启租户模式",
| "sourceType": "com.qianwen.core.oss.props.OssProperties",
| "defaultValue": false
| }
| ],
| "hints": []
| }
|
|