tencentcloud-sdk-nodejs 4.0.905 → 4.0.907
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.
- package/CHANGELOG.md +225 -0
- package/SERVICE_CHANGELOG.md +215 -300
- package/package.json +1 -1
- package/products.md +25 -25
- package/src/common/sdk_version.ts +1 -1
- package/src/services/aiart/v20221229/aiart_models.ts +10 -12
- package/src/services/cfg/v20210820/cfg_client.ts +85 -29
- package/src/services/cfg/v20210820/cfg_models.ts +606 -139
- package/src/services/cfw/v20190904/cfw_models.ts +7 -2
- package/src/services/cls/v20201016/cls_models.ts +20 -9
- package/src/services/cme/v20191029/cme_models.ts +4 -4
- package/src/services/csip/v20221121/csip_client.ts +18 -6
- package/src/services/csip/v20221121/csip_models.ts +267 -208
- package/src/services/cwp/v20180228/cwp_models.ts +56 -46
- package/src/services/dnspod/v20210323/dnspod_client.ts +3 -2
- package/src/services/essbasic/v20210526/essbasic_models.ts +4 -0
- package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +1 -1
- package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +19 -20
- package/src/services/lcic/v20220817/lcic_client.ts +12 -0
- package/src/services/lcic/v20220817/lcic_models.ts +28 -0
- package/src/services/live/v20180801/live_models.ts +1 -1
- package/src/services/lke/v20231130/lke_models.ts +7 -7
- package/src/services/ocr/v20181119/ocr_models.ts +4 -0
- package/src/services/trtc/v20190722/trtc_client.ts +20 -7
- package/src/services/trtc/v20190722/trtc_models.ts +207 -163
- package/src/services/vclm/v20240523/vclm_client.ts +28 -2
- package/src/services/vclm/v20240523/vclm_models.ts +90 -10
- package/src/services/vpc/v20170312/vpc_models.ts +1 -0
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/aiart/v20221229/aiart_models.d.ts +10 -12
- package/tencentcloud/services/cfg/v20210820/cfg_client.d.ts +25 -9
- package/tencentcloud/services/cfg/v20210820/cfg_client.js +36 -12
- package/tencentcloud/services/cfg/v20210820/cfg_models.d.ts +596 -145
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +7 -2
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +20 -9
- package/tencentcloud/services/cme/v20191029/cme_models.d.ts +4 -4
- package/tencentcloud/services/csip/v20221121/csip_client.d.ts +5 -1
- package/tencentcloud/services/csip/v20221121/csip_client.js +6 -0
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +264 -207
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +56 -46
- package/tencentcloud/services/dnspod/v20210323/dnspod_client.d.ts +1 -0
- package/tencentcloud/services/dnspod/v20210323/dnspod_client.js +1 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +4 -0
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +1 -1
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +1 -1
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +19 -20
- package/tencentcloud/services/lcic/v20220817/lcic_client.d.ts +5 -1
- package/tencentcloud/services/lcic/v20220817/lcic_client.js +6 -0
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +26 -0
- package/tencentcloud/services/live/v20180801/live_models.d.ts +1 -1
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +7 -7
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +4 -0
- package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +5 -1
- package/tencentcloud/services/trtc/v20190722/trtc_client.js +6 -0
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +203 -162
- package/tencentcloud/services/vclm/v20240523/vclm_client.d.ts +11 -1
- package/tencentcloud/services/vclm/v20240523/vclm_client.js +14 -0
- package/tencentcloud/services/vclm/v20240523/vclm_models.d.ts +86 -10
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +1 -0
- package/test/cfg.v20210820.test.js +48 -8
- package/test/csip.v20221121.test.js +10 -0
- package/test/lcic.v20220817.test.js +10 -0
- package/test/trtc.v20190722.test.js +10 -0
- package/test/vclm.v20240523.test.js +20 -0
|
@@ -8,13 +8,17 @@ export interface DescribeTaskRequest {
|
|
|
8
8
|
TaskId: number;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* DescribeActionFieldConfigList请求参数结构体
|
|
12
12
|
*/
|
|
13
|
-
export interface
|
|
13
|
+
export interface DescribeActionFieldConfigListRequest {
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* 动作ID列表
|
|
16
16
|
*/
|
|
17
|
-
|
|
17
|
+
ActionIds: Array<number | bigint>;
|
|
18
|
+
/**
|
|
19
|
+
* 对象类型ID
|
|
20
|
+
*/
|
|
21
|
+
ObjectTypeId: number;
|
|
18
22
|
}
|
|
19
23
|
/**
|
|
20
24
|
* 任务分组动作
|
|
@@ -153,37 +157,37 @@ export interface TaskGroupInstancesExecuteRules {
|
|
|
153
157
|
TaskGroupInstancesExecuteNum?: number;
|
|
154
158
|
}
|
|
155
159
|
/**
|
|
156
|
-
*
|
|
160
|
+
* CreateTaskFromAction请求参数结构体
|
|
157
161
|
*/
|
|
158
|
-
export interface
|
|
162
|
+
export interface CreateTaskFromActionRequest {
|
|
159
163
|
/**
|
|
160
|
-
*
|
|
164
|
+
* 动作ID,可从动作列表接口DescribeActionLibraryList获取
|
|
161
165
|
*/
|
|
162
|
-
|
|
166
|
+
TaskActionId: number;
|
|
163
167
|
/**
|
|
164
|
-
*
|
|
168
|
+
* 参与演练的实例ID
|
|
165
169
|
*/
|
|
166
|
-
|
|
170
|
+
TaskInstances: Array<string>;
|
|
167
171
|
/**
|
|
168
|
-
*
|
|
172
|
+
* 演练名称,不填则默认取动作名称
|
|
169
173
|
*/
|
|
170
|
-
|
|
174
|
+
TaskTitle?: string;
|
|
171
175
|
/**
|
|
172
|
-
*
|
|
176
|
+
* 演练描述,不填则默认取动作描述
|
|
173
177
|
*/
|
|
174
|
-
|
|
178
|
+
TaskDescription?: string;
|
|
175
179
|
/**
|
|
176
|
-
*
|
|
180
|
+
* 动作通用参数,需要json序列化传入,可以从动作详情接口DescribeActionFieldConfigList获取,不填默认使用动作默认参数
|
|
177
181
|
*/
|
|
178
|
-
|
|
182
|
+
TaskActionGeneralConfiguration?: string;
|
|
179
183
|
/**
|
|
180
|
-
*
|
|
184
|
+
* 动作自定义参数,需要json序列化传入,可以从动作详情接口DescribeActionFieldConfigList获取,不填默认使用动作默认参数,注意:必填参数,是没有默认值的 ,务必保证传入有效值
|
|
181
185
|
*/
|
|
182
|
-
|
|
186
|
+
TaskActionCustomConfiguration?: string;
|
|
183
187
|
/**
|
|
184
|
-
*
|
|
188
|
+
* 演练自动暂停时间,单位分钟, 不填则默认为60
|
|
185
189
|
*/
|
|
186
|
-
|
|
190
|
+
TaskPauseDuration?: number;
|
|
187
191
|
}
|
|
188
192
|
/**
|
|
189
193
|
* DeleteTask请求参数结构体
|
|
@@ -194,6 +198,35 @@ export interface DeleteTaskRequest {
|
|
|
194
198
|
*/
|
|
195
199
|
TaskId: number;
|
|
196
200
|
}
|
|
201
|
+
/**
|
|
202
|
+
* DescribeActionLibraryList请求参数结构体
|
|
203
|
+
*/
|
|
204
|
+
export interface DescribeActionLibraryListRequest {
|
|
205
|
+
/**
|
|
206
|
+
* 0-100
|
|
207
|
+
*/
|
|
208
|
+
Limit: number;
|
|
209
|
+
/**
|
|
210
|
+
* 默认值0
|
|
211
|
+
*/
|
|
212
|
+
Offset: number;
|
|
213
|
+
/**
|
|
214
|
+
* 对象类型ID
|
|
215
|
+
*/
|
|
216
|
+
ObjectType: number;
|
|
217
|
+
/**
|
|
218
|
+
* Keyword取值{"动作名称": "a_title", "描述": "a_desc", "动作类型": "a_type", "创建时间": "a_create_time", "二级分类": "a_resource_type"}
|
|
219
|
+
*/
|
|
220
|
+
Filters?: Array<ActionFilter>;
|
|
221
|
+
/**
|
|
222
|
+
* 动作分类,1表示故障动作,2表示恢复动作
|
|
223
|
+
*/
|
|
224
|
+
Attribute?: Array<number | bigint>;
|
|
225
|
+
/**
|
|
226
|
+
* 筛选项 -动作ID
|
|
227
|
+
*/
|
|
228
|
+
ActionIds?: Array<number | bigint>;
|
|
229
|
+
}
|
|
197
230
|
/**
|
|
198
231
|
* 任务分组
|
|
199
232
|
*/
|
|
@@ -264,29 +297,173 @@ export interface ExecuteTaskResponse {
|
|
|
264
297
|
RequestId?: string;
|
|
265
298
|
}
|
|
266
299
|
/**
|
|
267
|
-
*
|
|
300
|
+
* DescribeActionFieldConfigList返回参数结构体
|
|
268
301
|
*/
|
|
269
|
-
export interface
|
|
302
|
+
export interface DescribeActionFieldConfigListResponse {
|
|
270
303
|
/**
|
|
271
|
-
*
|
|
304
|
+
* 通用栏位配置列表
|
|
272
305
|
*/
|
|
273
|
-
|
|
306
|
+
Common?: Array<ActionFieldConfigResult>;
|
|
274
307
|
/**
|
|
275
|
-
*
|
|
308
|
+
* 动作栏位配置列表
|
|
276
309
|
*/
|
|
277
|
-
|
|
310
|
+
Results?: Array<ActionFieldConfigResult>;
|
|
278
311
|
/**
|
|
279
|
-
*
|
|
312
|
+
* 资源下线信息
|
|
313
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
280
314
|
*/
|
|
281
|
-
|
|
315
|
+
ResourceOffline?: Array<ResourceOffline>;
|
|
282
316
|
/**
|
|
283
|
-
*
|
|
317
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
284
318
|
*/
|
|
285
|
-
|
|
319
|
+
RequestId?: string;
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* 动作动态参数返回格式
|
|
323
|
+
*/
|
|
324
|
+
export interface ActionFieldConfigDetail {
|
|
286
325
|
/**
|
|
287
|
-
*
|
|
326
|
+
* 组件类型
|
|
327
|
+
可选项如下:
|
|
328
|
+
input 文本框
|
|
329
|
+
textarea 多行文本框
|
|
330
|
+
number 数值输入框
|
|
331
|
+
select 选择器
|
|
332
|
+
cascader 级联选择器
|
|
333
|
+
radio 单选
|
|
334
|
+
time 时间选择
|
|
288
335
|
*/
|
|
289
|
-
|
|
336
|
+
Type: string;
|
|
337
|
+
/**
|
|
338
|
+
* 组件label
|
|
339
|
+
*/
|
|
340
|
+
Lable: string;
|
|
341
|
+
/**
|
|
342
|
+
* 组件唯一标识, 传回后端时的key
|
|
343
|
+
*/
|
|
344
|
+
Field: string;
|
|
345
|
+
/**
|
|
346
|
+
* 默认值
|
|
347
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
348
|
+
*/
|
|
349
|
+
DefaultValue: string;
|
|
350
|
+
/**
|
|
351
|
+
* 支持配置项如下,可根据需要选择配置项,不需要配置是设置空{}:
|
|
352
|
+
|
|
353
|
+
{
|
|
354
|
+
|
|
355
|
+
placeholder: string (占位符)
|
|
356
|
+
|
|
357
|
+
tooltip: string (提示信息)
|
|
358
|
+
|
|
359
|
+
reg: RegExp (对输入内容格式进行正则校验的规则)
|
|
360
|
+
|
|
361
|
+
max: number (对于输入框,限制最大输入字符数,对于数值输入框,设置上限)
|
|
362
|
+
|
|
363
|
+
min: number (对于数值输入框,设置下限)
|
|
364
|
+
|
|
365
|
+
step: number (设置数值输入框的步长,默认为1)
|
|
366
|
+
|
|
367
|
+
format: string (时间选择的格式,如YYYY-MM-DD表示年月日, YYYY-MM-DD HH:mm:ss 表示时分秒)
|
|
368
|
+
|
|
369
|
+
separator: string[] (多行输入框的分隔符,不传或者为空时表示不分隔,直接返回用户输入的文本字符串)
|
|
370
|
+
|
|
371
|
+
multiple: boolean (是否多选,对选择器和级联选择器有效)
|
|
372
|
+
|
|
373
|
+
options: 选择器的选项【支持以下两种形式】
|
|
374
|
+
|
|
375
|
+
直接给定选项数组 { value: string; label: string }[]
|
|
376
|
+
通过调接口获取选项 { api: string(接口地址), params: string[] (接口参数,对应于参数配置的field,前端根据field对应的所有组件的输入值作为参数查询数据, 为空时在组件加载时直接请求数据) }
|
|
377
|
+
}
|
|
378
|
+
*/
|
|
379
|
+
Config: string;
|
|
380
|
+
/**
|
|
381
|
+
* 是否必填 (0 -- 否 1-- 是)
|
|
382
|
+
*/
|
|
383
|
+
Required: number;
|
|
384
|
+
/**
|
|
385
|
+
* compute配置依赖的其他field满足的条件时通过校验(如:三个表单项中必须至少有一个填写了)
|
|
386
|
+
|
|
387
|
+
[fieldName,
|
|
388
|
+
|
|
389
|
+
{ config: 此项保留,等待后面具体场景细化 }
|
|
390
|
+
|
|
391
|
+
]
|
|
392
|
+
*/
|
|
393
|
+
Validate: string;
|
|
394
|
+
/**
|
|
395
|
+
* 是否可见
|
|
396
|
+
*/
|
|
397
|
+
Visible: string;
|
|
398
|
+
}
|
|
399
|
+
/**
|
|
400
|
+
* 任务分组动作
|
|
401
|
+
*/
|
|
402
|
+
export interface TemplateGroupAction {
|
|
403
|
+
/**
|
|
404
|
+
* 经验库分组动作ID
|
|
405
|
+
*/
|
|
406
|
+
TemplateGroupActionId: number;
|
|
407
|
+
/**
|
|
408
|
+
* 动作ID
|
|
409
|
+
*/
|
|
410
|
+
ActionId: number;
|
|
411
|
+
/**
|
|
412
|
+
* 分组动作顺序
|
|
413
|
+
*/
|
|
414
|
+
Order: number;
|
|
415
|
+
/**
|
|
416
|
+
* 分组动作通用配置
|
|
417
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
418
|
+
*/
|
|
419
|
+
GeneralConfiguration: string;
|
|
420
|
+
/**
|
|
421
|
+
* 分组动作自定义配置
|
|
422
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
423
|
+
*/
|
|
424
|
+
CustomConfiguration: string;
|
|
425
|
+
/**
|
|
426
|
+
* 动作分组创建时间
|
|
427
|
+
*/
|
|
428
|
+
CreateTime: string;
|
|
429
|
+
/**
|
|
430
|
+
* 动作分组更新时间
|
|
431
|
+
*/
|
|
432
|
+
UpdateTime: string;
|
|
433
|
+
/**
|
|
434
|
+
* 动作名称
|
|
435
|
+
*/
|
|
436
|
+
ActionTitle: string;
|
|
437
|
+
/**
|
|
438
|
+
* 自身随机id
|
|
439
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
440
|
+
*/
|
|
441
|
+
RandomId: number;
|
|
442
|
+
/**
|
|
443
|
+
* 恢复动作id
|
|
444
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
445
|
+
*/
|
|
446
|
+
RecoverId: number;
|
|
447
|
+
/**
|
|
448
|
+
* 执行动作id
|
|
449
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
450
|
+
*/
|
|
451
|
+
ExecuteId: number;
|
|
452
|
+
/**
|
|
453
|
+
* 调用api类型,0:tat, 1:云api
|
|
454
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
455
|
+
*/
|
|
456
|
+
ActionApiType?: number;
|
|
457
|
+
/**
|
|
458
|
+
* 1:故障,2:恢复
|
|
459
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
460
|
+
*/
|
|
461
|
+
ActionAttribute?: number;
|
|
462
|
+
/**
|
|
463
|
+
* 动作类型:平台和自定义
|
|
464
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
465
|
+
*/
|
|
466
|
+
ActionType?: string;
|
|
290
467
|
}
|
|
291
468
|
/**
|
|
292
469
|
* 经验库
|
|
@@ -394,18 +571,13 @@ export interface DescribeTaskExecuteLogsRequest {
|
|
|
394
571
|
Offset: number;
|
|
395
572
|
}
|
|
396
573
|
/**
|
|
397
|
-
*
|
|
574
|
+
* DescribeObjectTypeList返回参数结构体
|
|
398
575
|
*/
|
|
399
|
-
export interface
|
|
400
|
-
/**
|
|
401
|
-
* 任务信息
|
|
402
|
-
*/
|
|
403
|
-
Task?: Task;
|
|
576
|
+
export interface DescribeObjectTypeListResponse {
|
|
404
577
|
/**
|
|
405
|
-
*
|
|
406
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
578
|
+
* 对象类型列表
|
|
407
579
|
*/
|
|
408
|
-
|
|
580
|
+
ObjectTypeList?: Array<ObjectType>;
|
|
409
581
|
/**
|
|
410
582
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
411
583
|
*/
|
|
@@ -480,6 +652,36 @@ export interface ActionFilter {
|
|
|
480
652
|
*/
|
|
481
653
|
Values: Array<string>;
|
|
482
654
|
}
|
|
655
|
+
/**
|
|
656
|
+
* 护栏策略触发日志
|
|
657
|
+
*/
|
|
658
|
+
export interface PolicyTriggerLog {
|
|
659
|
+
/**
|
|
660
|
+
* 演练ID
|
|
661
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
662
|
+
*/
|
|
663
|
+
TaskId?: number;
|
|
664
|
+
/**
|
|
665
|
+
* 名称
|
|
666
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
667
|
+
*/
|
|
668
|
+
Name?: string;
|
|
669
|
+
/**
|
|
670
|
+
* 类型,0--触发,1--恢复
|
|
671
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
672
|
+
*/
|
|
673
|
+
TriggerType?: number;
|
|
674
|
+
/**
|
|
675
|
+
* 内容
|
|
676
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
677
|
+
*/
|
|
678
|
+
Content?: string;
|
|
679
|
+
/**
|
|
680
|
+
* 触发时间
|
|
681
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
682
|
+
*/
|
|
683
|
+
CreatTime?: string;
|
|
684
|
+
}
|
|
483
685
|
/**
|
|
484
686
|
* DescribeTemplate请求参数结构体
|
|
485
687
|
*/
|
|
@@ -601,126 +803,118 @@ export interface DescribeTaskListResponse {
|
|
|
601
803
|
RequestId?: string;
|
|
602
804
|
}
|
|
603
805
|
/**
|
|
604
|
-
*
|
|
806
|
+
* 资源下线
|
|
605
807
|
*/
|
|
606
|
-
export interface
|
|
808
|
+
export interface ResourceOffline {
|
|
607
809
|
/**
|
|
608
|
-
*
|
|
609
|
-
|
|
610
|
-
TemplateGroupActionId: number;
|
|
611
|
-
/**
|
|
612
|
-
* 动作ID
|
|
810
|
+
* 资源ID
|
|
811
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
613
812
|
*/
|
|
614
|
-
|
|
813
|
+
ResourceId?: number;
|
|
615
814
|
/**
|
|
616
|
-
*
|
|
815
|
+
* 资源下线时间
|
|
816
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
617
817
|
*/
|
|
618
|
-
|
|
818
|
+
ResourceDeleteTime?: string;
|
|
619
819
|
/**
|
|
620
|
-
*
|
|
820
|
+
* 资源下线提示
|
|
621
821
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
622
822
|
*/
|
|
623
|
-
|
|
823
|
+
ResourceDeleteMessage?: string;
|
|
824
|
+
}
|
|
825
|
+
/**
|
|
826
|
+
* DescribeTemplateList返回参数结构体
|
|
827
|
+
*/
|
|
828
|
+
export interface DescribeTemplateListResponse {
|
|
624
829
|
/**
|
|
625
|
-
*
|
|
626
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
830
|
+
* 经验库列表
|
|
627
831
|
*/
|
|
628
|
-
|
|
832
|
+
TemplateList?: Array<TemplateListItem>;
|
|
629
833
|
/**
|
|
630
|
-
*
|
|
834
|
+
* 列表数量
|
|
631
835
|
*/
|
|
632
|
-
|
|
836
|
+
Total?: number;
|
|
633
837
|
/**
|
|
634
|
-
*
|
|
838
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
635
839
|
*/
|
|
636
|
-
|
|
840
|
+
RequestId?: string;
|
|
841
|
+
}
|
|
842
|
+
/**
|
|
843
|
+
* 监控指标
|
|
844
|
+
*/
|
|
845
|
+
export interface TaskMonitor {
|
|
637
846
|
/**
|
|
638
|
-
*
|
|
847
|
+
* 演练监控指标ID
|
|
639
848
|
*/
|
|
640
|
-
|
|
849
|
+
TaskMonitorId: number;
|
|
641
850
|
/**
|
|
642
|
-
*
|
|
851
|
+
* 监控指标ID
|
|
643
852
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
644
853
|
*/
|
|
645
|
-
|
|
854
|
+
MetricId: number;
|
|
646
855
|
/**
|
|
647
|
-
*
|
|
648
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
856
|
+
* 监控指标对象类型ID
|
|
649
857
|
*/
|
|
650
|
-
|
|
858
|
+
TaskMonitorObjectTypeId: number;
|
|
651
859
|
/**
|
|
652
|
-
*
|
|
653
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
860
|
+
* 指标名称
|
|
654
861
|
*/
|
|
655
|
-
|
|
862
|
+
MetricName: string;
|
|
656
863
|
/**
|
|
657
|
-
*
|
|
658
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
864
|
+
* 实例ID列表
|
|
659
865
|
*/
|
|
660
|
-
|
|
866
|
+
InstancesIds: Array<string>;
|
|
661
867
|
/**
|
|
662
|
-
*
|
|
868
|
+
* 中文指标
|
|
663
869
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
664
870
|
*/
|
|
665
|
-
|
|
871
|
+
MetricChineseName: string;
|
|
666
872
|
/**
|
|
667
|
-
*
|
|
873
|
+
* 单位
|
|
668
874
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
669
875
|
*/
|
|
670
|
-
|
|
876
|
+
Unit: string;
|
|
671
877
|
}
|
|
672
878
|
/**
|
|
673
|
-
* DescribeTemplateList
|
|
879
|
+
* DescribeTemplateList请求参数结构体
|
|
674
880
|
*/
|
|
675
|
-
export interface
|
|
676
|
-
/**
|
|
677
|
-
* 经验库列表
|
|
678
|
-
*/
|
|
679
|
-
TemplateList?: Array<TemplateListItem>;
|
|
881
|
+
export interface DescribeTemplateListRequest {
|
|
680
882
|
/**
|
|
681
|
-
*
|
|
883
|
+
* 分页Limit, 最大值100
|
|
682
884
|
*/
|
|
683
|
-
|
|
885
|
+
Limit: number;
|
|
684
886
|
/**
|
|
685
|
-
*
|
|
887
|
+
* 分页Offset
|
|
686
888
|
*/
|
|
687
|
-
|
|
688
|
-
}
|
|
689
|
-
/**
|
|
690
|
-
* 监控指标
|
|
691
|
-
*/
|
|
692
|
-
export interface TaskMonitor {
|
|
889
|
+
Offset: number;
|
|
693
890
|
/**
|
|
694
|
-
*
|
|
891
|
+
* 演练名称
|
|
695
892
|
*/
|
|
696
|
-
|
|
893
|
+
Title?: string;
|
|
697
894
|
/**
|
|
698
|
-
*
|
|
699
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
895
|
+
* 标签键
|
|
700
896
|
*/
|
|
701
|
-
|
|
897
|
+
Tag?: Array<string>;
|
|
702
898
|
/**
|
|
703
|
-
*
|
|
899
|
+
* 状态,1---使用中, 2---停用
|
|
704
900
|
*/
|
|
705
|
-
|
|
901
|
+
IsUsed?: number;
|
|
706
902
|
/**
|
|
707
|
-
*
|
|
903
|
+
* 标签对
|
|
708
904
|
*/
|
|
709
|
-
|
|
905
|
+
Tags?: Array<TagWithDescribe>;
|
|
710
906
|
/**
|
|
711
|
-
*
|
|
907
|
+
* 经验来源 0-自建 1-专家推荐
|
|
712
908
|
*/
|
|
713
|
-
|
|
909
|
+
TemplateSource?: number;
|
|
714
910
|
/**
|
|
715
|
-
*
|
|
716
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
911
|
+
* 经验ID
|
|
717
912
|
*/
|
|
718
|
-
|
|
913
|
+
TemplateIdList?: Array<number | bigint>;
|
|
719
914
|
/**
|
|
720
|
-
*
|
|
721
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
915
|
+
* 过滤参数
|
|
722
916
|
*/
|
|
723
|
-
|
|
917
|
+
Filters?: Array<ActionFilter>;
|
|
724
918
|
}
|
|
725
919
|
/**
|
|
726
920
|
* 展示标签列表
|
|
@@ -735,6 +929,18 @@ export interface TagWithDescribe {
|
|
|
735
929
|
*/
|
|
736
930
|
TagValue: string;
|
|
737
931
|
}
|
|
932
|
+
/**
|
|
933
|
+
* DescribeObjectTypeList请求参数结构体
|
|
934
|
+
*/
|
|
935
|
+
export interface DescribeObjectTypeListRequest {
|
|
936
|
+
/**
|
|
937
|
+
* 所支持的对象
|
|
938
|
+
0:全平台产品
|
|
939
|
+
1:平台接入的对象
|
|
940
|
+
2:应用所支持的部分对象
|
|
941
|
+
*/
|
|
942
|
+
SupportType?: number;
|
|
943
|
+
}
|
|
738
944
|
/**
|
|
739
945
|
* DescribeTaskPolicyTriggerLog返回参数结构体
|
|
740
946
|
*/
|
|
@@ -771,6 +977,37 @@ export interface DeleteTaskResponse {
|
|
|
771
977
|
*/
|
|
772
978
|
RequestId?: string;
|
|
773
979
|
}
|
|
980
|
+
/**
|
|
981
|
+
* 对象类型
|
|
982
|
+
*/
|
|
983
|
+
export interface ObjectType {
|
|
984
|
+
/**
|
|
985
|
+
* 对象类型ID
|
|
986
|
+
*/
|
|
987
|
+
ObjectTypeId?: number;
|
|
988
|
+
/**
|
|
989
|
+
* 对象类型名称
|
|
990
|
+
*/
|
|
991
|
+
ObjectTypeTitle?: string;
|
|
992
|
+
/**
|
|
993
|
+
* 对象类型第一级
|
|
994
|
+
*/
|
|
995
|
+
ObjectTypeLevelOne?: string;
|
|
996
|
+
/**
|
|
997
|
+
* 对象类型参数
|
|
998
|
+
*/
|
|
999
|
+
ObjectTypeParams?: ObjectTypeConfig;
|
|
1000
|
+
/**
|
|
1001
|
+
* tke接口json解析规则,null不需要解析
|
|
1002
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1003
|
+
*/
|
|
1004
|
+
ObjectTypeJsonParse?: ObjectTypeJsonParse;
|
|
1005
|
+
/**
|
|
1006
|
+
* 是否包含新动作
|
|
1007
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1008
|
+
*/
|
|
1009
|
+
ObjectHasNewAction?: boolean;
|
|
1010
|
+
}
|
|
774
1011
|
/**
|
|
775
1012
|
* DescribeTaskPolicyTriggerLog请求参数结构体
|
|
776
1013
|
*/
|
|
@@ -993,6 +1230,39 @@ export interface TriggerPolicyRequest {
|
|
|
993
1230
|
*/
|
|
994
1231
|
TriggerType: number;
|
|
995
1232
|
}
|
|
1233
|
+
/**
|
|
1234
|
+
* 从经验模板创建演练时需要配置的任务参数
|
|
1235
|
+
*/
|
|
1236
|
+
export interface TaskConfig {
|
|
1237
|
+
/**
|
|
1238
|
+
* 动作组配置,需要保证配置个数和经验中的动作组个数一致
|
|
1239
|
+
*/
|
|
1240
|
+
TaskGroupsConfig: Array<TaskGroupConfig>;
|
|
1241
|
+
/**
|
|
1242
|
+
* 更改后的演练名称,不填则默认取经验名称
|
|
1243
|
+
*/
|
|
1244
|
+
TaskTitle?: string;
|
|
1245
|
+
/**
|
|
1246
|
+
* 更改后的演练描述,不填则默认取经验描述
|
|
1247
|
+
*/
|
|
1248
|
+
TaskDescription?: string;
|
|
1249
|
+
/**
|
|
1250
|
+
* 演练执行模式:1----手工执行/ 2 ---自动执行,不填则默认取经验执行模式
|
|
1251
|
+
*/
|
|
1252
|
+
TaskMode?: number;
|
|
1253
|
+
/**
|
|
1254
|
+
* 演练自动暂停时间,单位分钟, 不填则默认取经验自动暂停时间
|
|
1255
|
+
*/
|
|
1256
|
+
TaskPauseDuration?: number;
|
|
1257
|
+
/**
|
|
1258
|
+
* 演练标签信息,不填则默认取经验标签
|
|
1259
|
+
*/
|
|
1260
|
+
Tags?: Array<TagWithCreate>;
|
|
1261
|
+
/**
|
|
1262
|
+
* 护栏处理方式,1--顺序回滚,2--演练暂停
|
|
1263
|
+
*/
|
|
1264
|
+
PolicyDealType?: number;
|
|
1265
|
+
}
|
|
996
1266
|
/**
|
|
997
1267
|
* TriggerPolicy返回参数结构体
|
|
998
1268
|
*/
|
|
@@ -1071,6 +1341,48 @@ export interface DescribeTaskListRequest {
|
|
|
1071
1341
|
*/
|
|
1072
1342
|
TaskStatusList?: Array<number | bigint>;
|
|
1073
1343
|
}
|
|
1344
|
+
/**
|
|
1345
|
+
* DescribeActionLibraryList返回参数结构体
|
|
1346
|
+
*/
|
|
1347
|
+
export interface DescribeActionLibraryListResponse {
|
|
1348
|
+
/**
|
|
1349
|
+
* 查询结果列表
|
|
1350
|
+
*/
|
|
1351
|
+
Results?: Array<ActionLibraryListResult>;
|
|
1352
|
+
/**
|
|
1353
|
+
* 符合记录条数
|
|
1354
|
+
*/
|
|
1355
|
+
Total?: number;
|
|
1356
|
+
/**
|
|
1357
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1358
|
+
*/
|
|
1359
|
+
RequestId?: string;
|
|
1360
|
+
}
|
|
1361
|
+
/**
|
|
1362
|
+
* 标准pod对象类型下拉数据的解析
|
|
1363
|
+
*/
|
|
1364
|
+
export interface ObjectTypeJsonParse {
|
|
1365
|
+
/**
|
|
1366
|
+
* 命名空间
|
|
1367
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1368
|
+
*/
|
|
1369
|
+
NameSpace?: string;
|
|
1370
|
+
/**
|
|
1371
|
+
* 工作负载名称
|
|
1372
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1373
|
+
*/
|
|
1374
|
+
WorkloadName?: string;
|
|
1375
|
+
/**
|
|
1376
|
+
* 节点IP
|
|
1377
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1378
|
+
*/
|
|
1379
|
+
LanIP?: string;
|
|
1380
|
+
/**
|
|
1381
|
+
* 节点ID
|
|
1382
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1383
|
+
*/
|
|
1384
|
+
InstanceId?: string;
|
|
1385
|
+
}
|
|
1074
1386
|
/**
|
|
1075
1387
|
* 任务列表信息
|
|
1076
1388
|
*/
|
|
@@ -1162,6 +1474,31 @@ export interface DescribeTaskExecuteLogsResponse {
|
|
|
1162
1474
|
*/
|
|
1163
1475
|
RequestId?: string;
|
|
1164
1476
|
}
|
|
1477
|
+
/**
|
|
1478
|
+
* 动作组的配置项
|
|
1479
|
+
*/
|
|
1480
|
+
export interface TaskGroupConfig {
|
|
1481
|
+
/**
|
|
1482
|
+
* 动作组所关联的实例对象
|
|
1483
|
+
*/
|
|
1484
|
+
TaskGroupInstances: Array<string>;
|
|
1485
|
+
/**
|
|
1486
|
+
* 动作组标题,不填默认取经验中的动作组名称
|
|
1487
|
+
*/
|
|
1488
|
+
TaskGroupTitle?: string;
|
|
1489
|
+
/**
|
|
1490
|
+
* 动作组描述,不填默认取经验中的动作组描述
|
|
1491
|
+
*/
|
|
1492
|
+
TaskGroupDescription?: string;
|
|
1493
|
+
/**
|
|
1494
|
+
* 动作执行模式。1 --- 顺序执行,2 --- 阶段执行, 不填默认取经验中的动作组执行模式
|
|
1495
|
+
*/
|
|
1496
|
+
TaskGroupMode?: number;
|
|
1497
|
+
/**
|
|
1498
|
+
* 动作组中的动作参数,不填默认使用经验中的动作参数,配置时可以只指定想要修改参数的动作
|
|
1499
|
+
*/
|
|
1500
|
+
TaskGroupActionsConfig?: Array<TaskGroupActionConfig>;
|
|
1501
|
+
}
|
|
1165
1502
|
/**
|
|
1166
1503
|
* 监控指标
|
|
1167
1504
|
*/
|
|
@@ -1248,6 +1585,23 @@ export interface TemplatePolicy {
|
|
|
1248
1585
|
*/
|
|
1249
1586
|
TemplatePolicyDealType: number;
|
|
1250
1587
|
}
|
|
1588
|
+
/**
|
|
1589
|
+
* 动作栏位配置结果
|
|
1590
|
+
*/
|
|
1591
|
+
export interface ActionFieldConfigResult {
|
|
1592
|
+
/**
|
|
1593
|
+
* 动作ID
|
|
1594
|
+
*/
|
|
1595
|
+
ActionId: number;
|
|
1596
|
+
/**
|
|
1597
|
+
* 动作名称
|
|
1598
|
+
*/
|
|
1599
|
+
ActionName: string;
|
|
1600
|
+
/**
|
|
1601
|
+
* 动作对应的栏位配置详情
|
|
1602
|
+
*/
|
|
1603
|
+
ConfigDetail: Array<ActionFieldConfigDetail>;
|
|
1604
|
+
}
|
|
1251
1605
|
/**
|
|
1252
1606
|
* 动作组中的动作参数
|
|
1253
1607
|
*/
|
|
@@ -1266,75 +1620,136 @@ export interface TaskGroupActionConfig {
|
|
|
1266
1620
|
TaskGroupActionCustomConfiguration?: string;
|
|
1267
1621
|
}
|
|
1268
1622
|
/**
|
|
1269
|
-
*
|
|
1623
|
+
* 动作库数据列表
|
|
1270
1624
|
*/
|
|
1271
|
-
export interface
|
|
1625
|
+
export interface ActionLibraryListResult {
|
|
1272
1626
|
/**
|
|
1273
|
-
*
|
|
1274
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1627
|
+
* 动作名称
|
|
1275
1628
|
*/
|
|
1276
|
-
|
|
1629
|
+
ActionName?: string;
|
|
1277
1630
|
/**
|
|
1278
|
-
*
|
|
1631
|
+
* 动作描述
|
|
1632
|
+
*/
|
|
1633
|
+
Desc?: string;
|
|
1634
|
+
/**
|
|
1635
|
+
* 动作类型。范围:["平台","自定义"]
|
|
1636
|
+
*/
|
|
1637
|
+
ActionType?: string;
|
|
1638
|
+
/**
|
|
1639
|
+
* 创建时间
|
|
1640
|
+
*/
|
|
1641
|
+
CreateTime?: string;
|
|
1642
|
+
/**
|
|
1643
|
+
* 创建人
|
|
1644
|
+
*/
|
|
1645
|
+
Creator?: string;
|
|
1646
|
+
/**
|
|
1647
|
+
* 更新时间
|
|
1648
|
+
*/
|
|
1649
|
+
UpdateTime?: string;
|
|
1650
|
+
/**
|
|
1651
|
+
* 动作风险描述
|
|
1652
|
+
*/
|
|
1653
|
+
RiskDesc?: string;
|
|
1654
|
+
/**
|
|
1655
|
+
* 动作ID
|
|
1656
|
+
*/
|
|
1657
|
+
ActionId?: number;
|
|
1658
|
+
/**
|
|
1659
|
+
* 动作属性( 1:故障 2:恢复)
|
|
1660
|
+
*/
|
|
1661
|
+
AttributeId?: number;
|
|
1662
|
+
/**
|
|
1663
|
+
* 关联的动作ID
|
|
1664
|
+
*/
|
|
1665
|
+
RelationActionId?: number;
|
|
1666
|
+
/**
|
|
1667
|
+
* 操作命令
|
|
1668
|
+
*/
|
|
1669
|
+
ActionCommand?: string;
|
|
1670
|
+
/**
|
|
1671
|
+
* 动作类型( 0 -- tat 1 -- 云API)
|
|
1672
|
+
*/
|
|
1673
|
+
ActionCommandType?: number;
|
|
1674
|
+
/**
|
|
1675
|
+
* 自定义动作的参数,json string
|
|
1676
|
+
*/
|
|
1677
|
+
ActionContent?: string;
|
|
1678
|
+
/**
|
|
1679
|
+
* 二级分类
|
|
1279
1680
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1280
1681
|
*/
|
|
1281
|
-
|
|
1682
|
+
ResourceType?: string;
|
|
1282
1683
|
/**
|
|
1283
|
-
*
|
|
1684
|
+
* 动作描述
|
|
1284
1685
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1285
1686
|
*/
|
|
1286
|
-
|
|
1687
|
+
ActionDetail?: string;
|
|
1287
1688
|
/**
|
|
1288
|
-
*
|
|
1689
|
+
* 是否允许当前账号使用
|
|
1289
1690
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1290
1691
|
*/
|
|
1291
|
-
|
|
1692
|
+
IsAllowed?: boolean;
|
|
1292
1693
|
/**
|
|
1293
|
-
*
|
|
1694
|
+
* 最佳实践案例的链接地址
|
|
1294
1695
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1295
1696
|
*/
|
|
1296
|
-
|
|
1297
|
-
}
|
|
1298
|
-
/**
|
|
1299
|
-
* DescribeTemplateList请求参数结构体
|
|
1300
|
-
*/
|
|
1301
|
-
export interface DescribeTemplateListRequest {
|
|
1697
|
+
ActionBestCase?: string;
|
|
1302
1698
|
/**
|
|
1303
|
-
*
|
|
1699
|
+
* 对象类型
|
|
1700
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1304
1701
|
*/
|
|
1305
|
-
|
|
1702
|
+
ObjectType?: string;
|
|
1306
1703
|
/**
|
|
1307
|
-
*
|
|
1704
|
+
* 监控指标ID列表
|
|
1705
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1308
1706
|
*/
|
|
1309
|
-
|
|
1707
|
+
MetricIdList?: Array<number | bigint>;
|
|
1310
1708
|
/**
|
|
1311
|
-
*
|
|
1709
|
+
* 是否是新动作
|
|
1710
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1312
1711
|
*/
|
|
1313
|
-
|
|
1712
|
+
IsNewAction?: boolean;
|
|
1713
|
+
}
|
|
1714
|
+
/**
|
|
1715
|
+
* ModifyTaskRunStatus返回参数结构体
|
|
1716
|
+
*/
|
|
1717
|
+
export interface ModifyTaskRunStatusResponse {
|
|
1314
1718
|
/**
|
|
1315
|
-
*
|
|
1719
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1316
1720
|
*/
|
|
1317
|
-
|
|
1721
|
+
RequestId?: string;
|
|
1722
|
+
}
|
|
1723
|
+
/**
|
|
1724
|
+
* DescribeTask返回参数结构体
|
|
1725
|
+
*/
|
|
1726
|
+
export interface DescribeTaskResponse {
|
|
1318
1727
|
/**
|
|
1319
|
-
*
|
|
1728
|
+
* 任务信息
|
|
1320
1729
|
*/
|
|
1321
|
-
|
|
1730
|
+
Task?: Task;
|
|
1322
1731
|
/**
|
|
1323
|
-
*
|
|
1732
|
+
* 任务对应的演练报告信息,null表示未导出报告
|
|
1733
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1324
1734
|
*/
|
|
1325
|
-
|
|
1735
|
+
ReportInfo?: TaskReportInfo;
|
|
1326
1736
|
/**
|
|
1327
|
-
*
|
|
1737
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1328
1738
|
*/
|
|
1329
|
-
|
|
1739
|
+
RequestId?: string;
|
|
1740
|
+
}
|
|
1741
|
+
/**
|
|
1742
|
+
* CreateTaskFromAction返回参数结构体
|
|
1743
|
+
*/
|
|
1744
|
+
export interface CreateTaskFromActionResponse {
|
|
1330
1745
|
/**
|
|
1331
|
-
*
|
|
1746
|
+
* 创建成功的演练ID
|
|
1332
1747
|
*/
|
|
1333
|
-
|
|
1748
|
+
TaskId?: number;
|
|
1334
1749
|
/**
|
|
1335
|
-
*
|
|
1750
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1336
1751
|
*/
|
|
1337
|
-
|
|
1752
|
+
RequestId?: string;
|
|
1338
1753
|
}
|
|
1339
1754
|
/**
|
|
1340
1755
|
* 经验库列表信息
|
|
@@ -1392,3 +1807,39 @@ export interface TagWithCreate {
|
|
|
1392
1807
|
*/
|
|
1393
1808
|
TagValue: string;
|
|
1394
1809
|
}
|
|
1810
|
+
/**
|
|
1811
|
+
* 对象类型字段类型
|
|
1812
|
+
*/
|
|
1813
|
+
export interface ObjectTypeConfigFields {
|
|
1814
|
+
/**
|
|
1815
|
+
* instanceId
|
|
1816
|
+
*/
|
|
1817
|
+
Key: string;
|
|
1818
|
+
/**
|
|
1819
|
+
* 实例id
|
|
1820
|
+
*/
|
|
1821
|
+
Header: string;
|
|
1822
|
+
/**
|
|
1823
|
+
* 字段值是否需要转译,当不需要转译时,此字段返回null
|
|
1824
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1825
|
+
*/
|
|
1826
|
+
Transfer?: string;
|
|
1827
|
+
/**
|
|
1828
|
+
* tke的pod字段信息解析
|
|
1829
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1830
|
+
*/
|
|
1831
|
+
JsonParse?: string;
|
|
1832
|
+
}
|
|
1833
|
+
/**
|
|
1834
|
+
* 对象类型配置
|
|
1835
|
+
*/
|
|
1836
|
+
export interface ObjectTypeConfig {
|
|
1837
|
+
/**
|
|
1838
|
+
* 主键
|
|
1839
|
+
*/
|
|
1840
|
+
Key: string;
|
|
1841
|
+
/**
|
|
1842
|
+
* 对象类型配置字段列表
|
|
1843
|
+
*/
|
|
1844
|
+
Fields: Array<ObjectTypeConfigFields>;
|
|
1845
|
+
}
|