tencentcloud-sdk-nodejs-dlc 4.0.531 → 4.0.533
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 +378 -0
- package/SERVICE_CHANGELOG.md +550 -15
- package/package.json +1 -1
- package/products.md +26 -26
- package/src/services/dlc/v20210125/dlc_client.ts +47 -10
- package/src/services/dlc/v20210125/dlc_models.ts +343 -35
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +15 -3
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +21 -3
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +289 -33
|
@@ -225,6 +225,15 @@ export interface CreateResultDownloadResponse {
|
|
|
225
225
|
*/
|
|
226
226
|
RequestId?: string;
|
|
227
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* ModifyGovernEventRule返回参数结构体
|
|
230
|
+
*/
|
|
231
|
+
export interface ModifyGovernEventRuleResponse {
|
|
232
|
+
/**
|
|
233
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
234
|
+
*/
|
|
235
|
+
RequestId?: string;
|
|
236
|
+
}
|
|
228
237
|
/**
|
|
229
238
|
* CreateDMSDatabase返回参数结构体
|
|
230
239
|
*/
|
|
@@ -244,21 +253,17 @@ export interface CreateStoreLocationResponse {
|
|
|
244
253
|
RequestId?: string;
|
|
245
254
|
}
|
|
246
255
|
/**
|
|
247
|
-
*
|
|
256
|
+
* DescribeNotebookSession返回参数结构体
|
|
248
257
|
*/
|
|
249
|
-
export interface
|
|
258
|
+
export interface DescribeNotebookSessionResponse {
|
|
250
259
|
/**
|
|
251
|
-
*
|
|
260
|
+
* Session详情信息
|
|
252
261
|
*/
|
|
253
|
-
|
|
262
|
+
Session?: NotebookSessionInfo;
|
|
254
263
|
/**
|
|
255
|
-
*
|
|
256
|
-
*/
|
|
257
|
-
LockId?: number;
|
|
258
|
-
/**
|
|
259
|
-
* 事务ID
|
|
264
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
260
265
|
*/
|
|
261
|
-
|
|
266
|
+
RequestId?: string;
|
|
262
267
|
}
|
|
263
268
|
/**
|
|
264
269
|
* DescribeDMSDatabase返回参数结构体
|
|
@@ -350,7 +355,7 @@ export interface DescribeTablesResponse {
|
|
|
350
355
|
RequestId?: string;
|
|
351
356
|
}
|
|
352
357
|
/**
|
|
353
|
-
* spark
|
|
358
|
+
* spark作业详情。
|
|
354
359
|
*/
|
|
355
360
|
export interface SparkJobInfo {
|
|
356
361
|
/**
|
|
@@ -479,6 +484,11 @@ export interface SparkJobInfo {
|
|
|
479
484
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
480
485
|
*/
|
|
481
486
|
JobArchives: string;
|
|
487
|
+
/**
|
|
488
|
+
* Spark Image 版本
|
|
489
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
490
|
+
*/
|
|
491
|
+
SparkImage: string;
|
|
482
492
|
/**
|
|
483
493
|
* pyspark:python依赖, 除py文件外,还支持zip/egg等归档格式,多文件以逗号分隔
|
|
484
494
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -494,6 +504,11 @@ export interface SparkJobInfo {
|
|
|
494
504
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
495
505
|
*/
|
|
496
506
|
DataEngineStatus: number;
|
|
507
|
+
/**
|
|
508
|
+
* 指定的Executor数量(最大值),默认为1,当开启动态分配有效,若未开启,则该值等于JobExecutorNums
|
|
509
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
510
|
+
*/
|
|
511
|
+
JobExecutorMaxNumbers?: number;
|
|
497
512
|
}
|
|
498
513
|
/**
|
|
499
514
|
* SuspendResumeDataEngine返回参数结构体
|
|
@@ -923,6 +938,18 @@ export interface ModifySparkAppRequest {
|
|
|
923
938
|
* archives:依赖资源
|
|
924
939
|
*/
|
|
925
940
|
AppArchives?: string;
|
|
941
|
+
/**
|
|
942
|
+
* Spark Image 版本
|
|
943
|
+
*/
|
|
944
|
+
SparkImage?: string;
|
|
945
|
+
/**
|
|
946
|
+
* Spark Image 版本名称
|
|
947
|
+
*/
|
|
948
|
+
SparkImageVersion?: string;
|
|
949
|
+
/**
|
|
950
|
+
* 指定的Executor数量(最大值),默认为1,当开启动态分配有效,若未开启,则该值等于AppExecutorNums
|
|
951
|
+
*/
|
|
952
|
+
AppExecutorMaxNumbers?: number;
|
|
926
953
|
}
|
|
927
954
|
/**
|
|
928
955
|
* spark流任务统计信息
|
|
@@ -1350,13 +1377,21 @@ export interface DeleteUserResponse {
|
|
|
1350
1377
|
RequestId?: string;
|
|
1351
1378
|
}
|
|
1352
1379
|
/**
|
|
1353
|
-
*
|
|
1380
|
+
* DescribeDatabases返回参数结构体
|
|
1354
1381
|
*/
|
|
1355
|
-
export interface
|
|
1382
|
+
export interface DescribeDatabasesResponse {
|
|
1356
1383
|
/**
|
|
1357
|
-
*
|
|
1384
|
+
* 数据库对象列表。
|
|
1358
1385
|
*/
|
|
1359
|
-
|
|
1386
|
+
DatabaseList: Array<DatabaseResponseInfo>;
|
|
1387
|
+
/**
|
|
1388
|
+
* 实例总数。
|
|
1389
|
+
*/
|
|
1390
|
+
TotalCount: number;
|
|
1391
|
+
/**
|
|
1392
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1393
|
+
*/
|
|
1394
|
+
RequestId?: string;
|
|
1360
1395
|
}
|
|
1361
1396
|
/**
|
|
1362
1397
|
* 元数据加锁内容
|
|
@@ -1490,6 +1525,67 @@ export interface CreateDMSTableResponse {
|
|
|
1490
1525
|
*/
|
|
1491
1526
|
RequestId?: string;
|
|
1492
1527
|
}
|
|
1528
|
+
/**
|
|
1529
|
+
* CreateNotebookSession请求参数结构体
|
|
1530
|
+
*/
|
|
1531
|
+
export interface CreateNotebookSessionRequest {
|
|
1532
|
+
/**
|
|
1533
|
+
* Session名称
|
|
1534
|
+
*/
|
|
1535
|
+
Name: string;
|
|
1536
|
+
/**
|
|
1537
|
+
* 类型,当前支持:spark、pyspark、sparkr、sql
|
|
1538
|
+
*/
|
|
1539
|
+
Kind: string;
|
|
1540
|
+
/**
|
|
1541
|
+
* DLC Spark作业引擎名称
|
|
1542
|
+
*/
|
|
1543
|
+
DataEngineName: string;
|
|
1544
|
+
/**
|
|
1545
|
+
* session文件地址,当前支持:cosn://和lakefs://两种路径
|
|
1546
|
+
*/
|
|
1547
|
+
ProgramDependentFiles?: Array<string>;
|
|
1548
|
+
/**
|
|
1549
|
+
* 依赖的jar程序地址,当前支持:cosn://和lakefs://两种路径
|
|
1550
|
+
*/
|
|
1551
|
+
ProgramDependentJars?: Array<string>;
|
|
1552
|
+
/**
|
|
1553
|
+
* 依赖的python程序地址,当前支持:cosn://和lakefs://两种路径
|
|
1554
|
+
*/
|
|
1555
|
+
ProgramDependentPython?: Array<string>;
|
|
1556
|
+
/**
|
|
1557
|
+
* 依赖的pyspark虚拟环境地址,当前支持:cosn://和lakefs://两种路径
|
|
1558
|
+
*/
|
|
1559
|
+
ProgramArchives?: Array<string>;
|
|
1560
|
+
/**
|
|
1561
|
+
* 指定的Driver规格,当前支持:small(默认,1cu)、medium(2cu)、large(4cu)、xlarge(8cu)
|
|
1562
|
+
*/
|
|
1563
|
+
DriverSize?: string;
|
|
1564
|
+
/**
|
|
1565
|
+
* 指定的Executor规格,当前支持:small(默认,1cu)、medium(2cu)、large(4cu)、xlarge(8cu)
|
|
1566
|
+
*/
|
|
1567
|
+
ExecutorSize?: string;
|
|
1568
|
+
/**
|
|
1569
|
+
* 指定的Executor数量,默认为1
|
|
1570
|
+
*/
|
|
1571
|
+
ExecutorNumbers?: number;
|
|
1572
|
+
/**
|
|
1573
|
+
* Session相关配置,当前支持:dlc.eni、dlc.role.arn、dlc.sql.set.config以及用户指定的配置,注:roleArn必填;
|
|
1574
|
+
*/
|
|
1575
|
+
Arguments?: Array<KVPair>;
|
|
1576
|
+
/**
|
|
1577
|
+
* 代理用户,默认为root
|
|
1578
|
+
*/
|
|
1579
|
+
ProxyUser?: string;
|
|
1580
|
+
/**
|
|
1581
|
+
* 指定的Session超时时间,单位秒,默认3600秒
|
|
1582
|
+
*/
|
|
1583
|
+
TimeoutInSecond?: number;
|
|
1584
|
+
/**
|
|
1585
|
+
* 指定的Executor数量(最大值),默认为1,当开启动态分配有效,若未开启,则该值等于ExecutorNumbers
|
|
1586
|
+
*/
|
|
1587
|
+
ExecutorMaxNumbers?: number;
|
|
1588
|
+
}
|
|
1493
1589
|
/**
|
|
1494
1590
|
* 数据表分块信息。
|
|
1495
1591
|
*/
|
|
@@ -1544,13 +1640,13 @@ export interface CreateTaskRequest {
|
|
|
1544
1640
|
DataEngineName?: string;
|
|
1545
1641
|
}
|
|
1546
1642
|
/**
|
|
1547
|
-
*
|
|
1643
|
+
* DescribeNotebookSession请求参数结构体
|
|
1548
1644
|
*/
|
|
1549
|
-
export interface
|
|
1645
|
+
export interface DescribeNotebookSessionRequest {
|
|
1550
1646
|
/**
|
|
1551
|
-
*
|
|
1647
|
+
* Session唯一标识
|
|
1552
1648
|
*/
|
|
1553
|
-
|
|
1649
|
+
SessionId: string;
|
|
1554
1650
|
}
|
|
1555
1651
|
/**
|
|
1556
1652
|
* CSV类型数据格式
|
|
@@ -1657,11 +1753,11 @@ export interface DescribeSparkAppJobResponse {
|
|
|
1657
1753
|
* spark作业详情
|
|
1658
1754
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1659
1755
|
*/
|
|
1660
|
-
Job
|
|
1756
|
+
Job?: SparkJobInfo;
|
|
1661
1757
|
/**
|
|
1662
1758
|
* 查询的spark作业是否存在
|
|
1663
1759
|
*/
|
|
1664
|
-
IsExists
|
|
1760
|
+
IsExists?: boolean;
|
|
1665
1761
|
/**
|
|
1666
1762
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1667
1763
|
*/
|
|
@@ -1775,6 +1871,23 @@ export interface ReportHeartbeatMetaDataResponse {
|
|
|
1775
1871
|
*/
|
|
1776
1872
|
RequestId?: string;
|
|
1777
1873
|
}
|
|
1874
|
+
/**
|
|
1875
|
+
* ReportHeartbeatMetaData请求参数结构体
|
|
1876
|
+
*/
|
|
1877
|
+
export interface ReportHeartbeatMetaDataRequest {
|
|
1878
|
+
/**
|
|
1879
|
+
* 数据源名称
|
|
1880
|
+
*/
|
|
1881
|
+
DatasourceConnectionName?: string;
|
|
1882
|
+
/**
|
|
1883
|
+
* 锁ID
|
|
1884
|
+
*/
|
|
1885
|
+
LockId?: number;
|
|
1886
|
+
/**
|
|
1887
|
+
* 事务ID
|
|
1888
|
+
*/
|
|
1889
|
+
TxnId?: number;
|
|
1890
|
+
}
|
|
1778
1891
|
/**
|
|
1779
1892
|
* CreateDMSTable请求参数结构体
|
|
1780
1893
|
*/
|
|
@@ -2474,6 +2587,105 @@ export interface CreateImportTaskResponse {
|
|
|
2474
2587
|
*/
|
|
2475
2588
|
RequestId?: string;
|
|
2476
2589
|
}
|
|
2590
|
+
/**
|
|
2591
|
+
* Notebook Session详细信息。
|
|
2592
|
+
*/
|
|
2593
|
+
export interface NotebookSessionInfo {
|
|
2594
|
+
/**
|
|
2595
|
+
* Session名称
|
|
2596
|
+
*/
|
|
2597
|
+
Name: string;
|
|
2598
|
+
/**
|
|
2599
|
+
* 类型,当前支持:spark、pyspark、sparkr、sql
|
|
2600
|
+
*/
|
|
2601
|
+
Kind: string;
|
|
2602
|
+
/**
|
|
2603
|
+
* DLC Spark作业引擎名称
|
|
2604
|
+
*/
|
|
2605
|
+
DataEngineName: string;
|
|
2606
|
+
/**
|
|
2607
|
+
* Session相关配置,当前支持:eni、roleArn以及用户指定的配置
|
|
2608
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2609
|
+
*/
|
|
2610
|
+
Arguments: Array<KVPair>;
|
|
2611
|
+
/**
|
|
2612
|
+
* 运行程序地址,当前支持:cosn://和lakefs://两种路径
|
|
2613
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2614
|
+
*/
|
|
2615
|
+
ProgramDependentFiles: Array<string>;
|
|
2616
|
+
/**
|
|
2617
|
+
* 依赖的jar程序地址,当前支持:cosn://和lakefs://两种路径
|
|
2618
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2619
|
+
*/
|
|
2620
|
+
ProgramDependentJars: Array<string>;
|
|
2621
|
+
/**
|
|
2622
|
+
* 依赖的python程序地址,当前支持:cosn://和lakefs://两种路径
|
|
2623
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2624
|
+
*/
|
|
2625
|
+
ProgramDependentPython: Array<string>;
|
|
2626
|
+
/**
|
|
2627
|
+
* 依赖的pyspark虚拟环境地址,当前支持:cosn://和lakefs://两种路径
|
|
2628
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2629
|
+
*/
|
|
2630
|
+
ProgramArchives: Array<string>;
|
|
2631
|
+
/**
|
|
2632
|
+
* 指定的Driver规格,当前支持:small(默认,1cu)、medium(2cu)、large(4cu)、xlarge(8cu)
|
|
2633
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2634
|
+
*/
|
|
2635
|
+
DriverSize: string;
|
|
2636
|
+
/**
|
|
2637
|
+
* 指定的Executor规格,当前支持:small(默认,1cu)、medium(2cu)、large(4cu)、xlarge(8cu)
|
|
2638
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2639
|
+
*/
|
|
2640
|
+
ExecutorSize: string;
|
|
2641
|
+
/**
|
|
2642
|
+
* 指定的Executor数量,默认为1
|
|
2643
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2644
|
+
*/
|
|
2645
|
+
ExecutorNumbers: number;
|
|
2646
|
+
/**
|
|
2647
|
+
* 代理用户,默认为root
|
|
2648
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2649
|
+
*/
|
|
2650
|
+
ProxyUser: string;
|
|
2651
|
+
/**
|
|
2652
|
+
* 指定的Session超时时间,单位秒,默认3600秒
|
|
2653
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2654
|
+
*/
|
|
2655
|
+
TimeoutInSecond: number;
|
|
2656
|
+
/**
|
|
2657
|
+
* Spark任务返回的AppId
|
|
2658
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2659
|
+
*/
|
|
2660
|
+
SparkAppId: string;
|
|
2661
|
+
/**
|
|
2662
|
+
* Session唯一标识
|
|
2663
|
+
*/
|
|
2664
|
+
SessionId: string;
|
|
2665
|
+
/**
|
|
2666
|
+
* Session状态,包含:not_started(未启动)、starting(已启动)、idle(等待输入)、busy(正在运行statement)、shutting_down(停止)、error(异常)、dead(已退出)、killed(被杀死)、success(正常停止)
|
|
2667
|
+
*/
|
|
2668
|
+
State: string;
|
|
2669
|
+
/**
|
|
2670
|
+
* Session创建时间
|
|
2671
|
+
*/
|
|
2672
|
+
CreateTime: string;
|
|
2673
|
+
/**
|
|
2674
|
+
* 其它信息
|
|
2675
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2676
|
+
*/
|
|
2677
|
+
AppInfo: Array<KVPair>;
|
|
2678
|
+
/**
|
|
2679
|
+
* Spark ui地址
|
|
2680
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2681
|
+
*/
|
|
2682
|
+
SparkUiUrl: string;
|
|
2683
|
+
/**
|
|
2684
|
+
* 指定的Executor数量(最大值),默认为1,当开启动态分配有效,若未开启,则该值等于ExecutorNumbers
|
|
2685
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2686
|
+
*/
|
|
2687
|
+
ExecutorMaxNumbers?: number;
|
|
2688
|
+
}
|
|
2477
2689
|
/**
|
|
2478
2690
|
* SQL语句对象
|
|
2479
2691
|
*/
|
|
@@ -2974,22 +3186,23 @@ export interface DescribeTablesRequest {
|
|
|
2974
3186
|
TableFormat?: string;
|
|
2975
3187
|
}
|
|
2976
3188
|
/**
|
|
2977
|
-
*
|
|
3189
|
+
* ModifySparkApp返回参数结构体
|
|
2978
3190
|
*/
|
|
2979
|
-
export interface
|
|
2980
|
-
/**
|
|
2981
|
-
* 数据库对象列表。
|
|
2982
|
-
*/
|
|
2983
|
-
DatabaseList: Array<DatabaseResponseInfo>;
|
|
2984
|
-
/**
|
|
2985
|
-
* 实例总数。
|
|
2986
|
-
*/
|
|
2987
|
-
TotalCount: number;
|
|
3191
|
+
export interface ModifySparkAppResponse {
|
|
2988
3192
|
/**
|
|
2989
3193
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2990
3194
|
*/
|
|
2991
3195
|
RequestId?: string;
|
|
2992
3196
|
}
|
|
3197
|
+
/**
|
|
3198
|
+
* CreateStoreLocation请求参数结构体
|
|
3199
|
+
*/
|
|
3200
|
+
export interface CreateStoreLocationRequest {
|
|
3201
|
+
/**
|
|
3202
|
+
* 计算结果存储cos路径,如:cosn://bucketname/
|
|
3203
|
+
*/
|
|
3204
|
+
StoreLocation: string;
|
|
3205
|
+
}
|
|
2993
3206
|
/**
|
|
2994
3207
|
* DMSTable信息
|
|
2995
3208
|
*/
|
|
@@ -3348,6 +3561,11 @@ export interface DMSColumnOrder {
|
|
|
3348
3561
|
* CreateSparkApp返回参数结构体
|
|
3349
3562
|
*/
|
|
3350
3563
|
export interface CreateSparkAppResponse {
|
|
3564
|
+
/**
|
|
3565
|
+
* App唯一标识
|
|
3566
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3567
|
+
*/
|
|
3568
|
+
SparkAppId?: string;
|
|
3351
3569
|
/**
|
|
3352
3570
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3353
3571
|
*/
|
|
@@ -3439,11 +3657,11 @@ export interface DescribeSparkAppJobsResponse {
|
|
|
3439
3657
|
/**
|
|
3440
3658
|
* spark作业列表详情
|
|
3441
3659
|
*/
|
|
3442
|
-
SparkAppJobs
|
|
3660
|
+
SparkAppJobs?: Array<SparkJobInfo>;
|
|
3443
3661
|
/**
|
|
3444
3662
|
* spark作业总数
|
|
3445
3663
|
*/
|
|
3446
|
-
TotalCount
|
|
3664
|
+
TotalCount?: number;
|
|
3447
3665
|
/**
|
|
3448
3666
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3449
3667
|
*/
|
|
@@ -3647,6 +3865,28 @@ export interface CreateTasksResponse {
|
|
|
3647
3865
|
*/
|
|
3648
3866
|
RequestId?: string;
|
|
3649
3867
|
}
|
|
3868
|
+
/**
|
|
3869
|
+
* CreateNotebookSession返回参数结构体
|
|
3870
|
+
*/
|
|
3871
|
+
export interface CreateNotebookSessionResponse {
|
|
3872
|
+
/**
|
|
3873
|
+
* Session唯一标识
|
|
3874
|
+
*/
|
|
3875
|
+
SessionId?: string;
|
|
3876
|
+
/**
|
|
3877
|
+
* Spark任务返回的AppId
|
|
3878
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3879
|
+
*/
|
|
3880
|
+
SparkAppId?: string;
|
|
3881
|
+
/**
|
|
3882
|
+
* Session状态,包含:not_started(未启动)、starting(已启动)、idle(等待输入)、busy(正在运行statement)、shutting_down(停止)、error(异常)、dead(已退出)、killed(被杀死)、success(正常停止)
|
|
3883
|
+
*/
|
|
3884
|
+
State?: string;
|
|
3885
|
+
/**
|
|
3886
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3887
|
+
*/
|
|
3888
|
+
RequestId?: string;
|
|
3889
|
+
}
|
|
3650
3890
|
/**
|
|
3651
3891
|
* CreateSparkApp请求参数结构体
|
|
3652
3892
|
*/
|
|
@@ -3743,6 +3983,18 @@ export interface CreateSparkAppRequest {
|
|
|
3743
3983
|
* archives:依赖资源
|
|
3744
3984
|
*/
|
|
3745
3985
|
AppArchives?: string;
|
|
3986
|
+
/**
|
|
3987
|
+
* Spark Image 版本
|
|
3988
|
+
*/
|
|
3989
|
+
SparkImage?: string;
|
|
3990
|
+
/**
|
|
3991
|
+
* Spark Image 版本名称
|
|
3992
|
+
*/
|
|
3993
|
+
SparkImageVersion?: string;
|
|
3994
|
+
/**
|
|
3995
|
+
* 指定的Executor数量(最大值),默认为1,当开启动态分配有效,若未开启,则该值等于AppExecutorNums
|
|
3996
|
+
*/
|
|
3997
|
+
AppExecutorMaxNumbers?: number;
|
|
3746
3998
|
}
|
|
3747
3999
|
/**
|
|
3748
4000
|
* UnbindWorkGroupsFromUser返回参数结构体
|
|
@@ -4020,6 +4272,10 @@ export interface DescribeDMSTableRequest {
|
|
|
4020
4272
|
*/
|
|
4021
4273
|
Type?: string;
|
|
4022
4274
|
}
|
|
4275
|
+
/**
|
|
4276
|
+
* ModifyGovernEventRule请求参数结构体
|
|
4277
|
+
*/
|
|
4278
|
+
export declare type ModifyGovernEventRuleRequest = null;
|
|
4023
4279
|
/**
|
|
4024
4280
|
* DescribeViews返回参数结构体
|
|
4025
4281
|
*/
|