@alicloud/adb20211201 2.0.2 → 2.0.4
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/dist/client.d.ts +55 -41
- package/dist/client.js +54 -16
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +93 -41
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alicloud/adb20211201",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/client.js",
|
|
6
6
|
"scripts": {
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@alicloud/tea-typescript": "^1.7.1",
|
|
23
|
-
"@alicloud/tea-util": "^1.4.
|
|
24
|
-
"@alicloud/openapi-client": "^0.4.
|
|
23
|
+
"@alicloud/tea-util": "^1.4.9",
|
|
24
|
+
"@alicloud/openapi-client": "^0.4.11",
|
|
25
25
|
"@alicloud/openapi-util": "^0.3.2",
|
|
26
26
|
"@alicloud/endpoint-util": "^0.0.1"
|
|
27
27
|
},
|
package/src/client.ts
CHANGED
|
@@ -2319,6 +2319,8 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2319
2319
|
* True
|
|
2320
2320
|
*/
|
|
2321
2321
|
enableSpot?: boolean;
|
|
2322
|
+
engine?: string;
|
|
2323
|
+
engineParams?: { [key: string]: any };
|
|
2322
2324
|
/**
|
|
2323
2325
|
* @remarks
|
|
2324
2326
|
* The name of the resource group.
|
|
@@ -2407,6 +2409,8 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2407
2409
|
clusterSizeResource: 'ClusterSizeResource',
|
|
2408
2410
|
DBClusterId: 'DBClusterId',
|
|
2409
2411
|
enableSpot: 'EnableSpot',
|
|
2412
|
+
engine: 'Engine',
|
|
2413
|
+
engineParams: 'EngineParams',
|
|
2410
2414
|
groupName: 'GroupName',
|
|
2411
2415
|
groupType: 'GroupType',
|
|
2412
2416
|
maxClusterCount: 'MaxClusterCount',
|
|
@@ -2424,6 +2428,8 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2424
2428
|
clusterSizeResource: 'string',
|
|
2425
2429
|
DBClusterId: 'string',
|
|
2426
2430
|
enableSpot: 'boolean',
|
|
2431
|
+
engine: 'string',
|
|
2432
|
+
engineParams: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
2427
2433
|
groupName: 'string',
|
|
2428
2434
|
groupType: 'string',
|
|
2429
2435
|
maxClusterCount: 'number',
|
|
@@ -2478,6 +2484,8 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2478
2484
|
* True
|
|
2479
2485
|
*/
|
|
2480
2486
|
enableSpot?: boolean;
|
|
2487
|
+
engine?: string;
|
|
2488
|
+
engineParamsShrink?: string;
|
|
2481
2489
|
/**
|
|
2482
2490
|
* @remarks
|
|
2483
2491
|
* The name of the resource group.
|
|
@@ -2566,6 +2574,8 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2566
2574
|
clusterSizeResource: 'ClusterSizeResource',
|
|
2567
2575
|
DBClusterId: 'DBClusterId',
|
|
2568
2576
|
enableSpot: 'EnableSpot',
|
|
2577
|
+
engine: 'Engine',
|
|
2578
|
+
engineParamsShrink: 'EngineParams',
|
|
2569
2579
|
groupName: 'GroupName',
|
|
2570
2580
|
groupType: 'GroupType',
|
|
2571
2581
|
maxClusterCount: 'MaxClusterCount',
|
|
@@ -2583,6 +2593,8 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2583
2593
|
clusterSizeResource: 'string',
|
|
2584
2594
|
DBClusterId: 'string',
|
|
2585
2595
|
enableSpot: 'boolean',
|
|
2596
|
+
engine: 'string',
|
|
2597
|
+
engineParamsShrink: 'string',
|
|
2586
2598
|
groupName: 'string',
|
|
2587
2599
|
groupType: 'string',
|
|
2588
2600
|
maxClusterCount: 'number',
|
|
@@ -4423,7 +4435,7 @@ export class DescribeAccountPrivilegeObjectsRequest extends $tea.Model {
|
|
|
4423
4435
|
columnPrivilegeObject?: string;
|
|
4424
4436
|
/**
|
|
4425
4437
|
* @remarks
|
|
4426
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
4438
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
4427
4439
|
*
|
|
4428
4440
|
* This parameter is required.
|
|
4429
4441
|
*
|
|
@@ -5504,9 +5516,9 @@ export class DescribeAllDataSourceResponse extends $tea.Model {
|
|
|
5504
5516
|
export class DescribeApsActionLogsRequest extends $tea.Model {
|
|
5505
5517
|
/**
|
|
5506
5518
|
* @remarks
|
|
5507
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
5519
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
5508
5520
|
*
|
|
5509
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/454250.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
5521
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/454250.html) operation to query the IDs of all AnalyticDB for MySQL clusters within a region.
|
|
5510
5522
|
*
|
|
5511
5523
|
* This parameter is required.
|
|
5512
5524
|
*
|
|
@@ -7372,9 +7384,9 @@ export class DescribeDBClusterAttributeResponse extends $tea.Model {
|
|
|
7372
7384
|
export class DescribeDBClusterHealthStatusRequest extends $tea.Model {
|
|
7373
7385
|
/**
|
|
7374
7386
|
* @remarks
|
|
7375
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
7387
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
7376
7388
|
*
|
|
7377
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
7389
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL clusters within a region.
|
|
7378
7390
|
*
|
|
7379
7391
|
* This parameter is required.
|
|
7380
7392
|
*
|
|
@@ -7507,9 +7519,9 @@ export class DescribeDBClusterHealthStatusResponse extends $tea.Model {
|
|
|
7507
7519
|
export class DescribeDBClusterPerformanceRequest extends $tea.Model {
|
|
7508
7520
|
/**
|
|
7509
7521
|
* @remarks
|
|
7510
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
7522
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
7511
7523
|
*
|
|
7512
|
-
* >
|
|
7524
|
+
* > You can call the [DescribeDBClusters](~~~612397~~~) operation to query the IDs of all AnalyticDB for MySQL clusters within a region.
|
|
7513
7525
|
*
|
|
7514
7526
|
* This parameter is required.
|
|
7515
7527
|
*
|
|
@@ -7716,7 +7728,7 @@ export class DescribeDBClusterPerformanceResponse extends $tea.Model {
|
|
|
7716
7728
|
export class DescribeDBClusterSpaceSummaryRequest extends $tea.Model {
|
|
7717
7729
|
/**
|
|
7718
7730
|
* @remarks
|
|
7719
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
7731
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
7720
7732
|
*
|
|
7721
7733
|
* This parameter is required.
|
|
7722
7734
|
*
|
|
@@ -10235,7 +10247,7 @@ export class DescribePatternPerformanceRequest extends $tea.Model {
|
|
|
10235
10247
|
* @remarks
|
|
10236
10248
|
* The cluster ID.
|
|
10237
10249
|
*
|
|
10238
|
-
* >
|
|
10250
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/129857.html) operation to query the information about all AnalyticDB for MySQL clusters within a region, including cluster IDs.
|
|
10239
10251
|
*
|
|
10240
10252
|
* This parameter is required.
|
|
10241
10253
|
*
|
|
@@ -10257,7 +10269,7 @@ export class DescribePatternPerformanceRequest extends $tea.Model {
|
|
|
10257
10269
|
* @remarks
|
|
10258
10270
|
* The SQL pattern ID.
|
|
10259
10271
|
*
|
|
10260
|
-
* > You can call the [DescribeSQLPatterns](https://help.aliyun.com/document_detail/321868.html) operation to query the information about all SQL patterns in an AnalyticDB for MySQL
|
|
10272
|
+
* > You can call the [DescribeSQLPatterns](https://help.aliyun.com/document_detail/321868.html) operation to query the information about all SQL patterns in an AnalyticDB for MySQL cluster within a period of time, including SQL pattern IDs.
|
|
10261
10273
|
*
|
|
10262
10274
|
* @example
|
|
10263
10275
|
* 3847585356974******
|
|
@@ -15761,7 +15773,7 @@ export class KillSparkLogAnalyzeTaskResponse extends $tea.Model {
|
|
|
15761
15773
|
export class KillSparkSQLEngineRequest extends $tea.Model {
|
|
15762
15774
|
/**
|
|
15763
15775
|
* @remarks
|
|
15764
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
15776
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
15765
15777
|
*
|
|
15766
15778
|
* This parameter is required.
|
|
15767
15779
|
*
|
|
@@ -16740,6 +16752,7 @@ export class ModifyAuditLogConfigRequest extends $tea.Model {
|
|
|
16740
16752
|
* amv-t4nj8619bz2w3****
|
|
16741
16753
|
*/
|
|
16742
16754
|
DBClusterId?: string;
|
|
16755
|
+
engineType?: string;
|
|
16743
16756
|
ownerAccount?: string;
|
|
16744
16757
|
ownerId?: number;
|
|
16745
16758
|
/**
|
|
@@ -16760,6 +16773,7 @@ export class ModifyAuditLogConfigRequest extends $tea.Model {
|
|
|
16760
16773
|
return {
|
|
16761
16774
|
auditLogStatus: 'AuditLogStatus',
|
|
16762
16775
|
DBClusterId: 'DBClusterId',
|
|
16776
|
+
engineType: 'EngineType',
|
|
16763
16777
|
ownerAccount: 'OwnerAccount',
|
|
16764
16778
|
ownerId: 'OwnerId',
|
|
16765
16779
|
regionId: 'RegionId',
|
|
@@ -16772,6 +16786,7 @@ export class ModifyAuditLogConfigRequest extends $tea.Model {
|
|
|
16772
16786
|
return {
|
|
16773
16787
|
auditLogStatus: 'string',
|
|
16774
16788
|
DBClusterId: 'string',
|
|
16789
|
+
engineType: 'string',
|
|
16775
16790
|
ownerAccount: 'string',
|
|
16776
16791
|
ownerId: 'number',
|
|
16777
16792
|
regionId: 'string',
|
|
@@ -17546,7 +17561,7 @@ export class ModifyDBClusterDescriptionResponse extends $tea.Model {
|
|
|
17546
17561
|
export class ModifyDBClusterMaintainTimeRequest extends $tea.Model {
|
|
17547
17562
|
/**
|
|
17548
17563
|
* @remarks
|
|
17549
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
17564
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
17550
17565
|
*
|
|
17551
17566
|
* This parameter is required.
|
|
17552
17567
|
*
|
|
@@ -17674,6 +17689,7 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17674
17689
|
* true
|
|
17675
17690
|
*/
|
|
17676
17691
|
enableSpot?: boolean;
|
|
17692
|
+
engineParams?: { [key: string]: any };
|
|
17677
17693
|
/**
|
|
17678
17694
|
* @remarks
|
|
17679
17695
|
* The name of the resource group.
|
|
@@ -17760,6 +17776,7 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17760
17776
|
clusterSizeResource: 'ClusterSizeResource',
|
|
17761
17777
|
DBClusterId: 'DBClusterId',
|
|
17762
17778
|
enableSpot: 'EnableSpot',
|
|
17779
|
+
engineParams: 'EngineParams',
|
|
17763
17780
|
groupName: 'GroupName',
|
|
17764
17781
|
groupType: 'GroupType',
|
|
17765
17782
|
maxClusterCount: 'MaxClusterCount',
|
|
@@ -17777,6 +17794,7 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17777
17794
|
clusterSizeResource: 'string',
|
|
17778
17795
|
DBClusterId: 'string',
|
|
17779
17796
|
enableSpot: 'boolean',
|
|
17797
|
+
engineParams: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
17780
17798
|
groupName: 'string',
|
|
17781
17799
|
groupType: 'string',
|
|
17782
17800
|
maxClusterCount: 'number',
|
|
@@ -17831,6 +17849,7 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17831
17849
|
* true
|
|
17832
17850
|
*/
|
|
17833
17851
|
enableSpot?: boolean;
|
|
17852
|
+
engineParamsShrink?: string;
|
|
17834
17853
|
/**
|
|
17835
17854
|
* @remarks
|
|
17836
17855
|
* The name of the resource group.
|
|
@@ -17917,6 +17936,7 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17917
17936
|
clusterSizeResource: 'ClusterSizeResource',
|
|
17918
17937
|
DBClusterId: 'DBClusterId',
|
|
17919
17938
|
enableSpot: 'EnableSpot',
|
|
17939
|
+
engineParamsShrink: 'EngineParams',
|
|
17920
17940
|
groupName: 'GroupName',
|
|
17921
17941
|
groupType: 'GroupType',
|
|
17922
17942
|
maxClusterCount: 'MaxClusterCount',
|
|
@@ -17934,6 +17954,7 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17934
17954
|
clusterSizeResource: 'string',
|
|
17935
17955
|
DBClusterId: 'string',
|
|
17936
17956
|
enableSpot: 'boolean',
|
|
17957
|
+
engineParamsShrink: 'string',
|
|
17937
17958
|
groupName: 'string',
|
|
17938
17959
|
groupType: 'string',
|
|
17939
17960
|
maxClusterCount: 'number',
|
|
@@ -22768,7 +22789,7 @@ export class DescribeDBClusterPerformanceResponseBodyPerformancesSeries extends
|
|
|
22768
22789
|
*
|
|
22769
22790
|
* * AnalyticDB_Avg_QueryRT: the average amount of time consumed by queries.
|
|
22770
22791
|
* * AnalyticDB_Max_QueryRT: the maximum amount of time consumed by a single query.
|
|
22771
|
-
* * etl_avg_rt: the average amount of time consumed by extract
|
|
22792
|
+
* * etl_avg_rt: the average amount of time consumed by extract, transform, load (ETL) operations.
|
|
22772
22793
|
* * etl_max_rt: the maximum amount of time consumed by a single ETL operation.
|
|
22773
22794
|
*
|
|
22774
22795
|
* * **AnalyticDB_QueryWaitTime**: the query wait time.
|
|
@@ -22866,37 +22887,31 @@ export class DescribeDBClusterPerformanceResponseBodyPerformancesSeries extends
|
|
|
22866
22887
|
*
|
|
22867
22888
|
* * AnalyticDB_WLM_TotalQueries_Count: the total number of WLM queries.
|
|
22868
22889
|
*
|
|
22869
|
-
* * APS
|
|
22890
|
+
* * AnalyticDB Pipeline Service (APS)
|
|
22870
22891
|
*
|
|
22871
|
-
* * AnalyticDB_APS_BPS: the bytes per second (BPS) of APS provided by the AnalyticDB for MySQL Data Lakehouse Edition
|
|
22892
|
+
* * AnalyticDB_APS_BPS: the bytes per second (BPS) of APS provided by the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
22872
22893
|
*
|
|
22873
22894
|
* * APS_Read_BPS: the read BPS of APS.
|
|
22874
22895
|
*
|
|
22875
|
-
* * AnalyticDB_APS_CPU: the CPU utilization of APS provided by the AnalyticDB for MySQL Data Lakehouse Edition
|
|
22896
|
+
* * AnalyticDB_APS_CPU: the CPU utilization of APS provided by the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
22876
22897
|
*
|
|
22877
22898
|
* * APS_CPU_Avg_Usage_Percentage: the average CPU utilization of APS.
|
|
22878
22899
|
* * APS_CPU_Max_Usage_Percentage: the maximum CPU utilization of APS.
|
|
22879
22900
|
*
|
|
22880
|
-
* * AnalyticDB_APS_Memory: the memory usage of APS provided by the AnalyticDB for MySQL Data Lakehouse Edition
|
|
22901
|
+
* * AnalyticDB_APS_Memory: the memory usage of APS provided by the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
22881
22902
|
*
|
|
22882
22903
|
* * APS_Memory_Avg_Usage_Percentage: the average memory usage of APS.
|
|
22883
22904
|
* * APS_Memory_Max_Usage_Percentage: the maximum memory usage of APS.
|
|
22884
22905
|
*
|
|
22885
|
-
* * AnalyticDB_APS_RPS: the number of records per second of APS provided by the AnalyticDB for MySQL Data Lakehouse Edition
|
|
22906
|
+
* * AnalyticDB_APS_RPS: the number of records per second of APS provided by the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
22886
22907
|
*
|
|
22887
22908
|
* * APS_Read_RPS: the number of read records per second of APS.
|
|
22888
22909
|
*
|
|
22889
|
-
* * AnalyticDB_APS_RT: the response time of APS provided by the AnalyticDB for MySQL Data Lakehouse Edition
|
|
22910
|
+
* * AnalyticDB_APS_RT: the response time of APS provided by the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
22890
22911
|
*
|
|
22891
22912
|
* * APS_Read_Avg_RT: the average response time of APS.
|
|
22892
22913
|
* * APS_Read_Max_RT: the maximum response time of APS.
|
|
22893
22914
|
*
|
|
22894
|
-
* * * *
|
|
22895
|
-
* * *
|
|
22896
|
-
* * *
|
|
22897
|
-
* * *
|
|
22898
|
-
* * *
|
|
22899
|
-
*
|
|
22900
22915
|
* @example
|
|
22901
22916
|
* AnalyticDB_Storage_CPU_Avg_Usage_Percentage
|
|
22902
22917
|
*/
|
|
@@ -23858,6 +23873,8 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23858
23873
|
* True
|
|
23859
23874
|
*/
|
|
23860
23875
|
enableSpot?: string;
|
|
23876
|
+
engine?: string;
|
|
23877
|
+
engineParams?: { [key: string]: any };
|
|
23861
23878
|
/**
|
|
23862
23879
|
* @remarks
|
|
23863
23880
|
* The name of the resource group.
|
|
@@ -23903,6 +23920,11 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23903
23920
|
* 512ACU
|
|
23904
23921
|
*/
|
|
23905
23922
|
maxComputeResource?: string;
|
|
23923
|
+
/**
|
|
23924
|
+
* @remarks
|
|
23925
|
+
* This parameter is required.
|
|
23926
|
+
*/
|
|
23927
|
+
message?: string;
|
|
23906
23928
|
/**
|
|
23907
23929
|
* @remarks
|
|
23908
23930
|
* A reserved parameter.
|
|
@@ -23959,11 +23981,14 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23959
23981
|
createTime: 'CreateTime',
|
|
23960
23982
|
elasticMinComputeResource: 'ElasticMinComputeResource',
|
|
23961
23983
|
enableSpot: 'EnableSpot',
|
|
23984
|
+
engine: 'Engine',
|
|
23985
|
+
engineParams: 'EngineParams',
|
|
23962
23986
|
groupName: 'GroupName',
|
|
23963
23987
|
groupType: 'GroupType',
|
|
23964
23988
|
groupUsers: 'GroupUsers',
|
|
23965
23989
|
maxClusterCount: 'MaxClusterCount',
|
|
23966
23990
|
maxComputeResource: 'MaxComputeResource',
|
|
23991
|
+
message: 'Message',
|
|
23967
23992
|
minClusterCount: 'MinClusterCount',
|
|
23968
23993
|
minComputeResource: 'MinComputeResource',
|
|
23969
23994
|
rules: 'Rules',
|
|
@@ -23980,11 +24005,14 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23980
24005
|
createTime: 'string',
|
|
23981
24006
|
elasticMinComputeResource: 'string',
|
|
23982
24007
|
enableSpot: 'string',
|
|
24008
|
+
engine: 'string',
|
|
24009
|
+
engineParams: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
23983
24010
|
groupName: 'string',
|
|
23984
24011
|
groupType: 'string',
|
|
23985
24012
|
groupUsers: 'string',
|
|
23986
24013
|
maxClusterCount: 'number',
|
|
23987
24014
|
maxComputeResource: 'string',
|
|
24015
|
+
message: 'string',
|
|
23988
24016
|
minClusterCount: 'number',
|
|
23989
24017
|
minComputeResource: 'string',
|
|
23990
24018
|
rules: { 'type': 'array', 'itemType': DescribeDBResourceGroupResponseBodyGroupsInfoRules },
|
|
@@ -28585,6 +28613,10 @@ export default class Client extends OpenApi {
|
|
|
28585
28613
|
Util.validateModel(tmpReq);
|
|
28586
28614
|
let request = new CreateDBResourceGroupShrinkRequest({ });
|
|
28587
28615
|
OpenApiUtil.convert(tmpReq, request);
|
|
28616
|
+
if (!Util.isUnset(tmpReq.engineParams)) {
|
|
28617
|
+
request.engineParamsShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.engineParams, "EngineParams", "json");
|
|
28618
|
+
}
|
|
28619
|
+
|
|
28588
28620
|
if (!Util.isUnset(tmpReq.rules)) {
|
|
28589
28621
|
request.rulesShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.rules, "Rules", "json");
|
|
28590
28622
|
}
|
|
@@ -28606,6 +28638,14 @@ export default class Client extends OpenApi {
|
|
|
28606
28638
|
query["EnableSpot"] = request.enableSpot;
|
|
28607
28639
|
}
|
|
28608
28640
|
|
|
28641
|
+
if (!Util.isUnset(request.engine)) {
|
|
28642
|
+
query["Engine"] = request.engine;
|
|
28643
|
+
}
|
|
28644
|
+
|
|
28645
|
+
if (!Util.isUnset(request.engineParamsShrink)) {
|
|
28646
|
+
query["EngineParams"] = request.engineParamsShrink;
|
|
28647
|
+
}
|
|
28648
|
+
|
|
28609
28649
|
if (!Util.isUnset(request.groupName)) {
|
|
28610
28650
|
query["GroupName"] = request.groupName;
|
|
28611
28651
|
}
|
|
@@ -29916,7 +29956,7 @@ export default class Client extends OpenApi {
|
|
|
29916
29956
|
}
|
|
29917
29957
|
|
|
29918
29958
|
/**
|
|
29919
|
-
* Queries the logs of a real-time data ingestion job for an AnalyticDB for MySQL
|
|
29959
|
+
* Queries the logs of a real-time data ingestion job for an AnalyticDB for MySQL cluster.
|
|
29920
29960
|
*
|
|
29921
29961
|
* @remarks
|
|
29922
29962
|
* General endpoint: `adb.aliyuncs.com`.
|
|
@@ -30004,7 +30044,7 @@ export default class Client extends OpenApi {
|
|
|
30004
30044
|
}
|
|
30005
30045
|
|
|
30006
30046
|
/**
|
|
30007
|
-
* Queries the logs of a real-time data ingestion job for an AnalyticDB for MySQL
|
|
30047
|
+
* Queries the logs of a real-time data ingestion job for an AnalyticDB for MySQL cluster.
|
|
30008
30048
|
*
|
|
30009
30049
|
* @remarks
|
|
30010
30050
|
* General endpoint: `adb.aliyuncs.com`.
|
|
@@ -30700,10 +30740,10 @@ export default class Client extends OpenApi {
|
|
|
30700
30740
|
}
|
|
30701
30741
|
|
|
30702
30742
|
/**
|
|
30703
|
-
* Queries the health status of an AnalyticDB for MySQL
|
|
30743
|
+
* Queries the health status of an AnalyticDB for MySQL cluster.
|
|
30704
30744
|
*
|
|
30705
30745
|
* @remarks
|
|
30706
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
30746
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
30707
30747
|
*
|
|
30708
30748
|
* @param request - DescribeDBClusterHealthStatusRequest
|
|
30709
30749
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -30738,10 +30778,10 @@ export default class Client extends OpenApi {
|
|
|
30738
30778
|
}
|
|
30739
30779
|
|
|
30740
30780
|
/**
|
|
30741
|
-
* Queries the health status of an AnalyticDB for MySQL
|
|
30781
|
+
* Queries the health status of an AnalyticDB for MySQL cluster.
|
|
30742
30782
|
*
|
|
30743
30783
|
* @remarks
|
|
30744
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
30784
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
30745
30785
|
*
|
|
30746
30786
|
* @param request - DescribeDBClusterHealthStatusRequest
|
|
30747
30787
|
* @returns DescribeDBClusterHealthStatusResponse
|
|
@@ -30755,7 +30795,7 @@ export default class Client extends OpenApi {
|
|
|
30755
30795
|
* Queries the performance data of an AnalyticDB for MySQL cluster.
|
|
30756
30796
|
*
|
|
30757
30797
|
* @remarks
|
|
30758
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
30798
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
30759
30799
|
*
|
|
30760
30800
|
* @param request - DescribeDBClusterPerformanceRequest
|
|
30761
30801
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -30809,7 +30849,7 @@ export default class Client extends OpenApi {
|
|
|
30809
30849
|
* Queries the performance data of an AnalyticDB for MySQL cluster.
|
|
30810
30850
|
*
|
|
30811
30851
|
* @remarks
|
|
30812
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
30852
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
30813
30853
|
*
|
|
30814
30854
|
* @param request - DescribeDBClusterPerformanceRequest
|
|
30815
30855
|
* @returns DescribeDBClusterPerformanceResponse
|
|
@@ -31804,7 +31844,7 @@ export default class Client extends OpenApi {
|
|
|
31804
31844
|
}
|
|
31805
31845
|
|
|
31806
31846
|
/**
|
|
31807
|
-
* Queries the information about performance metrics of an SQL pattern such as the query duration and average memory usage for an AnalyticDB for MySQL
|
|
31847
|
+
* Queries the information about performance metrics of an SQL pattern such as the query duration and average memory usage for an AnalyticDB for MySQL cluster within a time range.
|
|
31808
31848
|
*
|
|
31809
31849
|
* @remarks
|
|
31810
31850
|
* General endpoint: `adb.aliyuncs.com`.
|
|
@@ -31856,7 +31896,7 @@ export default class Client extends OpenApi {
|
|
|
31856
31896
|
}
|
|
31857
31897
|
|
|
31858
31898
|
/**
|
|
31859
|
-
* Queries the information about performance metrics of an SQL pattern such as the query duration and average memory usage for an AnalyticDB for MySQL
|
|
31899
|
+
* Queries the information about performance metrics of an SQL pattern such as the query duration and average memory usage for an AnalyticDB for MySQL cluster within a time range.
|
|
31860
31900
|
*
|
|
31861
31901
|
* @remarks
|
|
31862
31902
|
* General endpoint: `adb.aliyuncs.com`.
|
|
@@ -34319,9 +34359,9 @@ export default class Client extends OpenApi {
|
|
|
34319
34359
|
* Shuts down a Spark SQL engine.
|
|
34320
34360
|
*
|
|
34321
34361
|
* @remarks
|
|
34322
|
-
*
|
|
34323
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
34362
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
34324
34363
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
34364
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
34325
34365
|
*
|
|
34326
34366
|
* @param request - KillSparkSQLEngineRequest
|
|
34327
34367
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -34359,9 +34399,9 @@ export default class Client extends OpenApi {
|
|
|
34359
34399
|
* Shuts down a Spark SQL engine.
|
|
34360
34400
|
*
|
|
34361
34401
|
* @remarks
|
|
34362
|
-
*
|
|
34363
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
34402
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
34364
34403
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
34404
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
34365
34405
|
*
|
|
34366
34406
|
* @param request - KillSparkSQLEngineRequest
|
|
34367
34407
|
* @returns KillSparkSQLEngineResponse
|
|
@@ -34796,6 +34836,10 @@ export default class Client extends OpenApi {
|
|
|
34796
34836
|
query["DBClusterId"] = request.DBClusterId;
|
|
34797
34837
|
}
|
|
34798
34838
|
|
|
34839
|
+
if (!Util.isUnset(request.engineType)) {
|
|
34840
|
+
query["EngineType"] = request.engineType;
|
|
34841
|
+
}
|
|
34842
|
+
|
|
34799
34843
|
if (!Util.isUnset(request.ownerAccount)) {
|
|
34800
34844
|
query["OwnerAccount"] = request.ownerAccount;
|
|
34801
34845
|
}
|
|
@@ -35204,7 +35248,7 @@ export default class Client extends OpenApi {
|
|
|
35204
35248
|
}
|
|
35205
35249
|
|
|
35206
35250
|
/**
|
|
35207
|
-
* Modifies the maintenance window of an AnalyticDB for MySQL
|
|
35251
|
+
* Modifies the maintenance window of an AnalyticDB for MySQL cluster.
|
|
35208
35252
|
*
|
|
35209
35253
|
* @remarks
|
|
35210
35254
|
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
@@ -35242,7 +35286,7 @@ export default class Client extends OpenApi {
|
|
|
35242
35286
|
}
|
|
35243
35287
|
|
|
35244
35288
|
/**
|
|
35245
|
-
* Modifies the maintenance window of an AnalyticDB for MySQL
|
|
35289
|
+
* Modifies the maintenance window of an AnalyticDB for MySQL cluster.
|
|
35246
35290
|
*
|
|
35247
35291
|
* @remarks
|
|
35248
35292
|
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
@@ -35269,6 +35313,10 @@ export default class Client extends OpenApi {
|
|
|
35269
35313
|
Util.validateModel(tmpReq);
|
|
35270
35314
|
let request = new ModifyDBResourceGroupShrinkRequest({ });
|
|
35271
35315
|
OpenApiUtil.convert(tmpReq, request);
|
|
35316
|
+
if (!Util.isUnset(tmpReq.engineParams)) {
|
|
35317
|
+
request.engineParamsShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.engineParams, "EngineParams", "json");
|
|
35318
|
+
}
|
|
35319
|
+
|
|
35272
35320
|
if (!Util.isUnset(tmpReq.rules)) {
|
|
35273
35321
|
request.rulesShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.rules, "Rules", "json");
|
|
35274
35322
|
}
|
|
@@ -35290,6 +35338,10 @@ export default class Client extends OpenApi {
|
|
|
35290
35338
|
query["EnableSpot"] = request.enableSpot;
|
|
35291
35339
|
}
|
|
35292
35340
|
|
|
35341
|
+
if (!Util.isUnset(request.engineParamsShrink)) {
|
|
35342
|
+
query["EngineParams"] = request.engineParamsShrink;
|
|
35343
|
+
}
|
|
35344
|
+
|
|
35293
35345
|
if (!Util.isUnset(request.groupName)) {
|
|
35294
35346
|
query["GroupName"] = request.groupName;
|
|
35295
35347
|
}
|