@alicloud/adb20211201 2.0.4 → 2.0.6
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 +281 -115
- package/dist/client.js +990 -173
- package/dist/client.js.map +1 -1
- package/package.json +3 -2
- package/src/client.ts +1204 -243
package/src/client.ts
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
/**
|
|
3
3
|
*/
|
|
4
4
|
import Util, * as $Util from '@alicloud/tea-util';
|
|
5
|
+
import GatewayClient from '@alicloud/gateway-pop';
|
|
5
6
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
6
7
|
import OpenApiUtil from '@alicloud/openapi-util';
|
|
7
8
|
import EndpointUtil from '@alicloud/endpoint-util';
|
|
@@ -694,6 +695,174 @@ export class SparkAttemptInfo extends $tea.Model {
|
|
|
694
695
|
}
|
|
695
696
|
}
|
|
696
697
|
|
|
698
|
+
export class SparkBatchSQL extends $tea.Model {
|
|
699
|
+
/**
|
|
700
|
+
* @example
|
|
701
|
+
* amv-xxx
|
|
702
|
+
*/
|
|
703
|
+
DBClusterId?: string;
|
|
704
|
+
/**
|
|
705
|
+
* @example
|
|
706
|
+
* schema is not found
|
|
707
|
+
*/
|
|
708
|
+
errMessage?: string;
|
|
709
|
+
/**
|
|
710
|
+
* @example
|
|
711
|
+
* query
|
|
712
|
+
*/
|
|
713
|
+
query?: string;
|
|
714
|
+
/**
|
|
715
|
+
* @example
|
|
716
|
+
* 1723521767000
|
|
717
|
+
*/
|
|
718
|
+
queryEndTime?: number;
|
|
719
|
+
/**
|
|
720
|
+
* @example
|
|
721
|
+
* amv-202401-xx
|
|
722
|
+
*/
|
|
723
|
+
queryId?: string;
|
|
724
|
+
/**
|
|
725
|
+
* @example
|
|
726
|
+
* 1723521767000
|
|
727
|
+
*/
|
|
728
|
+
queryStartTime?: number;
|
|
729
|
+
/**
|
|
730
|
+
* @example
|
|
731
|
+
* RUNNING
|
|
732
|
+
*/
|
|
733
|
+
queryState?: string;
|
|
734
|
+
/**
|
|
735
|
+
* @example
|
|
736
|
+
* 1723521767000
|
|
737
|
+
*/
|
|
738
|
+
querySubmissionTime?: number;
|
|
739
|
+
/**
|
|
740
|
+
* @example
|
|
741
|
+
* spark_rg
|
|
742
|
+
*/
|
|
743
|
+
resourceGroupName?: string;
|
|
744
|
+
/**
|
|
745
|
+
* @example
|
|
746
|
+
* default
|
|
747
|
+
*/
|
|
748
|
+
schema?: string;
|
|
749
|
+
statements?: SparkBatchSQLStatement[];
|
|
750
|
+
/**
|
|
751
|
+
* @example
|
|
752
|
+
* 12222222
|
|
753
|
+
*/
|
|
754
|
+
uid?: number;
|
|
755
|
+
static names(): { [key: string]: string } {
|
|
756
|
+
return {
|
|
757
|
+
DBClusterId: 'DBClusterId',
|
|
758
|
+
errMessage: 'ErrMessage',
|
|
759
|
+
query: 'Query',
|
|
760
|
+
queryEndTime: 'QueryEndTime',
|
|
761
|
+
queryId: 'QueryId',
|
|
762
|
+
queryStartTime: 'QueryStartTime',
|
|
763
|
+
queryState: 'QueryState',
|
|
764
|
+
querySubmissionTime: 'QuerySubmissionTime',
|
|
765
|
+
resourceGroupName: 'ResourceGroupName',
|
|
766
|
+
schema: 'Schema',
|
|
767
|
+
statements: 'Statements',
|
|
768
|
+
uid: 'Uid',
|
|
769
|
+
};
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
static types(): { [key: string]: any } {
|
|
773
|
+
return {
|
|
774
|
+
DBClusterId: 'string',
|
|
775
|
+
errMessage: 'string',
|
|
776
|
+
query: 'string',
|
|
777
|
+
queryEndTime: 'number',
|
|
778
|
+
queryId: 'string',
|
|
779
|
+
queryStartTime: 'number',
|
|
780
|
+
queryState: 'string',
|
|
781
|
+
querySubmissionTime: 'number',
|
|
782
|
+
resourceGroupName: 'string',
|
|
783
|
+
schema: 'string',
|
|
784
|
+
statements: { 'type': 'array', 'itemType': SparkBatchSQLStatement },
|
|
785
|
+
uid: 'number',
|
|
786
|
+
};
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
constructor(map?: { [key: string]: any }) {
|
|
790
|
+
super(map);
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
export class SparkBatchSQLStatement extends $tea.Model {
|
|
795
|
+
/**
|
|
796
|
+
* @example
|
|
797
|
+
* SELECT 100
|
|
798
|
+
*/
|
|
799
|
+
code?: string;
|
|
800
|
+
/**
|
|
801
|
+
* @example
|
|
802
|
+
* 1723521767000
|
|
803
|
+
*/
|
|
804
|
+
endTime?: number;
|
|
805
|
+
/**
|
|
806
|
+
* @example
|
|
807
|
+
* table is not found
|
|
808
|
+
*/
|
|
809
|
+
error?: string;
|
|
810
|
+
/**
|
|
811
|
+
* @example
|
|
812
|
+
* JSON格式执行结果集
|
|
813
|
+
*/
|
|
814
|
+
result?: string;
|
|
815
|
+
/**
|
|
816
|
+
* @example
|
|
817
|
+
* oss://yourbucket/result.json
|
|
818
|
+
*/
|
|
819
|
+
resultUri?: string;
|
|
820
|
+
/**
|
|
821
|
+
* @example
|
|
822
|
+
* 1723521767000
|
|
823
|
+
*/
|
|
824
|
+
startTime?: number;
|
|
825
|
+
/**
|
|
826
|
+
* @example
|
|
827
|
+
* RUNNING
|
|
828
|
+
*/
|
|
829
|
+
state?: string;
|
|
830
|
+
/**
|
|
831
|
+
* @example
|
|
832
|
+
* amv-20240711-stmt
|
|
833
|
+
*/
|
|
834
|
+
statementId?: string;
|
|
835
|
+
static names(): { [key: string]: string } {
|
|
836
|
+
return {
|
|
837
|
+
code: 'Code',
|
|
838
|
+
endTime: 'EndTime',
|
|
839
|
+
error: 'Error',
|
|
840
|
+
result: 'Result',
|
|
841
|
+
resultUri: 'ResultUri',
|
|
842
|
+
startTime: 'StartTime',
|
|
843
|
+
state: 'State',
|
|
844
|
+
statementId: 'StatementId',
|
|
845
|
+
};
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
static types(): { [key: string]: any } {
|
|
849
|
+
return {
|
|
850
|
+
code: 'string',
|
|
851
|
+
endTime: 'number',
|
|
852
|
+
error: 'string',
|
|
853
|
+
result: 'string',
|
|
854
|
+
resultUri: 'string',
|
|
855
|
+
startTime: 'number',
|
|
856
|
+
state: 'string',
|
|
857
|
+
statementId: 'string',
|
|
858
|
+
};
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
constructor(map?: { [key: string]: any }) {
|
|
862
|
+
super(map);
|
|
863
|
+
}
|
|
864
|
+
}
|
|
865
|
+
|
|
697
866
|
export class SparkOperatorInfo extends $tea.Model {
|
|
698
867
|
metricValue?: number;
|
|
699
868
|
operatorName?: Buffer;
|
|
@@ -1945,9 +2114,10 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
1945
2114
|
* 1880808684
|
|
1946
2115
|
*/
|
|
1947
2116
|
backupSetId?: string;
|
|
2117
|
+
cloneSourceRegionId?: string;
|
|
1948
2118
|
/**
|
|
1949
2119
|
* @remarks
|
|
1950
|
-
* The amount of reserved computing resources.
|
|
2120
|
+
* The amount of reserved computing resources. Valid values: 0ACU to 4096ACU. The value must be in increments of 16ACU. Each ACU is approximately equal to 1 core and 4 GB memory.
|
|
1951
2121
|
*
|
|
1952
2122
|
* > This parameter must be specified with a unit.
|
|
1953
2123
|
*
|
|
@@ -2079,7 +2249,7 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
2079
2249
|
sourceDbClusterId?: string;
|
|
2080
2250
|
/**
|
|
2081
2251
|
* @remarks
|
|
2082
|
-
* The amount of reserved storage resources.
|
|
2252
|
+
* The amount of reserved storage resources. Valid values: 0ACU to 2064ACU. The value must be in increments of 24ACU. Each ACU is approximately equal to 1 core and 4 GB memory.
|
|
2083
2253
|
*
|
|
2084
2254
|
* > This parameter must be specified with a unit.
|
|
2085
2255
|
*
|
|
@@ -2140,6 +2310,7 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
2140
2310
|
static names(): { [key: string]: string } {
|
|
2141
2311
|
return {
|
|
2142
2312
|
backupSetId: 'BackupSetId',
|
|
2313
|
+
cloneSourceRegionId: 'CloneSourceRegionId',
|
|
2143
2314
|
computeResource: 'ComputeResource',
|
|
2144
2315
|
DBClusterDescription: 'DBClusterDescription',
|
|
2145
2316
|
DBClusterNetworkType: 'DBClusterNetworkType',
|
|
@@ -2169,6 +2340,7 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
2169
2340
|
static types(): { [key: string]: any } {
|
|
2170
2341
|
return {
|
|
2171
2342
|
backupSetId: 'string',
|
|
2343
|
+
cloneSourceRegionId: 'string',
|
|
2172
2344
|
computeResource: 'string',
|
|
2173
2345
|
DBClusterDescription: 'string',
|
|
2174
2346
|
DBClusterNetworkType: 'string',
|
|
@@ -2342,7 +2514,7 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2342
2514
|
* * **Interactive**
|
|
2343
2515
|
* * **Job**
|
|
2344
2516
|
*
|
|
2345
|
-
* >
|
|
2517
|
+
* > For more information about resource groups, see [Resource group overview](https://help.aliyun.com/document_detail/428610.html).
|
|
2346
2518
|
*
|
|
2347
2519
|
* This parameter is required.
|
|
2348
2520
|
*
|
|
@@ -2360,15 +2532,16 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2360
2532
|
maxClusterCount?: number;
|
|
2361
2533
|
/**
|
|
2362
2534
|
* @remarks
|
|
2363
|
-
* The maximum reserved computing resources.
|
|
2535
|
+
* The maximum reserved computing resources.
|
|
2364
2536
|
*
|
|
2365
|
-
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
2366
|
-
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
2537
|
+
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 16ACU.
|
|
2538
|
+
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 8ACU.
|
|
2367
2539
|
*
|
|
2368
2540
|
* @example
|
|
2369
|
-
*
|
|
2541
|
+
* 48ACU
|
|
2370
2542
|
*/
|
|
2371
2543
|
maxComputeResource?: string;
|
|
2544
|
+
maxGpuQuantity?: number;
|
|
2372
2545
|
/**
|
|
2373
2546
|
* @remarks
|
|
2374
2547
|
* A reserved parameter.
|
|
@@ -2379,15 +2552,16 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2379
2552
|
minClusterCount?: number;
|
|
2380
2553
|
/**
|
|
2381
2554
|
* @remarks
|
|
2382
|
-
* The minimum reserved computing resources.
|
|
2555
|
+
* The minimum reserved computing resources.
|
|
2383
2556
|
*
|
|
2384
|
-
* * When GroupType is set to Interactive, set this parameter to
|
|
2385
|
-
* * When GroupType is set to Job, set this parameter to
|
|
2557
|
+
* * When GroupType is set to Interactive, set this parameter to 16ACU.
|
|
2558
|
+
* * When GroupType is set to Job, set this parameter to 0ACU.
|
|
2386
2559
|
*
|
|
2387
2560
|
* @example
|
|
2388
|
-
*
|
|
2561
|
+
* 0ACU
|
|
2389
2562
|
*/
|
|
2390
2563
|
minComputeResource?: string;
|
|
2564
|
+
minGpuQuantity?: number;
|
|
2391
2565
|
/**
|
|
2392
2566
|
* @remarks
|
|
2393
2567
|
* The region ID of the cluster.
|
|
@@ -2403,6 +2577,8 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2403
2577
|
* The job resubmission rules.
|
|
2404
2578
|
*/
|
|
2405
2579
|
rules?: CreateDBResourceGroupRequestRules[];
|
|
2580
|
+
specName?: string;
|
|
2581
|
+
targetResourceGroupName?: string;
|
|
2406
2582
|
static names(): { [key: string]: string } {
|
|
2407
2583
|
return {
|
|
2408
2584
|
clusterMode: 'ClusterMode',
|
|
@@ -2415,10 +2591,14 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2415
2591
|
groupType: 'GroupType',
|
|
2416
2592
|
maxClusterCount: 'MaxClusterCount',
|
|
2417
2593
|
maxComputeResource: 'MaxComputeResource',
|
|
2594
|
+
maxGpuQuantity: 'MaxGpuQuantity',
|
|
2418
2595
|
minClusterCount: 'MinClusterCount',
|
|
2419
2596
|
minComputeResource: 'MinComputeResource',
|
|
2597
|
+
minGpuQuantity: 'MinGpuQuantity',
|
|
2420
2598
|
regionId: 'RegionId',
|
|
2421
2599
|
rules: 'Rules',
|
|
2600
|
+
specName: 'SpecName',
|
|
2601
|
+
targetResourceGroupName: 'TargetResourceGroupName',
|
|
2422
2602
|
};
|
|
2423
2603
|
}
|
|
2424
2604
|
|
|
@@ -2434,10 +2614,14 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2434
2614
|
groupType: 'string',
|
|
2435
2615
|
maxClusterCount: 'number',
|
|
2436
2616
|
maxComputeResource: 'string',
|
|
2617
|
+
maxGpuQuantity: 'number',
|
|
2437
2618
|
minClusterCount: 'number',
|
|
2438
2619
|
minComputeResource: 'string',
|
|
2620
|
+
minGpuQuantity: 'number',
|
|
2439
2621
|
regionId: 'string',
|
|
2440
2622
|
rules: { 'type': 'array', 'itemType': CreateDBResourceGroupRequestRules },
|
|
2623
|
+
specName: 'string',
|
|
2624
|
+
targetResourceGroupName: 'string',
|
|
2441
2625
|
};
|
|
2442
2626
|
}
|
|
2443
2627
|
|
|
@@ -2507,7 +2691,7 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2507
2691
|
* * **Interactive**
|
|
2508
2692
|
* * **Job**
|
|
2509
2693
|
*
|
|
2510
|
-
* >
|
|
2694
|
+
* > For more information about resource groups, see [Resource group overview](https://help.aliyun.com/document_detail/428610.html).
|
|
2511
2695
|
*
|
|
2512
2696
|
* This parameter is required.
|
|
2513
2697
|
*
|
|
@@ -2525,15 +2709,16 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2525
2709
|
maxClusterCount?: number;
|
|
2526
2710
|
/**
|
|
2527
2711
|
* @remarks
|
|
2528
|
-
* The maximum reserved computing resources.
|
|
2712
|
+
* The maximum reserved computing resources.
|
|
2529
2713
|
*
|
|
2530
|
-
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
2531
|
-
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
2714
|
+
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 16ACU.
|
|
2715
|
+
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 8ACU.
|
|
2532
2716
|
*
|
|
2533
2717
|
* @example
|
|
2534
|
-
*
|
|
2718
|
+
* 48ACU
|
|
2535
2719
|
*/
|
|
2536
2720
|
maxComputeResource?: string;
|
|
2721
|
+
maxGpuQuantity?: number;
|
|
2537
2722
|
/**
|
|
2538
2723
|
* @remarks
|
|
2539
2724
|
* A reserved parameter.
|
|
@@ -2544,15 +2729,16 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2544
2729
|
minClusterCount?: number;
|
|
2545
2730
|
/**
|
|
2546
2731
|
* @remarks
|
|
2547
|
-
* The minimum reserved computing resources.
|
|
2732
|
+
* The minimum reserved computing resources.
|
|
2548
2733
|
*
|
|
2549
|
-
* * When GroupType is set to Interactive, set this parameter to
|
|
2550
|
-
* * When GroupType is set to Job, set this parameter to
|
|
2734
|
+
* * When GroupType is set to Interactive, set this parameter to 16ACU.
|
|
2735
|
+
* * When GroupType is set to Job, set this parameter to 0ACU.
|
|
2551
2736
|
*
|
|
2552
2737
|
* @example
|
|
2553
|
-
*
|
|
2738
|
+
* 0ACU
|
|
2554
2739
|
*/
|
|
2555
2740
|
minComputeResource?: string;
|
|
2741
|
+
minGpuQuantity?: number;
|
|
2556
2742
|
/**
|
|
2557
2743
|
* @remarks
|
|
2558
2744
|
* The region ID of the cluster.
|
|
@@ -2568,6 +2754,8 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2568
2754
|
* The job resubmission rules.
|
|
2569
2755
|
*/
|
|
2570
2756
|
rulesShrink?: string;
|
|
2757
|
+
specName?: string;
|
|
2758
|
+
targetResourceGroupName?: string;
|
|
2571
2759
|
static names(): { [key: string]: string } {
|
|
2572
2760
|
return {
|
|
2573
2761
|
clusterMode: 'ClusterMode',
|
|
@@ -2580,10 +2768,14 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2580
2768
|
groupType: 'GroupType',
|
|
2581
2769
|
maxClusterCount: 'MaxClusterCount',
|
|
2582
2770
|
maxComputeResource: 'MaxComputeResource',
|
|
2771
|
+
maxGpuQuantity: 'MaxGpuQuantity',
|
|
2583
2772
|
minClusterCount: 'MinClusterCount',
|
|
2584
2773
|
minComputeResource: 'MinComputeResource',
|
|
2774
|
+
minGpuQuantity: 'MinGpuQuantity',
|
|
2585
2775
|
regionId: 'RegionId',
|
|
2586
2776
|
rulesShrink: 'Rules',
|
|
2777
|
+
specName: 'SpecName',
|
|
2778
|
+
targetResourceGroupName: 'TargetResourceGroupName',
|
|
2587
2779
|
};
|
|
2588
2780
|
}
|
|
2589
2781
|
|
|
@@ -2599,10 +2791,14 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2599
2791
|
groupType: 'string',
|
|
2600
2792
|
maxClusterCount: 'number',
|
|
2601
2793
|
maxComputeResource: 'string',
|
|
2794
|
+
maxGpuQuantity: 'number',
|
|
2602
2795
|
minClusterCount: 'number',
|
|
2603
2796
|
minComputeResource: 'string',
|
|
2797
|
+
minGpuQuantity: 'number',
|
|
2604
2798
|
regionId: 'string',
|
|
2605
2799
|
rulesShrink: 'string',
|
|
2800
|
+
specName: 'string',
|
|
2801
|
+
targetResourceGroupName: 'string',
|
|
2606
2802
|
};
|
|
2607
2803
|
}
|
|
2608
2804
|
|
|
@@ -4197,7 +4393,7 @@ export class DeleteSparkTemplateResponse extends $tea.Model {
|
|
|
4197
4393
|
export class DeleteSparkTemplateFileRequest extends $tea.Model {
|
|
4198
4394
|
/**
|
|
4199
4395
|
* @remarks
|
|
4200
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
4396
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
4201
4397
|
*
|
|
4202
4398
|
* This parameter is required.
|
|
4203
4399
|
*
|
|
@@ -4827,7 +5023,7 @@ export class DescribeAccountsRequest extends $tea.Model {
|
|
|
4827
5023
|
accountName?: string;
|
|
4828
5024
|
/**
|
|
4829
5025
|
* @remarks
|
|
4830
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
5026
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
4831
5027
|
*
|
|
4832
5028
|
* This parameter is required.
|
|
4833
5029
|
*
|
|
@@ -4931,9 +5127,9 @@ export class DescribeAccountsResponse extends $tea.Model {
|
|
|
4931
5127
|
export class DescribeAdbMySqlColumnsRequest extends $tea.Model {
|
|
4932
5128
|
/**
|
|
4933
5129
|
* @remarks
|
|
4934
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
5130
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
4935
5131
|
*
|
|
4936
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/454250.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
5132
|
+
* > 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.
|
|
4937
5133
|
*
|
|
4938
5134
|
* This parameter is required.
|
|
4939
5135
|
*
|
|
@@ -4943,7 +5139,7 @@ export class DescribeAdbMySqlColumnsRequest extends $tea.Model {
|
|
|
4943
5139
|
DBClusterId?: string;
|
|
4944
5140
|
/**
|
|
4945
5141
|
* @remarks
|
|
4946
|
-
* The region ID
|
|
5142
|
+
* The region ID.
|
|
4947
5143
|
*
|
|
4948
5144
|
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
4949
5145
|
*
|
|
@@ -5109,7 +5305,7 @@ export class DescribeAdbMySqlColumnsResponse extends $tea.Model {
|
|
|
5109
5305
|
export class DescribeAdbMySqlSchemasRequest extends $tea.Model {
|
|
5110
5306
|
/**
|
|
5111
5307
|
* @remarks
|
|
5112
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
5308
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
5113
5309
|
*
|
|
5114
5310
|
* This parameter is required.
|
|
5115
5311
|
*
|
|
@@ -5119,7 +5315,7 @@ export class DescribeAdbMySqlSchemasRequest extends $tea.Model {
|
|
|
5119
5315
|
DBClusterId?: string;
|
|
5120
5316
|
/**
|
|
5121
5317
|
* @remarks
|
|
5122
|
-
* The region ID
|
|
5318
|
+
* The region ID.
|
|
5123
5319
|
*
|
|
5124
5320
|
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
5125
5321
|
*
|
|
@@ -5235,7 +5431,7 @@ export class DescribeAdbMySqlSchemasResponse extends $tea.Model {
|
|
|
5235
5431
|
export class DescribeAdbMySqlTablesRequest extends $tea.Model {
|
|
5236
5432
|
/**
|
|
5237
5433
|
* @remarks
|
|
5238
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
5434
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
5239
5435
|
*
|
|
5240
5436
|
* This parameter is required.
|
|
5241
5437
|
*
|
|
@@ -5245,7 +5441,7 @@ export class DescribeAdbMySqlTablesRequest extends $tea.Model {
|
|
|
5245
5441
|
DBClusterId?: string;
|
|
5246
5442
|
/**
|
|
5247
5443
|
* @remarks
|
|
5248
|
-
* The region ID
|
|
5444
|
+
* The region ID.
|
|
5249
5445
|
*
|
|
5250
5446
|
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
5251
5447
|
*
|
|
@@ -6349,7 +6545,7 @@ export class DescribeBackupPolicyResponseBody extends $tea.Model {
|
|
|
6349
6545
|
logBackupRetentionPeriod?: number;
|
|
6350
6546
|
/**
|
|
6351
6547
|
* @remarks
|
|
6352
|
-
* The cycle based on which backups are performed. If more than one day of the week
|
|
6548
|
+
* The cycle based on which backups are performed. If more than one day of the week is specified, the days of the week are separated by commas (,). Valid value:
|
|
6353
6549
|
*
|
|
6354
6550
|
* * Monday
|
|
6355
6551
|
* * Tuesday
|
|
@@ -6632,10 +6828,12 @@ export class DescribeClusterAccessWhiteListRequest extends $tea.Model {
|
|
|
6632
6828
|
* amv-bp11q28kvl688****
|
|
6633
6829
|
*/
|
|
6634
6830
|
DBClusterId?: string;
|
|
6831
|
+
regionId?: string;
|
|
6635
6832
|
resourceOwnerAccount?: string;
|
|
6636
6833
|
static names(): { [key: string]: string } {
|
|
6637
6834
|
return {
|
|
6638
6835
|
DBClusterId: 'DBClusterId',
|
|
6836
|
+
regionId: 'RegionId',
|
|
6639
6837
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
6640
6838
|
};
|
|
6641
6839
|
}
|
|
@@ -6643,6 +6841,7 @@ export class DescribeClusterAccessWhiteListRequest extends $tea.Model {
|
|
|
6643
6841
|
static types(): { [key: string]: any } {
|
|
6644
6842
|
return {
|
|
6645
6843
|
DBClusterId: 'string',
|
|
6844
|
+
regionId: 'string',
|
|
6646
6845
|
resourceOwnerAccount: 'string',
|
|
6647
6846
|
};
|
|
6648
6847
|
}
|
|
@@ -6862,7 +7061,7 @@ export class DescribeClusterResourceDetailResponseBody extends $tea.Model {
|
|
|
6862
7061
|
code?: number;
|
|
6863
7062
|
/**
|
|
6864
7063
|
* @remarks
|
|
6865
|
-
* The
|
|
7064
|
+
* The queried resource usage.
|
|
6866
7065
|
*/
|
|
6867
7066
|
data?: DescribeClusterResourceDetailResponseBodyData;
|
|
6868
7067
|
/**
|
|
@@ -8147,7 +8346,7 @@ export class DescribeDBClustersResponse extends $tea.Model {
|
|
|
8147
8346
|
export class DescribeDBResourceGroupRequest extends $tea.Model {
|
|
8148
8347
|
/**
|
|
8149
8348
|
* @remarks
|
|
8150
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
8349
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
8151
8350
|
*
|
|
8152
8351
|
* This parameter is required.
|
|
8153
8352
|
*
|
|
@@ -8172,7 +8371,7 @@ export class DescribeDBResourceGroupRequest extends $tea.Model {
|
|
|
8172
8371
|
* * **Interactive**
|
|
8173
8372
|
* * **Job**
|
|
8174
8373
|
*
|
|
8175
|
-
* >
|
|
8374
|
+
* > For more information about resource groups, see [Resource group overview](https://help.aliyun.com/document_detail/428610.html).
|
|
8176
8375
|
*
|
|
8177
8376
|
* @example
|
|
8178
8377
|
* Job
|
|
@@ -8217,7 +8416,7 @@ export class DescribeDBResourceGroupRequest extends $tea.Model {
|
|
|
8217
8416
|
export class DescribeDBResourceGroupResponseBody extends $tea.Model {
|
|
8218
8417
|
/**
|
|
8219
8418
|
* @remarks
|
|
8220
|
-
* The queried resource
|
|
8419
|
+
* The queried resource groups.
|
|
8221
8420
|
*/
|
|
8222
8421
|
groupsInfo?: DescribeDBResourceGroupResponseBodyGroupsInfo[];
|
|
8223
8422
|
/**
|
|
@@ -9555,7 +9754,7 @@ export class DescribeElasticPlansRequest extends $tea.Model {
|
|
|
9555
9754
|
* @remarks
|
|
9556
9755
|
* The cluster ID.
|
|
9557
9756
|
*
|
|
9558
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
9757
|
+
* > 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.
|
|
9559
9758
|
*
|
|
9560
9759
|
* This parameter is required.
|
|
9561
9760
|
*
|
|
@@ -9577,8 +9776,8 @@ export class DescribeElasticPlansRequest extends $tea.Model {
|
|
|
9577
9776
|
* @remarks
|
|
9578
9777
|
* Specifies whether to query the scaling plans that are immediately enabled after the plans are created. Valid values:
|
|
9579
9778
|
*
|
|
9580
|
-
* * true
|
|
9581
|
-
* * false
|
|
9779
|
+
* * **true**
|
|
9780
|
+
* * **false**
|
|
9582
9781
|
*
|
|
9583
9782
|
* @example
|
|
9584
9783
|
* true
|
|
@@ -9619,7 +9818,8 @@ export class DescribeElasticPlansRequest extends $tea.Model {
|
|
|
9619
9818
|
* @remarks
|
|
9620
9819
|
* The type of the scaling plan. Valid values:
|
|
9621
9820
|
*
|
|
9622
|
-
* EXECUTOR
|
|
9821
|
+
* * **EXECUTOR**: the interactive resource group type, which specifies the computing resource type.
|
|
9822
|
+
* * **WORKER**: the EIU type.
|
|
9623
9823
|
*
|
|
9624
9824
|
* @example
|
|
9625
9825
|
* EXECUTOR
|
|
@@ -10946,7 +11146,7 @@ export class DescribeSQLPatternsResponseBody extends $tea.Model {
|
|
|
10946
11146
|
pageSize?: number;
|
|
10947
11147
|
/**
|
|
10948
11148
|
* @remarks
|
|
10949
|
-
* The queried SQL
|
|
11149
|
+
* The queried SQL patterns.
|
|
10950
11150
|
*/
|
|
10951
11151
|
patternDetails?: DescribeSQLPatternsResponseBodyPatternDetails[];
|
|
10952
11152
|
/**
|
|
@@ -11020,7 +11220,7 @@ export class DescribeSQLPatternsResponse extends $tea.Model {
|
|
|
11020
11220
|
export class DescribeSchemasRequest extends $tea.Model {
|
|
11021
11221
|
/**
|
|
11022
11222
|
* @remarks
|
|
11023
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
11223
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
11024
11224
|
*
|
|
11025
11225
|
* This parameter is required.
|
|
11026
11226
|
*
|
|
@@ -11118,9 +11318,9 @@ export class DescribeSchemasResponse extends $tea.Model {
|
|
|
11118
11318
|
export class DescribeSparkCodeLogRequest extends $tea.Model {
|
|
11119
11319
|
/**
|
|
11120
11320
|
* @remarks
|
|
11121
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
11321
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
11122
11322
|
*
|
|
11123
|
-
* >
|
|
11323
|
+
* > 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.
|
|
11124
11324
|
*
|
|
11125
11325
|
* This parameter is required.
|
|
11126
11326
|
*
|
|
@@ -12095,7 +12295,7 @@ export class DescribeTableAccessCountResponse extends $tea.Model {
|
|
|
12095
12295
|
export class DescribeTablesRequest extends $tea.Model {
|
|
12096
12296
|
/**
|
|
12097
12297
|
* @remarks
|
|
12098
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
12298
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
12099
12299
|
*
|
|
12100
12300
|
* This parameter is required.
|
|
12101
12301
|
*
|
|
@@ -13294,9 +13494,9 @@ export class GetSparkAppInfoRequest extends $tea.Model {
|
|
|
13294
13494
|
appId?: string;
|
|
13295
13495
|
/**
|
|
13296
13496
|
* @remarks
|
|
13297
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
13497
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
13298
13498
|
*
|
|
13299
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
13499
|
+
* > 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.
|
|
13300
13500
|
*
|
|
13301
13501
|
* @example
|
|
13302
13502
|
* am-bp11q28kvl688****
|
|
@@ -14422,7 +14622,7 @@ export class GetSparkTemplateFolderTreeResponse extends $tea.Model {
|
|
|
14422
14622
|
export class GetSparkTemplateFullTreeRequest extends $tea.Model {
|
|
14423
14623
|
/**
|
|
14424
14624
|
* @remarks
|
|
14425
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
14625
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
14426
14626
|
*
|
|
14427
14627
|
* This parameter is required.
|
|
14428
14628
|
*
|
|
@@ -16258,7 +16458,7 @@ export class ListSparkLogAnalyzeTasksResponse extends $tea.Model {
|
|
|
16258
16458
|
export class ListSparkTemplateFileIdsRequest extends $tea.Model {
|
|
16259
16459
|
/**
|
|
16260
16460
|
* @remarks
|
|
16261
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
16461
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
16262
16462
|
*
|
|
16263
16463
|
* @example
|
|
16264
16464
|
* amv-bp11q28kvl688****
|
|
@@ -16742,9 +16942,9 @@ export class ModifyAuditLogConfigRequest extends $tea.Model {
|
|
|
16742
16942
|
auditLogStatus?: string;
|
|
16743
16943
|
/**
|
|
16744
16944
|
* @remarks
|
|
16745
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
16945
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
16746
16946
|
*
|
|
16747
|
-
* >
|
|
16947
|
+
* > 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.
|
|
16748
16948
|
*
|
|
16749
16949
|
* This parameter is required.
|
|
16750
16950
|
*
|
|
@@ -16757,9 +16957,9 @@ export class ModifyAuditLogConfigRequest extends $tea.Model {
|
|
|
16757
16957
|
ownerId?: number;
|
|
16758
16958
|
/**
|
|
16759
16959
|
* @remarks
|
|
16760
|
-
* The region ID.
|
|
16960
|
+
* The region ID of the cluster.
|
|
16761
16961
|
*
|
|
16762
|
-
* >
|
|
16962
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/454314.html) operation to query the most recent region list.
|
|
16763
16963
|
*
|
|
16764
16964
|
* This parameter is required.
|
|
16765
16965
|
*
|
|
@@ -17302,7 +17502,7 @@ export class ModifyClusterConnectionStringResponse extends $tea.Model {
|
|
|
17302
17502
|
export class ModifyDBClusterRequest extends $tea.Model {
|
|
17303
17503
|
/**
|
|
17304
17504
|
* @remarks
|
|
17305
|
-
* The reserved computing resources.
|
|
17505
|
+
* The reserved computing resources. Valid values: 0ACU to 4096ACU. The value must be in increments of 16ACU. Each ACU is approximately equal to 1 core and 4 GB memory.
|
|
17306
17506
|
*
|
|
17307
17507
|
* > This parameter must be specified with a unit.
|
|
17308
17508
|
*
|
|
@@ -17335,6 +17535,11 @@ export class ModifyDBClusterRequest extends $tea.Model {
|
|
|
17335
17535
|
enableDefaultResourcePool?: boolean;
|
|
17336
17536
|
ownerAccount?: string;
|
|
17337
17537
|
ownerId?: number;
|
|
17538
|
+
/**
|
|
17539
|
+
* @example
|
|
17540
|
+
* LegacyForm
|
|
17541
|
+
*/
|
|
17542
|
+
productForm?: string;
|
|
17338
17543
|
/**
|
|
17339
17544
|
* @remarks
|
|
17340
17545
|
* The region ID of the cluster.
|
|
@@ -17350,7 +17555,7 @@ export class ModifyDBClusterRequest extends $tea.Model {
|
|
|
17350
17555
|
resourceOwnerAccount?: string;
|
|
17351
17556
|
/**
|
|
17352
17557
|
* @remarks
|
|
17353
|
-
* The reserved storage resources.
|
|
17558
|
+
* The reserved storage resources. Valid values: 0ACU to 2064ACU. The value must be in increments of 24ACU. Each ACU is approximately equal to 1 core and 4 GB memory.
|
|
17354
17559
|
*
|
|
17355
17560
|
* > This parameter must be specified with a unit.
|
|
17356
17561
|
*
|
|
@@ -17365,6 +17570,7 @@ export class ModifyDBClusterRequest extends $tea.Model {
|
|
|
17365
17570
|
enableDefaultResourcePool: 'EnableDefaultResourcePool',
|
|
17366
17571
|
ownerAccount: 'OwnerAccount',
|
|
17367
17572
|
ownerId: 'OwnerId',
|
|
17573
|
+
productForm: 'ProductForm',
|
|
17368
17574
|
regionId: 'RegionId',
|
|
17369
17575
|
reservedNodeCount: 'ReservedNodeCount',
|
|
17370
17576
|
reservedNodeSize: 'ReservedNodeSize',
|
|
@@ -17380,6 +17586,7 @@ export class ModifyDBClusterRequest extends $tea.Model {
|
|
|
17380
17586
|
enableDefaultResourcePool: 'boolean',
|
|
17381
17587
|
ownerAccount: 'string',
|
|
17382
17588
|
ownerId: 'number',
|
|
17589
|
+
productForm: 'string',
|
|
17383
17590
|
regionId: 'string',
|
|
17384
17591
|
reservedNodeCount: 'number',
|
|
17385
17592
|
reservedNodeSize: 'string',
|
|
@@ -17727,15 +17934,16 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17727
17934
|
maxClusterCount?: number;
|
|
17728
17935
|
/**
|
|
17729
17936
|
* @remarks
|
|
17730
|
-
* The maximum amount of reserved computing resources.
|
|
17937
|
+
* The maximum amount of reserved computing resources.
|
|
17731
17938
|
*
|
|
17732
|
-
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
17733
|
-
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
17939
|
+
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 16ACU.
|
|
17940
|
+
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 8ACU.
|
|
17734
17941
|
*
|
|
17735
17942
|
* @example
|
|
17736
17943
|
* 48ACU
|
|
17737
17944
|
*/
|
|
17738
17945
|
maxComputeResource?: string;
|
|
17946
|
+
maxGpuQuantity?: number;
|
|
17739
17947
|
/**
|
|
17740
17948
|
* @remarks
|
|
17741
17949
|
* A reserved parameter.
|
|
@@ -17746,7 +17954,7 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17746
17954
|
minClusterCount?: number;
|
|
17747
17955
|
/**
|
|
17748
17956
|
* @remarks
|
|
17749
|
-
* The minimum amount of reserved computing resources.
|
|
17957
|
+
* The minimum amount of reserved computing resources.
|
|
17750
17958
|
*
|
|
17751
17959
|
* * If the GroupType parameter is set to Interactive, set the value to 16ACU.
|
|
17752
17960
|
* * If GroupType is set to Job, set the value to 0ACU.
|
|
@@ -17755,6 +17963,7 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17755
17963
|
* 0ACU
|
|
17756
17964
|
*/
|
|
17757
17965
|
minComputeResource?: string;
|
|
17966
|
+
minGpuQuantity?: number;
|
|
17758
17967
|
/**
|
|
17759
17968
|
* @remarks
|
|
17760
17969
|
* The region ID of the cluster.
|
|
@@ -17770,6 +17979,8 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17770
17979
|
* The job resubmission rules.
|
|
17771
17980
|
*/
|
|
17772
17981
|
rules?: ModifyDBResourceGroupRequestRules[];
|
|
17982
|
+
specName?: string;
|
|
17983
|
+
targetResourceGroupName?: string;
|
|
17773
17984
|
static names(): { [key: string]: string } {
|
|
17774
17985
|
return {
|
|
17775
17986
|
clusterMode: 'ClusterMode',
|
|
@@ -17781,10 +17992,14 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17781
17992
|
groupType: 'GroupType',
|
|
17782
17993
|
maxClusterCount: 'MaxClusterCount',
|
|
17783
17994
|
maxComputeResource: 'MaxComputeResource',
|
|
17995
|
+
maxGpuQuantity: 'MaxGpuQuantity',
|
|
17784
17996
|
minClusterCount: 'MinClusterCount',
|
|
17785
17997
|
minComputeResource: 'MinComputeResource',
|
|
17998
|
+
minGpuQuantity: 'MinGpuQuantity',
|
|
17786
17999
|
regionId: 'RegionId',
|
|
17787
18000
|
rules: 'Rules',
|
|
18001
|
+
specName: 'SpecName',
|
|
18002
|
+
targetResourceGroupName: 'TargetResourceGroupName',
|
|
17788
18003
|
};
|
|
17789
18004
|
}
|
|
17790
18005
|
|
|
@@ -17799,10 +18014,14 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17799
18014
|
groupType: 'string',
|
|
17800
18015
|
maxClusterCount: 'number',
|
|
17801
18016
|
maxComputeResource: 'string',
|
|
18017
|
+
maxGpuQuantity: 'number',
|
|
17802
18018
|
minClusterCount: 'number',
|
|
17803
18019
|
minComputeResource: 'string',
|
|
18020
|
+
minGpuQuantity: 'number',
|
|
17804
18021
|
regionId: 'string',
|
|
17805
18022
|
rules: { 'type': 'array', 'itemType': ModifyDBResourceGroupRequestRules },
|
|
18023
|
+
specName: 'string',
|
|
18024
|
+
targetResourceGroupName: 'string',
|
|
17806
18025
|
};
|
|
17807
18026
|
}
|
|
17808
18027
|
|
|
@@ -17887,15 +18106,16 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17887
18106
|
maxClusterCount?: number;
|
|
17888
18107
|
/**
|
|
17889
18108
|
* @remarks
|
|
17890
|
-
* The maximum amount of reserved computing resources.
|
|
18109
|
+
* The maximum amount of reserved computing resources.
|
|
17891
18110
|
*
|
|
17892
|
-
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
17893
|
-
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of
|
|
18111
|
+
* * If GroupType is set to Interactive, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 16ACU.
|
|
18112
|
+
* * If GroupType is set to Job, the maximum amount of reserved computing resources refers to the amount of resources that are not allocated in the cluster. Set this parameter to a value in increments of 8ACU.
|
|
17894
18113
|
*
|
|
17895
18114
|
* @example
|
|
17896
18115
|
* 48ACU
|
|
17897
18116
|
*/
|
|
17898
18117
|
maxComputeResource?: string;
|
|
18118
|
+
maxGpuQuantity?: number;
|
|
17899
18119
|
/**
|
|
17900
18120
|
* @remarks
|
|
17901
18121
|
* A reserved parameter.
|
|
@@ -17906,7 +18126,7 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17906
18126
|
minClusterCount?: number;
|
|
17907
18127
|
/**
|
|
17908
18128
|
* @remarks
|
|
17909
|
-
* The minimum amount of reserved computing resources.
|
|
18129
|
+
* The minimum amount of reserved computing resources.
|
|
17910
18130
|
*
|
|
17911
18131
|
* * If the GroupType parameter is set to Interactive, set the value to 16ACU.
|
|
17912
18132
|
* * If GroupType is set to Job, set the value to 0ACU.
|
|
@@ -17915,6 +18135,7 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17915
18135
|
* 0ACU
|
|
17916
18136
|
*/
|
|
17917
18137
|
minComputeResource?: string;
|
|
18138
|
+
minGpuQuantity?: number;
|
|
17918
18139
|
/**
|
|
17919
18140
|
* @remarks
|
|
17920
18141
|
* The region ID of the cluster.
|
|
@@ -17930,6 +18151,8 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17930
18151
|
* The job resubmission rules.
|
|
17931
18152
|
*/
|
|
17932
18153
|
rulesShrink?: string;
|
|
18154
|
+
specName?: string;
|
|
18155
|
+
targetResourceGroupName?: string;
|
|
17933
18156
|
static names(): { [key: string]: string } {
|
|
17934
18157
|
return {
|
|
17935
18158
|
clusterMode: 'ClusterMode',
|
|
@@ -17941,10 +18164,14 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17941
18164
|
groupType: 'GroupType',
|
|
17942
18165
|
maxClusterCount: 'MaxClusterCount',
|
|
17943
18166
|
maxComputeResource: 'MaxComputeResource',
|
|
18167
|
+
maxGpuQuantity: 'MaxGpuQuantity',
|
|
17944
18168
|
minClusterCount: 'MinClusterCount',
|
|
17945
18169
|
minComputeResource: 'MinComputeResource',
|
|
18170
|
+
minGpuQuantity: 'MinGpuQuantity',
|
|
17946
18171
|
regionId: 'RegionId',
|
|
17947
18172
|
rulesShrink: 'Rules',
|
|
18173
|
+
specName: 'SpecName',
|
|
18174
|
+
targetResourceGroupName: 'TargetResourceGroupName',
|
|
17948
18175
|
};
|
|
17949
18176
|
}
|
|
17950
18177
|
|
|
@@ -17959,10 +18186,14 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
17959
18186
|
groupType: 'string',
|
|
17960
18187
|
maxClusterCount: 'number',
|
|
17961
18188
|
maxComputeResource: 'string',
|
|
18189
|
+
maxGpuQuantity: 'number',
|
|
17962
18190
|
minClusterCount: 'number',
|
|
17963
18191
|
minComputeResource: 'string',
|
|
18192
|
+
minGpuQuantity: 'number',
|
|
17964
18193
|
regionId: 'string',
|
|
17965
18194
|
rulesShrink: 'string',
|
|
18195
|
+
specName: 'string',
|
|
18196
|
+
targetResourceGroupName: 'string',
|
|
17966
18197
|
};
|
|
17967
18198
|
}
|
|
17968
18199
|
|
|
@@ -18170,9 +18401,9 @@ export class ModifyElasticPlanResponse extends $tea.Model {
|
|
|
18170
18401
|
export class ModifyPerformanceViewRequest extends $tea.Model {
|
|
18171
18402
|
/**
|
|
18172
18403
|
* @remarks
|
|
18173
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
18404
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
18174
18405
|
*
|
|
18175
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
18406
|
+
* > 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.
|
|
18176
18407
|
*
|
|
18177
18408
|
* This parameter is required.
|
|
18178
18409
|
*
|
|
@@ -18244,9 +18475,9 @@ export class ModifyPerformanceViewRequest extends $tea.Model {
|
|
|
18244
18475
|
export class ModifyPerformanceViewShrinkRequest extends $tea.Model {
|
|
18245
18476
|
/**
|
|
18246
18477
|
* @remarks
|
|
18247
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
18478
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
18248
18479
|
*
|
|
18249
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/612397.html) operation to query the IDs of all AnalyticDB for MySQL
|
|
18480
|
+
* > 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.
|
|
18250
18481
|
*
|
|
18251
18482
|
* This parameter is required.
|
|
18252
18483
|
*
|
|
@@ -21503,7 +21734,7 @@ export class DescribeClusterResourceDetailResponseBodyDataResourceGroupList exte
|
|
|
21503
21734
|
maxClusterCount?: number;
|
|
21504
21735
|
/**
|
|
21505
21736
|
* @remarks
|
|
21506
|
-
* The maximum amount of reserved computing resources.
|
|
21737
|
+
* The maximum amount of reserved computing resources.
|
|
21507
21738
|
*
|
|
21508
21739
|
* @example
|
|
21509
21740
|
* 128ACU
|
|
@@ -21519,7 +21750,7 @@ export class DescribeClusterResourceDetailResponseBodyDataResourceGroupList exte
|
|
|
21519
21750
|
minClusterCount?: number;
|
|
21520
21751
|
/**
|
|
21521
21752
|
* @remarks
|
|
21522
|
-
* The minimum amount of reserved computing resources.
|
|
21753
|
+
* The minimum amount of reserved computing resources.
|
|
21523
21754
|
*
|
|
21524
21755
|
* @example
|
|
21525
21756
|
* 16ACU
|
|
@@ -21629,7 +21860,7 @@ export class DescribeClusterResourceDetailResponseBodyData extends $tea.Model {
|
|
|
21629
21860
|
computeResource?: string;
|
|
21630
21861
|
/**
|
|
21631
21862
|
* @remarks
|
|
21632
|
-
* The ID
|
|
21863
|
+
* The cluster ID.
|
|
21633
21864
|
*
|
|
21634
21865
|
* @example
|
|
21635
21866
|
* amv-adbxxxxx
|
|
@@ -23854,7 +24085,7 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23854
24085
|
createTime?: string;
|
|
23855
24086
|
/**
|
|
23856
24087
|
* @remarks
|
|
23857
|
-
* The minimum amount of elastic computing resources.
|
|
24088
|
+
* The minimum amount of elastic computing resources.
|
|
23858
24089
|
*
|
|
23859
24090
|
* @example
|
|
23860
24091
|
* 16ACU
|
|
@@ -23914,12 +24145,13 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23914
24145
|
maxClusterCount?: number;
|
|
23915
24146
|
/**
|
|
23916
24147
|
* @remarks
|
|
23917
|
-
* The maximum amount of reserved computing resources.
|
|
24148
|
+
* The maximum amount of reserved computing resources.
|
|
23918
24149
|
*
|
|
23919
24150
|
* @example
|
|
23920
24151
|
* 512ACU
|
|
23921
24152
|
*/
|
|
23922
24153
|
maxComputeResource?: string;
|
|
24154
|
+
maxGpuQuantity?: number;
|
|
23923
24155
|
/**
|
|
23924
24156
|
* @remarks
|
|
23925
24157
|
* This parameter is required.
|
|
@@ -23935,12 +24167,13 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23935
24167
|
minClusterCount?: number;
|
|
23936
24168
|
/**
|
|
23937
24169
|
* @remarks
|
|
23938
|
-
* The minimum amount of reserved computing resources.
|
|
24170
|
+
* The minimum amount of reserved computing resources.
|
|
23939
24171
|
*
|
|
23940
24172
|
* @example
|
|
23941
24173
|
* 0ACU
|
|
23942
24174
|
*/
|
|
23943
24175
|
minComputeResource?: string;
|
|
24176
|
+
minGpuQuantity?: number;
|
|
23944
24177
|
/**
|
|
23945
24178
|
* @remarks
|
|
23946
24179
|
* The job resubmission rules.
|
|
@@ -23954,6 +24187,7 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23954
24187
|
* N/A
|
|
23955
24188
|
*/
|
|
23956
24189
|
runningClusterCount?: number;
|
|
24190
|
+
specName?: string;
|
|
23957
24191
|
/**
|
|
23958
24192
|
* @remarks
|
|
23959
24193
|
* The status of the resource group. Valid values:
|
|
@@ -23966,6 +24200,7 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23966
24200
|
* ok
|
|
23967
24201
|
*/
|
|
23968
24202
|
status?: string;
|
|
24203
|
+
targetResourceGroupName?: string;
|
|
23969
24204
|
/**
|
|
23970
24205
|
* @remarks
|
|
23971
24206
|
* The time when the resource group was updated. The time follows the ISO 8601 standard in the *yyyy-MM-ddTHH:mm:ssZ* format. The time is displayed in UTC.
|
|
@@ -23988,12 +24223,16 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
23988
24223
|
groupUsers: 'GroupUsers',
|
|
23989
24224
|
maxClusterCount: 'MaxClusterCount',
|
|
23990
24225
|
maxComputeResource: 'MaxComputeResource',
|
|
24226
|
+
maxGpuQuantity: 'MaxGpuQuantity',
|
|
23991
24227
|
message: 'Message',
|
|
23992
24228
|
minClusterCount: 'MinClusterCount',
|
|
23993
24229
|
minComputeResource: 'MinComputeResource',
|
|
24230
|
+
minGpuQuantity: 'MinGpuQuantity',
|
|
23994
24231
|
rules: 'Rules',
|
|
23995
24232
|
runningClusterCount: 'RunningClusterCount',
|
|
24233
|
+
specName: 'SpecName',
|
|
23996
24234
|
status: 'Status',
|
|
24235
|
+
targetResourceGroupName: 'TargetResourceGroupName',
|
|
23997
24236
|
updateTime: 'UpdateTime',
|
|
23998
24237
|
};
|
|
23999
24238
|
}
|
|
@@ -24012,12 +24251,16 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
24012
24251
|
groupUsers: 'string',
|
|
24013
24252
|
maxClusterCount: 'number',
|
|
24014
24253
|
maxComputeResource: 'string',
|
|
24254
|
+
maxGpuQuantity: 'number',
|
|
24015
24255
|
message: 'string',
|
|
24016
24256
|
minClusterCount: 'number',
|
|
24017
24257
|
minComputeResource: 'string',
|
|
24258
|
+
minGpuQuantity: 'number',
|
|
24018
24259
|
rules: { 'type': 'array', 'itemType': DescribeDBResourceGroupResponseBodyGroupsInfoRules },
|
|
24019
24260
|
runningClusterCount: 'number',
|
|
24261
|
+
specName: 'string',
|
|
24020
24262
|
status: 'string',
|
|
24263
|
+
targetResourceGroupName: 'string',
|
|
24021
24264
|
updateTime: 'string',
|
|
24022
24265
|
};
|
|
24023
24266
|
}
|
|
@@ -24027,6 +24270,28 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
24027
24270
|
}
|
|
24028
24271
|
}
|
|
24029
24272
|
|
|
24273
|
+
export class DescribeDiagnosisRecordsResponseBodyQuerysQueryProperties extends $tea.Model {
|
|
24274
|
+
name?: string;
|
|
24275
|
+
value?: string;
|
|
24276
|
+
static names(): { [key: string]: string } {
|
|
24277
|
+
return {
|
|
24278
|
+
name: 'Name',
|
|
24279
|
+
value: 'Value',
|
|
24280
|
+
};
|
|
24281
|
+
}
|
|
24282
|
+
|
|
24283
|
+
static types(): { [key: string]: any } {
|
|
24284
|
+
return {
|
|
24285
|
+
name: 'string',
|
|
24286
|
+
value: 'string',
|
|
24287
|
+
};
|
|
24288
|
+
}
|
|
24289
|
+
|
|
24290
|
+
constructor(map?: { [key: string]: any }) {
|
|
24291
|
+
super(map);
|
|
24292
|
+
}
|
|
24293
|
+
}
|
|
24294
|
+
|
|
24030
24295
|
export class DescribeDiagnosisRecordsResponseBodyQuerys extends $tea.Model {
|
|
24031
24296
|
/**
|
|
24032
24297
|
* @remarks
|
|
@@ -24102,6 +24367,7 @@ export class DescribeDiagnosisRecordsResponseBodyQuerys extends $tea.Model {
|
|
|
24102
24367
|
* 2021093000414401000000023503151******
|
|
24103
24368
|
*/
|
|
24104
24369
|
processId?: string;
|
|
24370
|
+
queryProperties?: DescribeDiagnosisRecordsResponseBodyQuerysQueryProperties[];
|
|
24105
24371
|
/**
|
|
24106
24372
|
* @remarks
|
|
24107
24373
|
* The amount of time that is consumed for queuing. Unit: milliseconds.
|
|
@@ -24236,6 +24502,7 @@ export class DescribeDiagnosisRecordsResponseBodyQuerys extends $tea.Model {
|
|
|
24236
24502
|
outputRows: 'OutputRows',
|
|
24237
24503
|
peakMemory: 'PeakMemory',
|
|
24238
24504
|
processId: 'ProcessId',
|
|
24505
|
+
queryProperties: 'QueryProperties',
|
|
24239
24506
|
queueTime: 'QueueTime',
|
|
24240
24507
|
rcHost: 'RcHost',
|
|
24241
24508
|
resourceCostRank: 'ResourceCostRank',
|
|
@@ -24264,6 +24531,7 @@ export class DescribeDiagnosisRecordsResponseBodyQuerys extends $tea.Model {
|
|
|
24264
24531
|
outputRows: 'number',
|
|
24265
24532
|
peakMemory: 'number',
|
|
24266
24533
|
processId: 'string',
|
|
24534
|
+
queryProperties: { 'type': 'array', 'itemType': DescribeDiagnosisRecordsResponseBodyQuerysQueryProperties },
|
|
24267
24535
|
queueTime: 'number',
|
|
24268
24536
|
rcHost: 'string',
|
|
24269
24537
|
resourceCostRank: 'number',
|
|
@@ -24733,8 +25001,8 @@ export class DescribeElasticPlansResponseBodyElasticPlans extends $tea.Model {
|
|
|
24733
25001
|
* @remarks
|
|
24734
25002
|
* Indicates whether **Proportional Default Scaling for EIUs** is enabled. Valid values:
|
|
24735
25003
|
*
|
|
24736
|
-
* * true
|
|
24737
|
-
* * false
|
|
25004
|
+
* * **true**
|
|
25005
|
+
* * **false**
|
|
24738
25006
|
*
|
|
24739
25007
|
* @example
|
|
24740
25008
|
* false
|
|
@@ -24750,10 +25018,10 @@ export class DescribeElasticPlansResponseBodyElasticPlans extends $tea.Model {
|
|
|
24750
25018
|
elasticPlanName?: string;
|
|
24751
25019
|
/**
|
|
24752
25020
|
* @remarks
|
|
24753
|
-
* Indicates whether the scaling plan
|
|
25021
|
+
* Indicates whether the scaling plan is immediately enabled after the plan is created. Valid values:
|
|
24754
25022
|
*
|
|
24755
|
-
* * true
|
|
24756
|
-
* * false
|
|
25023
|
+
* * **true**
|
|
25024
|
+
* * **false**
|
|
24757
25025
|
*
|
|
24758
25026
|
* @example
|
|
24759
25027
|
* true
|
|
@@ -24791,8 +25059,8 @@ export class DescribeElasticPlansResponseBodyElasticPlans extends $tea.Model {
|
|
|
24791
25059
|
* @remarks
|
|
24792
25060
|
* The type of the scaling plan. Valid values:
|
|
24793
25061
|
*
|
|
24794
|
-
* * EXECUTOR
|
|
24795
|
-
* * WORKER
|
|
25062
|
+
* * **EXECUTOR**: the interactive resource group type, which specifies the computing resource type.
|
|
25063
|
+
* * **WORKER**: the EIU type.
|
|
24796
25064
|
*
|
|
24797
25065
|
* @example
|
|
24798
25066
|
* EXECUTOR
|
|
@@ -25831,7 +26099,7 @@ export class DescribeSQLPatternsResponseBodyPatternDetails extends $tea.Model {
|
|
|
25831
26099
|
export class DescribeSchemasResponseBodyItemsSchema extends $tea.Model {
|
|
25832
26100
|
/**
|
|
25833
26101
|
* @remarks
|
|
25834
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
26102
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
25835
26103
|
*
|
|
25836
26104
|
* @example
|
|
25837
26105
|
* amv-bp11q28kvl688****
|
|
@@ -26221,7 +26489,7 @@ export class DescribeTableAccessCountResponseBodyItems extends $tea.Model {
|
|
|
26221
26489
|
export class DescribeTablesResponseBodyItemsTable extends $tea.Model {
|
|
26222
26490
|
/**
|
|
26223
26491
|
* @remarks
|
|
26224
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
26492
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
26225
26493
|
*
|
|
26226
26494
|
* @example
|
|
26227
26495
|
* amv-bp1xxxxxxxx47
|
|
@@ -26353,7 +26621,7 @@ export class GetSparkAppAttemptLogResponseBodyData extends $tea.Model {
|
|
|
26353
26621
|
appId?: string;
|
|
26354
26622
|
/**
|
|
26355
26623
|
* @remarks
|
|
26356
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
26624
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
26357
26625
|
*
|
|
26358
26626
|
* @example
|
|
26359
26627
|
* amv-clusterxxx
|
|
@@ -28015,6 +28283,9 @@ export default class Client extends OpenApi {
|
|
|
28015
28283
|
|
|
28016
28284
|
constructor(config: $OpenApi.Config) {
|
|
28017
28285
|
super(config);
|
|
28286
|
+
this._productId = "adb";
|
|
28287
|
+
let gatewayClient = new GatewayClient();
|
|
28288
|
+
this._spi = gatewayClient;
|
|
28018
28289
|
this._endpointRule = "regional";
|
|
28019
28290
|
this._endpointMap = {
|
|
28020
28291
|
'cn-qingdao': "adb.aliyuncs.com",
|
|
@@ -28118,7 +28389,12 @@ export default class Client extends OpenApi {
|
|
|
28118
28389
|
reqBodyType: "formData",
|
|
28119
28390
|
bodyType: "json",
|
|
28120
28391
|
});
|
|
28121
|
-
|
|
28392
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
28393
|
+
return $tea.cast<AllocateClusterPublicConnectionResponse>(await this.callApi(params, req, runtime), new AllocateClusterPublicConnectionResponse({}));
|
|
28394
|
+
} else {
|
|
28395
|
+
return $tea.cast<AllocateClusterPublicConnectionResponse>(await this.execute(params, req, runtime), new AllocateClusterPublicConnectionResponse({}));
|
|
28396
|
+
}
|
|
28397
|
+
|
|
28122
28398
|
}
|
|
28123
28399
|
|
|
28124
28400
|
/**
|
|
@@ -28166,7 +28442,12 @@ export default class Client extends OpenApi {
|
|
|
28166
28442
|
reqBodyType: "formData",
|
|
28167
28443
|
bodyType: "json",
|
|
28168
28444
|
});
|
|
28169
|
-
|
|
28445
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
28446
|
+
return $tea.cast<AttachUserENIResponse>(await this.callApi(params, req, runtime), new AttachUserENIResponse({}));
|
|
28447
|
+
} else {
|
|
28448
|
+
return $tea.cast<AttachUserENIResponse>(await this.execute(params, req, runtime), new AttachUserENIResponse({}));
|
|
28449
|
+
}
|
|
28450
|
+
|
|
28170
28451
|
}
|
|
28171
28452
|
|
|
28172
28453
|
/**
|
|
@@ -28222,7 +28503,12 @@ export default class Client extends OpenApi {
|
|
|
28222
28503
|
reqBodyType: "formData",
|
|
28223
28504
|
bodyType: "json",
|
|
28224
28505
|
});
|
|
28225
|
-
|
|
28506
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
28507
|
+
return $tea.cast<BindAccountResponse>(await this.callApi(params, req, runtime), new BindAccountResponse({}));
|
|
28508
|
+
} else {
|
|
28509
|
+
return $tea.cast<BindAccountResponse>(await this.execute(params, req, runtime), new BindAccountResponse({}));
|
|
28510
|
+
}
|
|
28511
|
+
|
|
28226
28512
|
}
|
|
28227
28513
|
|
|
28228
28514
|
/**
|
|
@@ -28278,7 +28564,12 @@ export default class Client extends OpenApi {
|
|
|
28278
28564
|
reqBodyType: "formData",
|
|
28279
28565
|
bodyType: "json",
|
|
28280
28566
|
});
|
|
28281
|
-
|
|
28567
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
28568
|
+
return $tea.cast<BindDBResourceGroupWithUserResponse>(await this.callApi(params, req, runtime), new BindDBResourceGroupWithUserResponse({}));
|
|
28569
|
+
} else {
|
|
28570
|
+
return $tea.cast<BindDBResourceGroupWithUserResponse>(await this.execute(params, req, runtime), new BindDBResourceGroupWithUserResponse({}));
|
|
28571
|
+
}
|
|
28572
|
+
|
|
28282
28573
|
}
|
|
28283
28574
|
|
|
28284
28575
|
/**
|
|
@@ -28330,7 +28621,12 @@ export default class Client extends OpenApi {
|
|
|
28330
28621
|
reqBodyType: "formData",
|
|
28331
28622
|
bodyType: "json",
|
|
28332
28623
|
});
|
|
28333
|
-
|
|
28624
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
28625
|
+
return $tea.cast<CheckBindRamUserResponse>(await this.callApi(params, req, runtime), new CheckBindRamUserResponse({}));
|
|
28626
|
+
} else {
|
|
28627
|
+
return $tea.cast<CheckBindRamUserResponse>(await this.execute(params, req, runtime), new CheckBindRamUserResponse({}));
|
|
28628
|
+
}
|
|
28629
|
+
|
|
28334
28630
|
}
|
|
28335
28631
|
|
|
28336
28632
|
/**
|
|
@@ -28376,7 +28672,12 @@ export default class Client extends OpenApi {
|
|
|
28376
28672
|
reqBodyType: "formData",
|
|
28377
28673
|
bodyType: "json",
|
|
28378
28674
|
});
|
|
28379
|
-
|
|
28675
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
28676
|
+
return $tea.cast<CheckSampleDataSetResponse>(await this.callApi(params, req, runtime), new CheckSampleDataSetResponse({}));
|
|
28677
|
+
} else {
|
|
28678
|
+
return $tea.cast<CheckSampleDataSetResponse>(await this.execute(params, req, runtime), new CheckSampleDataSetResponse({}));
|
|
28679
|
+
}
|
|
28680
|
+
|
|
28380
28681
|
}
|
|
28381
28682
|
|
|
28382
28683
|
/**
|
|
@@ -28442,7 +28743,12 @@ export default class Client extends OpenApi {
|
|
|
28442
28743
|
reqBodyType: "formData",
|
|
28443
28744
|
bodyType: "json",
|
|
28444
28745
|
});
|
|
28445
|
-
|
|
28746
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
28747
|
+
return $tea.cast<CreateAccountResponse>(await this.callApi(params, req, runtime), new CreateAccountResponse({}));
|
|
28748
|
+
} else {
|
|
28749
|
+
return $tea.cast<CreateAccountResponse>(await this.execute(params, req, runtime), new CreateAccountResponse({}));
|
|
28750
|
+
}
|
|
28751
|
+
|
|
28446
28752
|
}
|
|
28447
28753
|
|
|
28448
28754
|
/**
|
|
@@ -28476,6 +28782,10 @@ export default class Client extends OpenApi {
|
|
|
28476
28782
|
query["BackupSetId"] = request.backupSetId;
|
|
28477
28783
|
}
|
|
28478
28784
|
|
|
28785
|
+
if (!Util.isUnset(request.cloneSourceRegionId)) {
|
|
28786
|
+
query["CloneSourceRegionId"] = request.cloneSourceRegionId;
|
|
28787
|
+
}
|
|
28788
|
+
|
|
28479
28789
|
if (!Util.isUnset(request.computeResource)) {
|
|
28480
28790
|
query["ComputeResource"] = request.computeResource;
|
|
28481
28791
|
}
|
|
@@ -28582,7 +28892,12 @@ export default class Client extends OpenApi {
|
|
|
28582
28892
|
reqBodyType: "formData",
|
|
28583
28893
|
bodyType: "json",
|
|
28584
28894
|
});
|
|
28585
|
-
|
|
28895
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
28896
|
+
return $tea.cast<CreateDBClusterResponse>(await this.callApi(params, req, runtime), new CreateDBClusterResponse({}));
|
|
28897
|
+
} else {
|
|
28898
|
+
return $tea.cast<CreateDBClusterResponse>(await this.execute(params, req, runtime), new CreateDBClusterResponse({}));
|
|
28899
|
+
}
|
|
28900
|
+
|
|
28586
28901
|
}
|
|
28587
28902
|
|
|
28588
28903
|
/**
|
|
@@ -28662,6 +28977,10 @@ export default class Client extends OpenApi {
|
|
|
28662
28977
|
query["MaxComputeResource"] = request.maxComputeResource;
|
|
28663
28978
|
}
|
|
28664
28979
|
|
|
28980
|
+
if (!Util.isUnset(request.maxGpuQuantity)) {
|
|
28981
|
+
query["MaxGpuQuantity"] = request.maxGpuQuantity;
|
|
28982
|
+
}
|
|
28983
|
+
|
|
28665
28984
|
if (!Util.isUnset(request.minClusterCount)) {
|
|
28666
28985
|
query["MinClusterCount"] = request.minClusterCount;
|
|
28667
28986
|
}
|
|
@@ -28670,6 +28989,10 @@ export default class Client extends OpenApi {
|
|
|
28670
28989
|
query["MinComputeResource"] = request.minComputeResource;
|
|
28671
28990
|
}
|
|
28672
28991
|
|
|
28992
|
+
if (!Util.isUnset(request.minGpuQuantity)) {
|
|
28993
|
+
query["MinGpuQuantity"] = request.minGpuQuantity;
|
|
28994
|
+
}
|
|
28995
|
+
|
|
28673
28996
|
if (!Util.isUnset(request.regionId)) {
|
|
28674
28997
|
query["RegionId"] = request.regionId;
|
|
28675
28998
|
}
|
|
@@ -28678,6 +29001,14 @@ export default class Client extends OpenApi {
|
|
|
28678
29001
|
query["Rules"] = request.rulesShrink;
|
|
28679
29002
|
}
|
|
28680
29003
|
|
|
29004
|
+
if (!Util.isUnset(request.specName)) {
|
|
29005
|
+
query["SpecName"] = request.specName;
|
|
29006
|
+
}
|
|
29007
|
+
|
|
29008
|
+
if (!Util.isUnset(request.targetResourceGroupName)) {
|
|
29009
|
+
query["TargetResourceGroupName"] = request.targetResourceGroupName;
|
|
29010
|
+
}
|
|
29011
|
+
|
|
28681
29012
|
let req = new $OpenApi.OpenApiRequest({
|
|
28682
29013
|
query: OpenApiUtil.query(query),
|
|
28683
29014
|
});
|
|
@@ -28692,7 +29023,12 @@ export default class Client extends OpenApi {
|
|
|
28692
29023
|
reqBodyType: "formData",
|
|
28693
29024
|
bodyType: "json",
|
|
28694
29025
|
});
|
|
28695
|
-
|
|
29026
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29027
|
+
return $tea.cast<CreateDBResourceGroupResponse>(await this.callApi(params, req, runtime), new CreateDBResourceGroupResponse({}));
|
|
29028
|
+
} else {
|
|
29029
|
+
return $tea.cast<CreateDBResourceGroupResponse>(await this.execute(params, req, runtime), new CreateDBResourceGroupResponse({}));
|
|
29030
|
+
}
|
|
29031
|
+
|
|
28696
29032
|
}
|
|
28697
29033
|
|
|
28698
29034
|
/**
|
|
@@ -28776,7 +29112,12 @@ export default class Client extends OpenApi {
|
|
|
28776
29112
|
reqBodyType: "formData",
|
|
28777
29113
|
bodyType: "json",
|
|
28778
29114
|
});
|
|
28779
|
-
|
|
29115
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29116
|
+
return $tea.cast<CreateElasticPlanResponse>(await this.callApi(params, req, runtime), new CreateElasticPlanResponse({}));
|
|
29117
|
+
} else {
|
|
29118
|
+
return $tea.cast<CreateElasticPlanResponse>(await this.execute(params, req, runtime), new CreateElasticPlanResponse({}));
|
|
29119
|
+
}
|
|
29120
|
+
|
|
28780
29121
|
}
|
|
28781
29122
|
|
|
28782
29123
|
/**
|
|
@@ -28830,7 +29171,12 @@ export default class Client extends OpenApi {
|
|
|
28830
29171
|
reqBodyType: "formData",
|
|
28831
29172
|
bodyType: "json",
|
|
28832
29173
|
});
|
|
28833
|
-
|
|
29174
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29175
|
+
return $tea.cast<CreateOssSubDirectoryResponse>(await this.callApi(params, req, runtime), new CreateOssSubDirectoryResponse({}));
|
|
29176
|
+
} else {
|
|
29177
|
+
return $tea.cast<CreateOssSubDirectoryResponse>(await this.execute(params, req, runtime), new CreateOssSubDirectoryResponse({}));
|
|
29178
|
+
}
|
|
29179
|
+
|
|
28834
29180
|
}
|
|
28835
29181
|
|
|
28836
29182
|
/**
|
|
@@ -28917,7 +29263,12 @@ export default class Client extends OpenApi {
|
|
|
28917
29263
|
reqBodyType: "formData",
|
|
28918
29264
|
bodyType: "json",
|
|
28919
29265
|
});
|
|
28920
|
-
|
|
29266
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29267
|
+
return $tea.cast<CreatePerformanceViewResponse>(await this.callApi(params, req, runtime), new CreatePerformanceViewResponse({}));
|
|
29268
|
+
} else {
|
|
29269
|
+
return $tea.cast<CreatePerformanceViewResponse>(await this.execute(params, req, runtime), new CreatePerformanceViewResponse({}));
|
|
29270
|
+
}
|
|
29271
|
+
|
|
28921
29272
|
}
|
|
28922
29273
|
|
|
28923
29274
|
/**
|
|
@@ -28978,7 +29329,12 @@ export default class Client extends OpenApi {
|
|
|
28978
29329
|
reqBodyType: "formData",
|
|
28979
29330
|
bodyType: "json",
|
|
28980
29331
|
});
|
|
28981
|
-
|
|
29332
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29333
|
+
return $tea.cast<CreateSparkTemplateResponse>(await this.callApi(params, req, runtime), new CreateSparkTemplateResponse({}));
|
|
29334
|
+
} else {
|
|
29335
|
+
return $tea.cast<CreateSparkTemplateResponse>(await this.execute(params, req, runtime), new CreateSparkTemplateResponse({}));
|
|
29336
|
+
}
|
|
29337
|
+
|
|
28982
29338
|
}
|
|
28983
29339
|
|
|
28984
29340
|
/**
|
|
@@ -29036,7 +29392,12 @@ export default class Client extends OpenApi {
|
|
|
29036
29392
|
reqBodyType: "formData",
|
|
29037
29393
|
bodyType: "json",
|
|
29038
29394
|
});
|
|
29039
|
-
|
|
29395
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29396
|
+
return $tea.cast<DeleteAccountResponse>(await this.callApi(params, req, runtime), new DeleteAccountResponse({}));
|
|
29397
|
+
} else {
|
|
29398
|
+
return $tea.cast<DeleteAccountResponse>(await this.execute(params, req, runtime), new DeleteAccountResponse({}));
|
|
29399
|
+
}
|
|
29400
|
+
|
|
29040
29401
|
}
|
|
29041
29402
|
|
|
29042
29403
|
/**
|
|
@@ -29086,7 +29447,12 @@ export default class Client extends OpenApi {
|
|
|
29086
29447
|
reqBodyType: "formData",
|
|
29087
29448
|
bodyType: "json",
|
|
29088
29449
|
});
|
|
29089
|
-
|
|
29450
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29451
|
+
return $tea.cast<DeleteDBClusterResponse>(await this.callApi(params, req, runtime), new DeleteDBClusterResponse({}));
|
|
29452
|
+
} else {
|
|
29453
|
+
return $tea.cast<DeleteDBClusterResponse>(await this.execute(params, req, runtime), new DeleteDBClusterResponse({}));
|
|
29454
|
+
}
|
|
29455
|
+
|
|
29090
29456
|
}
|
|
29091
29457
|
|
|
29092
29458
|
/**
|
|
@@ -29140,7 +29506,12 @@ export default class Client extends OpenApi {
|
|
|
29140
29506
|
reqBodyType: "formData",
|
|
29141
29507
|
bodyType: "json",
|
|
29142
29508
|
});
|
|
29143
|
-
|
|
29509
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29510
|
+
return $tea.cast<DeleteDBResourceGroupResponse>(await this.callApi(params, req, runtime), new DeleteDBResourceGroupResponse({}));
|
|
29511
|
+
} else {
|
|
29512
|
+
return $tea.cast<DeleteDBResourceGroupResponse>(await this.execute(params, req, runtime), new DeleteDBResourceGroupResponse({}));
|
|
29513
|
+
}
|
|
29514
|
+
|
|
29144
29515
|
}
|
|
29145
29516
|
|
|
29146
29517
|
/**
|
|
@@ -29192,7 +29563,12 @@ export default class Client extends OpenApi {
|
|
|
29192
29563
|
reqBodyType: "formData",
|
|
29193
29564
|
bodyType: "json",
|
|
29194
29565
|
});
|
|
29195
|
-
|
|
29566
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29567
|
+
return $tea.cast<DeleteElasticPlanResponse>(await this.callApi(params, req, runtime), new DeleteElasticPlanResponse({}));
|
|
29568
|
+
} else {
|
|
29569
|
+
return $tea.cast<DeleteElasticPlanResponse>(await this.execute(params, req, runtime), new DeleteElasticPlanResponse({}));
|
|
29570
|
+
}
|
|
29571
|
+
|
|
29196
29572
|
}
|
|
29197
29573
|
|
|
29198
29574
|
/**
|
|
@@ -29259,7 +29635,12 @@ export default class Client extends OpenApi {
|
|
|
29259
29635
|
reqBodyType: "formData",
|
|
29260
29636
|
bodyType: "json",
|
|
29261
29637
|
});
|
|
29262
|
-
|
|
29638
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29639
|
+
return $tea.cast<DeletePerformanceViewResponse>(await this.callApi(params, req, runtime), new DeletePerformanceViewResponse({}));
|
|
29640
|
+
} else {
|
|
29641
|
+
return $tea.cast<DeletePerformanceViewResponse>(await this.execute(params, req, runtime), new DeletePerformanceViewResponse({}));
|
|
29642
|
+
}
|
|
29643
|
+
|
|
29263
29644
|
}
|
|
29264
29645
|
|
|
29265
29646
|
/**
|
|
@@ -29315,7 +29696,12 @@ export default class Client extends OpenApi {
|
|
|
29315
29696
|
reqBodyType: "formData",
|
|
29316
29697
|
bodyType: "json",
|
|
29317
29698
|
});
|
|
29318
|
-
|
|
29699
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29700
|
+
return $tea.cast<DeleteProcessInstanceResponse>(await this.callApi(params, req, runtime), new DeleteProcessInstanceResponse({}));
|
|
29701
|
+
} else {
|
|
29702
|
+
return $tea.cast<DeleteProcessInstanceResponse>(await this.execute(params, req, runtime), new DeleteProcessInstanceResponse({}));
|
|
29703
|
+
}
|
|
29704
|
+
|
|
29319
29705
|
}
|
|
29320
29706
|
|
|
29321
29707
|
/**
|
|
@@ -29370,7 +29756,12 @@ export default class Client extends OpenApi {
|
|
|
29370
29756
|
reqBodyType: "formData",
|
|
29371
29757
|
bodyType: "json",
|
|
29372
29758
|
});
|
|
29373
|
-
|
|
29759
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29760
|
+
return $tea.cast<DeleteSparkTemplateResponse>(await this.callApi(params, req, runtime), new DeleteSparkTemplateResponse({}));
|
|
29761
|
+
} else {
|
|
29762
|
+
return $tea.cast<DeleteSparkTemplateResponse>(await this.execute(params, req, runtime), new DeleteSparkTemplateResponse({}));
|
|
29763
|
+
}
|
|
29764
|
+
|
|
29374
29765
|
}
|
|
29375
29766
|
|
|
29376
29767
|
/**
|
|
@@ -29393,9 +29784,9 @@ export default class Client extends OpenApi {
|
|
|
29393
29784
|
* Deletes Spark template files.
|
|
29394
29785
|
*
|
|
29395
29786
|
* @remarks
|
|
29396
|
-
*
|
|
29397
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
29787
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
29398
29788
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
29789
|
+
* > 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.
|
|
29399
29790
|
*
|
|
29400
29791
|
* @param request - DeleteSparkTemplateFileRequest
|
|
29401
29792
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -29426,16 +29817,21 @@ export default class Client extends OpenApi {
|
|
|
29426
29817
|
reqBodyType: "formData",
|
|
29427
29818
|
bodyType: "json",
|
|
29428
29819
|
});
|
|
29429
|
-
|
|
29820
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29821
|
+
return $tea.cast<DeleteSparkTemplateFileResponse>(await this.callApi(params, req, runtime), new DeleteSparkTemplateFileResponse({}));
|
|
29822
|
+
} else {
|
|
29823
|
+
return $tea.cast<DeleteSparkTemplateFileResponse>(await this.execute(params, req, runtime), new DeleteSparkTemplateFileResponse({}));
|
|
29824
|
+
}
|
|
29825
|
+
|
|
29430
29826
|
}
|
|
29431
29827
|
|
|
29432
29828
|
/**
|
|
29433
29829
|
* Deletes Spark template files.
|
|
29434
29830
|
*
|
|
29435
29831
|
* @remarks
|
|
29436
|
-
*
|
|
29437
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
29832
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
29438
29833
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
29834
|
+
* > 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.
|
|
29439
29835
|
*
|
|
29440
29836
|
* @param request - DeleteSparkTemplateFileRequest
|
|
29441
29837
|
* @returns DeleteSparkTemplateFileResponse
|
|
@@ -29488,7 +29884,12 @@ export default class Client extends OpenApi {
|
|
|
29488
29884
|
reqBodyType: "formData",
|
|
29489
29885
|
bodyType: "json",
|
|
29490
29886
|
});
|
|
29491
|
-
|
|
29887
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29888
|
+
return $tea.cast<DescribeAccountAllPrivilegesResponse>(await this.callApi(params, req, runtime), new DescribeAccountAllPrivilegesResponse({}));
|
|
29889
|
+
} else {
|
|
29890
|
+
return $tea.cast<DescribeAccountAllPrivilegesResponse>(await this.execute(params, req, runtime), new DescribeAccountAllPrivilegesResponse({}));
|
|
29891
|
+
}
|
|
29892
|
+
|
|
29492
29893
|
}
|
|
29493
29894
|
|
|
29494
29895
|
/**
|
|
@@ -29568,7 +29969,12 @@ export default class Client extends OpenApi {
|
|
|
29568
29969
|
reqBodyType: "formData",
|
|
29569
29970
|
bodyType: "json",
|
|
29570
29971
|
});
|
|
29571
|
-
|
|
29972
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
29973
|
+
return $tea.cast<DescribeAccountPrivilegeObjectsResponse>(await this.callApi(params, req, runtime), new DescribeAccountPrivilegeObjectsResponse({}));
|
|
29974
|
+
} else {
|
|
29975
|
+
return $tea.cast<DescribeAccountPrivilegeObjectsResponse>(await this.execute(params, req, runtime), new DescribeAccountPrivilegeObjectsResponse({}));
|
|
29976
|
+
}
|
|
29977
|
+
|
|
29572
29978
|
}
|
|
29573
29979
|
|
|
29574
29980
|
/**
|
|
@@ -29645,7 +30051,12 @@ export default class Client extends OpenApi {
|
|
|
29645
30051
|
reqBodyType: "formData",
|
|
29646
30052
|
bodyType: "json",
|
|
29647
30053
|
});
|
|
29648
|
-
|
|
30054
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
30055
|
+
return $tea.cast<DescribeAccountPrivilegesResponse>(await this.callApi(params, req, runtime), new DescribeAccountPrivilegesResponse({}));
|
|
30056
|
+
} else {
|
|
30057
|
+
return $tea.cast<DescribeAccountPrivilegesResponse>(await this.execute(params, req, runtime), new DescribeAccountPrivilegesResponse({}));
|
|
30058
|
+
}
|
|
30059
|
+
|
|
29649
30060
|
}
|
|
29650
30061
|
|
|
29651
30062
|
/**
|
|
@@ -29702,7 +30113,12 @@ export default class Client extends OpenApi {
|
|
|
29702
30113
|
reqBodyType: "formData",
|
|
29703
30114
|
bodyType: "json",
|
|
29704
30115
|
});
|
|
29705
|
-
|
|
30116
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
30117
|
+
return $tea.cast<DescribeAccountsResponse>(await this.callApi(params, req, runtime), new DescribeAccountsResponse({}));
|
|
30118
|
+
} else {
|
|
30119
|
+
return $tea.cast<DescribeAccountsResponse>(await this.execute(params, req, runtime), new DescribeAccountsResponse({}));
|
|
30120
|
+
}
|
|
30121
|
+
|
|
29706
30122
|
}
|
|
29707
30123
|
|
|
29708
30124
|
/**
|
|
@@ -29720,7 +30136,7 @@ export default class Client extends OpenApi {
|
|
|
29720
30136
|
}
|
|
29721
30137
|
|
|
29722
30138
|
/**
|
|
29723
|
-
* Queries the information about table columns for an AnalyticDB for MySQL
|
|
30139
|
+
* Queries the information about table columns for an AnalyticDB for MySQL cluster.
|
|
29724
30140
|
*
|
|
29725
30141
|
* @remarks
|
|
29726
30142
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -29763,11 +30179,16 @@ export default class Client extends OpenApi {
|
|
|
29763
30179
|
reqBodyType: "formData",
|
|
29764
30180
|
bodyType: "json",
|
|
29765
30181
|
});
|
|
29766
|
-
|
|
30182
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
30183
|
+
return $tea.cast<DescribeAdbMySqlColumnsResponse>(await this.callApi(params, req, runtime), new DescribeAdbMySqlColumnsResponse({}));
|
|
30184
|
+
} else {
|
|
30185
|
+
return $tea.cast<DescribeAdbMySqlColumnsResponse>(await this.execute(params, req, runtime), new DescribeAdbMySqlColumnsResponse({}));
|
|
30186
|
+
}
|
|
30187
|
+
|
|
29767
30188
|
}
|
|
29768
30189
|
|
|
29769
30190
|
/**
|
|
29770
|
-
* Queries the information about table columns for an AnalyticDB for MySQL
|
|
30191
|
+
* Queries the information about table columns for an AnalyticDB for MySQL cluster.
|
|
29771
30192
|
*
|
|
29772
30193
|
* @remarks
|
|
29773
30194
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -29782,7 +30203,7 @@ export default class Client extends OpenApi {
|
|
|
29782
30203
|
}
|
|
29783
30204
|
|
|
29784
30205
|
/**
|
|
29785
|
-
* Queries a list of databases for an AnalyticDB for MySQL
|
|
30206
|
+
* Queries a list of databases for an AnalyticDB for MySQL cluster.
|
|
29786
30207
|
*
|
|
29787
30208
|
* @remarks
|
|
29788
30209
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -29817,11 +30238,16 @@ export default class Client extends OpenApi {
|
|
|
29817
30238
|
reqBodyType: "formData",
|
|
29818
30239
|
bodyType: "json",
|
|
29819
30240
|
});
|
|
29820
|
-
|
|
30241
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
30242
|
+
return $tea.cast<DescribeAdbMySqlSchemasResponse>(await this.callApi(params, req, runtime), new DescribeAdbMySqlSchemasResponse({}));
|
|
30243
|
+
} else {
|
|
30244
|
+
return $tea.cast<DescribeAdbMySqlSchemasResponse>(await this.execute(params, req, runtime), new DescribeAdbMySqlSchemasResponse({}));
|
|
30245
|
+
}
|
|
30246
|
+
|
|
29821
30247
|
}
|
|
29822
30248
|
|
|
29823
30249
|
/**
|
|
29824
|
-
* Queries a list of databases for an AnalyticDB for MySQL
|
|
30250
|
+
* Queries a list of databases for an AnalyticDB for MySQL cluster.
|
|
29825
30251
|
*
|
|
29826
30252
|
* @remarks
|
|
29827
30253
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -29836,7 +30262,7 @@ export default class Client extends OpenApi {
|
|
|
29836
30262
|
}
|
|
29837
30263
|
|
|
29838
30264
|
/**
|
|
29839
|
-
* Queries a list of tables for an AnalyticDB for MySQL
|
|
30265
|
+
* Queries a list of tables for an AnalyticDB for MySQL cluster.
|
|
29840
30266
|
*
|
|
29841
30267
|
* @remarks
|
|
29842
30268
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -29875,11 +30301,16 @@ export default class Client extends OpenApi {
|
|
|
29875
30301
|
reqBodyType: "formData",
|
|
29876
30302
|
bodyType: "json",
|
|
29877
30303
|
});
|
|
29878
|
-
|
|
30304
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
30305
|
+
return $tea.cast<DescribeAdbMySqlTablesResponse>(await this.callApi(params, req, runtime), new DescribeAdbMySqlTablesResponse({}));
|
|
30306
|
+
} else {
|
|
30307
|
+
return $tea.cast<DescribeAdbMySqlTablesResponse>(await this.execute(params, req, runtime), new DescribeAdbMySqlTablesResponse({}));
|
|
30308
|
+
}
|
|
30309
|
+
|
|
29879
30310
|
}
|
|
29880
30311
|
|
|
29881
30312
|
/**
|
|
29882
|
-
* Queries a list of tables for an AnalyticDB for MySQL
|
|
30313
|
+
* Queries a list of tables for an AnalyticDB for MySQL cluster.
|
|
29883
30314
|
*
|
|
29884
30315
|
* @remarks
|
|
29885
30316
|
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
@@ -29937,7 +30368,12 @@ export default class Client extends OpenApi {
|
|
|
29937
30368
|
reqBodyType: "formData",
|
|
29938
30369
|
bodyType: "json",
|
|
29939
30370
|
});
|
|
29940
|
-
|
|
30371
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
30372
|
+
return $tea.cast<DescribeAllDataSourceResponse>(await this.callApi(params, req, runtime), new DescribeAllDataSourceResponse({}));
|
|
30373
|
+
} else {
|
|
30374
|
+
return $tea.cast<DescribeAllDataSourceResponse>(await this.execute(params, req, runtime), new DescribeAllDataSourceResponse({}));
|
|
30375
|
+
}
|
|
30376
|
+
|
|
29941
30377
|
}
|
|
29942
30378
|
|
|
29943
30379
|
/**
|
|
@@ -30040,7 +30476,12 @@ export default class Client extends OpenApi {
|
|
|
30040
30476
|
reqBodyType: "formData",
|
|
30041
30477
|
bodyType: "json",
|
|
30042
30478
|
});
|
|
30043
|
-
|
|
30479
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
30480
|
+
return $tea.cast<DescribeApsActionLogsResponse>(await this.callApi(params, req, runtime), new DescribeApsActionLogsResponse({}));
|
|
30481
|
+
} else {
|
|
30482
|
+
return $tea.cast<DescribeApsActionLogsResponse>(await this.execute(params, req, runtime), new DescribeApsActionLogsResponse({}));
|
|
30483
|
+
}
|
|
30484
|
+
|
|
30044
30485
|
}
|
|
30045
30486
|
|
|
30046
30487
|
/**
|
|
@@ -30099,7 +30540,12 @@ export default class Client extends OpenApi {
|
|
|
30099
30540
|
reqBodyType: "formData",
|
|
30100
30541
|
bodyType: "json",
|
|
30101
30542
|
});
|
|
30102
|
-
|
|
30543
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
30544
|
+
return $tea.cast<DescribeApsResourceGroupsResponse>(await this.callApi(params, req, runtime), new DescribeApsResourceGroupsResponse({}));
|
|
30545
|
+
} else {
|
|
30546
|
+
return $tea.cast<DescribeApsResourceGroupsResponse>(await this.execute(params, req, runtime), new DescribeApsResourceGroupsResponse({}));
|
|
30547
|
+
}
|
|
30548
|
+
|
|
30103
30549
|
}
|
|
30104
30550
|
|
|
30105
30551
|
/**
|
|
@@ -30221,7 +30667,12 @@ export default class Client extends OpenApi {
|
|
|
30221
30667
|
reqBodyType: "formData",
|
|
30222
30668
|
bodyType: "json",
|
|
30223
30669
|
});
|
|
30224
|
-
|
|
30670
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
30671
|
+
return $tea.cast<DescribeAuditLogRecordsResponse>(await this.callApi(params, req, runtime), new DescribeAuditLogRecordsResponse({}));
|
|
30672
|
+
} else {
|
|
30673
|
+
return $tea.cast<DescribeAuditLogRecordsResponse>(await this.execute(params, req, runtime), new DescribeAuditLogRecordsResponse({}));
|
|
30674
|
+
}
|
|
30675
|
+
|
|
30225
30676
|
}
|
|
30226
30677
|
|
|
30227
30678
|
/**
|
|
@@ -30284,7 +30735,12 @@ export default class Client extends OpenApi {
|
|
|
30284
30735
|
reqBodyType: "formData",
|
|
30285
30736
|
bodyType: "json",
|
|
30286
30737
|
});
|
|
30287
|
-
|
|
30738
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
30739
|
+
return $tea.cast<DescribeBackupPolicyResponse>(await this.callApi(params, req, runtime), new DescribeBackupPolicyResponse({}));
|
|
30740
|
+
} else {
|
|
30741
|
+
return $tea.cast<DescribeBackupPolicyResponse>(await this.execute(params, req, runtime), new DescribeBackupPolicyResponse({}));
|
|
30742
|
+
}
|
|
30743
|
+
|
|
30288
30744
|
}
|
|
30289
30745
|
|
|
30290
30746
|
/**
|
|
@@ -30364,7 +30820,12 @@ export default class Client extends OpenApi {
|
|
|
30364
30820
|
reqBodyType: "formData",
|
|
30365
30821
|
bodyType: "json",
|
|
30366
30822
|
});
|
|
30367
|
-
|
|
30823
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
30824
|
+
return $tea.cast<DescribeBackupsResponse>(await this.callApi(params, req, runtime), new DescribeBackupsResponse({}));
|
|
30825
|
+
} else {
|
|
30826
|
+
return $tea.cast<DescribeBackupsResponse>(await this.execute(params, req, runtime), new DescribeBackupsResponse({}));
|
|
30827
|
+
}
|
|
30828
|
+
|
|
30368
30829
|
}
|
|
30369
30830
|
|
|
30370
30831
|
/**
|
|
@@ -30396,6 +30857,10 @@ export default class Client extends OpenApi {
|
|
|
30396
30857
|
query["DBClusterId"] = request.DBClusterId;
|
|
30397
30858
|
}
|
|
30398
30859
|
|
|
30860
|
+
if (!Util.isUnset(request.regionId)) {
|
|
30861
|
+
query["RegionId"] = request.regionId;
|
|
30862
|
+
}
|
|
30863
|
+
|
|
30399
30864
|
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
30400
30865
|
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
30401
30866
|
}
|
|
@@ -30414,7 +30879,12 @@ export default class Client extends OpenApi {
|
|
|
30414
30879
|
reqBodyType: "formData",
|
|
30415
30880
|
bodyType: "json",
|
|
30416
30881
|
});
|
|
30417
|
-
|
|
30882
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
30883
|
+
return $tea.cast<DescribeClusterAccessWhiteListResponse>(await this.callApi(params, req, runtime), new DescribeClusterAccessWhiteListResponse({}));
|
|
30884
|
+
} else {
|
|
30885
|
+
return $tea.cast<DescribeClusterAccessWhiteListResponse>(await this.execute(params, req, runtime), new DescribeClusterAccessWhiteListResponse({}));
|
|
30886
|
+
}
|
|
30887
|
+
|
|
30418
30888
|
}
|
|
30419
30889
|
|
|
30420
30890
|
/**
|
|
@@ -30466,7 +30936,12 @@ export default class Client extends OpenApi {
|
|
|
30466
30936
|
reqBodyType: "formData",
|
|
30467
30937
|
bodyType: "json",
|
|
30468
30938
|
});
|
|
30469
|
-
|
|
30939
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
30940
|
+
return $tea.cast<DescribeClusterNetInfoResponse>(await this.callApi(params, req, runtime), new DescribeClusterNetInfoResponse({}));
|
|
30941
|
+
} else {
|
|
30942
|
+
return $tea.cast<DescribeClusterNetInfoResponse>(await this.execute(params, req, runtime), new DescribeClusterNetInfoResponse({}));
|
|
30943
|
+
}
|
|
30944
|
+
|
|
30470
30945
|
}
|
|
30471
30946
|
|
|
30472
30947
|
/**
|
|
@@ -30484,10 +30959,10 @@ export default class Client extends OpenApi {
|
|
|
30484
30959
|
}
|
|
30485
30960
|
|
|
30486
30961
|
/**
|
|
30487
|
-
*
|
|
30962
|
+
* Queries the information about resource usage of an AnalyticDB for MySQL cluster.
|
|
30488
30963
|
*
|
|
30489
30964
|
* @remarks
|
|
30490
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
30965
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
30491
30966
|
*
|
|
30492
30967
|
* @param request - DescribeClusterResourceDetailRequest
|
|
30493
30968
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -30514,14 +30989,19 @@ export default class Client extends OpenApi {
|
|
|
30514
30989
|
reqBodyType: "formData",
|
|
30515
30990
|
bodyType: "json",
|
|
30516
30991
|
});
|
|
30517
|
-
|
|
30992
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
30993
|
+
return $tea.cast<DescribeClusterResourceDetailResponse>(await this.callApi(params, req, runtime), new DescribeClusterResourceDetailResponse({}));
|
|
30994
|
+
} else {
|
|
30995
|
+
return $tea.cast<DescribeClusterResourceDetailResponse>(await this.execute(params, req, runtime), new DescribeClusterResourceDetailResponse({}));
|
|
30996
|
+
}
|
|
30997
|
+
|
|
30518
30998
|
}
|
|
30519
30999
|
|
|
30520
31000
|
/**
|
|
30521
|
-
*
|
|
31001
|
+
* Queries the information about resource usage of an AnalyticDB for MySQL cluster.
|
|
30522
31002
|
*
|
|
30523
31003
|
* @remarks
|
|
30524
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
31004
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
30525
31005
|
*
|
|
30526
31006
|
* @param request - DescribeClusterResourceDetailRequest
|
|
30527
31007
|
* @returns DescribeClusterResourceDetailResponse
|
|
@@ -30555,7 +31035,12 @@ export default class Client extends OpenApi {
|
|
|
30555
31035
|
reqBodyType: "formData",
|
|
30556
31036
|
bodyType: "json",
|
|
30557
31037
|
});
|
|
30558
|
-
|
|
31038
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
31039
|
+
return $tea.cast<DescribeClusterResourceUsageResponse>(await this.callApi(params, req, runtime), new DescribeClusterResourceUsageResponse({}));
|
|
31040
|
+
} else {
|
|
31041
|
+
return $tea.cast<DescribeClusterResourceUsageResponse>(await this.execute(params, req, runtime), new DescribeClusterResourceUsageResponse({}));
|
|
31042
|
+
}
|
|
31043
|
+
|
|
30559
31044
|
}
|
|
30560
31045
|
|
|
30561
31046
|
/**
|
|
@@ -30613,7 +31098,12 @@ export default class Client extends OpenApi {
|
|
|
30613
31098
|
reqBodyType: "formData",
|
|
30614
31099
|
bodyType: "json",
|
|
30615
31100
|
});
|
|
30616
|
-
|
|
31101
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
31102
|
+
return $tea.cast<DescribeColumnsResponse>(await this.callApi(params, req, runtime), new DescribeColumnsResponse({}));
|
|
31103
|
+
} else {
|
|
31104
|
+
return $tea.cast<DescribeColumnsResponse>(await this.execute(params, req, runtime), new DescribeColumnsResponse({}));
|
|
31105
|
+
}
|
|
31106
|
+
|
|
30617
31107
|
}
|
|
30618
31108
|
|
|
30619
31109
|
/**
|
|
@@ -30674,7 +31164,12 @@ export default class Client extends OpenApi {
|
|
|
30674
31164
|
reqBodyType: "formData",
|
|
30675
31165
|
bodyType: "json",
|
|
30676
31166
|
});
|
|
30677
|
-
|
|
31167
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
31168
|
+
return $tea.cast<DescribeComputeResourceUsageResponse>(await this.callApi(params, req, runtime), new DescribeComputeResourceUsageResponse({}));
|
|
31169
|
+
} else {
|
|
31170
|
+
return $tea.cast<DescribeComputeResourceUsageResponse>(await this.execute(params, req, runtime), new DescribeComputeResourceUsageResponse({}));
|
|
31171
|
+
}
|
|
31172
|
+
|
|
30678
31173
|
}
|
|
30679
31174
|
|
|
30680
31175
|
/**
|
|
@@ -30722,7 +31217,12 @@ export default class Client extends OpenApi {
|
|
|
30722
31217
|
reqBodyType: "formData",
|
|
30723
31218
|
bodyType: "json",
|
|
30724
31219
|
});
|
|
30725
|
-
|
|
31220
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
31221
|
+
return $tea.cast<DescribeDBClusterAttributeResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterAttributeResponse({}));
|
|
31222
|
+
} else {
|
|
31223
|
+
return $tea.cast<DescribeDBClusterAttributeResponse>(await this.execute(params, req, runtime), new DescribeDBClusterAttributeResponse({}));
|
|
31224
|
+
}
|
|
31225
|
+
|
|
30726
31226
|
}
|
|
30727
31227
|
|
|
30728
31228
|
/**
|
|
@@ -30774,7 +31274,12 @@ export default class Client extends OpenApi {
|
|
|
30774
31274
|
reqBodyType: "formData",
|
|
30775
31275
|
bodyType: "json",
|
|
30776
31276
|
});
|
|
30777
|
-
|
|
31277
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
31278
|
+
return $tea.cast<DescribeDBClusterHealthStatusResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterHealthStatusResponse({}));
|
|
31279
|
+
} else {
|
|
31280
|
+
return $tea.cast<DescribeDBClusterHealthStatusResponse>(await this.execute(params, req, runtime), new DescribeDBClusterHealthStatusResponse({}));
|
|
31281
|
+
}
|
|
31282
|
+
|
|
30778
31283
|
}
|
|
30779
31284
|
|
|
30780
31285
|
/**
|
|
@@ -30842,7 +31347,12 @@ export default class Client extends OpenApi {
|
|
|
30842
31347
|
reqBodyType: "formData",
|
|
30843
31348
|
bodyType: "json",
|
|
30844
31349
|
});
|
|
30845
|
-
|
|
31350
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
31351
|
+
return $tea.cast<DescribeDBClusterPerformanceResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterPerformanceResponse({}));
|
|
31352
|
+
} else {
|
|
31353
|
+
return $tea.cast<DescribeDBClusterPerformanceResponse>(await this.execute(params, req, runtime), new DescribeDBClusterPerformanceResponse({}));
|
|
31354
|
+
}
|
|
31355
|
+
|
|
30846
31356
|
}
|
|
30847
31357
|
|
|
30848
31358
|
/**
|
|
@@ -30910,7 +31420,12 @@ export default class Client extends OpenApi {
|
|
|
30910
31420
|
reqBodyType: "formData",
|
|
30911
31421
|
bodyType: "json",
|
|
30912
31422
|
});
|
|
30913
|
-
|
|
31423
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
31424
|
+
return $tea.cast<DescribeDBClusterSpaceSummaryResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterSpaceSummaryResponse({}));
|
|
31425
|
+
} else {
|
|
31426
|
+
return $tea.cast<DescribeDBClusterSpaceSummaryResponse>(await this.execute(params, req, runtime), new DescribeDBClusterSpaceSummaryResponse({}));
|
|
31427
|
+
}
|
|
31428
|
+
|
|
30914
31429
|
}
|
|
30915
31430
|
|
|
30916
31431
|
/**
|
|
@@ -30958,7 +31473,12 @@ export default class Client extends OpenApi {
|
|
|
30958
31473
|
reqBodyType: "formData",
|
|
30959
31474
|
bodyType: "json",
|
|
30960
31475
|
});
|
|
30961
|
-
|
|
31476
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
31477
|
+
return $tea.cast<DescribeDBClusterStatusResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterStatusResponse({}));
|
|
31478
|
+
} else {
|
|
31479
|
+
return $tea.cast<DescribeDBClusterStatusResponse>(await this.execute(params, req, runtime), new DescribeDBClusterStatusResponse({}));
|
|
31480
|
+
}
|
|
31481
|
+
|
|
30962
31482
|
}
|
|
30963
31483
|
|
|
30964
31484
|
/**
|
|
@@ -31042,7 +31562,12 @@ export default class Client extends OpenApi {
|
|
|
31042
31562
|
reqBodyType: "formData",
|
|
31043
31563
|
bodyType: "json",
|
|
31044
31564
|
});
|
|
31045
|
-
|
|
31565
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
31566
|
+
return $tea.cast<DescribeDBClustersResponse>(await this.callApi(params, req, runtime), new DescribeDBClustersResponse({}));
|
|
31567
|
+
} else {
|
|
31568
|
+
return $tea.cast<DescribeDBClustersResponse>(await this.execute(params, req, runtime), new DescribeDBClustersResponse({}));
|
|
31569
|
+
}
|
|
31570
|
+
|
|
31046
31571
|
}
|
|
31047
31572
|
|
|
31048
31573
|
/**
|
|
@@ -31106,7 +31631,12 @@ export default class Client extends OpenApi {
|
|
|
31106
31631
|
reqBodyType: "formData",
|
|
31107
31632
|
bodyType: "json",
|
|
31108
31633
|
});
|
|
31109
|
-
|
|
31634
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
31635
|
+
return $tea.cast<DescribeDBResourceGroupResponse>(await this.callApi(params, req, runtime), new DescribeDBResourceGroupResponse({}));
|
|
31636
|
+
} else {
|
|
31637
|
+
return $tea.cast<DescribeDBResourceGroupResponse>(await this.execute(params, req, runtime), new DescribeDBResourceGroupResponse({}));
|
|
31638
|
+
}
|
|
31639
|
+
|
|
31110
31640
|
}
|
|
31111
31641
|
|
|
31112
31642
|
/**
|
|
@@ -31174,7 +31704,12 @@ export default class Client extends OpenApi {
|
|
|
31174
31704
|
reqBodyType: "formData",
|
|
31175
31705
|
bodyType: "json",
|
|
31176
31706
|
});
|
|
31177
|
-
|
|
31707
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
31708
|
+
return $tea.cast<DescribeDiagnosisDimensionsResponse>(await this.callApi(params, req, runtime), new DescribeDiagnosisDimensionsResponse({}));
|
|
31709
|
+
} else {
|
|
31710
|
+
return $tea.cast<DescribeDiagnosisDimensionsResponse>(await this.execute(params, req, runtime), new DescribeDiagnosisDimensionsResponse({}));
|
|
31711
|
+
}
|
|
31712
|
+
|
|
31178
31713
|
}
|
|
31179
31714
|
|
|
31180
31715
|
/**
|
|
@@ -31294,7 +31829,12 @@ export default class Client extends OpenApi {
|
|
|
31294
31829
|
reqBodyType: "formData",
|
|
31295
31830
|
bodyType: "json",
|
|
31296
31831
|
});
|
|
31297
|
-
|
|
31832
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
31833
|
+
return $tea.cast<DescribeDiagnosisRecordsResponse>(await this.callApi(params, req, runtime), new DescribeDiagnosisRecordsResponse({}));
|
|
31834
|
+
} else {
|
|
31835
|
+
return $tea.cast<DescribeDiagnosisRecordsResponse>(await this.execute(params, req, runtime), new DescribeDiagnosisRecordsResponse({}));
|
|
31836
|
+
}
|
|
31837
|
+
|
|
31298
31838
|
}
|
|
31299
31839
|
|
|
31300
31840
|
/**
|
|
@@ -31338,7 +31878,12 @@ export default class Client extends OpenApi {
|
|
|
31338
31878
|
reqBodyType: "formData",
|
|
31339
31879
|
bodyType: "json",
|
|
31340
31880
|
});
|
|
31341
|
-
|
|
31881
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
31882
|
+
return $tea.cast<DescribeDiagnosisSQLInfoResponse>(await this.callApi(params, req, runtime), new DescribeDiagnosisSQLInfoResponse({}));
|
|
31883
|
+
} else {
|
|
31884
|
+
return $tea.cast<DescribeDiagnosisSQLInfoResponse>(await this.execute(params, req, runtime), new DescribeDiagnosisSQLInfoResponse({}));
|
|
31885
|
+
}
|
|
31886
|
+
|
|
31342
31887
|
}
|
|
31343
31888
|
|
|
31344
31889
|
/**
|
|
@@ -31394,7 +31939,12 @@ export default class Client extends OpenApi {
|
|
|
31394
31939
|
reqBodyType: "formData",
|
|
31395
31940
|
bodyType: "json",
|
|
31396
31941
|
});
|
|
31397
|
-
|
|
31942
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
31943
|
+
return $tea.cast<DescribeDownloadRecordsResponse>(await this.callApi(params, req, runtime), new DescribeDownloadRecordsResponse({}));
|
|
31944
|
+
} else {
|
|
31945
|
+
return $tea.cast<DescribeDownloadRecordsResponse>(await this.execute(params, req, runtime), new DescribeDownloadRecordsResponse({}));
|
|
31946
|
+
}
|
|
31947
|
+
|
|
31398
31948
|
}
|
|
31399
31949
|
|
|
31400
31950
|
/**
|
|
@@ -31446,7 +31996,12 @@ export default class Client extends OpenApi {
|
|
|
31446
31996
|
reqBodyType: "formData",
|
|
31447
31997
|
bodyType: "json",
|
|
31448
31998
|
});
|
|
31449
|
-
|
|
31999
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32000
|
+
return $tea.cast<DescribeElasticPlanAttributeResponse>(await this.callApi(params, req, runtime), new DescribeElasticPlanAttributeResponse({}));
|
|
32001
|
+
} else {
|
|
32002
|
+
return $tea.cast<DescribeElasticPlanAttributeResponse>(await this.execute(params, req, runtime), new DescribeElasticPlanAttributeResponse({}));
|
|
32003
|
+
}
|
|
32004
|
+
|
|
31450
32005
|
}
|
|
31451
32006
|
|
|
31452
32007
|
/**
|
|
@@ -31518,7 +32073,12 @@ export default class Client extends OpenApi {
|
|
|
31518
32073
|
reqBodyType: "formData",
|
|
31519
32074
|
bodyType: "json",
|
|
31520
32075
|
});
|
|
31521
|
-
|
|
32076
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32077
|
+
return $tea.cast<DescribeElasticPlanJobsResponse>(await this.callApi(params, req, runtime), new DescribeElasticPlanJobsResponse({}));
|
|
32078
|
+
} else {
|
|
32079
|
+
return $tea.cast<DescribeElasticPlanJobsResponse>(await this.execute(params, req, runtime), new DescribeElasticPlanJobsResponse({}));
|
|
32080
|
+
}
|
|
32081
|
+
|
|
31522
32082
|
}
|
|
31523
32083
|
|
|
31524
32084
|
/**
|
|
@@ -31574,7 +32134,12 @@ export default class Client extends OpenApi {
|
|
|
31574
32134
|
reqBodyType: "formData",
|
|
31575
32135
|
bodyType: "json",
|
|
31576
32136
|
});
|
|
31577
|
-
|
|
32137
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32138
|
+
return $tea.cast<DescribeElasticPlanSpecificationsResponse>(await this.callApi(params, req, runtime), new DescribeElasticPlanSpecificationsResponse({}));
|
|
32139
|
+
} else {
|
|
32140
|
+
return $tea.cast<DescribeElasticPlanSpecificationsResponse>(await this.execute(params, req, runtime), new DescribeElasticPlanSpecificationsResponse({}));
|
|
32141
|
+
}
|
|
32142
|
+
|
|
31578
32143
|
}
|
|
31579
32144
|
|
|
31580
32145
|
/**
|
|
@@ -31592,10 +32157,10 @@ export default class Client extends OpenApi {
|
|
|
31592
32157
|
}
|
|
31593
32158
|
|
|
31594
32159
|
/**
|
|
31595
|
-
* Queries scaling plans of an AnalyticDB for MySQL
|
|
32160
|
+
* Queries scaling plans of an AnalyticDB for MySQL cluster.
|
|
31596
32161
|
*
|
|
31597
32162
|
* @remarks
|
|
31598
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
32163
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
31599
32164
|
*
|
|
31600
32165
|
* @param request - DescribeElasticPlansRequest
|
|
31601
32166
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -31646,14 +32211,19 @@ export default class Client extends OpenApi {
|
|
|
31646
32211
|
reqBodyType: "formData",
|
|
31647
32212
|
bodyType: "json",
|
|
31648
32213
|
});
|
|
31649
|
-
|
|
32214
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32215
|
+
return $tea.cast<DescribeElasticPlansResponse>(await this.callApi(params, req, runtime), new DescribeElasticPlansResponse({}));
|
|
32216
|
+
} else {
|
|
32217
|
+
return $tea.cast<DescribeElasticPlansResponse>(await this.execute(params, req, runtime), new DescribeElasticPlansResponse({}));
|
|
32218
|
+
}
|
|
32219
|
+
|
|
31650
32220
|
}
|
|
31651
32221
|
|
|
31652
32222
|
/**
|
|
31653
|
-
* Queries scaling plans of an AnalyticDB for MySQL
|
|
32223
|
+
* Queries scaling plans of an AnalyticDB for MySQL cluster.
|
|
31654
32224
|
*
|
|
31655
32225
|
* @remarks
|
|
31656
|
-
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
32226
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
31657
32227
|
*
|
|
31658
32228
|
* @param request - DescribeElasticPlansRequest
|
|
31659
32229
|
* @returns DescribeElasticPlansResponse
|
|
@@ -31687,7 +32257,12 @@ export default class Client extends OpenApi {
|
|
|
31687
32257
|
reqBodyType: "formData",
|
|
31688
32258
|
bodyType: "json",
|
|
31689
32259
|
});
|
|
31690
|
-
|
|
32260
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32261
|
+
return $tea.cast<DescribeEnabledPrivilegesResponse>(await this.callApi(params, req, runtime), new DescribeEnabledPrivilegesResponse({}));
|
|
32262
|
+
} else {
|
|
32263
|
+
return $tea.cast<DescribeEnabledPrivilegesResponse>(await this.execute(params, req, runtime), new DescribeEnabledPrivilegesResponse({}));
|
|
32264
|
+
}
|
|
32265
|
+
|
|
31691
32266
|
}
|
|
31692
32267
|
|
|
31693
32268
|
/**
|
|
@@ -31773,7 +32348,12 @@ export default class Client extends OpenApi {
|
|
|
31773
32348
|
reqBodyType: "formData",
|
|
31774
32349
|
bodyType: "json",
|
|
31775
32350
|
});
|
|
31776
|
-
|
|
32351
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32352
|
+
return $tea.cast<DescribeExcessivePrimaryKeysResponse>(await this.callApi(params, req, runtime), new DescribeExcessivePrimaryKeysResponse({}));
|
|
32353
|
+
} else {
|
|
32354
|
+
return $tea.cast<DescribeExcessivePrimaryKeysResponse>(await this.execute(params, req, runtime), new DescribeExcessivePrimaryKeysResponse({}));
|
|
32355
|
+
}
|
|
32356
|
+
|
|
31777
32357
|
}
|
|
31778
32358
|
|
|
31779
32359
|
/**
|
|
@@ -31826,7 +32406,12 @@ export default class Client extends OpenApi {
|
|
|
31826
32406
|
reqBodyType: "formData",
|
|
31827
32407
|
bodyType: "json",
|
|
31828
32408
|
});
|
|
31829
|
-
|
|
32409
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32410
|
+
return $tea.cast<DescribeJobResourceUsageResponse>(await this.callApi(params, req, runtime), new DescribeJobResourceUsageResponse({}));
|
|
32411
|
+
} else {
|
|
32412
|
+
return $tea.cast<DescribeJobResourceUsageResponse>(await this.execute(params, req, runtime), new DescribeJobResourceUsageResponse({}));
|
|
32413
|
+
}
|
|
32414
|
+
|
|
31830
32415
|
}
|
|
31831
32416
|
|
|
31832
32417
|
/**
|
|
@@ -31892,7 +32477,12 @@ export default class Client extends OpenApi {
|
|
|
31892
32477
|
reqBodyType: "formData",
|
|
31893
32478
|
bodyType: "json",
|
|
31894
32479
|
});
|
|
31895
|
-
|
|
32480
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32481
|
+
return $tea.cast<DescribePatternPerformanceResponse>(await this.callApi(params, req, runtime), new DescribePatternPerformanceResponse({}));
|
|
32482
|
+
} else {
|
|
32483
|
+
return $tea.cast<DescribePatternPerformanceResponse>(await this.execute(params, req, runtime), new DescribePatternPerformanceResponse({}));
|
|
32484
|
+
}
|
|
32485
|
+
|
|
31896
32486
|
}
|
|
31897
32487
|
|
|
31898
32488
|
/**
|
|
@@ -31961,7 +32551,12 @@ export default class Client extends OpenApi {
|
|
|
31961
32551
|
reqBodyType: "formData",
|
|
31962
32552
|
bodyType: "json",
|
|
31963
32553
|
});
|
|
31964
|
-
|
|
32554
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32555
|
+
return $tea.cast<DescribePerformanceViewAttributeResponse>(await this.callApi(params, req, runtime), new DescribePerformanceViewAttributeResponse({}));
|
|
32556
|
+
} else {
|
|
32557
|
+
return $tea.cast<DescribePerformanceViewAttributeResponse>(await this.execute(params, req, runtime), new DescribePerformanceViewAttributeResponse({}));
|
|
32558
|
+
}
|
|
32559
|
+
|
|
31965
32560
|
}
|
|
31966
32561
|
|
|
31967
32562
|
/**
|
|
@@ -32019,7 +32614,12 @@ export default class Client extends OpenApi {
|
|
|
32019
32614
|
reqBodyType: "formData",
|
|
32020
32615
|
bodyType: "json",
|
|
32021
32616
|
});
|
|
32022
|
-
|
|
32617
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32618
|
+
return $tea.cast<DescribePerformanceViewsResponse>(await this.callApi(params, req, runtime), new DescribePerformanceViewsResponse({}));
|
|
32619
|
+
} else {
|
|
32620
|
+
return $tea.cast<DescribePerformanceViewsResponse>(await this.execute(params, req, runtime), new DescribePerformanceViewsResponse({}));
|
|
32621
|
+
}
|
|
32622
|
+
|
|
32023
32623
|
}
|
|
32024
32624
|
|
|
32025
32625
|
/**
|
|
@@ -32082,7 +32682,12 @@ export default class Client extends OpenApi {
|
|
|
32082
32682
|
reqBodyType: "formData",
|
|
32083
32683
|
bodyType: "json",
|
|
32084
32684
|
});
|
|
32085
|
-
|
|
32685
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32686
|
+
return $tea.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
|
|
32687
|
+
} else {
|
|
32688
|
+
return $tea.cast<DescribeRegionsResponse>(await this.execute(params, req, runtime), new DescribeRegionsResponse({}));
|
|
32689
|
+
}
|
|
32690
|
+
|
|
32086
32691
|
}
|
|
32087
32692
|
|
|
32088
32693
|
/**
|
|
@@ -32164,7 +32769,12 @@ export default class Client extends OpenApi {
|
|
|
32164
32769
|
reqBodyType: "formData",
|
|
32165
32770
|
bodyType: "json",
|
|
32166
32771
|
});
|
|
32167
|
-
|
|
32772
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32773
|
+
return $tea.cast<DescribeSQLPatternsResponse>(await this.callApi(params, req, runtime), new DescribeSQLPatternsResponse({}));
|
|
32774
|
+
} else {
|
|
32775
|
+
return $tea.cast<DescribeSQLPatternsResponse>(await this.execute(params, req, runtime), new DescribeSQLPatternsResponse({}));
|
|
32776
|
+
}
|
|
32777
|
+
|
|
32168
32778
|
}
|
|
32169
32779
|
|
|
32170
32780
|
/**
|
|
@@ -32219,7 +32829,12 @@ export default class Client extends OpenApi {
|
|
|
32219
32829
|
reqBodyType: "formData",
|
|
32220
32830
|
bodyType: "json",
|
|
32221
32831
|
});
|
|
32222
|
-
|
|
32832
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32833
|
+
return $tea.cast<DescribeSchemasResponse>(await this.callApi(params, req, runtime), new DescribeSchemasResponse({}));
|
|
32834
|
+
} else {
|
|
32835
|
+
return $tea.cast<DescribeSchemasResponse>(await this.execute(params, req, runtime), new DescribeSchemasResponse({}));
|
|
32836
|
+
}
|
|
32837
|
+
|
|
32223
32838
|
}
|
|
32224
32839
|
|
|
32225
32840
|
/**
|
|
@@ -32277,7 +32892,12 @@ export default class Client extends OpenApi {
|
|
|
32277
32892
|
reqBodyType: "formData",
|
|
32278
32893
|
bodyType: "json",
|
|
32279
32894
|
});
|
|
32280
|
-
|
|
32895
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32896
|
+
return $tea.cast<DescribeSparkCodeLogResponse>(await this.callApi(params, req, runtime), new DescribeSparkCodeLogResponse({}));
|
|
32897
|
+
} else {
|
|
32898
|
+
return $tea.cast<DescribeSparkCodeLogResponse>(await this.execute(params, req, runtime), new DescribeSparkCodeLogResponse({}));
|
|
32899
|
+
}
|
|
32900
|
+
|
|
32281
32901
|
}
|
|
32282
32902
|
|
|
32283
32903
|
/**
|
|
@@ -32335,7 +32955,12 @@ export default class Client extends OpenApi {
|
|
|
32335
32955
|
reqBodyType: "formData",
|
|
32336
32956
|
bodyType: "json",
|
|
32337
32957
|
});
|
|
32338
|
-
|
|
32958
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
32959
|
+
return $tea.cast<DescribeSparkCodeOutputResponse>(await this.callApi(params, req, runtime), new DescribeSparkCodeOutputResponse({}));
|
|
32960
|
+
} else {
|
|
32961
|
+
return $tea.cast<DescribeSparkCodeOutputResponse>(await this.execute(params, req, runtime), new DescribeSparkCodeOutputResponse({}));
|
|
32962
|
+
}
|
|
32963
|
+
|
|
32339
32964
|
}
|
|
32340
32965
|
|
|
32341
32966
|
/**
|
|
@@ -32393,7 +33018,12 @@ export default class Client extends OpenApi {
|
|
|
32393
33018
|
reqBodyType: "formData",
|
|
32394
33019
|
bodyType: "json",
|
|
32395
33020
|
});
|
|
32396
|
-
|
|
33021
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33022
|
+
return $tea.cast<DescribeSparkCodeWebUiResponse>(await this.callApi(params, req, runtime), new DescribeSparkCodeWebUiResponse({}));
|
|
33023
|
+
} else {
|
|
33024
|
+
return $tea.cast<DescribeSparkCodeWebUiResponse>(await this.execute(params, req, runtime), new DescribeSparkCodeWebUiResponse({}));
|
|
33025
|
+
}
|
|
33026
|
+
|
|
32397
33027
|
}
|
|
32398
33028
|
|
|
32399
33029
|
/**
|
|
@@ -32470,7 +33100,12 @@ export default class Client extends OpenApi {
|
|
|
32470
33100
|
reqBodyType: "formData",
|
|
32471
33101
|
bodyType: "json",
|
|
32472
33102
|
});
|
|
32473
|
-
|
|
33103
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33104
|
+
return $tea.cast<DescribeSqlPatternResponse>(await this.callApi(params, req, runtime), new DescribeSqlPatternResponse({}));
|
|
33105
|
+
} else {
|
|
33106
|
+
return $tea.cast<DescribeSqlPatternResponse>(await this.execute(params, req, runtime), new DescribeSqlPatternResponse({}));
|
|
33107
|
+
}
|
|
33108
|
+
|
|
32474
33109
|
}
|
|
32475
33110
|
|
|
32476
33111
|
/**
|
|
@@ -32490,6 +33125,9 @@ export default class Client extends OpenApi {
|
|
|
32490
33125
|
/**
|
|
32491
33126
|
* Queries the storage resource usage of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
32492
33127
|
*
|
|
33128
|
+
* @remarks
|
|
33129
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
33130
|
+
*
|
|
32493
33131
|
* @param request - DescribeStorageResourceUsageRequest
|
|
32494
33132
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
32495
33133
|
* @returns DescribeStorageResourceUsageResponse
|
|
@@ -32523,12 +33161,20 @@ export default class Client extends OpenApi {
|
|
|
32523
33161
|
reqBodyType: "formData",
|
|
32524
33162
|
bodyType: "json",
|
|
32525
33163
|
});
|
|
32526
|
-
|
|
33164
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33165
|
+
return $tea.cast<DescribeStorageResourceUsageResponse>(await this.callApi(params, req, runtime), new DescribeStorageResourceUsageResponse({}));
|
|
33166
|
+
} else {
|
|
33167
|
+
return $tea.cast<DescribeStorageResourceUsageResponse>(await this.execute(params, req, runtime), new DescribeStorageResourceUsageResponse({}));
|
|
33168
|
+
}
|
|
33169
|
+
|
|
32527
33170
|
}
|
|
32528
33171
|
|
|
32529
33172
|
/**
|
|
32530
33173
|
* Queries the storage resource usage of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
32531
33174
|
*
|
|
33175
|
+
* @remarks
|
|
33176
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
33177
|
+
*
|
|
32532
33178
|
* @param request - DescribeStorageResourceUsageRequest
|
|
32533
33179
|
* @returns DescribeStorageResourceUsageResponse
|
|
32534
33180
|
*/
|
|
@@ -32592,7 +33238,12 @@ export default class Client extends OpenApi {
|
|
|
32592
33238
|
reqBodyType: "formData",
|
|
32593
33239
|
bodyType: "json",
|
|
32594
33240
|
});
|
|
32595
|
-
|
|
33241
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33242
|
+
return $tea.cast<DescribeTableAccessCountResponse>(await this.callApi(params, req, runtime), new DescribeTableAccessCountResponse({}));
|
|
33243
|
+
} else {
|
|
33244
|
+
return $tea.cast<DescribeTableAccessCountResponse>(await this.execute(params, req, runtime), new DescribeTableAccessCountResponse({}));
|
|
33245
|
+
}
|
|
33246
|
+
|
|
32596
33247
|
}
|
|
32597
33248
|
|
|
32598
33249
|
/**
|
|
@@ -32649,7 +33300,12 @@ export default class Client extends OpenApi {
|
|
|
32649
33300
|
reqBodyType: "formData",
|
|
32650
33301
|
bodyType: "json",
|
|
32651
33302
|
});
|
|
32652
|
-
|
|
33303
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33304
|
+
return $tea.cast<DescribeTablesResponse>(await this.callApi(params, req, runtime), new DescribeTablesResponse({}));
|
|
33305
|
+
} else {
|
|
33306
|
+
return $tea.cast<DescribeTablesResponse>(await this.execute(params, req, runtime), new DescribeTablesResponse({}));
|
|
33307
|
+
}
|
|
33308
|
+
|
|
32653
33309
|
}
|
|
32654
33310
|
|
|
32655
33311
|
/**
|
|
@@ -32694,7 +33350,12 @@ export default class Client extends OpenApi {
|
|
|
32694
33350
|
reqBodyType: "formData",
|
|
32695
33351
|
bodyType: "json",
|
|
32696
33352
|
});
|
|
32697
|
-
|
|
33353
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33354
|
+
return $tea.cast<DescribeUserQuotaResponse>(await this.callApi(params, req, runtime), new DescribeUserQuotaResponse({}));
|
|
33355
|
+
} else {
|
|
33356
|
+
return $tea.cast<DescribeUserQuotaResponse>(await this.execute(params, req, runtime), new DescribeUserQuotaResponse({}));
|
|
33357
|
+
}
|
|
33358
|
+
|
|
32698
33359
|
}
|
|
32699
33360
|
|
|
32700
33361
|
/**
|
|
@@ -32740,7 +33401,12 @@ export default class Client extends OpenApi {
|
|
|
32740
33401
|
reqBodyType: "formData",
|
|
32741
33402
|
bodyType: "json",
|
|
32742
33403
|
});
|
|
32743
|
-
|
|
33404
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33405
|
+
return $tea.cast<DetachUserENIResponse>(await this.callApi(params, req, runtime), new DetachUserENIResponse({}));
|
|
33406
|
+
} else {
|
|
33407
|
+
return $tea.cast<DetachUserENIResponse>(await this.execute(params, req, runtime), new DetachUserENIResponse({}));
|
|
33408
|
+
}
|
|
33409
|
+
|
|
32744
33410
|
}
|
|
32745
33411
|
|
|
32746
33412
|
/**
|
|
@@ -32790,7 +33456,12 @@ export default class Client extends OpenApi {
|
|
|
32790
33456
|
reqBodyType: "formData",
|
|
32791
33457
|
bodyType: "json",
|
|
32792
33458
|
});
|
|
32793
|
-
|
|
33459
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33460
|
+
return $tea.cast<DisableElasticPlanResponse>(await this.callApi(params, req, runtime), new DisableElasticPlanResponse({}));
|
|
33461
|
+
} else {
|
|
33462
|
+
return $tea.cast<DisableElasticPlanResponse>(await this.execute(params, req, runtime), new DisableElasticPlanResponse({}));
|
|
33463
|
+
}
|
|
33464
|
+
|
|
32794
33465
|
}
|
|
32795
33466
|
|
|
32796
33467
|
/**
|
|
@@ -32894,7 +33565,12 @@ export default class Client extends OpenApi {
|
|
|
32894
33565
|
reqBodyType: "formData",
|
|
32895
33566
|
bodyType: "json",
|
|
32896
33567
|
});
|
|
32897
|
-
|
|
33568
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33569
|
+
return $tea.cast<DownloadDiagnosisRecordsResponse>(await this.callApi(params, req, runtime), new DownloadDiagnosisRecordsResponse({}));
|
|
33570
|
+
} else {
|
|
33571
|
+
return $tea.cast<DownloadDiagnosisRecordsResponse>(await this.execute(params, req, runtime), new DownloadDiagnosisRecordsResponse({}));
|
|
33572
|
+
}
|
|
33573
|
+
|
|
32898
33574
|
}
|
|
32899
33575
|
|
|
32900
33576
|
/**
|
|
@@ -32946,7 +33622,12 @@ export default class Client extends OpenApi {
|
|
|
32946
33622
|
reqBodyType: "formData",
|
|
32947
33623
|
bodyType: "json",
|
|
32948
33624
|
});
|
|
32949
|
-
|
|
33625
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33626
|
+
return $tea.cast<EnableElasticPlanResponse>(await this.callApi(params, req, runtime), new EnableElasticPlanResponse({}));
|
|
33627
|
+
} else {
|
|
33628
|
+
return $tea.cast<EnableElasticPlanResponse>(await this.execute(params, req, runtime), new EnableElasticPlanResponse({}));
|
|
33629
|
+
}
|
|
33630
|
+
|
|
32950
33631
|
}
|
|
32951
33632
|
|
|
32952
33633
|
/**
|
|
@@ -33000,7 +33681,12 @@ export default class Client extends OpenApi {
|
|
|
33000
33681
|
reqBodyType: "formData",
|
|
33001
33682
|
bodyType: "json",
|
|
33002
33683
|
});
|
|
33003
|
-
|
|
33684
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33685
|
+
return $tea.cast<ExistRunningSQLEngineResponse>(await this.callApi(params, req, runtime), new ExistRunningSQLEngineResponse({}));
|
|
33686
|
+
} else {
|
|
33687
|
+
return $tea.cast<ExistRunningSQLEngineResponse>(await this.execute(params, req, runtime), new ExistRunningSQLEngineResponse({}));
|
|
33688
|
+
}
|
|
33689
|
+
|
|
33004
33690
|
}
|
|
33005
33691
|
|
|
33006
33692
|
/**
|
|
@@ -33075,7 +33761,12 @@ export default class Client extends OpenApi {
|
|
|
33075
33761
|
reqBodyType: "formData",
|
|
33076
33762
|
bodyType: "json",
|
|
33077
33763
|
});
|
|
33078
|
-
|
|
33764
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33765
|
+
return $tea.cast<GetDatabaseObjectsResponse>(await this.callApi(params, req, runtime), new GetDatabaseObjectsResponse({}));
|
|
33766
|
+
} else {
|
|
33767
|
+
return $tea.cast<GetDatabaseObjectsResponse>(await this.execute(params, req, runtime), new GetDatabaseObjectsResponse({}));
|
|
33768
|
+
}
|
|
33769
|
+
|
|
33079
33770
|
}
|
|
33080
33771
|
|
|
33081
33772
|
/**
|
|
@@ -33097,9 +33788,9 @@ export default class Client extends OpenApi {
|
|
|
33097
33788
|
* Queries the information about the retry log of a Spark application.
|
|
33098
33789
|
*
|
|
33099
33790
|
* @remarks
|
|
33100
|
-
*
|
|
33101
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
33791
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
33102
33792
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
33793
|
+
* > 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.
|
|
33103
33794
|
*
|
|
33104
33795
|
* @param request - GetSparkAppAttemptLogRequest
|
|
33105
33796
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -33140,16 +33831,21 @@ export default class Client extends OpenApi {
|
|
|
33140
33831
|
reqBodyType: "formData",
|
|
33141
33832
|
bodyType: "json",
|
|
33142
33833
|
});
|
|
33143
|
-
|
|
33834
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33835
|
+
return $tea.cast<GetSparkAppAttemptLogResponse>(await this.callApi(params, req, runtime), new GetSparkAppAttemptLogResponse({}));
|
|
33836
|
+
} else {
|
|
33837
|
+
return $tea.cast<GetSparkAppAttemptLogResponse>(await this.execute(params, req, runtime), new GetSparkAppAttemptLogResponse({}));
|
|
33838
|
+
}
|
|
33839
|
+
|
|
33144
33840
|
}
|
|
33145
33841
|
|
|
33146
33842
|
/**
|
|
33147
33843
|
* Queries the information about the retry log of a Spark application.
|
|
33148
33844
|
*
|
|
33149
33845
|
* @remarks
|
|
33150
|
-
*
|
|
33151
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
33846
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
33152
33847
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
33848
|
+
* > 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.
|
|
33153
33849
|
*
|
|
33154
33850
|
* @param request - GetSparkAppAttemptLogRequest
|
|
33155
33851
|
* @returns GetSparkAppAttemptLogResponse
|
|
@@ -33198,7 +33894,12 @@ export default class Client extends OpenApi {
|
|
|
33198
33894
|
reqBodyType: "formData",
|
|
33199
33895
|
bodyType: "json",
|
|
33200
33896
|
});
|
|
33201
|
-
|
|
33897
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33898
|
+
return $tea.cast<GetSparkAppInfoResponse>(await this.callApi(params, req, runtime), new GetSparkAppInfoResponse({}));
|
|
33899
|
+
} else {
|
|
33900
|
+
return $tea.cast<GetSparkAppInfoResponse>(await this.execute(params, req, runtime), new GetSparkAppInfoResponse({}));
|
|
33901
|
+
}
|
|
33902
|
+
|
|
33202
33903
|
}
|
|
33203
33904
|
|
|
33204
33905
|
/**
|
|
@@ -33268,7 +33969,12 @@ export default class Client extends OpenApi {
|
|
|
33268
33969
|
reqBodyType: "formData",
|
|
33269
33970
|
bodyType: "json",
|
|
33270
33971
|
});
|
|
33271
|
-
|
|
33972
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
33973
|
+
return $tea.cast<GetSparkAppLogResponse>(await this.callApi(params, req, runtime), new GetSparkAppLogResponse({}));
|
|
33974
|
+
} else {
|
|
33975
|
+
return $tea.cast<GetSparkAppLogResponse>(await this.execute(params, req, runtime), new GetSparkAppLogResponse({}));
|
|
33976
|
+
}
|
|
33977
|
+
|
|
33272
33978
|
}
|
|
33273
33979
|
|
|
33274
33980
|
/**
|
|
@@ -33326,7 +34032,12 @@ export default class Client extends OpenApi {
|
|
|
33326
34032
|
reqBodyType: "formData",
|
|
33327
34033
|
bodyType: "json",
|
|
33328
34034
|
});
|
|
33329
|
-
|
|
34035
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34036
|
+
return $tea.cast<GetSparkAppMetricsResponse>(await this.callApi(params, req, runtime), new GetSparkAppMetricsResponse({}));
|
|
34037
|
+
} else {
|
|
34038
|
+
return $tea.cast<GetSparkAppMetricsResponse>(await this.execute(params, req, runtime), new GetSparkAppMetricsResponse({}));
|
|
34039
|
+
}
|
|
34040
|
+
|
|
33330
34041
|
}
|
|
33331
34042
|
|
|
33332
34043
|
/**
|
|
@@ -33384,7 +34095,12 @@ export default class Client extends OpenApi {
|
|
|
33384
34095
|
reqBodyType: "formData",
|
|
33385
34096
|
bodyType: "json",
|
|
33386
34097
|
});
|
|
33387
|
-
|
|
34098
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34099
|
+
return $tea.cast<GetSparkAppStateResponse>(await this.callApi(params, req, runtime), new GetSparkAppStateResponse({}));
|
|
34100
|
+
} else {
|
|
34101
|
+
return $tea.cast<GetSparkAppStateResponse>(await this.execute(params, req, runtime), new GetSparkAppStateResponse({}));
|
|
34102
|
+
}
|
|
34103
|
+
|
|
33388
34104
|
}
|
|
33389
34105
|
|
|
33390
34106
|
/**
|
|
@@ -33442,7 +34158,12 @@ export default class Client extends OpenApi {
|
|
|
33442
34158
|
reqBodyType: "formData",
|
|
33443
34159
|
bodyType: "json",
|
|
33444
34160
|
});
|
|
33445
|
-
|
|
34161
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34162
|
+
return $tea.cast<GetSparkAppWebUiAddressResponse>(await this.callApi(params, req, runtime), new GetSparkAppWebUiAddressResponse({}));
|
|
34163
|
+
} else {
|
|
34164
|
+
return $tea.cast<GetSparkAppWebUiAddressResponse>(await this.execute(params, req, runtime), new GetSparkAppWebUiAddressResponse({}));
|
|
34165
|
+
}
|
|
34166
|
+
|
|
33446
34167
|
}
|
|
33447
34168
|
|
|
33448
34169
|
/**
|
|
@@ -33494,7 +34215,12 @@ export default class Client extends OpenApi {
|
|
|
33494
34215
|
reqBodyType: "formData",
|
|
33495
34216
|
bodyType: "json",
|
|
33496
34217
|
});
|
|
33497
|
-
|
|
34218
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34219
|
+
return $tea.cast<GetSparkConfigLogPathResponse>(await this.callApi(params, req, runtime), new GetSparkConfigLogPathResponse({}));
|
|
34220
|
+
} else {
|
|
34221
|
+
return $tea.cast<GetSparkConfigLogPathResponse>(await this.execute(params, req, runtime), new GetSparkConfigLogPathResponse({}));
|
|
34222
|
+
}
|
|
34223
|
+
|
|
33498
34224
|
}
|
|
33499
34225
|
|
|
33500
34226
|
/**
|
|
@@ -33546,7 +34272,12 @@ export default class Client extends OpenApi {
|
|
|
33546
34272
|
reqBodyType: "formData",
|
|
33547
34273
|
bodyType: "json",
|
|
33548
34274
|
});
|
|
33549
|
-
|
|
34275
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34276
|
+
return $tea.cast<GetSparkDefinitionsResponse>(await this.callApi(params, req, runtime), new GetSparkDefinitionsResponse({}));
|
|
34277
|
+
} else {
|
|
34278
|
+
return $tea.cast<GetSparkDefinitionsResponse>(await this.execute(params, req, runtime), new GetSparkDefinitionsResponse({}));
|
|
34279
|
+
}
|
|
34280
|
+
|
|
33550
34281
|
}
|
|
33551
34282
|
|
|
33552
34283
|
/**
|
|
@@ -33598,7 +34329,12 @@ export default class Client extends OpenApi {
|
|
|
33598
34329
|
reqBodyType: "formData",
|
|
33599
34330
|
bodyType: "json",
|
|
33600
34331
|
});
|
|
33601
|
-
|
|
34332
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34333
|
+
return $tea.cast<GetSparkLogAnalyzeTaskResponse>(await this.callApi(params, req, runtime), new GetSparkLogAnalyzeTaskResponse({}));
|
|
34334
|
+
} else {
|
|
34335
|
+
return $tea.cast<GetSparkLogAnalyzeTaskResponse>(await this.execute(params, req, runtime), new GetSparkLogAnalyzeTaskResponse({}));
|
|
34336
|
+
}
|
|
34337
|
+
|
|
33602
34338
|
}
|
|
33603
34339
|
|
|
33604
34340
|
/**
|
|
@@ -33654,7 +34390,12 @@ export default class Client extends OpenApi {
|
|
|
33654
34390
|
reqBodyType: "formData",
|
|
33655
34391
|
bodyType: "json",
|
|
33656
34392
|
});
|
|
33657
|
-
|
|
34393
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34394
|
+
return $tea.cast<GetSparkSQLEngineStateResponse>(await this.callApi(params, req, runtime), new GetSparkSQLEngineStateResponse({}));
|
|
34395
|
+
} else {
|
|
34396
|
+
return $tea.cast<GetSparkSQLEngineStateResponse>(await this.execute(params, req, runtime), new GetSparkSQLEngineStateResponse({}));
|
|
34397
|
+
}
|
|
34398
|
+
|
|
33658
34399
|
}
|
|
33659
34400
|
|
|
33660
34401
|
/**
|
|
@@ -33710,7 +34451,12 @@ export default class Client extends OpenApi {
|
|
|
33710
34451
|
reqBodyType: "formData",
|
|
33711
34452
|
bodyType: "json",
|
|
33712
34453
|
});
|
|
33713
|
-
|
|
34454
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34455
|
+
return $tea.cast<GetSparkTemplateFileContentResponse>(await this.callApi(params, req, runtime), new GetSparkTemplateFileContentResponse({}));
|
|
34456
|
+
} else {
|
|
34457
|
+
return $tea.cast<GetSparkTemplateFileContentResponse>(await this.execute(params, req, runtime), new GetSparkTemplateFileContentResponse({}));
|
|
34458
|
+
}
|
|
34459
|
+
|
|
33714
34460
|
}
|
|
33715
34461
|
|
|
33716
34462
|
/**
|
|
@@ -33762,7 +34508,12 @@ export default class Client extends OpenApi {
|
|
|
33762
34508
|
reqBodyType: "formData",
|
|
33763
34509
|
bodyType: "json",
|
|
33764
34510
|
});
|
|
33765
|
-
|
|
34511
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34512
|
+
return $tea.cast<GetSparkTemplateFolderTreeResponse>(await this.callApi(params, req, runtime), new GetSparkTemplateFolderTreeResponse({}));
|
|
34513
|
+
} else {
|
|
34514
|
+
return $tea.cast<GetSparkTemplateFolderTreeResponse>(await this.execute(params, req, runtime), new GetSparkTemplateFolderTreeResponse({}));
|
|
34515
|
+
}
|
|
34516
|
+
|
|
33766
34517
|
}
|
|
33767
34518
|
|
|
33768
34519
|
/**
|
|
@@ -33785,9 +34536,9 @@ export default class Client extends OpenApi {
|
|
|
33785
34536
|
* Queries the directory structure of Spark applications.
|
|
33786
34537
|
*
|
|
33787
34538
|
* @remarks
|
|
33788
|
-
*
|
|
33789
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
34539
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
33790
34540
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
34541
|
+
* > 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.
|
|
33791
34542
|
*
|
|
33792
34543
|
* @param request - GetSparkTemplateFullTreeRequest
|
|
33793
34544
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -33814,16 +34565,21 @@ export default class Client extends OpenApi {
|
|
|
33814
34565
|
reqBodyType: "formData",
|
|
33815
34566
|
bodyType: "json",
|
|
33816
34567
|
});
|
|
33817
|
-
|
|
34568
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34569
|
+
return $tea.cast<GetSparkTemplateFullTreeResponse>(await this.callApi(params, req, runtime), new GetSparkTemplateFullTreeResponse({}));
|
|
34570
|
+
} else {
|
|
34571
|
+
return $tea.cast<GetSparkTemplateFullTreeResponse>(await this.execute(params, req, runtime), new GetSparkTemplateFullTreeResponse({}));
|
|
34572
|
+
}
|
|
34573
|
+
|
|
33818
34574
|
}
|
|
33819
34575
|
|
|
33820
34576
|
/**
|
|
33821
34577
|
* Queries the directory structure of Spark applications.
|
|
33822
34578
|
*
|
|
33823
34579
|
* @remarks
|
|
33824
|
-
*
|
|
33825
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
34580
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
33826
34581
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
34582
|
+
* > 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.
|
|
33827
34583
|
*
|
|
33828
34584
|
* @param request - GetSparkTemplateFullTreeRequest
|
|
33829
34585
|
* @returns GetSparkTemplateFullTreeResponse
|
|
@@ -33873,7 +34629,12 @@ export default class Client extends OpenApi {
|
|
|
33873
34629
|
reqBodyType: "formData",
|
|
33874
34630
|
bodyType: "json",
|
|
33875
34631
|
});
|
|
33876
|
-
|
|
34632
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34633
|
+
return $tea.cast<GetTableResponse>(await this.callApi(params, req, runtime), new GetTableResponse({}));
|
|
34634
|
+
} else {
|
|
34635
|
+
return $tea.cast<GetTableResponse>(await this.execute(params, req, runtime), new GetTableResponse({}));
|
|
34636
|
+
}
|
|
34637
|
+
|
|
33877
34638
|
}
|
|
33878
34639
|
|
|
33879
34640
|
/**
|
|
@@ -33943,7 +34704,12 @@ export default class Client extends OpenApi {
|
|
|
33943
34704
|
reqBodyType: "formData",
|
|
33944
34705
|
bodyType: "json",
|
|
33945
34706
|
});
|
|
33946
|
-
|
|
34707
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34708
|
+
return $tea.cast<GetTableColumnsResponse>(await this.callApi(params, req, runtime), new GetTableColumnsResponse({}));
|
|
34709
|
+
} else {
|
|
34710
|
+
return $tea.cast<GetTableColumnsResponse>(await this.execute(params, req, runtime), new GetTableColumnsResponse({}));
|
|
34711
|
+
}
|
|
34712
|
+
|
|
33947
34713
|
}
|
|
33948
34714
|
|
|
33949
34715
|
/**
|
|
@@ -34005,7 +34771,12 @@ export default class Client extends OpenApi {
|
|
|
34005
34771
|
reqBodyType: "formData",
|
|
34006
34772
|
bodyType: "json",
|
|
34007
34773
|
});
|
|
34008
|
-
|
|
34774
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34775
|
+
return $tea.cast<GetTableDDLResponse>(await this.callApi(params, req, runtime), new GetTableDDLResponse({}));
|
|
34776
|
+
} else {
|
|
34777
|
+
return $tea.cast<GetTableDDLResponse>(await this.execute(params, req, runtime), new GetTableDDLResponse({}));
|
|
34778
|
+
}
|
|
34779
|
+
|
|
34009
34780
|
}
|
|
34010
34781
|
|
|
34011
34782
|
/**
|
|
@@ -34087,7 +34858,12 @@ export default class Client extends OpenApi {
|
|
|
34087
34858
|
reqBodyType: "formData",
|
|
34088
34859
|
bodyType: "json",
|
|
34089
34860
|
});
|
|
34090
|
-
|
|
34861
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34862
|
+
return $tea.cast<GetTableObjectsResponse>(await this.callApi(params, req, runtime), new GetTableObjectsResponse({}));
|
|
34863
|
+
} else {
|
|
34864
|
+
return $tea.cast<GetTableObjectsResponse>(await this.execute(params, req, runtime), new GetTableObjectsResponse({}));
|
|
34865
|
+
}
|
|
34866
|
+
|
|
34091
34867
|
}
|
|
34092
34868
|
|
|
34093
34869
|
/**
|
|
@@ -34145,7 +34921,12 @@ export default class Client extends OpenApi {
|
|
|
34145
34921
|
reqBodyType: "formData",
|
|
34146
34922
|
bodyType: "json",
|
|
34147
34923
|
});
|
|
34148
|
-
|
|
34924
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
34925
|
+
return $tea.cast<GetViewDDLResponse>(await this.callApi(params, req, runtime), new GetViewDDLResponse({}));
|
|
34926
|
+
} else {
|
|
34927
|
+
return $tea.cast<GetViewDDLResponse>(await this.execute(params, req, runtime), new GetViewDDLResponse({}));
|
|
34928
|
+
}
|
|
34929
|
+
|
|
34149
34930
|
}
|
|
34150
34931
|
|
|
34151
34932
|
/**
|
|
@@ -34227,7 +35008,12 @@ export default class Client extends OpenApi {
|
|
|
34227
35008
|
reqBodyType: "formData",
|
|
34228
35009
|
bodyType: "json",
|
|
34229
35010
|
});
|
|
34230
|
-
|
|
35011
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35012
|
+
return $tea.cast<GetViewObjectsResponse>(await this.callApi(params, req, runtime), new GetViewObjectsResponse({}));
|
|
35013
|
+
} else {
|
|
35014
|
+
return $tea.cast<GetViewObjectsResponse>(await this.execute(params, req, runtime), new GetViewObjectsResponse({}));
|
|
35015
|
+
}
|
|
35016
|
+
|
|
34231
35017
|
}
|
|
34232
35018
|
|
|
34233
35019
|
/**
|
|
@@ -34284,7 +35070,12 @@ export default class Client extends OpenApi {
|
|
|
34284
35070
|
reqBodyType: "formData",
|
|
34285
35071
|
bodyType: "json",
|
|
34286
35072
|
});
|
|
34287
|
-
|
|
35073
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35074
|
+
return $tea.cast<KillSparkAppResponse>(await this.callApi(params, req, runtime), new KillSparkAppResponse({}));
|
|
35075
|
+
} else {
|
|
35076
|
+
return $tea.cast<KillSparkAppResponse>(await this.execute(params, req, runtime), new KillSparkAppResponse({}));
|
|
35077
|
+
}
|
|
35078
|
+
|
|
34288
35079
|
}
|
|
34289
35080
|
|
|
34290
35081
|
/**
|
|
@@ -34336,7 +35127,12 @@ export default class Client extends OpenApi {
|
|
|
34336
35127
|
reqBodyType: "formData",
|
|
34337
35128
|
bodyType: "json",
|
|
34338
35129
|
});
|
|
34339
|
-
|
|
35130
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35131
|
+
return $tea.cast<KillSparkLogAnalyzeTaskResponse>(await this.callApi(params, req, runtime), new KillSparkLogAnalyzeTaskResponse({}));
|
|
35132
|
+
} else {
|
|
35133
|
+
return $tea.cast<KillSparkLogAnalyzeTaskResponse>(await this.execute(params, req, runtime), new KillSparkLogAnalyzeTaskResponse({}));
|
|
35134
|
+
}
|
|
35135
|
+
|
|
34340
35136
|
}
|
|
34341
35137
|
|
|
34342
35138
|
/**
|
|
@@ -34392,7 +35188,12 @@ export default class Client extends OpenApi {
|
|
|
34392
35188
|
reqBodyType: "formData",
|
|
34393
35189
|
bodyType: "json",
|
|
34394
35190
|
});
|
|
34395
|
-
|
|
35191
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35192
|
+
return $tea.cast<KillSparkSQLEngineResponse>(await this.callApi(params, req, runtime), new KillSparkSQLEngineResponse({}));
|
|
35193
|
+
} else {
|
|
35194
|
+
return $tea.cast<KillSparkSQLEngineResponse>(await this.execute(params, req, runtime), new KillSparkSQLEngineResponse({}));
|
|
35195
|
+
}
|
|
35196
|
+
|
|
34396
35197
|
}
|
|
34397
35198
|
|
|
34398
35199
|
/**
|
|
@@ -34456,7 +35257,12 @@ export default class Client extends OpenApi {
|
|
|
34456
35257
|
reqBodyType: "formData",
|
|
34457
35258
|
bodyType: "json",
|
|
34458
35259
|
});
|
|
34459
|
-
|
|
35260
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35261
|
+
return $tea.cast<ListSparkAppAttemptsResponse>(await this.callApi(params, req, runtime), new ListSparkAppAttemptsResponse({}));
|
|
35262
|
+
} else {
|
|
35263
|
+
return $tea.cast<ListSparkAppAttemptsResponse>(await this.execute(params, req, runtime), new ListSparkAppAttemptsResponse({}));
|
|
35264
|
+
}
|
|
35265
|
+
|
|
34460
35266
|
}
|
|
34461
35267
|
|
|
34462
35268
|
/**
|
|
@@ -34515,7 +35321,12 @@ export default class Client extends OpenApi {
|
|
|
34515
35321
|
reqBodyType: "formData",
|
|
34516
35322
|
bodyType: "json",
|
|
34517
35323
|
});
|
|
34518
|
-
|
|
35324
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35325
|
+
return $tea.cast<ListSparkAppsResponse>(await this.callApi(params, req, runtime), new ListSparkAppsResponse({}));
|
|
35326
|
+
} else {
|
|
35327
|
+
return $tea.cast<ListSparkAppsResponse>(await this.execute(params, req, runtime), new ListSparkAppsResponse({}));
|
|
35328
|
+
}
|
|
35329
|
+
|
|
34519
35330
|
}
|
|
34520
35331
|
|
|
34521
35332
|
/**
|
|
@@ -34570,7 +35381,12 @@ export default class Client extends OpenApi {
|
|
|
34570
35381
|
reqBodyType: "formData",
|
|
34571
35382
|
bodyType: "json",
|
|
34572
35383
|
});
|
|
34573
|
-
|
|
35384
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35385
|
+
return $tea.cast<ListSparkLogAnalyzeTasksResponse>(await this.callApi(params, req, runtime), new ListSparkLogAnalyzeTasksResponse({}));
|
|
35386
|
+
} else {
|
|
35387
|
+
return $tea.cast<ListSparkLogAnalyzeTasksResponse>(await this.execute(params, req, runtime), new ListSparkLogAnalyzeTasksResponse({}));
|
|
35388
|
+
}
|
|
35389
|
+
|
|
34574
35390
|
}
|
|
34575
35391
|
|
|
34576
35392
|
/**
|
|
@@ -34593,9 +35409,9 @@ export default class Client extends OpenApi {
|
|
|
34593
35409
|
* Queries all Spark template file IDs of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
34594
35410
|
*
|
|
34595
35411
|
* @remarks
|
|
34596
|
-
*
|
|
34597
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
35412
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
34598
35413
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
35414
|
+
* > 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.
|
|
34599
35415
|
*
|
|
34600
35416
|
* @param request - ListSparkTemplateFileIdsRequest
|
|
34601
35417
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -34622,16 +35438,21 @@ export default class Client extends OpenApi {
|
|
|
34622
35438
|
reqBodyType: "formData",
|
|
34623
35439
|
bodyType: "json",
|
|
34624
35440
|
});
|
|
34625
|
-
|
|
35441
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35442
|
+
return $tea.cast<ListSparkTemplateFileIdsResponse>(await this.callApi(params, req, runtime), new ListSparkTemplateFileIdsResponse({}));
|
|
35443
|
+
} else {
|
|
35444
|
+
return $tea.cast<ListSparkTemplateFileIdsResponse>(await this.execute(params, req, runtime), new ListSparkTemplateFileIdsResponse({}));
|
|
35445
|
+
}
|
|
35446
|
+
|
|
34626
35447
|
}
|
|
34627
35448
|
|
|
34628
35449
|
/**
|
|
34629
35450
|
* Queries all Spark template file IDs of an AnalyticDB for MySQL Data Lakehouse Edition (V3.0) cluster.
|
|
34630
35451
|
*
|
|
34631
35452
|
* @remarks
|
|
34632
|
-
*
|
|
34633
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
35453
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
34634
35454
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
35455
|
+
* > 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.
|
|
34635
35456
|
*
|
|
34636
35457
|
* @param request - ListSparkTemplateFileIdsRequest
|
|
34637
35458
|
* @returns ListSparkTemplateFileIdsResponse
|
|
@@ -34672,7 +35493,12 @@ export default class Client extends OpenApi {
|
|
|
34672
35493
|
reqBodyType: "formData",
|
|
34673
35494
|
bodyType: "json",
|
|
34674
35495
|
});
|
|
34675
|
-
|
|
35496
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35497
|
+
return $tea.cast<LoadSampleDataSetResponse>(await this.callApi(params, req, runtime), new LoadSampleDataSetResponse({}));
|
|
35498
|
+
} else {
|
|
35499
|
+
return $tea.cast<LoadSampleDataSetResponse>(await this.execute(params, req, runtime), new LoadSampleDataSetResponse({}));
|
|
35500
|
+
}
|
|
35501
|
+
|
|
34676
35502
|
}
|
|
34677
35503
|
|
|
34678
35504
|
/**
|
|
@@ -34732,7 +35558,12 @@ export default class Client extends OpenApi {
|
|
|
34732
35558
|
reqBodyType: "formData",
|
|
34733
35559
|
bodyType: "json",
|
|
34734
35560
|
});
|
|
34735
|
-
|
|
35561
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35562
|
+
return $tea.cast<ModifyAccountDescriptionResponse>(await this.callApi(params, req, runtime), new ModifyAccountDescriptionResponse({}));
|
|
35563
|
+
} else {
|
|
35564
|
+
return $tea.cast<ModifyAccountDescriptionResponse>(await this.execute(params, req, runtime), new ModifyAccountDescriptionResponse({}));
|
|
35565
|
+
}
|
|
35566
|
+
|
|
34736
35567
|
}
|
|
34737
35568
|
|
|
34738
35569
|
/**
|
|
@@ -34798,7 +35629,12 @@ export default class Client extends OpenApi {
|
|
|
34798
35629
|
reqBodyType: "formData",
|
|
34799
35630
|
bodyType: "json",
|
|
34800
35631
|
});
|
|
34801
|
-
|
|
35632
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35633
|
+
return $tea.cast<ModifyAccountPrivilegesResponse>(await this.callApi(params, req, runtime), new ModifyAccountPrivilegesResponse({}));
|
|
35634
|
+
} else {
|
|
35635
|
+
return $tea.cast<ModifyAccountPrivilegesResponse>(await this.execute(params, req, runtime), new ModifyAccountPrivilegesResponse({}));
|
|
35636
|
+
}
|
|
35637
|
+
|
|
34802
35638
|
}
|
|
34803
35639
|
|
|
34804
35640
|
/**
|
|
@@ -34874,7 +35710,12 @@ export default class Client extends OpenApi {
|
|
|
34874
35710
|
reqBodyType: "formData",
|
|
34875
35711
|
bodyType: "json",
|
|
34876
35712
|
});
|
|
34877
|
-
|
|
35713
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35714
|
+
return $tea.cast<ModifyAuditLogConfigResponse>(await this.callApi(params, req, runtime), new ModifyAuditLogConfigResponse({}));
|
|
35715
|
+
} else {
|
|
35716
|
+
return $tea.cast<ModifyAuditLogConfigResponse>(await this.execute(params, req, runtime), new ModifyAuditLogConfigResponse({}));
|
|
35717
|
+
}
|
|
35718
|
+
|
|
34878
35719
|
}
|
|
34879
35720
|
|
|
34880
35721
|
/**
|
|
@@ -34958,7 +35799,12 @@ export default class Client extends OpenApi {
|
|
|
34958
35799
|
reqBodyType: "formData",
|
|
34959
35800
|
bodyType: "json",
|
|
34960
35801
|
});
|
|
34961
|
-
|
|
35802
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35803
|
+
return $tea.cast<ModifyBackupPolicyResponse>(await this.callApi(params, req, runtime), new ModifyBackupPolicyResponse({}));
|
|
35804
|
+
} else {
|
|
35805
|
+
return $tea.cast<ModifyBackupPolicyResponse>(await this.execute(params, req, runtime), new ModifyBackupPolicyResponse({}));
|
|
35806
|
+
}
|
|
35807
|
+
|
|
34962
35808
|
}
|
|
34963
35809
|
|
|
34964
35810
|
/**
|
|
@@ -35022,7 +35868,12 @@ export default class Client extends OpenApi {
|
|
|
35022
35868
|
reqBodyType: "formData",
|
|
35023
35869
|
bodyType: "json",
|
|
35024
35870
|
});
|
|
35025
|
-
|
|
35871
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35872
|
+
return $tea.cast<ModifyClusterAccessWhiteListResponse>(await this.callApi(params, req, runtime), new ModifyClusterAccessWhiteListResponse({}));
|
|
35873
|
+
} else {
|
|
35874
|
+
return $tea.cast<ModifyClusterAccessWhiteListResponse>(await this.execute(params, req, runtime), new ModifyClusterAccessWhiteListResponse({}));
|
|
35875
|
+
}
|
|
35876
|
+
|
|
35026
35877
|
}
|
|
35027
35878
|
|
|
35028
35879
|
/**
|
|
@@ -35082,7 +35933,12 @@ export default class Client extends OpenApi {
|
|
|
35082
35933
|
reqBodyType: "formData",
|
|
35083
35934
|
bodyType: "json",
|
|
35084
35935
|
});
|
|
35085
|
-
|
|
35936
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
35937
|
+
return $tea.cast<ModifyClusterConnectionStringResponse>(await this.callApi(params, req, runtime), new ModifyClusterConnectionStringResponse({}));
|
|
35938
|
+
} else {
|
|
35939
|
+
return $tea.cast<ModifyClusterConnectionStringResponse>(await this.execute(params, req, runtime), new ModifyClusterConnectionStringResponse({}));
|
|
35940
|
+
}
|
|
35941
|
+
|
|
35086
35942
|
}
|
|
35087
35943
|
|
|
35088
35944
|
/**
|
|
@@ -35138,6 +35994,10 @@ export default class Client extends OpenApi {
|
|
|
35138
35994
|
query["OwnerId"] = request.ownerId;
|
|
35139
35995
|
}
|
|
35140
35996
|
|
|
35997
|
+
if (!Util.isUnset(request.productForm)) {
|
|
35998
|
+
query["ProductForm"] = request.productForm;
|
|
35999
|
+
}
|
|
36000
|
+
|
|
35141
36001
|
if (!Util.isUnset(request.regionId)) {
|
|
35142
36002
|
query["RegionId"] = request.regionId;
|
|
35143
36003
|
}
|
|
@@ -35172,7 +36032,12 @@ export default class Client extends OpenApi {
|
|
|
35172
36032
|
reqBodyType: "formData",
|
|
35173
36033
|
bodyType: "json",
|
|
35174
36034
|
});
|
|
35175
|
-
|
|
36035
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
36036
|
+
return $tea.cast<ModifyDBClusterResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterResponse({}));
|
|
36037
|
+
} else {
|
|
36038
|
+
return $tea.cast<ModifyDBClusterResponse>(await this.execute(params, req, runtime), new ModifyDBClusterResponse({}));
|
|
36039
|
+
}
|
|
36040
|
+
|
|
35176
36041
|
}
|
|
35177
36042
|
|
|
35178
36043
|
/**
|
|
@@ -35230,7 +36095,12 @@ export default class Client extends OpenApi {
|
|
|
35230
36095
|
reqBodyType: "formData",
|
|
35231
36096
|
bodyType: "json",
|
|
35232
36097
|
});
|
|
35233
|
-
|
|
36098
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
36099
|
+
return $tea.cast<ModifyDBClusterDescriptionResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterDescriptionResponse({}));
|
|
36100
|
+
} else {
|
|
36101
|
+
return $tea.cast<ModifyDBClusterDescriptionResponse>(await this.execute(params, req, runtime), new ModifyDBClusterDescriptionResponse({}));
|
|
36102
|
+
}
|
|
36103
|
+
|
|
35234
36104
|
}
|
|
35235
36105
|
|
|
35236
36106
|
/**
|
|
@@ -35282,7 +36152,12 @@ export default class Client extends OpenApi {
|
|
|
35282
36152
|
reqBodyType: "formData",
|
|
35283
36153
|
bodyType: "json",
|
|
35284
36154
|
});
|
|
35285
|
-
|
|
36155
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
36156
|
+
return $tea.cast<ModifyDBClusterMaintainTimeResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterMaintainTimeResponse({}));
|
|
36157
|
+
} else {
|
|
36158
|
+
return $tea.cast<ModifyDBClusterMaintainTimeResponse>(await this.execute(params, req, runtime), new ModifyDBClusterMaintainTimeResponse({}));
|
|
36159
|
+
}
|
|
36160
|
+
|
|
35286
36161
|
}
|
|
35287
36162
|
|
|
35288
36163
|
/**
|
|
@@ -35358,6 +36233,10 @@ export default class Client extends OpenApi {
|
|
|
35358
36233
|
query["MaxComputeResource"] = request.maxComputeResource;
|
|
35359
36234
|
}
|
|
35360
36235
|
|
|
36236
|
+
if (!Util.isUnset(request.maxGpuQuantity)) {
|
|
36237
|
+
query["MaxGpuQuantity"] = request.maxGpuQuantity;
|
|
36238
|
+
}
|
|
36239
|
+
|
|
35361
36240
|
if (!Util.isUnset(request.minClusterCount)) {
|
|
35362
36241
|
query["MinClusterCount"] = request.minClusterCount;
|
|
35363
36242
|
}
|
|
@@ -35366,6 +36245,10 @@ export default class Client extends OpenApi {
|
|
|
35366
36245
|
query["MinComputeResource"] = request.minComputeResource;
|
|
35367
36246
|
}
|
|
35368
36247
|
|
|
36248
|
+
if (!Util.isUnset(request.minGpuQuantity)) {
|
|
36249
|
+
query["MinGpuQuantity"] = request.minGpuQuantity;
|
|
36250
|
+
}
|
|
36251
|
+
|
|
35369
36252
|
if (!Util.isUnset(request.regionId)) {
|
|
35370
36253
|
query["RegionId"] = request.regionId;
|
|
35371
36254
|
}
|
|
@@ -35374,6 +36257,14 @@ export default class Client extends OpenApi {
|
|
|
35374
36257
|
query["Rules"] = request.rulesShrink;
|
|
35375
36258
|
}
|
|
35376
36259
|
|
|
36260
|
+
if (!Util.isUnset(request.specName)) {
|
|
36261
|
+
query["SpecName"] = request.specName;
|
|
36262
|
+
}
|
|
36263
|
+
|
|
36264
|
+
if (!Util.isUnset(request.targetResourceGroupName)) {
|
|
36265
|
+
query["TargetResourceGroupName"] = request.targetResourceGroupName;
|
|
36266
|
+
}
|
|
36267
|
+
|
|
35377
36268
|
let req = new $OpenApi.OpenApiRequest({
|
|
35378
36269
|
query: OpenApiUtil.query(query),
|
|
35379
36270
|
});
|
|
@@ -35388,7 +36279,12 @@ export default class Client extends OpenApi {
|
|
|
35388
36279
|
reqBodyType: "formData",
|
|
35389
36280
|
bodyType: "json",
|
|
35390
36281
|
});
|
|
35391
|
-
|
|
36282
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
36283
|
+
return $tea.cast<ModifyDBResourceGroupResponse>(await this.callApi(params, req, runtime), new ModifyDBResourceGroupResponse({}));
|
|
36284
|
+
} else {
|
|
36285
|
+
return $tea.cast<ModifyDBResourceGroupResponse>(await this.execute(params, req, runtime), new ModifyDBResourceGroupResponse({}));
|
|
36286
|
+
}
|
|
36287
|
+
|
|
35392
36288
|
}
|
|
35393
36289
|
|
|
35394
36290
|
/**
|
|
@@ -35456,7 +36352,12 @@ export default class Client extends OpenApi {
|
|
|
35456
36352
|
reqBodyType: "formData",
|
|
35457
36353
|
bodyType: "json",
|
|
35458
36354
|
});
|
|
35459
|
-
|
|
36355
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
36356
|
+
return $tea.cast<ModifyElasticPlanResponse>(await this.callApi(params, req, runtime), new ModifyElasticPlanResponse({}));
|
|
36357
|
+
} else {
|
|
36358
|
+
return $tea.cast<ModifyElasticPlanResponse>(await this.execute(params, req, runtime), new ModifyElasticPlanResponse({}));
|
|
36359
|
+
}
|
|
36360
|
+
|
|
35460
36361
|
}
|
|
35461
36362
|
|
|
35462
36363
|
/**
|
|
@@ -35535,7 +36436,12 @@ export default class Client extends OpenApi {
|
|
|
35535
36436
|
reqBodyType: "formData",
|
|
35536
36437
|
bodyType: "json",
|
|
35537
36438
|
});
|
|
35538
|
-
|
|
36439
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
36440
|
+
return $tea.cast<ModifyPerformanceViewResponse>(await this.callApi(params, req, runtime), new ModifyPerformanceViewResponse({}));
|
|
36441
|
+
} else {
|
|
36442
|
+
return $tea.cast<ModifyPerformanceViewResponse>(await this.execute(params, req, runtime), new ModifyPerformanceViewResponse({}));
|
|
36443
|
+
}
|
|
36444
|
+
|
|
35539
36445
|
}
|
|
35540
36446
|
|
|
35541
36447
|
/**
|
|
@@ -35588,7 +36494,12 @@ export default class Client extends OpenApi {
|
|
|
35588
36494
|
reqBodyType: "formData",
|
|
35589
36495
|
bodyType: "json",
|
|
35590
36496
|
});
|
|
35591
|
-
|
|
36497
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
36498
|
+
return $tea.cast<PreloadSparkAppMetricsResponse>(await this.callApi(params, req, runtime), new PreloadSparkAppMetricsResponse({}));
|
|
36499
|
+
} else {
|
|
36500
|
+
return $tea.cast<PreloadSparkAppMetricsResponse>(await this.execute(params, req, runtime), new PreloadSparkAppMetricsResponse({}));
|
|
36501
|
+
}
|
|
36502
|
+
|
|
35592
36503
|
}
|
|
35593
36504
|
|
|
35594
36505
|
/**
|
|
@@ -35642,7 +36553,12 @@ export default class Client extends OpenApi {
|
|
|
35642
36553
|
reqBodyType: "formData",
|
|
35643
36554
|
bodyType: "json",
|
|
35644
36555
|
});
|
|
35645
|
-
|
|
36556
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
36557
|
+
return $tea.cast<ReleaseClusterPublicConnectionResponse>(await this.callApi(params, req, runtime), new ReleaseClusterPublicConnectionResponse({}));
|
|
36558
|
+
} else {
|
|
36559
|
+
return $tea.cast<ReleaseClusterPublicConnectionResponse>(await this.execute(params, req, runtime), new ReleaseClusterPublicConnectionResponse({}));
|
|
36560
|
+
}
|
|
36561
|
+
|
|
35646
36562
|
}
|
|
35647
36563
|
|
|
35648
36564
|
/**
|
|
@@ -35700,7 +36616,12 @@ export default class Client extends OpenApi {
|
|
|
35700
36616
|
reqBodyType: "formData",
|
|
35701
36617
|
bodyType: "json",
|
|
35702
36618
|
});
|
|
35703
|
-
|
|
36619
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
36620
|
+
return $tea.cast<RenameSparkTemplateFileResponse>(await this.callApi(params, req, runtime), new RenameSparkTemplateFileResponse({}));
|
|
36621
|
+
} else {
|
|
36622
|
+
return $tea.cast<RenameSparkTemplateFileResponse>(await this.execute(params, req, runtime), new RenameSparkTemplateFileResponse({}));
|
|
36623
|
+
}
|
|
36624
|
+
|
|
35704
36625
|
}
|
|
35705
36626
|
|
|
35706
36627
|
/**
|
|
@@ -35766,7 +36687,12 @@ export default class Client extends OpenApi {
|
|
|
35766
36687
|
reqBodyType: "formData",
|
|
35767
36688
|
bodyType: "json",
|
|
35768
36689
|
});
|
|
35769
|
-
|
|
36690
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
36691
|
+
return $tea.cast<ResetAccountPasswordResponse>(await this.callApi(params, req, runtime), new ResetAccountPasswordResponse({}));
|
|
36692
|
+
} else {
|
|
36693
|
+
return $tea.cast<ResetAccountPasswordResponse>(await this.execute(params, req, runtime), new ResetAccountPasswordResponse({}));
|
|
36694
|
+
}
|
|
36695
|
+
|
|
35770
36696
|
}
|
|
35771
36697
|
|
|
35772
36698
|
/**
|
|
@@ -35787,9 +36713,9 @@ export default class Client extends OpenApi {
|
|
|
35787
36713
|
* Modifies the Spark log configuration.
|
|
35788
36714
|
*
|
|
35789
36715
|
* @remarks
|
|
35790
|
-
*
|
|
35791
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
36716
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
35792
36717
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
36718
|
+
* > 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.
|
|
35793
36719
|
*
|
|
35794
36720
|
* @param request - SetSparkAppLogRootPathRequest
|
|
35795
36721
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -35824,16 +36750,21 @@ export default class Client extends OpenApi {
|
|
|
35824
36750
|
reqBodyType: "formData",
|
|
35825
36751
|
bodyType: "json",
|
|
35826
36752
|
});
|
|
35827
|
-
|
|
36753
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
36754
|
+
return $tea.cast<SetSparkAppLogRootPathResponse>(await this.callApi(params, req, runtime), new SetSparkAppLogRootPathResponse({}));
|
|
36755
|
+
} else {
|
|
36756
|
+
return $tea.cast<SetSparkAppLogRootPathResponse>(await this.execute(params, req, runtime), new SetSparkAppLogRootPathResponse({}));
|
|
36757
|
+
}
|
|
36758
|
+
|
|
35828
36759
|
}
|
|
35829
36760
|
|
|
35830
36761
|
/**
|
|
35831
36762
|
* Modifies the Spark log configuration.
|
|
35832
36763
|
*
|
|
35833
36764
|
* @remarks
|
|
35834
|
-
*
|
|
35835
|
-
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
36765
|
+
* Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
35836
36766
|
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
36767
|
+
* > 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.
|
|
35837
36768
|
*
|
|
35838
36769
|
* @param request - SetSparkAppLogRootPathRequest
|
|
35839
36770
|
* @returns SetSparkAppLogRootPathResponse
|
|
@@ -35900,7 +36831,12 @@ export default class Client extends OpenApi {
|
|
|
35900
36831
|
reqBodyType: "formData",
|
|
35901
36832
|
bodyType: "json",
|
|
35902
36833
|
});
|
|
35903
|
-
|
|
36834
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
36835
|
+
return $tea.cast<StartSparkSQLEngineResponse>(await this.callApi(params, req, runtime), new StartSparkSQLEngineResponse({}));
|
|
36836
|
+
} else {
|
|
36837
|
+
return $tea.cast<StartSparkSQLEngineResponse>(await this.execute(params, req, runtime), new StartSparkSQLEngineResponse({}));
|
|
36838
|
+
}
|
|
36839
|
+
|
|
35904
36840
|
}
|
|
35905
36841
|
|
|
35906
36842
|
/**
|
|
@@ -35980,7 +36916,12 @@ export default class Client extends OpenApi {
|
|
|
35980
36916
|
reqBodyType: "formData",
|
|
35981
36917
|
bodyType: "json",
|
|
35982
36918
|
});
|
|
35983
|
-
|
|
36919
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
36920
|
+
return $tea.cast<SubmitSparkAppResponse>(await this.callApi(params, req, runtime), new SubmitSparkAppResponse({}));
|
|
36921
|
+
} else {
|
|
36922
|
+
return $tea.cast<SubmitSparkAppResponse>(await this.execute(params, req, runtime), new SubmitSparkAppResponse({}));
|
|
36923
|
+
}
|
|
36924
|
+
|
|
35984
36925
|
}
|
|
35985
36926
|
|
|
35986
36927
|
/**
|
|
@@ -36032,7 +36973,12 @@ export default class Client extends OpenApi {
|
|
|
36032
36973
|
reqBodyType: "formData",
|
|
36033
36974
|
bodyType: "json",
|
|
36034
36975
|
});
|
|
36035
|
-
|
|
36976
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
36977
|
+
return $tea.cast<SubmitSparkLogAnalyzeTaskResponse>(await this.callApi(params, req, runtime), new SubmitSparkLogAnalyzeTaskResponse({}));
|
|
36978
|
+
} else {
|
|
36979
|
+
return $tea.cast<SubmitSparkLogAnalyzeTaskResponse>(await this.execute(params, req, runtime), new SubmitSparkLogAnalyzeTaskResponse({}));
|
|
36980
|
+
}
|
|
36981
|
+
|
|
36036
36982
|
}
|
|
36037
36983
|
|
|
36038
36984
|
/**
|
|
@@ -36086,7 +37032,12 @@ export default class Client extends OpenApi {
|
|
|
36086
37032
|
reqBodyType: "formData",
|
|
36087
37033
|
bodyType: "json",
|
|
36088
37034
|
});
|
|
36089
|
-
|
|
37035
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
37036
|
+
return $tea.cast<UnbindAccountResponse>(await this.callApi(params, req, runtime), new UnbindAccountResponse({}));
|
|
37037
|
+
} else {
|
|
37038
|
+
return $tea.cast<UnbindAccountResponse>(await this.execute(params, req, runtime), new UnbindAccountResponse({}));
|
|
37039
|
+
}
|
|
37040
|
+
|
|
36090
37041
|
}
|
|
36091
37042
|
|
|
36092
37043
|
/**
|
|
@@ -36142,7 +37093,12 @@ export default class Client extends OpenApi {
|
|
|
36142
37093
|
reqBodyType: "formData",
|
|
36143
37094
|
bodyType: "json",
|
|
36144
37095
|
});
|
|
36145
|
-
|
|
37096
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
37097
|
+
return $tea.cast<UnbindDBResourceGroupWithUserResponse>(await this.callApi(params, req, runtime), new UnbindDBResourceGroupWithUserResponse({}));
|
|
37098
|
+
} else {
|
|
37099
|
+
return $tea.cast<UnbindDBResourceGroupWithUserResponse>(await this.execute(params, req, runtime), new UnbindDBResourceGroupWithUserResponse({}));
|
|
37100
|
+
}
|
|
37101
|
+
|
|
36146
37102
|
}
|
|
36147
37103
|
|
|
36148
37104
|
/**
|
|
@@ -36204,7 +37160,12 @@ export default class Client extends OpenApi {
|
|
|
36204
37160
|
reqBodyType: "formData",
|
|
36205
37161
|
bodyType: "json",
|
|
36206
37162
|
});
|
|
36207
|
-
|
|
37163
|
+
if (Util.isUnset(this._signatureVersion) || !Util.equalString(this._signatureVersion, "v4")) {
|
|
37164
|
+
return $tea.cast<UpdateSparkTemplateFileResponse>(await this.callApi(params, req, runtime), new UpdateSparkTemplateFileResponse({}));
|
|
37165
|
+
} else {
|
|
37166
|
+
return $tea.cast<UpdateSparkTemplateFileResponse>(await this.execute(params, req, runtime), new UpdateSparkTemplateFileResponse({}));
|
|
37167
|
+
}
|
|
37168
|
+
|
|
36208
37169
|
}
|
|
36209
37170
|
|
|
36210
37171
|
/**
|