tccli 3.0.1147.1__py2.py3-none-any.whl → 3.0.1149.1__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tccli/__init__.py +1 -1
- tccli/services/aiart/aiart_client.py +53 -0
- tccli/services/aiart/v20221229/api.json +80 -0
- tccli/services/aiart/v20221229/examples.json +8 -0
- tccli/services/asr/v20190614/api.json +6 -6
- tccli/services/cam/v20190116/api.json +4 -4
- tccli/services/cam/v20190116/examples.json +1 -1
- tccli/services/clb/v20180317/api.json +1 -1
- tccli/services/cwp/v20180228/api.json +63 -16
- tccli/services/cwp/v20180228/examples.json +1 -1
- tccli/services/dcdb/v20180411/api.json +2 -0
- tccli/services/dnspod/v20210323/api.json +9 -0
- tccli/services/ess/ess_client.py +53 -0
- tccli/services/ess/v20201111/api.json +67 -5
- tccli/services/ess/v20201111/examples.json +14 -0
- tccli/services/essbasic/essbasic_client.py +57 -4
- tccli/services/essbasic/v20210526/api.json +56 -3
- tccli/services/essbasic/v20210526/examples.json +8 -0
- tccli/services/gaap/gaap_client.py +53 -0
- tccli/services/gaap/v20180529/api.json +24 -0
- tccli/services/gaap/v20180529/examples.json +8 -0
- tccli/services/lighthouse/v20200324/api.json +33 -31
- tccli/services/lighthouse/v20200324/examples.json +3 -3
- tccli/services/live/v20180801/api.json +6 -0
- tccli/services/live/v20180801/examples.json +1 -1
- tccli/services/lke/lke_client.py +53 -0
- tccli/services/lke/v20231130/api.json +160 -1
- tccli/services/lke/v20231130/examples.json +8 -0
- tccli/services/mariadb/mariadb_client.py +53 -0
- tccli/services/mariadb/v20170312/api.json +88 -0
- tccli/services/mariadb/v20170312/examples.json +8 -0
- tccli/services/mna/mna_client.py +485 -8
- tccli/services/mna/v20210119/api.json +743 -21
- tccli/services/mna/v20210119/examples.json +72 -0
- tccli/services/mongodb/v20190725/api.json +35 -35
- tccli/services/monitor/v20180724/api.json +1 -1
- tccli/services/mps/v20190612/api.json +31 -10
- tccli/services/oceanus/v20190422/api.json +24 -0
- tccli/services/organization/v20210331/api.json +1 -1
- tccli/services/rum/v20210622/api.json +9 -0
- tccli/services/tdmq/v20200217/api.json +12 -10
- tccli/services/tdmq/v20200217/examples.json +1 -1
- tccli/services/thpc/v20230321/api.json +11 -3
- tccli/services/tke/v20180525/api.json +3 -3
- tccli/services/trtc/v20190722/api.json +15 -5
- tccli/services/tsf/tsf_client.py +110 -4
- tccli/services/tsf/v20180326/api.json +142 -0
- tccli/services/tsf/v20180326/examples.json +16 -0
- tccli/services/vpc/v20170312/api.json +1 -1
- {tccli-3.0.1147.1.dist-info → tccli-3.0.1149.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1147.1.dist-info → tccli-3.0.1149.1.dist-info}/RECORD +54 -54
- {tccli-3.0.1147.1.dist-info → tccli-3.0.1149.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1147.1.dist-info → tccli-3.0.1149.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1147.1.dist-info → tccli-3.0.1149.1.dist-info}/license_files/LICENSE +0 -0
@@ -16,6 +16,14 @@
|
|
16
16
|
"title": "新建设备"
|
17
17
|
}
|
18
18
|
],
|
19
|
+
"AddGroup": [
|
20
|
+
{
|
21
|
+
"document": "",
|
22
|
+
"input": "POST / HTTP/1.1\nHost: mna.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: AddGroup\n<公共请求参数>\n\n{\n \"GroupName\": \"xxx\",\n \"Description\": \"xxx\"\n}",
|
23
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"xxx\",\n \"GroupId\": \"1a2b3c4d5e\"\n }\n}",
|
24
|
+
"title": "示例1"
|
25
|
+
}
|
26
|
+
],
|
19
27
|
"AddHardware": [
|
20
28
|
{
|
21
29
|
"document": "批量新建硬件设备",
|
@@ -48,6 +56,14 @@
|
|
48
56
|
"title": "删除设备接口"
|
49
57
|
}
|
50
58
|
],
|
59
|
+
"DeleteGroup": [
|
60
|
+
{
|
61
|
+
"document": "",
|
62
|
+
"input": "POST / HTTP/1.1\nHost: mna.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteGroup\n<公共请求参数>\n\n{\n \"GroupId\": \"xxx\"\n}",
|
63
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"xxx\"\n }\n}",
|
64
|
+
"title": "示例1"
|
65
|
+
}
|
66
|
+
],
|
51
67
|
"DeleteQos": [
|
52
68
|
{
|
53
69
|
"document": "",
|
@@ -126,6 +142,30 @@
|
|
126
142
|
"title": "根据分组获取用量统计信息"
|
127
143
|
}
|
128
144
|
],
|
145
|
+
"GetFlowStatisticByRegion": [
|
146
|
+
{
|
147
|
+
"document": "",
|
148
|
+
"input": "POST / HTTP/1.1\nHost: mna.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetFlowStatisticByRegion\n<公共请求参数>\n\n{\n \"BeginTime\": 0,\n \"EndTime\": 0,\n \"Type\": 0,\n \"TimeGranularity\": 0,\n \"AccessRegion\": \"MC\",\n \"GatewayType\": 0\n}",
|
149
|
+
"output": "{\n \"Response\": {\n \"NetDetails\": [\n {\n \"Current\": 0,\n \"Time\": \"abc\"\n }\n ],\n \"MaxValue\": 0,\n \"AvgValue\": 0,\n \"TotalValue\": 0,\n \"RequestId\": \"abc\"\n }\n}",
|
150
|
+
"title": "正常场景"
|
151
|
+
}
|
152
|
+
],
|
153
|
+
"GetGroupDetail": [
|
154
|
+
{
|
155
|
+
"document": "",
|
156
|
+
"input": "POST / HTTP/1.1\nHost: mna.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetGroupDetail\n<公共请求参数>\n\n{\n \"GroupId\": \"xxx\",\n \"PageSize\": \"10\",\n \"PageNumber\": \"1\"\n}",
|
157
|
+
"output": "{\n \"Response\": {\n \"GroupInfo\": {\n \"GroupId\": \"abc\",\n \"GroupName\": \"abc\",\n \"CreateTime\": \"abc\",\n \"UpdateTime\": \"abc\",\n \"Description\": \"abc\",\n \"DeviceNum\": 0\n },\n \"DeviceInfos\": [\n {\n \"DeviceId\": \"abc\",\n \"DeviceName\": \"abc\",\n \"CreateTime\": \"abc\",\n \"LastTime\": \"abc\",\n \"Remark\": \"abc\",\n \"AccessScope\": 0,\n \"LicensePayMode\": 0,\n \"Payer\": 0,\n \"GroupId\": \"abc\",\n \"GroupName\": \"abc\"\n }\n ],\n \"Length\": 0,\n \"TotalPage\": 0,\n \"RequestId\": \"abc\"\n }\n}",
|
158
|
+
"title": "示例1"
|
159
|
+
}
|
160
|
+
],
|
161
|
+
"GetGroupList": [
|
162
|
+
{
|
163
|
+
"document": "",
|
164
|
+
"input": "POST / HTTP/1.1\nHost: mna.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetGroupList\n<公共请求参数>\n\n{\n \"PageSize\": \"10\",\n \"PageNumber\": \"1\",\n \"Keyword\": \"test\"\n}",
|
165
|
+
"output": "{\n \"Response\": {\n \"GroupInfos\": [\n {\n \"GroupId\": \"abc\",\n \"GroupName\": \"abc\",\n \"CreateTime\": \"abc\",\n \"UpdateTime\": \"abc\",\n \"Description\": \"abc\",\n \"DeviceNum\": 5\n }\n ],\n \"Length\": 0,\n \"TotalPage\": 0,\n \"RequestId\": \"abc\"\n }\n}",
|
166
|
+
"title": "示例1"
|
167
|
+
}
|
168
|
+
],
|
129
169
|
"GetHardwareList": [
|
130
170
|
{
|
131
171
|
"document": "硬件信息列表",
|
@@ -186,6 +226,22 @@
|
|
186
226
|
"title": "获取厂商设备列表"
|
187
227
|
}
|
188
228
|
],
|
229
|
+
"GroupAddDevice": [
|
230
|
+
{
|
231
|
+
"document": "",
|
232
|
+
"input": "POST / HTTP/1.1\nHost: mna.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GroupAddDevice\n<公共请求参数>\n\n{\n \"DeviceList\": [\n \"mna-test1\",\n \"mna-test2\"\n ],\n \"GroupId\": \"xxx\"\n}",
|
233
|
+
"output": "{\n \"Response\": {\n \"DeviceNum\": 5,\n \"RequestId\": \"abc\"\n }\n}",
|
234
|
+
"title": "示例1"
|
235
|
+
}
|
236
|
+
],
|
237
|
+
"GroupDeleteDevice": [
|
238
|
+
{
|
239
|
+
"document": "",
|
240
|
+
"input": "POST / HTTP/1.1\nHost: mna.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GroupDeleteDevice\n<公共请求参数>\n\n{\n \"DeviceList\": [\n \"mna-test1\",\n \"mna-test2\"\n ],\n \"GroupId\": \"xxx\"\n}",
|
241
|
+
"output": "{\n \"Response\": {\n \"DeviceNum\": 5,\n \"RequestId\": \"abc\"\n }\n}",
|
242
|
+
"title": "示例1"
|
243
|
+
}
|
244
|
+
],
|
189
245
|
"ModifyPackageRenewFlag": [
|
190
246
|
{
|
191
247
|
"document": "",
|
@@ -202,6 +258,14 @@
|
|
202
258
|
"title": "示例1"
|
203
259
|
}
|
204
260
|
],
|
261
|
+
"SetNotifyUrl": [
|
262
|
+
{
|
263
|
+
"document": "",
|
264
|
+
"input": "POST / HTTP/1.1\nHost: mna.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: SetNotifyUrl\n<公共请求参数>\n\n{\n \"AlarmValue\": 20,\n \"NotifyUrl\": \"http://ip:port/callurl\",\n \"CallbackKey\": \"xd23y5cb89bx23432\"\n}",
|
265
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"1206563f-f13f-4647-aaa8-37fa86954cc4-1\"\n }\n}",
|
266
|
+
"title": "示例1"
|
267
|
+
}
|
268
|
+
],
|
205
269
|
"UpdateDevice": [
|
206
270
|
{
|
207
271
|
"document": "更新设备",
|
@@ -210,6 +274,14 @@
|
|
210
274
|
"title": "更新设备"
|
211
275
|
}
|
212
276
|
],
|
277
|
+
"UpdateGroup": [
|
278
|
+
{
|
279
|
+
"document": "",
|
280
|
+
"input": "POST / HTTP/1.1\nHost: mna.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UpdateGroup\n<公共请求参数>\n\n{\n \"GroupId\": \"xxx\",\n \"Description\": \"xxx\"\n}",
|
281
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"xxx\"\n }\n}",
|
282
|
+
"title": "示例1"
|
283
|
+
}
|
284
|
+
],
|
213
285
|
"UpdateHardware": [
|
214
286
|
{
|
215
287
|
"document": "更新硬件信息",
|
@@ -894,7 +894,7 @@
|
|
894
894
|
"members": [
|
895
895
|
{
|
896
896
|
"disabled": false,
|
897
|
-
"document": "实例内存大小,单位:GB
|
897
|
+
"document": "实例内存大小,单位:GB。具体售卖的内存规格,请通过接口 [DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 获取。",
|
898
898
|
"example": "4",
|
899
899
|
"member": "uint64",
|
900
900
|
"name": "Memory",
|
@@ -903,8 +903,8 @@
|
|
903
903
|
},
|
904
904
|
{
|
905
905
|
"disabled": false,
|
906
|
-
"document": "实例硬盘大小,单位:GB
|
907
|
-
"example": "
|
906
|
+
"document": "实例硬盘大小,单位:GB。每一个 CPU 规格对应的最大磁盘与最小磁盘范围,请通过接口 [DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 获取。",
|
907
|
+
"example": "100",
|
908
908
|
"member": "uint64",
|
909
909
|
"name": "Volume",
|
910
910
|
"required": true,
|
@@ -912,7 +912,7 @@
|
|
912
912
|
},
|
913
913
|
{
|
914
914
|
"disabled": false,
|
915
|
-
"document": "
|
915
|
+
"document": "- 创建副本集实例,指副本集数量,该参数只能为1。\n- 创建分片集群实例,指分片的数量。请通过接口[DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567)查询分片数量的取值范围,其返回的数据结构SpecItems中的参数MinReplicateSetNum与MaxReplicateSetNum分别对应其最小值与最大值。",
|
916
916
|
"example": "1",
|
917
917
|
"member": "uint64",
|
918
918
|
"name": "ReplicateSetNum",
|
@@ -921,7 +921,7 @@
|
|
921
921
|
},
|
922
922
|
{
|
923
923
|
"disabled": false,
|
924
|
-
"document": "
|
924
|
+
"document": "- 创建副本集实例,指每个副本集内主从节点数量。每个副本集所支持的的最大节点数与最小节点数,请通过接口 [DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 获取。\n- 创建分片集群实例,指每个分片的主从节点数量。每个分片所支持的最大节点数与最小节点数,请通过接口 [DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 获取。",
|
925
925
|
"example": "2",
|
926
926
|
"member": "uint64",
|
927
927
|
"name": "NodeNum",
|
@@ -930,8 +930,8 @@
|
|
930
930
|
},
|
931
931
|
{
|
932
932
|
"disabled": false,
|
933
|
-
"document": "
|
934
|
-
"example": "
|
933
|
+
"document": "指版本信息。具体支持的版本信息 ,请通过接口 [DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 获取。\n- MONGO_36_WT:MongoDB 3.6 WiredTiger存储引擎版本。\n- MONGO_40_WT:MongoDB 4.0 WiredTiger存储引擎版本。\n- MONGO_42_WT:MongoDB 4.2 WiredTiger存储引擎版本。\n- MONGO_44_WT:MongoDB 4.4 WiredTiger存储引擎版本。\n- MONGO_50_WT:MongoDB 5.0 WiredTiger存储引擎版本。\n- MONGO_60_WT:MongoDB 6.0 WiredTiger存储引擎版本。",
|
934
|
+
"example": "MONGO_44_WT",
|
935
935
|
"member": "string",
|
936
936
|
"name": "MongoVersion",
|
937
937
|
"required": true,
|
@@ -939,7 +939,7 @@
|
|
939
939
|
},
|
940
940
|
{
|
941
941
|
"disabled": false,
|
942
|
-
"document": "
|
942
|
+
"document": "产品规格类型。\n- HIO10G:通用高HIO万兆型。\n- HCD:云盘版类型。",
|
943
943
|
"example": "HIO10G",
|
944
944
|
"member": "string",
|
945
945
|
"name": "MachineCode",
|
@@ -1002,7 +1002,7 @@
|
|
1002
1002
|
},
|
1003
1003
|
{
|
1004
1004
|
"disabled": false,
|
1005
|
-
"document": "项目ID
|
1005
|
+
"document": "项目ID。\n- 若不设置该参数,则为默认项目。\n- 在 [MongoDB 控制台项目管理](https://console.cloud.tencent.com/project)页面,可获取项目ID。",
|
1006
1006
|
"example": "无",
|
1007
1007
|
"member": "int64",
|
1008
1008
|
"name": "ProjectId",
|
@@ -1020,7 +1020,7 @@
|
|
1020
1020
|
},
|
1021
1021
|
{
|
1022
1022
|
"disabled": false,
|
1023
|
-
"document": "
|
1023
|
+
"document": "实例类型。- 1:正式实例。- 3:只读实例。- 4:灾备实例。-5:克隆实例,注意:克隆实例RestoreTime为必填项。",
|
1024
1024
|
"example": "1",
|
1025
1025
|
"member": "int64",
|
1026
1026
|
"name": "Clone",
|
@@ -1038,7 +1038,7 @@
|
|
1038
1038
|
},
|
1039
1039
|
{
|
1040
1040
|
"disabled": false,
|
1041
|
-
"document": "
|
1041
|
+
"document": "安全组 ID。",
|
1042
1042
|
"example": "无",
|
1043
1043
|
"member": "string",
|
1044
1044
|
"name": "SecurityGroup",
|
@@ -1065,7 +1065,7 @@
|
|
1065
1065
|
},
|
1066
1066
|
{
|
1067
1067
|
"disabled": false,
|
1068
|
-
"document": "
|
1068
|
+
"document": "若多可用区部署云数据库实例,指定多可用区列表。\n- 多可用区部署实例,参数 **Zone** 指定实例主可用区信息;**AvailabilityZoneList** 指定所有可用区信息,包含主可用区。输入格式如:[ap-guangzhou-2,ap-guangzhou-3,ap-guangzhou-4]。\n- 通过接口 [DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 可获取云数据库不同地域规划的可用区信息,以便指定有效的可用区。\n- 多可用区部署节点只能部署在3个不同可用区。不支持将集群的大多数节点部署在同一个可用区。例如:3节点集群不支持2个节点部署在同一个区。\n",
|
1069
1069
|
"example": "无",
|
1070
1070
|
"member": "string",
|
1071
1071
|
"name": "AvailabilityZoneList",
|
@@ -1074,7 +1074,7 @@
|
|
1074
1074
|
},
|
1075
1075
|
{
|
1076
1076
|
"disabled": false,
|
1077
|
-
"document": "Mongos CPU
|
1077
|
+
"document": "Mongos CPU 核数,支持1、2、4、8、16。购买分片集群时,必须填写。\n",
|
1078
1078
|
"example": "无",
|
1079
1079
|
"member": "uint64",
|
1080
1080
|
"name": "MongosCpu",
|
@@ -1083,7 +1083,7 @@
|
|
1083
1083
|
},
|
1084
1084
|
{
|
1085
1085
|
"disabled": false,
|
1086
|
-
"document": "Mongos
|
1086
|
+
"document": "Mongos 内存大小。\n- 购买分片集群时,必须填写。\n- 单位:GB,支持1核2GB、2核4GB、4核8GB、8核16GB、16核32GB。\n\n",
|
1087
1087
|
"example": "无",
|
1088
1088
|
"member": "uint64",
|
1089
1089
|
"name": "MongosMemory",
|
@@ -1092,7 +1092,7 @@
|
|
1092
1092
|
},
|
1093
1093
|
{
|
1094
1094
|
"disabled": false,
|
1095
|
-
"document": "Mongos 数量。购买分片集群时,必须填写。\n
|
1095
|
+
"document": "Mongos 数量。购买分片集群时,必须填写。\n- 单可用区部署实例,其数量范围为[3,32]。\n- 多可用区部署实例,其数量范围为[6,32]。",
|
1096
1096
|
"example": "无",
|
1097
1097
|
"member": "uint64",
|
1098
1098
|
"name": "MongosNodeNum",
|
@@ -1101,7 +1101,7 @@
|
|
1101
1101
|
},
|
1102
1102
|
{
|
1103
1103
|
"disabled": false,
|
1104
|
-
"document": "
|
1104
|
+
"document": "只读节点数量,取值范围[0,5]。",
|
1105
1105
|
"example": "无",
|
1106
1106
|
"member": "uint64",
|
1107
1107
|
"name": "ReadonlyNodeNum",
|
@@ -1110,7 +1110,7 @@
|
|
1110
1110
|
},
|
1111
1111
|
{
|
1112
1112
|
"disabled": false,
|
1113
|
-
"document": "
|
1113
|
+
"document": "指只读节点所属可用区数组。跨可用区部署实例,参数**ReadonlyNodeNum**不为**0**时,必须配置该参数。",
|
1114
1114
|
"example": "无",
|
1115
1115
|
"member": "string",
|
1116
1116
|
"name": "ReadonlyNodeAvailabilityZoneList",
|
@@ -1166,7 +1166,7 @@
|
|
1166
1166
|
"members": [
|
1167
1167
|
{
|
1168
1168
|
"disabled": false,
|
1169
|
-
"document": "
|
1169
|
+
"document": "- 创建副本集实例,指每个副本集内主从节点数量。每个副本集所支持的的最大节点数与最小节点数,请通过接口 [DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 获取。\n- 创建分片集群实例,指每个分片的主从节点数量。每个分片所支持的最大节点数与最小节点数,请通过接口 [DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 获取。",
|
1170
1170
|
"example": "3",
|
1171
1171
|
"member": "uint64",
|
1172
1172
|
"name": "NodeNum",
|
@@ -1175,7 +1175,7 @@
|
|
1175
1175
|
},
|
1176
1176
|
{
|
1177
1177
|
"disabled": false,
|
1178
|
-
"document": "实例内存大小,单位:GB
|
1178
|
+
"document": "实例内存大小,单位:GB。具体售卖的内存规格,请通过接口 [DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 获取。",
|
1179
1179
|
"example": "4",
|
1180
1180
|
"member": "uint64",
|
1181
1181
|
"name": "Memory",
|
@@ -1184,8 +1184,8 @@
|
|
1184
1184
|
},
|
1185
1185
|
{
|
1186
1186
|
"disabled": false,
|
1187
|
-
"document": "实例硬盘大小,单位:GB
|
1188
|
-
"example": "
|
1187
|
+
"document": "实例硬盘大小,单位:GB。每一个 CPU 规格对应的最大磁盘与最小磁盘范围,请通过接口 [DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 获取。",
|
1188
|
+
"example": "100",
|
1189
1189
|
"member": "uint64",
|
1190
1190
|
"name": "Volume",
|
1191
1191
|
"required": true,
|
@@ -1193,8 +1193,8 @@
|
|
1193
1193
|
},
|
1194
1194
|
{
|
1195
1195
|
"disabled": false,
|
1196
|
-
"document": "
|
1197
|
-
"example": "
|
1196
|
+
"document": "指版本信息。具体支持的版本信息 ,请通过接口 [DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567) 获取。\n- MONGO_36_WT:MongoDB 3.6 WiredTiger存储引擎版本。\n- MONGO_40_WT:MongoDB 4.0 WiredTiger存储引擎版本。\n- MONGO_42_WT:MongoDB 4.2 WiredTiger存储引擎版本。\n- MONGO_44_WT:MongoDB 4.4 WiredTiger存储引擎版本。\n- MONGO_50_WT:MongoDB 5.0 WiredTiger存储引擎版本。\n- MONGO_60_WT:MongoDB 6.0 WiredTiger存储引擎版本。",
|
1197
|
+
"example": "MONGO_44_WT",
|
1198
1198
|
"member": "string",
|
1199
1199
|
"name": "MongoVersion",
|
1200
1200
|
"required": true,
|
@@ -1220,7 +1220,7 @@
|
|
1220
1220
|
},
|
1221
1221
|
{
|
1222
1222
|
"disabled": false,
|
1223
|
-
"document": "
|
1223
|
+
"document": "指定购买实例的购买时长。取值可选:[1,2,3,4,5,6,7,8,9,10,11,12,24,36];单位:月。\n",
|
1224
1224
|
"example": "1",
|
1225
1225
|
"member": "uint64",
|
1226
1226
|
"name": "Period",
|
@@ -1229,7 +1229,7 @@
|
|
1229
1229
|
},
|
1230
1230
|
{
|
1231
1231
|
"disabled": false,
|
1232
|
-
"document": "
|
1232
|
+
"document": "产品规格类型。\n- HIO10G:通用高HIO万兆型。\n- HCD:云盘版类型。",
|
1233
1233
|
"example": "HIO10G",
|
1234
1234
|
"member": "string",
|
1235
1235
|
"name": "MachineCode",
|
@@ -1247,7 +1247,7 @@
|
|
1247
1247
|
},
|
1248
1248
|
{
|
1249
1249
|
"disabled": false,
|
1250
|
-
"document": "
|
1250
|
+
"document": "- 创建副本集实例,指副本集数量,该参数只能为1。\n- 创建分片集群实例,指分片的数量。请通过接口[DescribeSpecInfo](https://cloud.tencent.com/document/product/240/38567)查询分片数量的取值范围,其返回的数据结构SpecItems中的参数MinReplicateSetNum与MaxReplicateSetNum分别对应其最小值与最大值。",
|
1251
1251
|
"example": "1",
|
1252
1252
|
"member": "uint64",
|
1253
1253
|
"name": "ReplicateSetNum",
|
@@ -1256,7 +1256,7 @@
|
|
1256
1256
|
},
|
1257
1257
|
{
|
1258
1258
|
"disabled": false,
|
1259
|
-
"document": "项目ID
|
1259
|
+
"document": "项目ID。\n- 若不设置该参数,则为默认项目。\n- 在 [MongoDB 控制台项目管理](https://console.cloud.tencent.com/project)页面,可获取项目ID。",
|
1260
1260
|
"example": "0",
|
1261
1261
|
"member": "int64",
|
1262
1262
|
"name": "ProjectId",
|
@@ -1301,7 +1301,7 @@
|
|
1301
1301
|
},
|
1302
1302
|
{
|
1303
1303
|
"disabled": false,
|
1304
|
-
"document": "自动续费标记。\n- 0
|
1304
|
+
"document": "自动续费标记。\n- 0:不自动续费。\n- 1:自动续费。",
|
1305
1305
|
"example": "1",
|
1306
1306
|
"member": "uint64",
|
1307
1307
|
"name": "AutoRenewFlag",
|
@@ -1319,7 +1319,7 @@
|
|
1319
1319
|
},
|
1320
1320
|
{
|
1321
1321
|
"disabled": false,
|
1322
|
-
"document": "
|
1322
|
+
"document": "实例类型。- 1:正式实例。- 3:只读实例。- 4:灾备实例。-5:整实例克隆,注意:克隆实例时,RestoreTime为必填项。",
|
1323
1323
|
"example": "1",
|
1324
1324
|
"member": "int64",
|
1325
1325
|
"name": "Clone",
|
@@ -1337,7 +1337,7 @@
|
|
1337
1337
|
},
|
1338
1338
|
{
|
1339
1339
|
"disabled": false,
|
1340
|
-
"document": "
|
1340
|
+
"document": "安全组 ID。 ",
|
1341
1341
|
"example": "无",
|
1342
1342
|
"member": "string",
|
1343
1343
|
"name": "SecurityGroup",
|
@@ -1346,7 +1346,7 @@
|
|
1346
1346
|
},
|
1347
1347
|
{
|
1348
1348
|
"disabled": false,
|
1349
|
-
"document": "
|
1349
|
+
"document": "克隆实例回档时间,当Clone取值为5或6时为必填。- 若为克隆实例,则必须配置该参数。输入格式示例:2021-08-13 16:30:00。- 回档时间范围:仅能回档7天内时间点的数据。",
|
1350
1350
|
"example": "无",
|
1351
1351
|
"member": "string",
|
1352
1352
|
"name": "RestoreTime",
|
@@ -1373,7 +1373,7 @@
|
|
1373
1373
|
},
|
1374
1374
|
{
|
1375
1375
|
"disabled": false,
|
1376
|
-
"document": "Mongos CPU
|
1376
|
+
"document": "Mongos CPU 核数,支持1、2、4、8、16。购买分片集群时,必须填写。",
|
1377
1377
|
"example": "无",
|
1378
1378
|
"member": "uint64",
|
1379
1379
|
"name": "MongosCpu",
|
@@ -1382,7 +1382,7 @@
|
|
1382
1382
|
},
|
1383
1383
|
{
|
1384
1384
|
"disabled": false,
|
1385
|
-
"document": "Mongos
|
1385
|
+
"document": "Mongos 内存大小。\n- 购买分片集群时,必须填写。\n- 单位:GB,支持1核2GB、2核4GB、4核8GB、8核16GB、16核32GB。",
|
1386
1386
|
"example": "无",
|
1387
1387
|
"member": "uint64",
|
1388
1388
|
"name": "MongosMemory",
|
@@ -1391,7 +1391,7 @@
|
|
1391
1391
|
},
|
1392
1392
|
{
|
1393
1393
|
"disabled": false,
|
1394
|
-
"document": "Mongos
|
1394
|
+
"document": "Mongos 数量。购买分片集群时,必须填写。\n- 单可用区部署实例,其数量范围为[3,32]。\n- 多可用区部署实例,其数量范围为[6,32]。",
|
1395
1395
|
"example": "无",
|
1396
1396
|
"member": "uint64",
|
1397
1397
|
"name": "MongosNodeNum",
|
@@ -1409,7 +1409,7 @@
|
|
1409
1409
|
},
|
1410
1410
|
{
|
1411
1411
|
"disabled": false,
|
1412
|
-
"document": "
|
1412
|
+
"document": "指只读节点所属可用区数组。跨可用区部署实例,参数**ReadonlyNodeNum**不为**0**时,必须配置该参数。",
|
1413
1413
|
"example": "无",
|
1414
1414
|
"member": "string",
|
1415
1415
|
"name": "ReadonlyNodeAvailabilityZoneList",
|
@@ -17044,52 +17044,62 @@
|
|
17044
17044
|
{
|
17045
17045
|
"disabled": false,
|
17046
17046
|
"document": "识别的物体名称。",
|
17047
|
-
"example": "",
|
17047
|
+
"example": "无",
|
17048
17048
|
"member": "string",
|
17049
17049
|
"name": "Name",
|
17050
|
-
"
|
17050
|
+
"output_required": true,
|
17051
17051
|
"type": "string",
|
17052
17052
|
"value_allowed_null": false
|
17053
17053
|
},
|
17054
17054
|
{
|
17055
17055
|
"disabled": false,
|
17056
17056
|
"document": "识别片段起始的 PTS 时间,单位:秒。",
|
17057
|
-
"example": "",
|
17057
|
+
"example": "无",
|
17058
17058
|
"member": "float",
|
17059
17059
|
"name": "StartPtsOffset",
|
17060
|
-
"
|
17060
|
+
"output_required": true,
|
17061
17061
|
"type": "float",
|
17062
17062
|
"value_allowed_null": false
|
17063
17063
|
},
|
17064
17064
|
{
|
17065
17065
|
"disabled": false,
|
17066
17066
|
"document": "识别片段终止的 PTS 时间,单位:秒。",
|
17067
|
-
"example": "",
|
17067
|
+
"example": "无",
|
17068
17068
|
"member": "float",
|
17069
17069
|
"name": "EndPtsOffset",
|
17070
|
-
"
|
17070
|
+
"output_required": true,
|
17071
17071
|
"type": "float",
|
17072
17072
|
"value_allowed_null": false
|
17073
17073
|
},
|
17074
17074
|
{
|
17075
17075
|
"disabled": false,
|
17076
17076
|
"document": "识别片段置信度。取值:0~100。",
|
17077
|
-
"example": "",
|
17077
|
+
"example": "无",
|
17078
17078
|
"member": "float",
|
17079
17079
|
"name": "Confidence",
|
17080
|
-
"
|
17080
|
+
"output_required": true,
|
17081
17081
|
"type": "float",
|
17082
17082
|
"value_allowed_null": false
|
17083
17083
|
},
|
17084
17084
|
{
|
17085
17085
|
"disabled": false,
|
17086
17086
|
"document": "识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。",
|
17087
|
-
"example": "",
|
17087
|
+
"example": "无",
|
17088
17088
|
"member": "int64",
|
17089
17089
|
"name": "AreaCoordSet",
|
17090
|
-
"
|
17090
|
+
"output_required": true,
|
17091
17091
|
"type": "list",
|
17092
17092
|
"value_allowed_null": false
|
17093
|
+
},
|
17094
|
+
{
|
17095
|
+
"disabled": false,
|
17096
|
+
"document": "截图链接。\n注意:此字段可能返回 null,表示取不到有效值。",
|
17097
|
+
"example": "无",
|
17098
|
+
"member": "string",
|
17099
|
+
"name": "Url",
|
17100
|
+
"output_required": false,
|
17101
|
+
"type": "string",
|
17102
|
+
"value_allowed_null": true
|
17093
17103
|
}
|
17094
17104
|
],
|
17095
17105
|
"usage": "out"
|
@@ -17428,6 +17438,17 @@
|
|
17428
17438
|
"required": false,
|
17429
17439
|
"type": "string",
|
17430
17440
|
"value_allowed_null": false
|
17441
|
+
},
|
17442
|
+
{
|
17443
|
+
"disabled": false,
|
17444
|
+
"document": "用于生成回调签名的 Key。\n注意:此字段可能返回 null,表示取不到有效值。",
|
17445
|
+
"example": "无",
|
17446
|
+
"member": "string",
|
17447
|
+
"name": "NotifyKey",
|
17448
|
+
"output_required": false,
|
17449
|
+
"required": false,
|
17450
|
+
"type": "string",
|
17451
|
+
"value_allowed_null": true
|
17431
17452
|
}
|
17432
17453
|
],
|
17433
17454
|
"usage": "both"
|
@@ -4680,6 +4680,16 @@
|
|
4680
4680
|
"output_required": false,
|
4681
4681
|
"type": "string",
|
4682
4682
|
"value_allowed_null": true
|
4683
|
+
},
|
4684
|
+
{
|
4685
|
+
"disabled": false,
|
4686
|
+
"document": "flink 版本\n注意:此字段可能返回 null,表示取不到有效值。",
|
4687
|
+
"example": "Flink-1.13",
|
4688
|
+
"member": "string",
|
4689
|
+
"name": "FlinkVersion",
|
4690
|
+
"output_required": false,
|
4691
|
+
"type": "string",
|
4692
|
+
"value_allowed_null": true
|
4683
4693
|
}
|
4684
4694
|
],
|
4685
4695
|
"usage": "out"
|
@@ -6735,6 +6745,7 @@
|
|
6735
6745
|
"example": "ssgA",
|
6736
6746
|
"member": "string",
|
6737
6747
|
"name": "Name",
|
6748
|
+
"output_required": true,
|
6738
6749
|
"required": true,
|
6739
6750
|
"type": "string",
|
6740
6751
|
"value_allowed_null": true
|
@@ -6745,6 +6756,7 @@
|
|
6745
6756
|
"example": "[]",
|
6746
6757
|
"member": "SlotSharingGroupSpec",
|
6747
6758
|
"name": "Spec",
|
6759
|
+
"output_required": true,
|
6748
6760
|
"required": true,
|
6749
6761
|
"type": "object",
|
6750
6762
|
"value_allowed_null": true
|
@@ -6755,9 +6767,21 @@
|
|
6755
6767
|
"example": "ssgA",
|
6756
6768
|
"member": "string",
|
6757
6769
|
"name": "Description",
|
6770
|
+
"output_required": true,
|
6758
6771
|
"required": false,
|
6759
6772
|
"type": "string",
|
6760
6773
|
"value_allowed_null": true
|
6774
|
+
},
|
6775
|
+
{
|
6776
|
+
"disabled": false,
|
6777
|
+
"document": "SlotSharingGroup的配置\n注意:此字段可能返回 null,表示取不到有效值。",
|
6778
|
+
"example": "[]",
|
6779
|
+
"member": "Property",
|
6780
|
+
"name": "Configuration",
|
6781
|
+
"output_required": false,
|
6782
|
+
"required": false,
|
6783
|
+
"type": "list",
|
6784
|
+
"value_allowed_null": true
|
6761
6785
|
}
|
6762
6786
|
],
|
6763
6787
|
"usage": "both"
|
@@ -5266,6 +5266,15 @@
|
|
5266
5266
|
"name": "FileVersion",
|
5267
5267
|
"required": false,
|
5268
5268
|
"type": "string"
|
5269
|
+
},
|
5270
|
+
{
|
5271
|
+
"disabled": false,
|
5272
|
+
"document": "查询过滤条件(根据sourcemap的文件名模糊匹配)",
|
5273
|
+
"example": "无",
|
5274
|
+
"member": "string",
|
5275
|
+
"name": "FileName",
|
5276
|
+
"required": false,
|
5277
|
+
"type": "string"
|
5269
5278
|
}
|
5270
5279
|
],
|
5271
5280
|
"type": "object"
|