tccli 3.0.1136.1__py2.py3-none-any.whl → 3.0.1137.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/command.py +4 -1
- tccli/help_command.py +4 -1
- tccli/services/cdb/v20170320/api.json +3 -3
- tccli/services/cls/v20201016/api.json +93 -0
- tccli/services/cwp/cwp_client.py +0 -53
- tccli/services/cwp/v20180228/api.json +0 -43
- tccli/services/cwp/v20180228/examples.json +0 -8
- tccli/services/cynosdb/v20190107/api.json +10 -0
- tccli/services/dlc/v20210125/api.json +23 -23
- tccli/services/dlc/v20210125/examples.json +6 -6
- tccli/services/dts/v20211206/api.json +3 -3
- tccli/services/essbasic/v20210526/api.json +2 -2
- tccli/services/faceid/v20180301/api.json +1 -1
- tccli/services/ioa/ioa_client.py +159 -0
- tccli/services/ioa/v20220601/api.json +897 -80
- tccli/services/ioa/v20220601/examples.json +24 -0
- tccli/services/iotexplorer/iotexplorer_client.py +178 -19
- tccli/services/iotexplorer/v20190423/api.json +199 -0
- tccli/services/iotexplorer/v20190423/examples.json +24 -0
- tccli/services/live/v20180801/api.json +12 -6
- tccli/services/ocr/v20181119/api.json +2 -2
- tccli/services/partners/v20180321/api.json +26 -16
- tccli/services/tcr/v20190924/api.json +57 -35
- tccli/services/tcr/v20190924/examples.json +4 -4
- tccli/services/tcss/v20201101/api.json +123 -13
- tccli/services/tcss/v20201101/examples.json +3 -3
- tccli/services/tke/v20180525/api.json +13 -3
- tccli/services/tts/v20190823/api.json +2 -2
- tccli/services/wedata/v20210820/api.json +377 -0
- tccli/services/wedata/v20210820/examples.json +8 -0
- tccli/services/wedata/wedata_client.py +61 -8
- {tccli-3.0.1136.1.dist-info → tccli-3.0.1137.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1136.1.dist-info → tccli-3.0.1137.1.dist-info}/RECORD +37 -37
- {tccli-3.0.1136.1.dist-info → tccli-3.0.1137.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1136.1.dist-info → tccli-3.0.1137.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1136.1.dist-info → tccli-3.0.1137.1.dist-info}/license_files/LICENSE +0 -0
@@ -1,11 +1,32 @@
|
|
1
1
|
{
|
2
2
|
"actions": {
|
3
|
+
"DescribeAccountGroups": {
|
4
|
+
"document": "以分页的方式查询账户目录列表,私有化调用path为:/capi/Assets/DescribeAccountGroups",
|
5
|
+
"input": "DescribeAccountGroupsRequest",
|
6
|
+
"name": "查询账户目录列表",
|
7
|
+
"output": "DescribeAccountGroupsResponse",
|
8
|
+
"status": "online"
|
9
|
+
},
|
3
10
|
"DescribeDevices": {
|
4
11
|
"document": "查询满足条件的终端数据详情,私有化调用path为:/capi/Assets/Device/DescribeDevices",
|
5
12
|
"input": "DescribeDevicesRequest",
|
6
13
|
"name": "查询设备列表详情",
|
7
14
|
"output": "DescribeDevicesResponse",
|
8
15
|
"status": "online"
|
16
|
+
},
|
17
|
+
"DescribeLocalAccounts": {
|
18
|
+
"document": "获取账号列表,支持分页,模糊搜索,私有化调用path为:/capi/Assets/Account/DescribeLocalAccounts",
|
19
|
+
"input": "DescribeLocalAccountsRequest",
|
20
|
+
"name": "获取账号列表",
|
21
|
+
"output": "DescribeLocalAccountsResponse",
|
22
|
+
"status": "online"
|
23
|
+
},
|
24
|
+
"DescribeRootAccountGroup": {
|
25
|
+
"document": "查询账户根分组详情,私有化调用path为:capi/Assets/DescribeRootAccountGroup",
|
26
|
+
"input": "DescribeRootAccountGroupRequest",
|
27
|
+
"name": "查询账户根分组详情",
|
28
|
+
"output": "DescribeRootAccountGroupResponse",
|
29
|
+
"status": "online"
|
9
30
|
}
|
10
31
|
},
|
11
32
|
"metadata": {
|
@@ -48,15 +69,651 @@
|
|
48
69
|
"name": "Sort",
|
49
70
|
"output_required": false,
|
50
71
|
"required": false,
|
51
|
-
"type": "object",
|
72
|
+
"type": "object",
|
73
|
+
"value_allowed_null": true
|
74
|
+
},
|
75
|
+
{
|
76
|
+
"disabled": false,
|
77
|
+
"document": "PageSize 每页获取数(只支持32位)\n注意:此字段可能返回 null,表示取不到有效值。",
|
78
|
+
"example": "-",
|
79
|
+
"member": "int64",
|
80
|
+
"name": "PageSize",
|
81
|
+
"output_required": false,
|
82
|
+
"required": false,
|
83
|
+
"type": "int",
|
84
|
+
"value_allowed_null": true
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"disabled": false,
|
88
|
+
"document": "PageNum 获取第几页(只支持32位)\n注意:此字段可能返回 null,表示取不到有效值。",
|
89
|
+
"example": "-",
|
90
|
+
"member": "int64",
|
91
|
+
"name": "PageNum",
|
92
|
+
"output_required": false,
|
93
|
+
"required": false,
|
94
|
+
"type": "int",
|
95
|
+
"value_allowed_null": true
|
96
|
+
}
|
97
|
+
],
|
98
|
+
"usage": "both"
|
99
|
+
},
|
100
|
+
"DescribeAccountGroupsData": {
|
101
|
+
"document": "账户分响应对象集合",
|
102
|
+
"members": [
|
103
|
+
{
|
104
|
+
"disabled": false,
|
105
|
+
"document": "创建时间\n注意:此字段可能返回 null,表示取不到有效值。",
|
106
|
+
"example": "-",
|
107
|
+
"member": "string",
|
108
|
+
"name": "Itime",
|
109
|
+
"required": false,
|
110
|
+
"type": "string",
|
111
|
+
"value_allowed_null": true
|
112
|
+
},
|
113
|
+
{
|
114
|
+
"disabled": false,
|
115
|
+
"document": "账户组名称\n注意:此字段可能返回 null,表示取不到有效值。",
|
116
|
+
"example": "-",
|
117
|
+
"member": "string",
|
118
|
+
"name": "Name",
|
119
|
+
"required": false,
|
120
|
+
"type": "string",
|
121
|
+
"value_allowed_null": true
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"disabled": false,
|
125
|
+
"document": "id patch数组\n注意:此字段可能返回 null,表示取不到有效值。",
|
126
|
+
"example": "-",
|
127
|
+
"member": "int64",
|
128
|
+
"name": "IdPathArr",
|
129
|
+
"required": false,
|
130
|
+
"type": "list",
|
131
|
+
"value_allowed_null": true
|
132
|
+
},
|
133
|
+
{
|
134
|
+
"disabled": false,
|
135
|
+
"document": "该分组下用户总数\n注意:此字段可能返回 null,表示取不到有效值。",
|
136
|
+
"example": "-",
|
137
|
+
"member": "int64",
|
138
|
+
"name": "UserTotal",
|
139
|
+
"required": false,
|
140
|
+
"type": "int",
|
141
|
+
"value_allowed_null": true
|
142
|
+
},
|
143
|
+
{
|
144
|
+
"disabled": false,
|
145
|
+
"document": "扩展信息\n注意:此字段可能返回 null,表示取不到有效值。",
|
146
|
+
"example": "-",
|
147
|
+
"member": "string",
|
148
|
+
"name": "ExtraInfo",
|
149
|
+
"required": false,
|
150
|
+
"type": "string",
|
151
|
+
"value_allowed_null": true
|
152
|
+
},
|
153
|
+
{
|
154
|
+
"disabled": false,
|
155
|
+
"document": "导入类型\n注意:此字段可能返回 null,表示取不到有效值。",
|
156
|
+
"example": "-",
|
157
|
+
"member": "string",
|
158
|
+
"name": "ImportType",
|
159
|
+
"required": false,
|
160
|
+
"type": "string",
|
161
|
+
"value_allowed_null": true
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"disabled": false,
|
165
|
+
"document": "描述\n注意:此字段可能返回 null,表示取不到有效值。",
|
166
|
+
"example": "-",
|
167
|
+
"member": "string",
|
168
|
+
"name": "Description",
|
169
|
+
"required": false,
|
170
|
+
"type": "string",
|
171
|
+
"value_allowed_null": true
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"disabled": false,
|
175
|
+
"document": "同步数据源\n注意:此字段可能返回 null,表示取不到有效值。",
|
176
|
+
"example": "-",
|
177
|
+
"member": "int64",
|
178
|
+
"name": "Source",
|
179
|
+
"required": false,
|
180
|
+
"type": "int",
|
181
|
+
"value_allowed_null": true
|
182
|
+
},
|
183
|
+
{
|
184
|
+
"disabled": false,
|
185
|
+
"document": "miniIAM id\n注意:此字段可能返回 null,表示取不到有效值。",
|
186
|
+
"example": "-",
|
187
|
+
"member": "string",
|
188
|
+
"name": "MiniIamId",
|
189
|
+
"required": false,
|
190
|
+
"type": "string",
|
191
|
+
"value_allowed_null": true
|
192
|
+
},
|
193
|
+
{
|
194
|
+
"disabled": false,
|
195
|
+
"document": "组织id\n注意:此字段可能返回 null,表示取不到有效值。",
|
196
|
+
"example": "-",
|
197
|
+
"member": "string",
|
198
|
+
"name": "OrgId",
|
199
|
+
"required": false,
|
200
|
+
"type": "string",
|
201
|
+
"value_allowed_null": true
|
202
|
+
},
|
203
|
+
{
|
204
|
+
"disabled": false,
|
205
|
+
"document": "是否该账户的直接权限\n注意:此字段可能返回 null,表示取不到有效值。",
|
206
|
+
"example": "-",
|
207
|
+
"member": "bool",
|
208
|
+
"name": "ReadOnly",
|
209
|
+
"required": false,
|
210
|
+
"type": "bool",
|
211
|
+
"value_allowed_null": true
|
212
|
+
},
|
213
|
+
{
|
214
|
+
"disabled": false,
|
215
|
+
"document": "父id\n注意:此字段可能返回 null,表示取不到有效值。",
|
216
|
+
"example": "-",
|
217
|
+
"member": "int64",
|
218
|
+
"name": "ParentId",
|
219
|
+
"required": false,
|
220
|
+
"type": "int",
|
221
|
+
"value_allowed_null": true
|
222
|
+
},
|
223
|
+
{
|
224
|
+
"disabled": false,
|
225
|
+
"document": "名称path\n注意:此字段可能返回 null,表示取不到有效值。",
|
226
|
+
"example": "-",
|
227
|
+
"member": "string",
|
228
|
+
"name": "NamePath",
|
229
|
+
"required": false,
|
230
|
+
"type": "string",
|
231
|
+
"value_allowed_null": true
|
232
|
+
},
|
233
|
+
{
|
234
|
+
"disabled": false,
|
235
|
+
"document": "父组织id\n注意:此字段可能返回 null,表示取不到有效值。",
|
236
|
+
"example": "-",
|
237
|
+
"member": "string",
|
238
|
+
"name": "ParentOrgId",
|
239
|
+
"required": false,
|
240
|
+
"type": "string",
|
241
|
+
"value_allowed_null": true
|
242
|
+
},
|
243
|
+
{
|
244
|
+
"disabled": false,
|
245
|
+
"document": "id path\n注意:此字段可能返回 null,表示取不到有效值。",
|
246
|
+
"example": "-",
|
247
|
+
"member": "string",
|
248
|
+
"name": "IdPath",
|
249
|
+
"required": false,
|
250
|
+
"type": "string",
|
251
|
+
"value_allowed_null": true
|
252
|
+
},
|
253
|
+
{
|
254
|
+
"disabled": false,
|
255
|
+
"document": "自增id\n注意:此字段可能返回 null,表示取不到有效值。",
|
256
|
+
"example": "-",
|
257
|
+
"member": "int64",
|
258
|
+
"name": "Id",
|
259
|
+
"required": false,
|
260
|
+
"type": "int",
|
261
|
+
"value_allowed_null": true
|
262
|
+
},
|
263
|
+
{
|
264
|
+
"disabled": false,
|
265
|
+
"document": "是否叶子节点\n注意:此字段可能返回 null,表示取不到有效值。",
|
266
|
+
"example": "-",
|
267
|
+
"member": "bool",
|
268
|
+
"name": "IsLeaf",
|
269
|
+
"required": false,
|
270
|
+
"type": "bool",
|
271
|
+
"value_allowed_null": true
|
272
|
+
},
|
273
|
+
{
|
274
|
+
"disabled": false,
|
275
|
+
"document": "最后更新时间\n注意:此字段可能返回 null,表示取不到有效值。",
|
276
|
+
"example": "-",
|
277
|
+
"member": "string",
|
278
|
+
"name": "Utime",
|
279
|
+
"required": false,
|
280
|
+
"type": "string",
|
281
|
+
"value_allowed_null": true
|
282
|
+
}
|
283
|
+
],
|
284
|
+
"usage": "out"
|
285
|
+
},
|
286
|
+
"DescribeAccountGroupsPageResp": {
|
287
|
+
"document": "账户分组详情响应数据",
|
288
|
+
"members": [
|
289
|
+
{
|
290
|
+
"disabled": false,
|
291
|
+
"document": "账户分响应对象集合\n注意:此字段可能返回 null,表示取不到有效值。",
|
292
|
+
"example": "-",
|
293
|
+
"member": "DescribeAccountGroupsData",
|
294
|
+
"name": "Items",
|
295
|
+
"required": false,
|
296
|
+
"type": "list",
|
297
|
+
"value_allowed_null": true
|
298
|
+
},
|
299
|
+
{
|
300
|
+
"disabled": false,
|
301
|
+
"document": "分页公共对象\n注意:此字段可能返回 null,表示取不到有效值。",
|
302
|
+
"example": "-",
|
303
|
+
"member": "Paging",
|
304
|
+
"name": "Page",
|
305
|
+
"required": false,
|
306
|
+
"type": "object",
|
307
|
+
"value_allowed_null": true
|
308
|
+
}
|
309
|
+
],
|
310
|
+
"usage": "out"
|
311
|
+
},
|
312
|
+
"DescribeAccountGroupsRequest": {
|
313
|
+
"document": "DescribeAccountGroups请求参数结构体",
|
314
|
+
"members": [
|
315
|
+
{
|
316
|
+
"disabled": false,
|
317
|
+
"document": "搜索范围,0-仅搜直接子组,1-深层搜索(只支持32位)",
|
318
|
+
"example": "无",
|
319
|
+
"member": "int64",
|
320
|
+
"name": "Deepin",
|
321
|
+
"required": false,
|
322
|
+
"type": "int"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"disabled": false,
|
326
|
+
"document": "滤条件、分页参数\n<li>Name - String - 是否必填:否 - 操作符: like - 排序支持:否- 按账号分组过滤。</li>\n排序条件\n<li>Itime - string - 是否必填:否 - 排序支持:是 - 按账号分组创建时间排序。</li>\n<li>Utime - string - 是否必填:否 - 排序支持:是 - 按账号分组更新时间排序。</li>",
|
327
|
+
"example": "无",
|
328
|
+
"member": "Condition",
|
329
|
+
"name": "Condition",
|
330
|
+
"required": false,
|
331
|
+
"type": "object"
|
332
|
+
},
|
333
|
+
{
|
334
|
+
"disabled": false,
|
335
|
+
"document": "父分组id",
|
336
|
+
"example": "无",
|
337
|
+
"member": "int64",
|
338
|
+
"name": "ParentId",
|
339
|
+
"required": false,
|
340
|
+
"type": "int"
|
341
|
+
}
|
342
|
+
],
|
343
|
+
"type": "object"
|
344
|
+
},
|
345
|
+
"DescribeAccountGroupsResponse": {
|
346
|
+
"document": "DescribeAccountGroups返回参数结构体",
|
347
|
+
"members": [
|
348
|
+
{
|
349
|
+
"disabled": false,
|
350
|
+
"document": "账户分组详情响应数据\n注意:此字段可能返回 null,表示取不到有效值。",
|
351
|
+
"example": "无",
|
352
|
+
"member": "DescribeAccountGroupsPageResp",
|
353
|
+
"name": "Data",
|
354
|
+
"required": false,
|
355
|
+
"type": "object",
|
356
|
+
"value_allowed_null": true
|
357
|
+
},
|
358
|
+
{
|
359
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
360
|
+
"member": "string",
|
361
|
+
"name": "RequestId",
|
362
|
+
"type": "string"
|
363
|
+
}
|
364
|
+
],
|
365
|
+
"type": "object"
|
366
|
+
},
|
367
|
+
"DescribeDevicesPageRsp": {
|
368
|
+
"document": "分页的data数据",
|
369
|
+
"members": [
|
370
|
+
{
|
371
|
+
"disabled": false,
|
372
|
+
"document": "数据分页信息\n注意:此字段可能返回 null,表示取不到有效值。",
|
373
|
+
"example": "-",
|
374
|
+
"member": "Paging",
|
375
|
+
"name": "Paging",
|
376
|
+
"output_required": false,
|
377
|
+
"required": false,
|
378
|
+
"type": "object",
|
379
|
+
"value_allowed_null": true
|
380
|
+
},
|
381
|
+
{
|
382
|
+
"disabled": false,
|
383
|
+
"document": "业务响应数据\n注意:此字段可能返回 null,表示取不到有效值。",
|
384
|
+
"example": "-",
|
385
|
+
"member": "DeviceDetail",
|
386
|
+
"name": "Items",
|
387
|
+
"output_required": false,
|
388
|
+
"required": false,
|
389
|
+
"type": "list",
|
390
|
+
"value_allowed_null": true
|
391
|
+
}
|
392
|
+
],
|
393
|
+
"usage": "both"
|
394
|
+
},
|
395
|
+
"DescribeDevicesRequest": {
|
396
|
+
"document": "DescribeDevices请求参数结构体",
|
397
|
+
"members": [
|
398
|
+
{
|
399
|
+
"disabled": false,
|
400
|
+
"document": "过滤条件<br>\n<li>Ip - String - 是否必填:否 - 操作符: eq - 排序支持:否- 按照Ip进行过滤。</li>\n<li>MacAddr - String - 是否必填:否 - 操作符: eq - 排序支持:否- 按照mac地址进行过滤。</li>\n<li>IoaUserName - String - 是否必填:否 - 操作符: eq - 排序支持:否- 按照ioa用户名进行过滤。</li>\n分页参数<br>\n<li>PageNum 从1开始,小于等于0时使用默认参数。</li>\n<li>PageSize 最大值5000,最好不超过100。</li>",
|
401
|
+
"example": "无",
|
402
|
+
"member": "Condition",
|
403
|
+
"name": "Condition",
|
404
|
+
"required": false,
|
405
|
+
"type": "object"
|
406
|
+
},
|
407
|
+
{
|
408
|
+
"disabled": false,
|
409
|
+
"document": "私有化默认分组id-名称-操作系统\n1\t全网终端\tWin\n2\t未分组终端\tWin\n30000000\t服务器\tWin\n40000101\t全网终端\tLinux\n40000102\t未分组终端\tLinux\n40000103\t服务器\tLinux\n40000201\t全网终端\tmacOS\n40000202\t未分组终端\tmacOS\n40000203\t服务器\tmacOS\n40000401\t全网终端\tAndroid\n40000402\t未分组终端\tAndroid\n40000501\t全网终端\tiOS\n40000502\t未分组终端\tiOS",
|
410
|
+
"example": "1",
|
411
|
+
"member": "int64",
|
412
|
+
"name": "GroupId",
|
413
|
+
"required": false,
|
414
|
+
"type": "int"
|
415
|
+
},
|
416
|
+
{
|
417
|
+
"disabled": false,
|
418
|
+
"document": "系统类型(0: win,1:linux,2: mac,3: win_srv,4:android,5:ios 默认值0)",
|
419
|
+
"example": "0",
|
420
|
+
"member": "int64",
|
421
|
+
"name": "OsType",
|
422
|
+
"required": false,
|
423
|
+
"type": "int"
|
424
|
+
},
|
425
|
+
{
|
426
|
+
"disabled": false,
|
427
|
+
"document": "在线状态 2 在线 0,1 离线",
|
428
|
+
"example": "2",
|
429
|
+
"member": "int64",
|
430
|
+
"name": "OnlineStatus",
|
431
|
+
"required": false,
|
432
|
+
"type": "int"
|
433
|
+
},
|
434
|
+
{
|
435
|
+
"disabled": false,
|
436
|
+
"document": "过滤条件--兼容旧接口,参数同Condition",
|
437
|
+
"example": "无",
|
438
|
+
"member": "Filter",
|
439
|
+
"name": "Filters",
|
440
|
+
"required": false,
|
441
|
+
"type": "list"
|
442
|
+
},
|
443
|
+
{
|
444
|
+
"disabled": false,
|
445
|
+
"document": "排序字段--兼容旧接口,参数同Condition",
|
446
|
+
"example": "无",
|
447
|
+
"member": "Sort",
|
448
|
+
"name": "Sort",
|
449
|
+
"required": false,
|
450
|
+
"type": "object"
|
451
|
+
},
|
452
|
+
{
|
453
|
+
"disabled": false,
|
454
|
+
"document": "获取第几页--兼容旧接口,参数同Condition(只支持32位)",
|
455
|
+
"example": "1",
|
456
|
+
"member": "int64",
|
457
|
+
"name": "PageNum",
|
458
|
+
"required": false,
|
459
|
+
"type": "int"
|
460
|
+
},
|
461
|
+
{
|
462
|
+
"disabled": false,
|
463
|
+
"document": "每页获取数--兼容旧接口,参数同Condition(只支持32位)",
|
464
|
+
"example": "20",
|
465
|
+
"member": "int64",
|
466
|
+
"name": "PageSize",
|
467
|
+
"required": false,
|
468
|
+
"type": "int"
|
469
|
+
},
|
470
|
+
{
|
471
|
+
"disabled": false,
|
472
|
+
"document": "授权状态 4未授权 5已授权",
|
473
|
+
"example": "4",
|
474
|
+
"member": "int64",
|
475
|
+
"name": "Status",
|
476
|
+
"required": false,
|
477
|
+
"type": "int"
|
478
|
+
}
|
479
|
+
],
|
480
|
+
"type": "object"
|
481
|
+
},
|
482
|
+
"DescribeDevicesResponse": {
|
483
|
+
"document": "DescribeDevices返回参数结构体",
|
484
|
+
"members": [
|
485
|
+
{
|
486
|
+
"disabled": false,
|
487
|
+
"document": "分页的data数据\n注意:此字段可能返回 null,表示取不到有效值。",
|
488
|
+
"example": "无",
|
489
|
+
"member": "DescribeDevicesPageRsp",
|
490
|
+
"name": "Data",
|
491
|
+
"output_required": true,
|
492
|
+
"type": "object",
|
493
|
+
"value_allowed_null": true
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
497
|
+
"member": "string",
|
498
|
+
"name": "RequestId",
|
499
|
+
"type": "string"
|
500
|
+
}
|
501
|
+
],
|
502
|
+
"type": "object"
|
503
|
+
},
|
504
|
+
"DescribeLocalAccountAccountGroupsData": {
|
505
|
+
"document": "所属组",
|
506
|
+
"members": [
|
507
|
+
{
|
508
|
+
"disabled": false,
|
509
|
+
"document": "组Id(只支持32位)\n注意:此字段可能返回 null,表示取不到有效值。",
|
510
|
+
"example": "-",
|
511
|
+
"member": "int64",
|
512
|
+
"name": "AccountGroupId",
|
513
|
+
"output_required": true,
|
514
|
+
"required": false,
|
515
|
+
"type": "int",
|
516
|
+
"value_allowed_null": true
|
517
|
+
}
|
518
|
+
],
|
519
|
+
"usage": "both"
|
520
|
+
},
|
521
|
+
"DescribeLocalAccountsData": {
|
522
|
+
"document": "获取账号列表响应的单个对象",
|
523
|
+
"members": [
|
524
|
+
{
|
525
|
+
"disabled": false,
|
526
|
+
"document": "uid,数据库中唯一\n注意:此字段可能返回 null,表示取不到有效值。",
|
527
|
+
"example": "-",
|
528
|
+
"member": "int64",
|
529
|
+
"name": "Id",
|
530
|
+
"output_required": true,
|
531
|
+
"required": false,
|
532
|
+
"type": "int",
|
533
|
+
"value_allowed_null": true
|
534
|
+
},
|
535
|
+
{
|
536
|
+
"disabled": false,
|
537
|
+
"document": "账号,登录账号\n注意:此字段可能返回 null,表示取不到有效值。",
|
538
|
+
"example": "-",
|
539
|
+
"member": "string",
|
540
|
+
"name": "UserId",
|
541
|
+
"output_required": true,
|
542
|
+
"required": false,
|
543
|
+
"type": "string",
|
544
|
+
"value_allowed_null": true
|
545
|
+
},
|
546
|
+
{
|
547
|
+
"disabled": false,
|
548
|
+
"document": "用户名\n注意:此字段可能返回 null,表示取不到有效值。",
|
549
|
+
"example": "-",
|
550
|
+
"member": "string",
|
551
|
+
"name": "UserName",
|
552
|
+
"output_required": true,
|
553
|
+
"required": false,
|
554
|
+
"type": "string",
|
555
|
+
"value_allowed_null": true
|
556
|
+
},
|
557
|
+
{
|
558
|
+
"disabled": false,
|
559
|
+
"document": "账号id,同Id字段\n注意:此字段可能返回 null,表示取不到有效值。",
|
560
|
+
"example": "-",
|
561
|
+
"member": "int64",
|
562
|
+
"name": "AccountId",
|
563
|
+
"output_required": true,
|
564
|
+
"required": false,
|
565
|
+
"type": "int",
|
566
|
+
"value_allowed_null": true
|
567
|
+
},
|
568
|
+
{
|
569
|
+
"disabled": false,
|
570
|
+
"document": "账号所在的分组id\n注意:此字段可能返回 null,表示取不到有效值。",
|
571
|
+
"example": "-",
|
572
|
+
"member": "int64",
|
573
|
+
"name": "GroupId",
|
574
|
+
"output_required": true,
|
575
|
+
"required": false,
|
576
|
+
"type": "int",
|
577
|
+
"value_allowed_null": true
|
578
|
+
},
|
579
|
+
{
|
580
|
+
"disabled": false,
|
581
|
+
"document": "账号所在的分组名称\n注意:此字段可能返回 null,表示取不到有效值。",
|
582
|
+
"example": "-",
|
583
|
+
"member": "string",
|
584
|
+
"name": "GroupName",
|
585
|
+
"output_required": true,
|
586
|
+
"required": false,
|
587
|
+
"type": "string",
|
588
|
+
"value_allowed_null": true
|
589
|
+
},
|
590
|
+
{
|
591
|
+
"disabled": false,
|
592
|
+
"document": "账号所在的分组名称路径,用英文.分割\n注意:此字段可能返回 null,表示取不到有效值。",
|
593
|
+
"example": "-",
|
594
|
+
"member": "string",
|
595
|
+
"name": "NamePath",
|
596
|
+
"output_required": true,
|
597
|
+
"required": false,
|
598
|
+
"type": "string",
|
599
|
+
"value_allowed_null": true
|
600
|
+
},
|
601
|
+
{
|
602
|
+
"disabled": false,
|
603
|
+
"document": "账号来源,0表示本地账号(只支持32位)\n注意:此字段可能返回 null,表示取不到有效值。",
|
604
|
+
"example": "-",
|
605
|
+
"member": "int64",
|
606
|
+
"name": "Source",
|
607
|
+
"output_required": true,
|
608
|
+
"required": false,
|
609
|
+
"type": "int",
|
610
|
+
"value_allowed_null": true
|
611
|
+
},
|
612
|
+
{
|
613
|
+
"disabled": false,
|
614
|
+
"document": "账号状态,0禁用,1启用(只支持32位)\n注意:此字段可能返回 null,表示取不到有效值。",
|
615
|
+
"example": "-",
|
616
|
+
"member": "int64",
|
617
|
+
"name": "Status",
|
618
|
+
"output_required": true,
|
619
|
+
"required": false,
|
620
|
+
"type": "int",
|
621
|
+
"value_allowed_null": true
|
622
|
+
},
|
623
|
+
{
|
624
|
+
"disabled": false,
|
625
|
+
"document": "账号的创建时间\n注意:此字段可能返回 null,表示取不到有效值。",
|
626
|
+
"example": "-",
|
627
|
+
"member": "string",
|
628
|
+
"name": "Itime",
|
629
|
+
"output_required": true,
|
630
|
+
"required": false,
|
631
|
+
"type": "string",
|
632
|
+
"value_allowed_null": true
|
633
|
+
},
|
634
|
+
{
|
635
|
+
"disabled": false,
|
636
|
+
"document": "账号的最后更新时间\n注意:此字段可能返回 null,表示取不到有效值。",
|
637
|
+
"example": "-",
|
638
|
+
"member": "string",
|
639
|
+
"name": "Utime",
|
640
|
+
"output_required": true,
|
641
|
+
"required": false,
|
642
|
+
"type": "string",
|
643
|
+
"value_allowed_null": true
|
644
|
+
},
|
645
|
+
{
|
646
|
+
"disabled": false,
|
647
|
+
"document": "账号的扩展信息,包含邮箱、手机号、身份证、职位等信息\n注意:此字段可能返回 null,表示取不到有效值。",
|
648
|
+
"example": "-",
|
649
|
+
"member": "string",
|
650
|
+
"name": "ExtraInfo",
|
651
|
+
"output_required": true,
|
652
|
+
"required": false,
|
653
|
+
"type": "string",
|
654
|
+
"value_allowed_null": true
|
655
|
+
},
|
656
|
+
{
|
657
|
+
"disabled": false,
|
658
|
+
"document": "用户风险等级,枚举:none, low, middle, high\n注意:此字段可能返回 null,表示取不到有效值。",
|
659
|
+
"example": "-",
|
660
|
+
"member": "string",
|
661
|
+
"name": "RiskLevel",
|
662
|
+
"output_required": false,
|
663
|
+
"required": false,
|
664
|
+
"type": "string",
|
665
|
+
"value_allowed_null": true
|
666
|
+
},
|
667
|
+
{
|
668
|
+
"disabled": false,
|
669
|
+
"document": "所属组\n注意:此字段可能返回 null,表示取不到有效值。",
|
670
|
+
"example": "-",
|
671
|
+
"member": "DescribeLocalAccountAccountGroupsData",
|
672
|
+
"name": "AccountGroups",
|
673
|
+
"output_required": false,
|
674
|
+
"required": false,
|
675
|
+
"type": "list",
|
676
|
+
"value_allowed_null": true
|
677
|
+
},
|
678
|
+
{
|
679
|
+
"disabled": false,
|
680
|
+
"document": "绑定手机端设备数\n注意:此字段可能返回 null,表示取不到有效值。",
|
681
|
+
"example": "无",
|
682
|
+
"member": "int64",
|
683
|
+
"name": "MobileBindNum",
|
684
|
+
"output_required": false,
|
685
|
+
"required": false,
|
686
|
+
"type": "int",
|
687
|
+
"value_allowed_null": true
|
688
|
+
},
|
689
|
+
{
|
690
|
+
"disabled": false,
|
691
|
+
"document": "绑定Pc端设备数\n注意:此字段可能返回 null,表示取不到有效值。",
|
692
|
+
"example": "无",
|
693
|
+
"member": "int64",
|
694
|
+
"name": "PcBindNum",
|
695
|
+
"output_required": false,
|
696
|
+
"required": false,
|
697
|
+
"type": "int",
|
698
|
+
"value_allowed_null": true
|
699
|
+
},
|
700
|
+
{
|
701
|
+
"disabled": false,
|
702
|
+
"document": "账号在线状态 1:在线 2:离线\n注意:此字段可能返回 null,表示取不到有效值。",
|
703
|
+
"example": "无",
|
704
|
+
"member": "int64",
|
705
|
+
"name": "OnlineStatus",
|
706
|
+
"output_required": false,
|
707
|
+
"required": false,
|
708
|
+
"type": "int",
|
52
709
|
"value_allowed_null": true
|
53
710
|
},
|
54
711
|
{
|
55
712
|
"disabled": false,
|
56
|
-
"document": "
|
57
|
-
"example": "
|
713
|
+
"document": "账号活跃状态 1:活跃 2:非活跃\n注意:此字段可能返回 null,表示取不到有效值。",
|
714
|
+
"example": "无",
|
58
715
|
"member": "int64",
|
59
|
-
"name": "
|
716
|
+
"name": "ActiveStatus",
|
60
717
|
"output_required": false,
|
61
718
|
"required": false,
|
62
719
|
"type": "int",
|
@@ -64,39 +721,50 @@
|
|
64
721
|
},
|
65
722
|
{
|
66
723
|
"disabled": false,
|
67
|
-
"document": "
|
68
|
-
"example": "
|
69
|
-
"member": "
|
70
|
-
"name": "
|
724
|
+
"document": "账号登录时间\n注意:此字段可能返回 null,表示取不到有效值。",
|
725
|
+
"example": "无",
|
726
|
+
"member": "string",
|
727
|
+
"name": "LoginTime",
|
71
728
|
"output_required": false,
|
72
729
|
"required": false,
|
73
|
-
"type": "
|
730
|
+
"type": "string",
|
731
|
+
"value_allowed_null": true
|
732
|
+
},
|
733
|
+
{
|
734
|
+
"disabled": false,
|
735
|
+
"document": "账号登出时间\n注意:此字段可能返回 null,表示取不到有效值。",
|
736
|
+
"example": "无",
|
737
|
+
"member": "string",
|
738
|
+
"name": "LogoutTime",
|
739
|
+
"output_required": false,
|
740
|
+
"required": false,
|
741
|
+
"type": "string",
|
74
742
|
"value_allowed_null": true
|
75
743
|
}
|
76
744
|
],
|
77
745
|
"usage": "both"
|
78
746
|
},
|
79
|
-
"
|
80
|
-
"document": "
|
747
|
+
"DescribeLocalAccountsPage": {
|
748
|
+
"document": "获取账号列表响应的分页对象",
|
81
749
|
"members": [
|
82
750
|
{
|
83
751
|
"disabled": false,
|
84
|
-
"document": "
|
752
|
+
"document": "公共分页对象\n注意:此字段可能返回 null,表示取不到有效值。",
|
85
753
|
"example": "-",
|
86
754
|
"member": "Paging",
|
87
|
-
"name": "
|
88
|
-
"output_required":
|
755
|
+
"name": "Page",
|
756
|
+
"output_required": true,
|
89
757
|
"required": false,
|
90
758
|
"type": "object",
|
91
759
|
"value_allowed_null": true
|
92
760
|
},
|
93
761
|
{
|
94
762
|
"disabled": false,
|
95
|
-
"document": "
|
763
|
+
"document": "获取账号列表响应的单个对象\n注意:此字段可能返回 null,表示取不到有效值。",
|
96
764
|
"example": "-",
|
97
|
-
"member": "
|
765
|
+
"member": "DescribeLocalAccountsData",
|
98
766
|
"name": "Items",
|
99
|
-
"output_required":
|
767
|
+
"output_required": true,
|
100
768
|
"required": false,
|
101
769
|
"type": "list",
|
102
770
|
"value_allowed_null": true
|
@@ -104,12 +772,12 @@
|
|
104
772
|
],
|
105
773
|
"usage": "both"
|
106
774
|
},
|
107
|
-
"
|
108
|
-
"document": "
|
775
|
+
"DescribeLocalAccountsRequest": {
|
776
|
+
"document": "DescribeLocalAccounts请求参数结构体",
|
109
777
|
"members": [
|
110
778
|
{
|
111
779
|
"disabled": false,
|
112
|
-
"document": "
|
780
|
+
"document": "滤条件、分页参数\n<li>UserName - String - 是否必填:否 - 操作符: eq,like - 排序支持:否- 按账号UserName过滤。</li>\n<li>UserId - string - 是否必填:否 - 操作符: eq,like - 排序支持:否 - 按账号UserNd过滤。</li>\n<li>Phone - string - 是否必填:否 - 操作符: eq,like - 排序支持:否 - 按手机号过滤。</li>",
|
113
781
|
"example": "无",
|
114
782
|
"member": "Condition",
|
115
783
|
"name": "Condition",
|
@@ -118,89 +786,62 @@
|
|
118
786
|
},
|
119
787
|
{
|
120
788
|
"disabled": false,
|
121
|
-
"document": "
|
122
|
-
"example": "
|
123
|
-
"member": "int64",
|
124
|
-
"name": "GroupId",
|
125
|
-
"required": false,
|
126
|
-
"type": "int"
|
127
|
-
},
|
128
|
-
{
|
129
|
-
"disabled": false,
|
130
|
-
"document": "系统类型(0: win,1:linux,2: mac,3: win_srv,4:android,5:ios 默认值0)",
|
131
|
-
"example": "0",
|
132
|
-
"member": "int64",
|
133
|
-
"name": "OsType",
|
134
|
-
"required": false,
|
135
|
-
"type": "int"
|
136
|
-
},
|
137
|
-
{
|
138
|
-
"disabled": false,
|
139
|
-
"document": "在线状态 2 在线 0,1 离线",
|
140
|
-
"example": "2",
|
789
|
+
"document": "获取账号的分组Id,不传默认获取全部(只支持32位)",
|
790
|
+
"example": "无",
|
141
791
|
"member": "int64",
|
142
|
-
"name": "
|
792
|
+
"name": "AccountGroupId",
|
143
793
|
"required": false,
|
144
794
|
"type": "int"
|
145
795
|
},
|
146
796
|
{
|
147
797
|
"disabled": false,
|
148
|
-
"document": "
|
149
|
-
"example": "无",
|
150
|
-
"member": "Filter",
|
151
|
-
"name": "Filters",
|
152
|
-
"required": false,
|
153
|
-
"type": "list"
|
154
|
-
},
|
155
|
-
{
|
156
|
-
"disabled": false,
|
157
|
-
"document": "排序字段--兼容旧接口,参数同Condition",
|
798
|
+
"document": "是否仅展示当前目录下用户 1: 递归显示 2:仅显示当前目录下用户(只支持32位)",
|
158
799
|
"example": "无",
|
159
|
-
"member": "Sort",
|
160
|
-
"name": "Sort",
|
161
|
-
"required": false,
|
162
|
-
"type": "object"
|
163
|
-
},
|
164
|
-
{
|
165
|
-
"disabled": false,
|
166
|
-
"document": "获取第几页--兼容旧接口,参数同Condition(只支持32位)",
|
167
|
-
"example": "1",
|
168
800
|
"member": "int64",
|
169
|
-
"name": "
|
801
|
+
"name": "ShowFlag",
|
170
802
|
"required": false,
|
171
803
|
"type": "int"
|
172
|
-
}
|
804
|
+
}
|
805
|
+
],
|
806
|
+
"type": "object"
|
807
|
+
},
|
808
|
+
"DescribeLocalAccountsResponse": {
|
809
|
+
"document": "DescribeLocalAccounts返回参数结构体",
|
810
|
+
"members": [
|
173
811
|
{
|
174
812
|
"disabled": false,
|
175
|
-
"document": "
|
176
|
-
"example": "
|
177
|
-
"member": "
|
178
|
-
"name": "
|
179
|
-
"
|
180
|
-
"type": "
|
813
|
+
"document": "获取账号列表响应的分页对象\n注意:此字段可能返回 null,表示取不到有效值。",
|
814
|
+
"example": "无",
|
815
|
+
"member": "DescribeLocalAccountsPage",
|
816
|
+
"name": "Data",
|
817
|
+
"output_required": true,
|
818
|
+
"type": "object",
|
819
|
+
"value_allowed_null": true
|
181
820
|
},
|
182
821
|
{
|
183
|
-
"
|
184
|
-
"
|
185
|
-
"
|
186
|
-
"
|
187
|
-
"name": "Status",
|
188
|
-
"required": false,
|
189
|
-
"type": "int"
|
822
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
823
|
+
"member": "string",
|
824
|
+
"name": "RequestId",
|
825
|
+
"type": "string"
|
190
826
|
}
|
191
827
|
],
|
192
828
|
"type": "object"
|
193
829
|
},
|
194
|
-
"
|
195
|
-
"document": "
|
830
|
+
"DescribeRootAccountGroupRequest": {
|
831
|
+
"document": "DescribeRootAccountGroup请求参数结构体",
|
832
|
+
"members": [],
|
833
|
+
"type": "object"
|
834
|
+
},
|
835
|
+
"DescribeRootAccountGroupResponse": {
|
836
|
+
"document": "DescribeRootAccountGroup返回参数结构体",
|
196
837
|
"members": [
|
197
838
|
{
|
198
839
|
"disabled": false,
|
199
|
-
"document": "
|
840
|
+
"document": "账户分组详情响应数据\n注意:此字段可能返回 null,表示取不到有效值。",
|
200
841
|
"example": "无",
|
201
|
-
"member": "
|
842
|
+
"member": "GetAccountGroupData",
|
202
843
|
"name": "Data",
|
203
|
-
"
|
844
|
+
"required": false,
|
204
845
|
"type": "object",
|
205
846
|
"value_allowed_null": true
|
206
847
|
},
|
@@ -748,6 +1389,182 @@
|
|
748
1389
|
],
|
749
1390
|
"usage": "both"
|
750
1391
|
},
|
1392
|
+
"GetAccountGroupData": {
|
1393
|
+
"document": "账户分组详情响应数据",
|
1394
|
+
"members": [
|
1395
|
+
{
|
1396
|
+
"disabled": false,
|
1397
|
+
"document": "分组Namepath\n注意:此字段可能返回 null,表示取不到有效值。",
|
1398
|
+
"example": "-",
|
1399
|
+
"member": "string",
|
1400
|
+
"name": "NamePath",
|
1401
|
+
"required": false,
|
1402
|
+
"type": "string",
|
1403
|
+
"value_allowed_null": true
|
1404
|
+
},
|
1405
|
+
{
|
1406
|
+
"disabled": false,
|
1407
|
+
"document": "分组Id path arr(只支持32位)\n注意:此字段可能返回 null,表示取不到有效值。",
|
1408
|
+
"example": "-",
|
1409
|
+
"member": "int64",
|
1410
|
+
"name": "IdPathArr",
|
1411
|
+
"required": false,
|
1412
|
+
"type": "list",
|
1413
|
+
"value_allowed_null": true
|
1414
|
+
},
|
1415
|
+
{
|
1416
|
+
"disabled": false,
|
1417
|
+
"document": "分组扩展信息\n注意:此字段可能返回 null,表示取不到有效值。",
|
1418
|
+
"example": "-",
|
1419
|
+
"member": "string",
|
1420
|
+
"name": "ExtraInfo",
|
1421
|
+
"required": false,
|
1422
|
+
"type": "string",
|
1423
|
+
"value_allowed_null": true
|
1424
|
+
},
|
1425
|
+
{
|
1426
|
+
"disabled": false,
|
1427
|
+
"document": "最后更新时间\n注意:此字段可能返回 null,表示取不到有效值。",
|
1428
|
+
"example": "-",
|
1429
|
+
"member": "string",
|
1430
|
+
"name": "Utime",
|
1431
|
+
"required": false,
|
1432
|
+
"type": "string",
|
1433
|
+
"value_allowed_null": true
|
1434
|
+
},
|
1435
|
+
{
|
1436
|
+
"disabled": false,
|
1437
|
+
"document": "父分组id(只支持32位)\n注意:此字段可能返回 null,表示取不到有效值。",
|
1438
|
+
"example": "-",
|
1439
|
+
"member": "uint64",
|
1440
|
+
"name": "ParentId",
|
1441
|
+
"required": false,
|
1442
|
+
"type": "int",
|
1443
|
+
"value_allowed_null": true
|
1444
|
+
},
|
1445
|
+
{
|
1446
|
+
"disabled": false,
|
1447
|
+
"document": "组织id\n注意:此字段可能返回 null,表示取不到有效值。",
|
1448
|
+
"example": "-",
|
1449
|
+
"member": "string",
|
1450
|
+
"name": "OrgId",
|
1451
|
+
"required": false,
|
1452
|
+
"type": "string",
|
1453
|
+
"value_allowed_null": true
|
1454
|
+
},
|
1455
|
+
{
|
1456
|
+
"disabled": false,
|
1457
|
+
"document": "分组名称\n注意:此字段可能返回 null,表示取不到有效值。",
|
1458
|
+
"example": "-",
|
1459
|
+
"member": "string",
|
1460
|
+
"name": "Name",
|
1461
|
+
"required": false,
|
1462
|
+
"type": "string",
|
1463
|
+
"value_allowed_null": true
|
1464
|
+
},
|
1465
|
+
{
|
1466
|
+
"disabled": false,
|
1467
|
+
"document": "分组id(只支持32位)\n注意:此字段可能返回 null,表示取不到有效值。",
|
1468
|
+
"example": "-",
|
1469
|
+
"member": "uint64",
|
1470
|
+
"name": "Id",
|
1471
|
+
"required": false,
|
1472
|
+
"type": "int",
|
1473
|
+
"value_allowed_null": true
|
1474
|
+
},
|
1475
|
+
{
|
1476
|
+
"disabled": false,
|
1477
|
+
"document": "描述\n注意:此字段可能返回 null,表示取不到有效值。",
|
1478
|
+
"example": "-",
|
1479
|
+
"member": "string",
|
1480
|
+
"name": "Description",
|
1481
|
+
"required": false,
|
1482
|
+
"type": "string",
|
1483
|
+
"value_allowed_null": true
|
1484
|
+
},
|
1485
|
+
{
|
1486
|
+
"disabled": false,
|
1487
|
+
"document": "分组导入源(只支持32位)\n注意:此字段可能返回 null,表示取不到有效值。",
|
1488
|
+
"example": "-",
|
1489
|
+
"member": "uint64",
|
1490
|
+
"name": "Source",
|
1491
|
+
"required": false,
|
1492
|
+
"type": "int",
|
1493
|
+
"value_allowed_null": true
|
1494
|
+
},
|
1495
|
+
{
|
1496
|
+
"disabled": false,
|
1497
|
+
"document": "Id Path\n注意:此字段可能返回 null,表示取不到有效值。",
|
1498
|
+
"example": "-",
|
1499
|
+
"member": "string",
|
1500
|
+
"name": "IdPath",
|
1501
|
+
"required": false,
|
1502
|
+
"type": "string",
|
1503
|
+
"value_allowed_null": true
|
1504
|
+
},
|
1505
|
+
{
|
1506
|
+
"disabled": false,
|
1507
|
+
"document": "创建时间\n注意:此字段可能返回 null,表示取不到有效值。",
|
1508
|
+
"example": "-",
|
1509
|
+
"member": "string",
|
1510
|
+
"name": "Itime",
|
1511
|
+
"required": false,
|
1512
|
+
"type": "string",
|
1513
|
+
"value_allowed_null": true
|
1514
|
+
},
|
1515
|
+
{
|
1516
|
+
"disabled": false,
|
1517
|
+
"document": "父组织id\n注意:此字段可能返回 null,表示取不到有效值。",
|
1518
|
+
"example": "-",
|
1519
|
+
"member": "string",
|
1520
|
+
"name": "ParentOrgId",
|
1521
|
+
"required": false,
|
1522
|
+
"type": "string",
|
1523
|
+
"value_allowed_null": true
|
1524
|
+
},
|
1525
|
+
{
|
1526
|
+
"disabled": false,
|
1527
|
+
"document": "导入信息,json格式\n注意:此字段可能返回 null,表示取不到有效值。",
|
1528
|
+
"example": "-",
|
1529
|
+
"member": "string",
|
1530
|
+
"name": "Import",
|
1531
|
+
"required": false,
|
1532
|
+
"type": "string",
|
1533
|
+
"value_allowed_null": true
|
1534
|
+
},
|
1535
|
+
{
|
1536
|
+
"disabled": false,
|
1537
|
+
"document": "是否开启导入架构\n注意:此字段可能返回 null,表示取不到有效值。",
|
1538
|
+
"example": "-",
|
1539
|
+
"member": "bool",
|
1540
|
+
"name": "ImportEnable",
|
1541
|
+
"required": false,
|
1542
|
+
"type": "bool",
|
1543
|
+
"value_allowed_null": true
|
1544
|
+
},
|
1545
|
+
{
|
1546
|
+
"disabled": false,
|
1547
|
+
"document": "导入类型\n注意:此字段可能返回 null,表示取不到有效值。",
|
1548
|
+
"example": "-",
|
1549
|
+
"member": "string",
|
1550
|
+
"name": "ImportType",
|
1551
|
+
"required": false,
|
1552
|
+
"type": "string",
|
1553
|
+
"value_allowed_null": true
|
1554
|
+
},
|
1555
|
+
{
|
1556
|
+
"disabled": false,
|
1557
|
+
"document": "miniIAMId,MiniIAM源才有\n注意:此字段可能返回 null,表示取不到有效值。",
|
1558
|
+
"example": "-",
|
1559
|
+
"member": "string",
|
1560
|
+
"name": "MiniIamId",
|
1561
|
+
"required": false,
|
1562
|
+
"type": "string",
|
1563
|
+
"value_allowed_null": true
|
1564
|
+
}
|
1565
|
+
],
|
1566
|
+
"usage": "both"
|
1567
|
+
},
|
751
1568
|
"Paging": {
|
752
1569
|
"document": "页码",
|
753
1570
|
"members": [
|