@alicloud/adb20211201 2.0.6 → 2.0.8
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 +200 -10
- package/dist/client.js +181 -774
- package/dist/client.js.map +1 -1
- package/package.json +1 -2
- package/src/client.ts +366 -782
package/src/client.ts
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
/**
|
|
3
3
|
*/
|
|
4
4
|
import Util, * as $Util from '@alicloud/tea-util';
|
|
5
|
-
import GatewayClient from '@alicloud/gateway-pop';
|
|
6
5
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
7
6
|
import OpenApiUtil from '@alicloud/openapi-util';
|
|
8
7
|
import EndpointUtil from '@alicloud/endpoint-util';
|
|
@@ -2114,6 +2113,15 @@ export class CreateDBClusterRequest extends $tea.Model {
|
|
|
2114
2113
|
* 1880808684
|
|
2115
2114
|
*/
|
|
2116
2115
|
backupSetId?: string;
|
|
2116
|
+
/**
|
|
2117
|
+
* @remarks
|
|
2118
|
+
* The region ID of the source cluster.
|
|
2119
|
+
*
|
|
2120
|
+
* > This parameter must be specified for cloning clusters across regions.
|
|
2121
|
+
*
|
|
2122
|
+
* @example
|
|
2123
|
+
* cn-beijing
|
|
2124
|
+
*/
|
|
2117
2125
|
cloneSourceRegionId?: string;
|
|
2118
2126
|
/**
|
|
2119
2127
|
* @remarks
|
|
@@ -2454,6 +2462,7 @@ export class CreateDBClusterResponse extends $tea.Model {
|
|
|
2454
2462
|
}
|
|
2455
2463
|
|
|
2456
2464
|
export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
2465
|
+
autoStopInterval?: string;
|
|
2457
2466
|
/**
|
|
2458
2467
|
* @remarks
|
|
2459
2468
|
* A reserved parameter.
|
|
@@ -2581,6 +2590,7 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2581
2590
|
targetResourceGroupName?: string;
|
|
2582
2591
|
static names(): { [key: string]: string } {
|
|
2583
2592
|
return {
|
|
2593
|
+
autoStopInterval: 'AutoStopInterval',
|
|
2584
2594
|
clusterMode: 'ClusterMode',
|
|
2585
2595
|
clusterSizeResource: 'ClusterSizeResource',
|
|
2586
2596
|
DBClusterId: 'DBClusterId',
|
|
@@ -2604,6 +2614,7 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2604
2614
|
|
|
2605
2615
|
static types(): { [key: string]: any } {
|
|
2606
2616
|
return {
|
|
2617
|
+
autoStopInterval: 'string',
|
|
2607
2618
|
clusterMode: 'string',
|
|
2608
2619
|
clusterSizeResource: 'string',
|
|
2609
2620
|
DBClusterId: 'string',
|
|
@@ -2631,6 +2642,7 @@ export class CreateDBResourceGroupRequest extends $tea.Model {
|
|
|
2631
2642
|
}
|
|
2632
2643
|
|
|
2633
2644
|
export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
2645
|
+
autoStopInterval?: string;
|
|
2634
2646
|
/**
|
|
2635
2647
|
* @remarks
|
|
2636
2648
|
* A reserved parameter.
|
|
@@ -2758,6 +2770,7 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2758
2770
|
targetResourceGroupName?: string;
|
|
2759
2771
|
static names(): { [key: string]: string } {
|
|
2760
2772
|
return {
|
|
2773
|
+
autoStopInterval: 'AutoStopInterval',
|
|
2761
2774
|
clusterMode: 'ClusterMode',
|
|
2762
2775
|
clusterSizeResource: 'ClusterSizeResource',
|
|
2763
2776
|
DBClusterId: 'DBClusterId',
|
|
@@ -2781,6 +2794,7 @@ export class CreateDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
2781
2794
|
|
|
2782
2795
|
static types(): { [key: string]: any } {
|
|
2783
2796
|
return {
|
|
2797
|
+
autoStopInterval: 'string',
|
|
2784
2798
|
clusterMode: 'string',
|
|
2785
2799
|
clusterSizeResource: 'string',
|
|
2786
2800
|
DBClusterId: 'string',
|
|
@@ -3206,6 +3220,9 @@ export class CreateOssSubDirectoryResponse extends $tea.Model {
|
|
|
3206
3220
|
|
|
3207
3221
|
export class CreatePerformanceViewRequest extends $tea.Model {
|
|
3208
3222
|
/**
|
|
3223
|
+
* @remarks
|
|
3224
|
+
* The type of the view.
|
|
3225
|
+
*
|
|
3209
3226
|
* @example
|
|
3210
3227
|
* Basic
|
|
3211
3228
|
*/
|
|
@@ -3258,7 +3275,12 @@ export class CreatePerformanceViewRequest extends $tea.Model {
|
|
|
3258
3275
|
viewDetail?: CreatePerformanceViewRequestViewDetail;
|
|
3259
3276
|
/**
|
|
3260
3277
|
* @remarks
|
|
3278
|
+
* The name of the view.
|
|
3279
|
+
*
|
|
3261
3280
|
* This parameter is required.
|
|
3281
|
+
*
|
|
3282
|
+
* @example
|
|
3283
|
+
* viewname
|
|
3262
3284
|
*/
|
|
3263
3285
|
viewName?: string;
|
|
3264
3286
|
static names(): { [key: string]: string } {
|
|
@@ -3298,6 +3320,9 @@ export class CreatePerformanceViewRequest extends $tea.Model {
|
|
|
3298
3320
|
|
|
3299
3321
|
export class CreatePerformanceViewShrinkRequest extends $tea.Model {
|
|
3300
3322
|
/**
|
|
3323
|
+
* @remarks
|
|
3324
|
+
* The type of the view.
|
|
3325
|
+
*
|
|
3301
3326
|
* @example
|
|
3302
3327
|
* Basic
|
|
3303
3328
|
*/
|
|
@@ -3350,7 +3375,12 @@ export class CreatePerformanceViewShrinkRequest extends $tea.Model {
|
|
|
3350
3375
|
viewDetailShrink?: string;
|
|
3351
3376
|
/**
|
|
3352
3377
|
* @remarks
|
|
3378
|
+
* The name of the view.
|
|
3379
|
+
*
|
|
3353
3380
|
* This parameter is required.
|
|
3381
|
+
*
|
|
3382
|
+
* @example
|
|
3383
|
+
* viewname
|
|
3354
3384
|
*/
|
|
3355
3385
|
viewName?: string;
|
|
3356
3386
|
static names(): { [key: string]: string } {
|
|
@@ -3390,6 +3420,11 @@ export class CreatePerformanceViewShrinkRequest extends $tea.Model {
|
|
|
3390
3420
|
|
|
3391
3421
|
export class CreatePerformanceViewResponseBody extends $tea.Model {
|
|
3392
3422
|
/**
|
|
3423
|
+
* @remarks
|
|
3424
|
+
* The details about the access denial.
|
|
3425
|
+
*
|
|
3426
|
+
* > This parameter is returned only if Resource Access Management (RAM) permission verification failed.
|
|
3427
|
+
*
|
|
3393
3428
|
* @example
|
|
3394
3429
|
* {
|
|
3395
3430
|
* "PolicyType": "AccountLevelIdentityBasedPolicy",
|
|
@@ -3414,6 +3449,9 @@ export class CreatePerformanceViewResponseBody extends $tea.Model {
|
|
|
3414
3449
|
*/
|
|
3415
3450
|
createStatus?: string;
|
|
3416
3451
|
/**
|
|
3452
|
+
* @remarks
|
|
3453
|
+
* The request ID.
|
|
3454
|
+
*
|
|
3417
3455
|
* @example
|
|
3418
3456
|
* E031AABF-BD56-5966-A063-4283EF18DB45
|
|
3419
3457
|
*/
|
|
@@ -4023,7 +4061,12 @@ export class DeletePerformanceViewRequest extends $tea.Model {
|
|
|
4023
4061
|
resourceOwnerId?: number;
|
|
4024
4062
|
/**
|
|
4025
4063
|
* @remarks
|
|
4064
|
+
* The name of the view.
|
|
4065
|
+
*
|
|
4026
4066
|
* This parameter is required.
|
|
4067
|
+
*
|
|
4068
|
+
* @example
|
|
4069
|
+
* view_dwd_plan_double_term
|
|
4027
4070
|
*/
|
|
4028
4071
|
viewName?: string;
|
|
4029
4072
|
static names(): { [key: string]: string } {
|
|
@@ -4075,11 +4118,17 @@ export class DeletePerformanceViewResponseBody extends $tea.Model {
|
|
|
4075
4118
|
*/
|
|
4076
4119
|
accessDeniedDetail?: string;
|
|
4077
4120
|
/**
|
|
4121
|
+
* @remarks
|
|
4122
|
+
* The delete status.
|
|
4123
|
+
*
|
|
4078
4124
|
* @example
|
|
4079
4125
|
* SUCCESS
|
|
4080
4126
|
*/
|
|
4081
4127
|
deleteStatus?: boolean;
|
|
4082
4128
|
/**
|
|
4129
|
+
* @remarks
|
|
4130
|
+
* The request ID.
|
|
4131
|
+
*
|
|
4083
4132
|
* @example
|
|
4084
4133
|
* 1AD222E9-E606-4A42-BF6D-8A4442913CEF
|
|
4085
4134
|
*/
|
|
@@ -5724,7 +5773,7 @@ export class DescribeApsActionLogsRequest extends $tea.Model {
|
|
|
5724
5773
|
DBClusterId?: string;
|
|
5725
5774
|
/**
|
|
5726
5775
|
* @remarks
|
|
5727
|
-
* The end time of the logs to be queried. Specify the time in the ISO 8601 standard in the **yyyy-MM-ddTHH:
|
|
5776
|
+
* The end time of the logs to be queried. Specify the time in the ISO 8601 standard in the **yyyy-MM-ddTHH:mmZ** format. The time must be in UTC.
|
|
5728
5777
|
*
|
|
5729
5778
|
* > The end time must be later than the start time. The maximum time range that can be specified is 30 days.
|
|
5730
5779
|
*
|
|
@@ -5794,7 +5843,7 @@ export class DescribeApsActionLogsRequest extends $tea.Model {
|
|
|
5794
5843
|
stage?: string;
|
|
5795
5844
|
/**
|
|
5796
5845
|
* @remarks
|
|
5797
|
-
* The start time of the logs to be queried. Specify the time in the ISO 8601 standard in the **yyyy-MM-ddTHH:
|
|
5846
|
+
* The start time of the logs to be queried. Specify the time in the ISO 8601 standard in the **yyyy-MM-ddTHH:mmZ** format. The time must be in UTC.
|
|
5798
5847
|
*
|
|
5799
5848
|
* This parameter is required.
|
|
5800
5849
|
*
|
|
@@ -6730,6 +6779,7 @@ export class DescribeBackupsRequest extends $tea.Model {
|
|
|
6730
6779
|
}
|
|
6731
6780
|
|
|
6732
6781
|
export class DescribeBackupsResponseBody extends $tea.Model {
|
|
6782
|
+
freeBackupSize?: number;
|
|
6733
6783
|
/**
|
|
6734
6784
|
* @remarks
|
|
6735
6785
|
* The queried backup sets.
|
|
@@ -6759,6 +6809,7 @@ export class DescribeBackupsResponseBody extends $tea.Model {
|
|
|
6759
6809
|
* CE17270B-F8F8-5A31-9DB4-DADDFDAD7940
|
|
6760
6810
|
*/
|
|
6761
6811
|
requestId?: string;
|
|
6812
|
+
totalBackupSize?: number;
|
|
6762
6813
|
/**
|
|
6763
6814
|
* @remarks
|
|
6764
6815
|
* The total number of entries returned.
|
|
@@ -6769,20 +6820,24 @@ export class DescribeBackupsResponseBody extends $tea.Model {
|
|
|
6769
6820
|
totalCount?: string;
|
|
6770
6821
|
static names(): { [key: string]: string } {
|
|
6771
6822
|
return {
|
|
6823
|
+
freeBackupSize: 'FreeBackupSize',
|
|
6772
6824
|
items: 'Items',
|
|
6773
6825
|
pageNumber: 'PageNumber',
|
|
6774
6826
|
pageSize: 'PageSize',
|
|
6775
6827
|
requestId: 'RequestId',
|
|
6828
|
+
totalBackupSize: 'TotalBackupSize',
|
|
6776
6829
|
totalCount: 'TotalCount',
|
|
6777
6830
|
};
|
|
6778
6831
|
}
|
|
6779
6832
|
|
|
6780
6833
|
static types(): { [key: string]: any } {
|
|
6781
6834
|
return {
|
|
6835
|
+
freeBackupSize: 'number',
|
|
6782
6836
|
items: DescribeBackupsResponseBodyItems,
|
|
6783
6837
|
pageNumber: 'string',
|
|
6784
6838
|
pageSize: 'string',
|
|
6785
6839
|
requestId: 'string',
|
|
6840
|
+
totalBackupSize: 'number',
|
|
6786
6841
|
totalCount: 'string',
|
|
6787
6842
|
};
|
|
6788
6843
|
}
|
|
@@ -6820,7 +6875,7 @@ export class DescribeBackupsResponse extends $tea.Model {
|
|
|
6820
6875
|
export class DescribeClusterAccessWhiteListRequest extends $tea.Model {
|
|
6821
6876
|
/**
|
|
6822
6877
|
* @remarks
|
|
6823
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
6878
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
6824
6879
|
*
|
|
6825
6880
|
* This parameter is required.
|
|
6826
6881
|
*
|
|
@@ -10633,7 +10688,12 @@ export class DescribePerformanceViewAttributeRequest extends $tea.Model {
|
|
|
10633
10688
|
resourceOwnerId?: number;
|
|
10634
10689
|
/**
|
|
10635
10690
|
* @remarks
|
|
10691
|
+
* The name of the view.
|
|
10692
|
+
*
|
|
10636
10693
|
* This parameter is required.
|
|
10694
|
+
*
|
|
10695
|
+
* @example
|
|
10696
|
+
* Basic
|
|
10637
10697
|
*/
|
|
10638
10698
|
viewName?: string;
|
|
10639
10699
|
static names(): { [key: string]: string } {
|
|
@@ -10667,6 +10727,11 @@ export class DescribePerformanceViewAttributeRequest extends $tea.Model {
|
|
|
10667
10727
|
|
|
10668
10728
|
export class DescribePerformanceViewAttributeResponseBody extends $tea.Model {
|
|
10669
10729
|
/**
|
|
10730
|
+
* @remarks
|
|
10731
|
+
* The details about the access denial.
|
|
10732
|
+
*
|
|
10733
|
+
* > This parameter is returned only if Resource Access Management (RAM) permission verification failed.
|
|
10734
|
+
*
|
|
10670
10735
|
* @example
|
|
10671
10736
|
* {
|
|
10672
10737
|
* "PolicyType": "AccountLevelIdentityBasedPolicy",
|
|
@@ -10680,26 +10745,54 @@ export class DescribePerformanceViewAttributeResponseBody extends $tea.Model {
|
|
|
10680
10745
|
*/
|
|
10681
10746
|
accessDeniedDetail?: string;
|
|
10682
10747
|
/**
|
|
10748
|
+
* @remarks
|
|
10749
|
+
* The type of the view.
|
|
10750
|
+
*
|
|
10683
10751
|
* @example
|
|
10684
10752
|
* Basic
|
|
10685
10753
|
*/
|
|
10686
10754
|
createFromViewType?: string;
|
|
10687
10755
|
/**
|
|
10756
|
+
* @remarks
|
|
10757
|
+
* The cluster ID.
|
|
10758
|
+
*
|
|
10759
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/129857.html) operation to query the information about all AnalyticDB for MySQL clusters within a region, including cluster IDs.
|
|
10760
|
+
*
|
|
10688
10761
|
* @example
|
|
10689
10762
|
* amv-bp198m028ih55xxxx
|
|
10690
10763
|
*/
|
|
10691
10764
|
DBClusterId?: string;
|
|
10692
10765
|
/**
|
|
10766
|
+
* @remarks
|
|
10767
|
+
* Specifies whether to populate the names of the metrics in the original monitoring view when you view the monitoring view. Valid values:
|
|
10768
|
+
*
|
|
10769
|
+
* * **true**
|
|
10770
|
+
* * **false**
|
|
10771
|
+
*
|
|
10693
10772
|
* @example
|
|
10694
10773
|
* true
|
|
10695
10774
|
*/
|
|
10696
10775
|
fillOriginViewKeys?: boolean;
|
|
10697
10776
|
/**
|
|
10777
|
+
* @remarks
|
|
10778
|
+
* The request ID.
|
|
10779
|
+
*
|
|
10698
10780
|
* @example
|
|
10699
10781
|
* E031AABF-BD56-5966-A063-4283EF18DB45
|
|
10700
10782
|
*/
|
|
10701
10783
|
requestId?: string;
|
|
10784
|
+
/**
|
|
10785
|
+
* @remarks
|
|
10786
|
+
* The information about the monitoring view.
|
|
10787
|
+
*/
|
|
10702
10788
|
viewDetail?: DescribePerformanceViewAttributeResponseBodyViewDetail;
|
|
10789
|
+
/**
|
|
10790
|
+
* @remarks
|
|
10791
|
+
* The name of the view.
|
|
10792
|
+
*
|
|
10793
|
+
* @example
|
|
10794
|
+
* Basic
|
|
10795
|
+
*/
|
|
10703
10796
|
viewName?: string;
|
|
10704
10797
|
static names(): { [key: string]: string } {
|
|
10705
10798
|
return {
|
|
@@ -10813,6 +10906,11 @@ export class DescribePerformanceViewsRequest extends $tea.Model {
|
|
|
10813
10906
|
|
|
10814
10907
|
export class DescribePerformanceViewsResponseBody extends $tea.Model {
|
|
10815
10908
|
/**
|
|
10909
|
+
* @remarks
|
|
10910
|
+
* The details about the access denial.
|
|
10911
|
+
*
|
|
10912
|
+
* > This parameter is returned only if Resource Access Management (RAM) permission verification failed.
|
|
10913
|
+
*
|
|
10816
10914
|
* @example
|
|
10817
10915
|
* {
|
|
10818
10916
|
* "PolicyType": "AccountLevelIdentityBasedPolicy",
|
|
@@ -10826,10 +10924,17 @@ export class DescribePerformanceViewsResponseBody extends $tea.Model {
|
|
|
10826
10924
|
*/
|
|
10827
10925
|
accessDeniedDetail?: string;
|
|
10828
10926
|
/**
|
|
10927
|
+
* @remarks
|
|
10928
|
+
* The request ID.
|
|
10929
|
+
*
|
|
10829
10930
|
* @example
|
|
10830
10931
|
* 3A8F6106-6AFD-5A34-9C80-8DE2C42D06E8
|
|
10831
10932
|
*/
|
|
10832
10933
|
requestId?: string;
|
|
10934
|
+
/**
|
|
10935
|
+
* @remarks
|
|
10936
|
+
* the list of view.
|
|
10937
|
+
*/
|
|
10833
10938
|
views?: DescribePerformanceViewsResponseBodyViews[];
|
|
10834
10939
|
static names(): { [key: string]: string } {
|
|
10835
10940
|
return {
|
|
@@ -17124,8 +17229,6 @@ export class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
17124
17229
|
*
|
|
17125
17230
|
* > To ensure data security, we recommend that you specify at least two values.
|
|
17126
17231
|
*
|
|
17127
|
-
* This parameter is required.
|
|
17128
|
-
*
|
|
17129
17232
|
* @example
|
|
17130
17233
|
* Monday,Wednesday,Friday,Sunday
|
|
17131
17234
|
*/
|
|
@@ -17512,9 +17615,9 @@ export class ModifyDBClusterRequest extends $tea.Model {
|
|
|
17512
17615
|
computeResource?: string;
|
|
17513
17616
|
/**
|
|
17514
17617
|
* @remarks
|
|
17515
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
17618
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
17516
17619
|
*
|
|
17517
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/454250.html) operation to query the IDs of all AnalyticDB for MySQL Data Lakehouse Edition
|
|
17620
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/454250.html) operation to query the IDs of all AnalyticDB for MySQL Data Lakehouse Edition clusters within a region.
|
|
17518
17621
|
*
|
|
17519
17622
|
* This parameter is required.
|
|
17520
17623
|
*
|
|
@@ -17551,6 +17654,10 @@ export class ModifyDBClusterRequest extends $tea.Model {
|
|
|
17551
17654
|
*/
|
|
17552
17655
|
regionId?: string;
|
|
17553
17656
|
reservedNodeCount?: number;
|
|
17657
|
+
/**
|
|
17658
|
+
* @example
|
|
17659
|
+
* LegacyForm
|
|
17660
|
+
*/
|
|
17554
17661
|
reservedNodeSize?: string;
|
|
17555
17662
|
resourceOwnerAccount?: string;
|
|
17556
17663
|
/**
|
|
@@ -17603,7 +17710,7 @@ export class ModifyDBClusterRequest extends $tea.Model {
|
|
|
17603
17710
|
export class ModifyDBClusterResponseBody extends $tea.Model {
|
|
17604
17711
|
/**
|
|
17605
17712
|
* @remarks
|
|
17606
|
-
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition
|
|
17713
|
+
* The ID of the AnalyticDB for MySQL Data Lakehouse Edition cluster.
|
|
17607
17714
|
*
|
|
17608
17715
|
* @example
|
|
17609
17716
|
* amv-bp1r053byu48p****
|
|
@@ -17859,6 +17966,7 @@ export class ModifyDBClusterMaintainTimeResponse extends $tea.Model {
|
|
|
17859
17966
|
}
|
|
17860
17967
|
|
|
17861
17968
|
export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
17969
|
+
autoStopInterval?: string;
|
|
17862
17970
|
/**
|
|
17863
17971
|
* @remarks
|
|
17864
17972
|
* A reserved parameter.
|
|
@@ -17980,9 +18088,11 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17980
18088
|
*/
|
|
17981
18089
|
rules?: ModifyDBResourceGroupRequestRules[];
|
|
17982
18090
|
specName?: string;
|
|
18091
|
+
status?: string;
|
|
17983
18092
|
targetResourceGroupName?: string;
|
|
17984
18093
|
static names(): { [key: string]: string } {
|
|
17985
18094
|
return {
|
|
18095
|
+
autoStopInterval: 'AutoStopInterval',
|
|
17986
18096
|
clusterMode: 'ClusterMode',
|
|
17987
18097
|
clusterSizeResource: 'ClusterSizeResource',
|
|
17988
18098
|
DBClusterId: 'DBClusterId',
|
|
@@ -17999,12 +18109,14 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
17999
18109
|
regionId: 'RegionId',
|
|
18000
18110
|
rules: 'Rules',
|
|
18001
18111
|
specName: 'SpecName',
|
|
18112
|
+
status: 'Status',
|
|
18002
18113
|
targetResourceGroupName: 'TargetResourceGroupName',
|
|
18003
18114
|
};
|
|
18004
18115
|
}
|
|
18005
18116
|
|
|
18006
18117
|
static types(): { [key: string]: any } {
|
|
18007
18118
|
return {
|
|
18119
|
+
autoStopInterval: 'string',
|
|
18008
18120
|
clusterMode: 'string',
|
|
18009
18121
|
clusterSizeResource: 'string',
|
|
18010
18122
|
DBClusterId: 'string',
|
|
@@ -18021,6 +18133,7 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
18021
18133
|
regionId: 'string',
|
|
18022
18134
|
rules: { 'type': 'array', 'itemType': ModifyDBResourceGroupRequestRules },
|
|
18023
18135
|
specName: 'string',
|
|
18136
|
+
status: 'string',
|
|
18024
18137
|
targetResourceGroupName: 'string',
|
|
18025
18138
|
};
|
|
18026
18139
|
}
|
|
@@ -18031,6 +18144,7 @@ export class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
|
18031
18144
|
}
|
|
18032
18145
|
|
|
18033
18146
|
export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
18147
|
+
autoStopInterval?: string;
|
|
18034
18148
|
/**
|
|
18035
18149
|
* @remarks
|
|
18036
18150
|
* A reserved parameter.
|
|
@@ -18152,9 +18266,11 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
18152
18266
|
*/
|
|
18153
18267
|
rulesShrink?: string;
|
|
18154
18268
|
specName?: string;
|
|
18269
|
+
status?: string;
|
|
18155
18270
|
targetResourceGroupName?: string;
|
|
18156
18271
|
static names(): { [key: string]: string } {
|
|
18157
18272
|
return {
|
|
18273
|
+
autoStopInterval: 'AutoStopInterval',
|
|
18158
18274
|
clusterMode: 'ClusterMode',
|
|
18159
18275
|
clusterSizeResource: 'ClusterSizeResource',
|
|
18160
18276
|
DBClusterId: 'DBClusterId',
|
|
@@ -18171,12 +18287,14 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
18171
18287
|
regionId: 'RegionId',
|
|
18172
18288
|
rulesShrink: 'Rules',
|
|
18173
18289
|
specName: 'SpecName',
|
|
18290
|
+
status: 'Status',
|
|
18174
18291
|
targetResourceGroupName: 'TargetResourceGroupName',
|
|
18175
18292
|
};
|
|
18176
18293
|
}
|
|
18177
18294
|
|
|
18178
18295
|
static types(): { [key: string]: any } {
|
|
18179
18296
|
return {
|
|
18297
|
+
autoStopInterval: 'string',
|
|
18180
18298
|
clusterMode: 'string',
|
|
18181
18299
|
clusterSizeResource: 'string',
|
|
18182
18300
|
DBClusterId: 'string',
|
|
@@ -18193,6 +18311,7 @@ export class ModifyDBResourceGroupShrinkRequest extends $tea.Model {
|
|
|
18193
18311
|
regionId: 'string',
|
|
18194
18312
|
rulesShrink: 'string',
|
|
18195
18313
|
specName: 'string',
|
|
18314
|
+
status: 'string',
|
|
18196
18315
|
targetResourceGroupName: 'string',
|
|
18197
18316
|
};
|
|
18198
18317
|
}
|
|
@@ -18439,6 +18558,9 @@ export class ModifyPerformanceViewRequest extends $tea.Model {
|
|
|
18439
18558
|
* The name of the monitoring view.
|
|
18440
18559
|
*
|
|
18441
18560
|
* This parameter is required.
|
|
18561
|
+
*
|
|
18562
|
+
* @example
|
|
18563
|
+
* Basic
|
|
18442
18564
|
*/
|
|
18443
18565
|
viewName?: string;
|
|
18444
18566
|
static names(): { [key: string]: string } {
|
|
@@ -18513,6 +18635,9 @@ export class ModifyPerformanceViewShrinkRequest extends $tea.Model {
|
|
|
18513
18635
|
* The name of the monitoring view.
|
|
18514
18636
|
*
|
|
18515
18637
|
* This parameter is required.
|
|
18638
|
+
*
|
|
18639
|
+
* @example
|
|
18640
|
+
* Basic
|
|
18516
18641
|
*/
|
|
18517
18642
|
viewName?: string;
|
|
18518
18643
|
static names(): { [key: string]: string } {
|
|
@@ -21336,6 +21461,7 @@ export class DescribeBackupsResponseBodyItemsBackup extends $tea.Model {
|
|
|
21336
21461
|
* 2022-06-02T16:00Z
|
|
21337
21462
|
*/
|
|
21338
21463
|
backupEndTime?: string;
|
|
21464
|
+
backupExpiredTime?: string;
|
|
21339
21465
|
/**
|
|
21340
21466
|
* @remarks
|
|
21341
21467
|
* The backup set ID.
|
|
@@ -21390,6 +21516,7 @@ export class DescribeBackupsResponseBodyItemsBackup extends $tea.Model {
|
|
|
21390
21516
|
static names(): { [key: string]: string } {
|
|
21391
21517
|
return {
|
|
21392
21518
|
backupEndTime: 'BackupEndTime',
|
|
21519
|
+
backupExpiredTime: 'BackupExpiredTime',
|
|
21393
21520
|
backupId: 'BackupId',
|
|
21394
21521
|
backupMethod: 'BackupMethod',
|
|
21395
21522
|
backupSize: 'BackupSize',
|
|
@@ -21402,6 +21529,7 @@ export class DescribeBackupsResponseBodyItemsBackup extends $tea.Model {
|
|
|
21402
21529
|
static types(): { [key: string]: any } {
|
|
21403
21530
|
return {
|
|
21404
21531
|
backupEndTime: 'string',
|
|
21532
|
+
backupExpiredTime: 'string',
|
|
21405
21533
|
backupId: 'string',
|
|
21406
21534
|
backupMethod: 'string',
|
|
21407
21535
|
backupSize: 'number',
|
|
@@ -24059,6 +24187,7 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfoRules extends $tea.Mod
|
|
|
24059
24187
|
}
|
|
24060
24188
|
|
|
24061
24189
|
export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
24190
|
+
autoStopInterval?: string;
|
|
24062
24191
|
/**
|
|
24063
24192
|
* @remarks
|
|
24064
24193
|
* A reserved parameter.
|
|
@@ -24211,6 +24340,7 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
24211
24340
|
updateTime?: string;
|
|
24212
24341
|
static names(): { [key: string]: string } {
|
|
24213
24342
|
return {
|
|
24343
|
+
autoStopInterval: 'AutoStopInterval',
|
|
24214
24344
|
clusterMode: 'ClusterMode',
|
|
24215
24345
|
clusterSizeResource: 'ClusterSizeResource',
|
|
24216
24346
|
createTime: 'CreateTime',
|
|
@@ -24239,6 +24369,7 @@ export class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
|
24239
24369
|
|
|
24240
24370
|
static types(): { [key: string]: any } {
|
|
24241
24371
|
return {
|
|
24372
|
+
autoStopInterval: 'string',
|
|
24242
24373
|
clusterMode: 'string',
|
|
24243
24374
|
clusterSizeResource: 'string',
|
|
24244
24375
|
createTime: 'string',
|
|
@@ -25178,11 +25309,17 @@ export class DescribeExcessivePrimaryKeysResponseBodyDetectionItems extends $tea
|
|
|
25178
25309
|
/**
|
|
25179
25310
|
* @remarks
|
|
25180
25311
|
* The detection result.
|
|
25312
|
+
*
|
|
25313
|
+
* @example
|
|
25314
|
+
* OK
|
|
25181
25315
|
*/
|
|
25182
25316
|
message?: string;
|
|
25183
25317
|
/**
|
|
25184
25318
|
* @remarks
|
|
25185
25319
|
* The name of the detection item.
|
|
25320
|
+
*
|
|
25321
|
+
* @example
|
|
25322
|
+
* test
|
|
25186
25323
|
*/
|
|
25187
25324
|
name?: string;
|
|
25188
25325
|
/**
|
|
@@ -25334,11 +25471,17 @@ export class DescribeJobResourceUsageResponseBodyDataJobAcuUsageAcuUsageDetail e
|
|
|
25334
25471
|
*/
|
|
25335
25472
|
reservedAcuNumber?: number;
|
|
25336
25473
|
/**
|
|
25474
|
+
* @remarks
|
|
25475
|
+
* The number of spot ACUs.
|
|
25476
|
+
*
|
|
25337
25477
|
* @example
|
|
25338
25478
|
* 16ACU
|
|
25339
25479
|
*/
|
|
25340
25480
|
spotAcuNumber?: number;
|
|
25341
25481
|
/**
|
|
25482
|
+
* @remarks
|
|
25483
|
+
* The percent of spot ACUs.
|
|
25484
|
+
*
|
|
25342
25485
|
* @example
|
|
25343
25486
|
* 0.9
|
|
25344
25487
|
*/
|
|
@@ -25602,18 +25745,33 @@ export class DescribePatternPerformanceResponseBodyPerformances extends $tea.Mod
|
|
|
25602
25745
|
}
|
|
25603
25746
|
|
|
25604
25747
|
export class DescribePerformanceViewAttributeResponseBodyViewDetailCategoriesKeys extends $tea.Model {
|
|
25748
|
+
enableAutoMc?: boolean;
|
|
25749
|
+
engine?: string[];
|
|
25750
|
+
groupType?: string[];
|
|
25605
25751
|
/**
|
|
25752
|
+
* @remarks
|
|
25753
|
+
* The name of the metric.
|
|
25754
|
+
*
|
|
25606
25755
|
* @example
|
|
25607
25756
|
* AnalyticDB_CPU
|
|
25608
25757
|
*/
|
|
25609
25758
|
keyName?: string;
|
|
25610
25759
|
/**
|
|
25760
|
+
* @remarks
|
|
25761
|
+
* Specifies whether to select the metric. Valid values:
|
|
25762
|
+
*
|
|
25763
|
+
* * **true**
|
|
25764
|
+
* * **false**
|
|
25765
|
+
*
|
|
25611
25766
|
* @example
|
|
25612
25767
|
* true
|
|
25613
25768
|
*/
|
|
25614
25769
|
selected?: boolean;
|
|
25615
25770
|
static names(): { [key: string]: string } {
|
|
25616
25771
|
return {
|
|
25772
|
+
enableAutoMc: 'EnableAutoMc',
|
|
25773
|
+
engine: 'Engine',
|
|
25774
|
+
groupType: 'GroupType',
|
|
25617
25775
|
keyName: 'KeyName',
|
|
25618
25776
|
selected: 'Selected',
|
|
25619
25777
|
};
|
|
@@ -25621,6 +25779,9 @@ export class DescribePerformanceViewAttributeResponseBodyViewDetailCategoriesKey
|
|
|
25621
25779
|
|
|
25622
25780
|
static types(): { [key: string]: any } {
|
|
25623
25781
|
return {
|
|
25782
|
+
enableAutoMc: 'boolean',
|
|
25783
|
+
engine: { 'type': 'array', 'itemType': 'string' },
|
|
25784
|
+
groupType: { 'type': 'array', 'itemType': 'string' },
|
|
25624
25785
|
keyName: 'string',
|
|
25625
25786
|
selected: 'boolean',
|
|
25626
25787
|
};
|
|
@@ -25633,10 +25794,22 @@ export class DescribePerformanceViewAttributeResponseBodyViewDetailCategoriesKey
|
|
|
25633
25794
|
|
|
25634
25795
|
export class DescribePerformanceViewAttributeResponseBodyViewDetailCategories extends $tea.Model {
|
|
25635
25796
|
/**
|
|
25797
|
+
* @remarks
|
|
25798
|
+
* The name of the metric category. Valid values:
|
|
25799
|
+
*
|
|
25800
|
+
* * **Node**
|
|
25801
|
+
* * **DiskData**
|
|
25802
|
+
* * **WorkLoad**
|
|
25803
|
+
* * **ResourceGroup**
|
|
25804
|
+
*
|
|
25636
25805
|
* @example
|
|
25637
25806
|
* Node
|
|
25638
25807
|
*/
|
|
25639
25808
|
category?: string;
|
|
25809
|
+
/**
|
|
25810
|
+
* @remarks
|
|
25811
|
+
* The metrics.
|
|
25812
|
+
*/
|
|
25640
25813
|
keys?: DescribePerformanceViewAttributeResponseBodyViewDetailCategoriesKeys[];
|
|
25641
25814
|
static names(): { [key: string]: string } {
|
|
25642
25815
|
return {
|
|
@@ -25658,13 +25831,26 @@ export class DescribePerformanceViewAttributeResponseBodyViewDetailCategories ex
|
|
|
25658
25831
|
}
|
|
25659
25832
|
|
|
25660
25833
|
export class DescribePerformanceViewAttributeResponseBodyViewDetail extends $tea.Model {
|
|
25834
|
+
/**
|
|
25835
|
+
* @remarks
|
|
25836
|
+
* The metric category.
|
|
25837
|
+
*/
|
|
25661
25838
|
categories?: DescribePerformanceViewAttributeResponseBodyViewDetailCategories[];
|
|
25662
25839
|
/**
|
|
25840
|
+
* @remarks
|
|
25841
|
+
* Specifies whether to enable the filter interaction feature. Valid values:
|
|
25842
|
+
*
|
|
25843
|
+
* * **true**
|
|
25844
|
+
* * **false**
|
|
25845
|
+
*
|
|
25663
25846
|
* @example
|
|
25664
25847
|
* true
|
|
25665
25848
|
*/
|
|
25666
25849
|
chartLinked?: boolean;
|
|
25667
25850
|
/**
|
|
25851
|
+
* @remarks
|
|
25852
|
+
* The number of charts to display in each row.
|
|
25853
|
+
*
|
|
25668
25854
|
* @example
|
|
25669
25855
|
* 2
|
|
25670
25856
|
*/
|
|
@@ -25692,15 +25878,28 @@ export class DescribePerformanceViewAttributeResponseBodyViewDetail extends $tea
|
|
|
25692
25878
|
|
|
25693
25879
|
export class DescribePerformanceViewsResponseBodyViews extends $tea.Model {
|
|
25694
25880
|
/**
|
|
25881
|
+
* @remarks
|
|
25882
|
+
* The time when created.
|
|
25883
|
+
*
|
|
25695
25884
|
* @example
|
|
25696
25885
|
* 2024-06-18T07:06:53.000+00:00
|
|
25697
25886
|
*/
|
|
25698
25887
|
createTime?: string;
|
|
25699
25888
|
/**
|
|
25889
|
+
* @remarks
|
|
25890
|
+
* The time when updated.
|
|
25891
|
+
*
|
|
25700
25892
|
* @example
|
|
25701
25893
|
* 2024-06-18T07:07:32.000+00:00
|
|
25702
25894
|
*/
|
|
25703
25895
|
updateTime?: string;
|
|
25896
|
+
/**
|
|
25897
|
+
* @remarks
|
|
25898
|
+
* The name of the view.
|
|
25899
|
+
*
|
|
25900
|
+
* @example
|
|
25901
|
+
* Basic
|
|
25902
|
+
*/
|
|
25704
25903
|
viewName?: string;
|
|
25705
25904
|
static names(): { [key: string]: string } {
|
|
25706
25905
|
return {
|
|
@@ -28283,9 +28482,6 @@ export default class Client extends OpenApi {
|
|
|
28283
28482
|
|
|
28284
28483
|
constructor(config: $OpenApi.Config) {
|
|
28285
28484
|
super(config);
|
|
28286
|
-
this._productId = "adb";
|
|
28287
|
-
let gatewayClient = new GatewayClient();
|
|
28288
|
-
this._spi = gatewayClient;
|
|
28289
28485
|
this._endpointRule = "regional";
|
|
28290
28486
|
this._endpointMap = {
|
|
28291
28487
|
'cn-qingdao': "adb.aliyuncs.com",
|
|
@@ -28389,12 +28585,7 @@ export default class Client extends OpenApi {
|
|
|
28389
28585
|
reqBodyType: "formData",
|
|
28390
28586
|
bodyType: "json",
|
|
28391
28587
|
});
|
|
28392
|
-
|
|
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
|
-
|
|
28588
|
+
return $tea.cast<AllocateClusterPublicConnectionResponse>(await this.callApi(params, req, runtime), new AllocateClusterPublicConnectionResponse({}));
|
|
28398
28589
|
}
|
|
28399
28590
|
|
|
28400
28591
|
/**
|
|
@@ -28442,12 +28633,7 @@ export default class Client extends OpenApi {
|
|
|
28442
28633
|
reqBodyType: "formData",
|
|
28443
28634
|
bodyType: "json",
|
|
28444
28635
|
});
|
|
28445
|
-
|
|
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
|
-
|
|
28636
|
+
return $tea.cast<AttachUserENIResponse>(await this.callApi(params, req, runtime), new AttachUserENIResponse({}));
|
|
28451
28637
|
}
|
|
28452
28638
|
|
|
28453
28639
|
/**
|
|
@@ -28503,12 +28689,7 @@ export default class Client extends OpenApi {
|
|
|
28503
28689
|
reqBodyType: "formData",
|
|
28504
28690
|
bodyType: "json",
|
|
28505
28691
|
});
|
|
28506
|
-
|
|
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
|
-
|
|
28692
|
+
return $tea.cast<BindAccountResponse>(await this.callApi(params, req, runtime), new BindAccountResponse({}));
|
|
28512
28693
|
}
|
|
28513
28694
|
|
|
28514
28695
|
/**
|
|
@@ -28564,12 +28745,7 @@ export default class Client extends OpenApi {
|
|
|
28564
28745
|
reqBodyType: "formData",
|
|
28565
28746
|
bodyType: "json",
|
|
28566
28747
|
});
|
|
28567
|
-
|
|
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
|
-
|
|
28748
|
+
return $tea.cast<BindDBResourceGroupWithUserResponse>(await this.callApi(params, req, runtime), new BindDBResourceGroupWithUserResponse({}));
|
|
28573
28749
|
}
|
|
28574
28750
|
|
|
28575
28751
|
/**
|
|
@@ -28621,12 +28797,7 @@ export default class Client extends OpenApi {
|
|
|
28621
28797
|
reqBodyType: "formData",
|
|
28622
28798
|
bodyType: "json",
|
|
28623
28799
|
});
|
|
28624
|
-
|
|
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
|
-
|
|
28800
|
+
return $tea.cast<CheckBindRamUserResponse>(await this.callApi(params, req, runtime), new CheckBindRamUserResponse({}));
|
|
28630
28801
|
}
|
|
28631
28802
|
|
|
28632
28803
|
/**
|
|
@@ -28672,12 +28843,7 @@ export default class Client extends OpenApi {
|
|
|
28672
28843
|
reqBodyType: "formData",
|
|
28673
28844
|
bodyType: "json",
|
|
28674
28845
|
});
|
|
28675
|
-
|
|
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
|
-
|
|
28846
|
+
return $tea.cast<CheckSampleDataSetResponse>(await this.callApi(params, req, runtime), new CheckSampleDataSetResponse({}));
|
|
28681
28847
|
}
|
|
28682
28848
|
|
|
28683
28849
|
/**
|
|
@@ -28743,12 +28909,7 @@ export default class Client extends OpenApi {
|
|
|
28743
28909
|
reqBodyType: "formData",
|
|
28744
28910
|
bodyType: "json",
|
|
28745
28911
|
});
|
|
28746
|
-
|
|
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
|
-
|
|
28912
|
+
return $tea.cast<CreateAccountResponse>(await this.callApi(params, req, runtime), new CreateAccountResponse({}));
|
|
28752
28913
|
}
|
|
28753
28914
|
|
|
28754
28915
|
/**
|
|
@@ -28892,12 +29053,7 @@ export default class Client extends OpenApi {
|
|
|
28892
29053
|
reqBodyType: "formData",
|
|
28893
29054
|
bodyType: "json",
|
|
28894
29055
|
});
|
|
28895
|
-
|
|
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
|
-
|
|
29056
|
+
return $tea.cast<CreateDBClusterResponse>(await this.callApi(params, req, runtime), new CreateDBClusterResponse({}));
|
|
28901
29057
|
}
|
|
28902
29058
|
|
|
28903
29059
|
/**
|
|
@@ -28937,6 +29093,10 @@ export default class Client extends OpenApi {
|
|
|
28937
29093
|
}
|
|
28938
29094
|
|
|
28939
29095
|
let query = { };
|
|
29096
|
+
if (!Util.isUnset(request.autoStopInterval)) {
|
|
29097
|
+
query["AutoStopInterval"] = request.autoStopInterval;
|
|
29098
|
+
}
|
|
29099
|
+
|
|
28940
29100
|
if (!Util.isUnset(request.clusterMode)) {
|
|
28941
29101
|
query["ClusterMode"] = request.clusterMode;
|
|
28942
29102
|
}
|
|
@@ -29023,12 +29183,7 @@ export default class Client extends OpenApi {
|
|
|
29023
29183
|
reqBodyType: "formData",
|
|
29024
29184
|
bodyType: "json",
|
|
29025
29185
|
});
|
|
29026
|
-
|
|
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
|
-
|
|
29186
|
+
return $tea.cast<CreateDBResourceGroupResponse>(await this.callApi(params, req, runtime), new CreateDBResourceGroupResponse({}));
|
|
29032
29187
|
}
|
|
29033
29188
|
|
|
29034
29189
|
/**
|
|
@@ -29112,12 +29267,7 @@ export default class Client extends OpenApi {
|
|
|
29112
29267
|
reqBodyType: "formData",
|
|
29113
29268
|
bodyType: "json",
|
|
29114
29269
|
});
|
|
29115
|
-
|
|
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
|
-
|
|
29270
|
+
return $tea.cast<CreateElasticPlanResponse>(await this.callApi(params, req, runtime), new CreateElasticPlanResponse({}));
|
|
29121
29271
|
}
|
|
29122
29272
|
|
|
29123
29273
|
/**
|
|
@@ -29171,12 +29321,7 @@ export default class Client extends OpenApi {
|
|
|
29171
29321
|
reqBodyType: "formData",
|
|
29172
29322
|
bodyType: "json",
|
|
29173
29323
|
});
|
|
29174
|
-
|
|
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
|
-
|
|
29324
|
+
return $tea.cast<CreateOssSubDirectoryResponse>(await this.callApi(params, req, runtime), new CreateOssSubDirectoryResponse({}));
|
|
29180
29325
|
}
|
|
29181
29326
|
|
|
29182
29327
|
/**
|
|
@@ -29196,6 +29341,8 @@ export default class Client extends OpenApi {
|
|
|
29196
29341
|
}
|
|
29197
29342
|
|
|
29198
29343
|
/**
|
|
29344
|
+
* Creates a custom monitoring view.
|
|
29345
|
+
*
|
|
29199
29346
|
* @param tmpReq - CreatePerformanceViewRequest
|
|
29200
29347
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
29201
29348
|
* @returns CreatePerformanceViewResponse
|
|
@@ -29263,15 +29410,12 @@ export default class Client extends OpenApi {
|
|
|
29263
29410
|
reqBodyType: "formData",
|
|
29264
29411
|
bodyType: "json",
|
|
29265
29412
|
});
|
|
29266
|
-
|
|
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
|
-
|
|
29413
|
+
return $tea.cast<CreatePerformanceViewResponse>(await this.callApi(params, req, runtime), new CreatePerformanceViewResponse({}));
|
|
29272
29414
|
}
|
|
29273
29415
|
|
|
29274
29416
|
/**
|
|
29417
|
+
* Creates a custom monitoring view.
|
|
29418
|
+
*
|
|
29275
29419
|
* @param request - CreatePerformanceViewRequest
|
|
29276
29420
|
* @returns CreatePerformanceViewResponse
|
|
29277
29421
|
*/
|
|
@@ -29329,12 +29473,7 @@ export default class Client extends OpenApi {
|
|
|
29329
29473
|
reqBodyType: "formData",
|
|
29330
29474
|
bodyType: "json",
|
|
29331
29475
|
});
|
|
29332
|
-
|
|
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
|
-
|
|
29476
|
+
return $tea.cast<CreateSparkTemplateResponse>(await this.callApi(params, req, runtime), new CreateSparkTemplateResponse({}));
|
|
29338
29477
|
}
|
|
29339
29478
|
|
|
29340
29479
|
/**
|
|
@@ -29392,12 +29531,7 @@ export default class Client extends OpenApi {
|
|
|
29392
29531
|
reqBodyType: "formData",
|
|
29393
29532
|
bodyType: "json",
|
|
29394
29533
|
});
|
|
29395
|
-
|
|
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
|
-
|
|
29534
|
+
return $tea.cast<DeleteAccountResponse>(await this.callApi(params, req, runtime), new DeleteAccountResponse({}));
|
|
29401
29535
|
}
|
|
29402
29536
|
|
|
29403
29537
|
/**
|
|
@@ -29447,12 +29581,7 @@ export default class Client extends OpenApi {
|
|
|
29447
29581
|
reqBodyType: "formData",
|
|
29448
29582
|
bodyType: "json",
|
|
29449
29583
|
});
|
|
29450
|
-
|
|
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
|
-
|
|
29584
|
+
return $tea.cast<DeleteDBClusterResponse>(await this.callApi(params, req, runtime), new DeleteDBClusterResponse({}));
|
|
29456
29585
|
}
|
|
29457
29586
|
|
|
29458
29587
|
/**
|
|
@@ -29506,12 +29635,7 @@ export default class Client extends OpenApi {
|
|
|
29506
29635
|
reqBodyType: "formData",
|
|
29507
29636
|
bodyType: "json",
|
|
29508
29637
|
});
|
|
29509
|
-
|
|
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
|
-
|
|
29638
|
+
return $tea.cast<DeleteDBResourceGroupResponse>(await this.callApi(params, req, runtime), new DeleteDBResourceGroupResponse({}));
|
|
29515
29639
|
}
|
|
29516
29640
|
|
|
29517
29641
|
/**
|
|
@@ -29563,12 +29687,7 @@ export default class Client extends OpenApi {
|
|
|
29563
29687
|
reqBodyType: "formData",
|
|
29564
29688
|
bodyType: "json",
|
|
29565
29689
|
});
|
|
29566
|
-
|
|
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
|
-
|
|
29690
|
+
return $tea.cast<DeleteElasticPlanResponse>(await this.callApi(params, req, runtime), new DeleteElasticPlanResponse({}));
|
|
29572
29691
|
}
|
|
29573
29692
|
|
|
29574
29693
|
/**
|
|
@@ -29586,6 +29705,8 @@ export default class Client extends OpenApi {
|
|
|
29586
29705
|
}
|
|
29587
29706
|
|
|
29588
29707
|
/**
|
|
29708
|
+
* Deletes a monitoring view.
|
|
29709
|
+
*
|
|
29589
29710
|
* @param request - DeletePerformanceViewRequest
|
|
29590
29711
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
29591
29712
|
* @returns DeletePerformanceViewResponse
|
|
@@ -29635,15 +29756,12 @@ export default class Client extends OpenApi {
|
|
|
29635
29756
|
reqBodyType: "formData",
|
|
29636
29757
|
bodyType: "json",
|
|
29637
29758
|
});
|
|
29638
|
-
|
|
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
|
-
|
|
29759
|
+
return $tea.cast<DeletePerformanceViewResponse>(await this.callApi(params, req, runtime), new DeletePerformanceViewResponse({}));
|
|
29644
29760
|
}
|
|
29645
29761
|
|
|
29646
29762
|
/**
|
|
29763
|
+
* Deletes a monitoring view.
|
|
29764
|
+
*
|
|
29647
29765
|
* @param request - DeletePerformanceViewRequest
|
|
29648
29766
|
* @returns DeletePerformanceViewResponse
|
|
29649
29767
|
*/
|
|
@@ -29696,12 +29814,7 @@ export default class Client extends OpenApi {
|
|
|
29696
29814
|
reqBodyType: "formData",
|
|
29697
29815
|
bodyType: "json",
|
|
29698
29816
|
});
|
|
29699
|
-
|
|
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
|
-
|
|
29817
|
+
return $tea.cast<DeleteProcessInstanceResponse>(await this.callApi(params, req, runtime), new DeleteProcessInstanceResponse({}));
|
|
29705
29818
|
}
|
|
29706
29819
|
|
|
29707
29820
|
/**
|
|
@@ -29756,12 +29869,7 @@ export default class Client extends OpenApi {
|
|
|
29756
29869
|
reqBodyType: "formData",
|
|
29757
29870
|
bodyType: "json",
|
|
29758
29871
|
});
|
|
29759
|
-
|
|
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
|
-
|
|
29872
|
+
return $tea.cast<DeleteSparkTemplateResponse>(await this.callApi(params, req, runtime), new DeleteSparkTemplateResponse({}));
|
|
29765
29873
|
}
|
|
29766
29874
|
|
|
29767
29875
|
/**
|
|
@@ -29817,12 +29925,7 @@ export default class Client extends OpenApi {
|
|
|
29817
29925
|
reqBodyType: "formData",
|
|
29818
29926
|
bodyType: "json",
|
|
29819
29927
|
});
|
|
29820
|
-
|
|
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
|
-
|
|
29928
|
+
return $tea.cast<DeleteSparkTemplateFileResponse>(await this.callApi(params, req, runtime), new DeleteSparkTemplateFileResponse({}));
|
|
29826
29929
|
}
|
|
29827
29930
|
|
|
29828
29931
|
/**
|
|
@@ -29884,12 +29987,7 @@ export default class Client extends OpenApi {
|
|
|
29884
29987
|
reqBodyType: "formData",
|
|
29885
29988
|
bodyType: "json",
|
|
29886
29989
|
});
|
|
29887
|
-
|
|
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
|
-
|
|
29990
|
+
return $tea.cast<DescribeAccountAllPrivilegesResponse>(await this.callApi(params, req, runtime), new DescribeAccountAllPrivilegesResponse({}));
|
|
29893
29991
|
}
|
|
29894
29992
|
|
|
29895
29993
|
/**
|
|
@@ -29969,12 +30067,7 @@ export default class Client extends OpenApi {
|
|
|
29969
30067
|
reqBodyType: "formData",
|
|
29970
30068
|
bodyType: "json",
|
|
29971
30069
|
});
|
|
29972
|
-
|
|
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
|
-
|
|
30070
|
+
return $tea.cast<DescribeAccountPrivilegeObjectsResponse>(await this.callApi(params, req, runtime), new DescribeAccountPrivilegeObjectsResponse({}));
|
|
29978
30071
|
}
|
|
29979
30072
|
|
|
29980
30073
|
/**
|
|
@@ -30051,12 +30144,7 @@ export default class Client extends OpenApi {
|
|
|
30051
30144
|
reqBodyType: "formData",
|
|
30052
30145
|
bodyType: "json",
|
|
30053
30146
|
});
|
|
30054
|
-
|
|
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
|
-
|
|
30147
|
+
return $tea.cast<DescribeAccountPrivilegesResponse>(await this.callApi(params, req, runtime), new DescribeAccountPrivilegesResponse({}));
|
|
30060
30148
|
}
|
|
30061
30149
|
|
|
30062
30150
|
/**
|
|
@@ -30113,12 +30201,7 @@ export default class Client extends OpenApi {
|
|
|
30113
30201
|
reqBodyType: "formData",
|
|
30114
30202
|
bodyType: "json",
|
|
30115
30203
|
});
|
|
30116
|
-
|
|
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
|
-
|
|
30204
|
+
return $tea.cast<DescribeAccountsResponse>(await this.callApi(params, req, runtime), new DescribeAccountsResponse({}));
|
|
30122
30205
|
}
|
|
30123
30206
|
|
|
30124
30207
|
/**
|
|
@@ -30179,12 +30262,7 @@ export default class Client extends OpenApi {
|
|
|
30179
30262
|
reqBodyType: "formData",
|
|
30180
30263
|
bodyType: "json",
|
|
30181
30264
|
});
|
|
30182
|
-
|
|
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
|
-
|
|
30265
|
+
return $tea.cast<DescribeAdbMySqlColumnsResponse>(await this.callApi(params, req, runtime), new DescribeAdbMySqlColumnsResponse({}));
|
|
30188
30266
|
}
|
|
30189
30267
|
|
|
30190
30268
|
/**
|
|
@@ -30238,12 +30316,7 @@ export default class Client extends OpenApi {
|
|
|
30238
30316
|
reqBodyType: "formData",
|
|
30239
30317
|
bodyType: "json",
|
|
30240
30318
|
});
|
|
30241
|
-
|
|
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
|
-
|
|
30319
|
+
return $tea.cast<DescribeAdbMySqlSchemasResponse>(await this.callApi(params, req, runtime), new DescribeAdbMySqlSchemasResponse({}));
|
|
30247
30320
|
}
|
|
30248
30321
|
|
|
30249
30322
|
/**
|
|
@@ -30301,12 +30374,7 @@ export default class Client extends OpenApi {
|
|
|
30301
30374
|
reqBodyType: "formData",
|
|
30302
30375
|
bodyType: "json",
|
|
30303
30376
|
});
|
|
30304
|
-
|
|
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
|
-
|
|
30377
|
+
return $tea.cast<DescribeAdbMySqlTablesResponse>(await this.callApi(params, req, runtime), new DescribeAdbMySqlTablesResponse({}));
|
|
30310
30378
|
}
|
|
30311
30379
|
|
|
30312
30380
|
/**
|
|
@@ -30368,12 +30436,7 @@ export default class Client extends OpenApi {
|
|
|
30368
30436
|
reqBodyType: "formData",
|
|
30369
30437
|
bodyType: "json",
|
|
30370
30438
|
});
|
|
30371
|
-
|
|
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
|
-
|
|
30439
|
+
return $tea.cast<DescribeAllDataSourceResponse>(await this.callApi(params, req, runtime), new DescribeAllDataSourceResponse({}));
|
|
30377
30440
|
}
|
|
30378
30441
|
|
|
30379
30442
|
/**
|
|
@@ -30476,12 +30539,7 @@ export default class Client extends OpenApi {
|
|
|
30476
30539
|
reqBodyType: "formData",
|
|
30477
30540
|
bodyType: "json",
|
|
30478
30541
|
});
|
|
30479
|
-
|
|
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
|
-
|
|
30542
|
+
return $tea.cast<DescribeApsActionLogsResponse>(await this.callApi(params, req, runtime), new DescribeApsActionLogsResponse({}));
|
|
30485
30543
|
}
|
|
30486
30544
|
|
|
30487
30545
|
/**
|
|
@@ -30540,12 +30598,7 @@ export default class Client extends OpenApi {
|
|
|
30540
30598
|
reqBodyType: "formData",
|
|
30541
30599
|
bodyType: "json",
|
|
30542
30600
|
});
|
|
30543
|
-
|
|
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
|
-
|
|
30601
|
+
return $tea.cast<DescribeApsResourceGroupsResponse>(await this.callApi(params, req, runtime), new DescribeApsResourceGroupsResponse({}));
|
|
30549
30602
|
}
|
|
30550
30603
|
|
|
30551
30604
|
/**
|
|
@@ -30667,12 +30720,7 @@ export default class Client extends OpenApi {
|
|
|
30667
30720
|
reqBodyType: "formData",
|
|
30668
30721
|
bodyType: "json",
|
|
30669
30722
|
});
|
|
30670
|
-
|
|
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
|
-
|
|
30723
|
+
return $tea.cast<DescribeAuditLogRecordsResponse>(await this.callApi(params, req, runtime), new DescribeAuditLogRecordsResponse({}));
|
|
30676
30724
|
}
|
|
30677
30725
|
|
|
30678
30726
|
/**
|
|
@@ -30735,12 +30783,7 @@ export default class Client extends OpenApi {
|
|
|
30735
30783
|
reqBodyType: "formData",
|
|
30736
30784
|
bodyType: "json",
|
|
30737
30785
|
});
|
|
30738
|
-
|
|
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
|
-
|
|
30786
|
+
return $tea.cast<DescribeBackupPolicyResponse>(await this.callApi(params, req, runtime), new DescribeBackupPolicyResponse({}));
|
|
30744
30787
|
}
|
|
30745
30788
|
|
|
30746
30789
|
/**
|
|
@@ -30820,12 +30863,7 @@ export default class Client extends OpenApi {
|
|
|
30820
30863
|
reqBodyType: "formData",
|
|
30821
30864
|
bodyType: "json",
|
|
30822
30865
|
});
|
|
30823
|
-
|
|
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
|
-
|
|
30866
|
+
return $tea.cast<DescribeBackupsResponse>(await this.callApi(params, req, runtime), new DescribeBackupsResponse({}));
|
|
30829
30867
|
}
|
|
30830
30868
|
|
|
30831
30869
|
/**
|
|
@@ -30879,12 +30917,7 @@ export default class Client extends OpenApi {
|
|
|
30879
30917
|
reqBodyType: "formData",
|
|
30880
30918
|
bodyType: "json",
|
|
30881
30919
|
});
|
|
30882
|
-
|
|
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
|
-
|
|
30920
|
+
return $tea.cast<DescribeClusterAccessWhiteListResponse>(await this.callApi(params, req, runtime), new DescribeClusterAccessWhiteListResponse({}));
|
|
30888
30921
|
}
|
|
30889
30922
|
|
|
30890
30923
|
/**
|
|
@@ -30936,12 +30969,7 @@ export default class Client extends OpenApi {
|
|
|
30936
30969
|
reqBodyType: "formData",
|
|
30937
30970
|
bodyType: "json",
|
|
30938
30971
|
});
|
|
30939
|
-
|
|
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
|
-
|
|
30972
|
+
return $tea.cast<DescribeClusterNetInfoResponse>(await this.callApi(params, req, runtime), new DescribeClusterNetInfoResponse({}));
|
|
30945
30973
|
}
|
|
30946
30974
|
|
|
30947
30975
|
/**
|
|
@@ -30989,12 +31017,7 @@ export default class Client extends OpenApi {
|
|
|
30989
31017
|
reqBodyType: "formData",
|
|
30990
31018
|
bodyType: "json",
|
|
30991
31019
|
});
|
|
30992
|
-
|
|
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
|
-
|
|
31020
|
+
return $tea.cast<DescribeClusterResourceDetailResponse>(await this.callApi(params, req, runtime), new DescribeClusterResourceDetailResponse({}));
|
|
30998
31021
|
}
|
|
30999
31022
|
|
|
31000
31023
|
/**
|
|
@@ -31035,12 +31058,7 @@ export default class Client extends OpenApi {
|
|
|
31035
31058
|
reqBodyType: "formData",
|
|
31036
31059
|
bodyType: "json",
|
|
31037
31060
|
});
|
|
31038
|
-
|
|
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
|
-
|
|
31061
|
+
return $tea.cast<DescribeClusterResourceUsageResponse>(await this.callApi(params, req, runtime), new DescribeClusterResourceUsageResponse({}));
|
|
31044
31062
|
}
|
|
31045
31063
|
|
|
31046
31064
|
/**
|
|
@@ -31098,12 +31116,7 @@ export default class Client extends OpenApi {
|
|
|
31098
31116
|
reqBodyType: "formData",
|
|
31099
31117
|
bodyType: "json",
|
|
31100
31118
|
});
|
|
31101
|
-
|
|
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
|
-
|
|
31119
|
+
return $tea.cast<DescribeColumnsResponse>(await this.callApi(params, req, runtime), new DescribeColumnsResponse({}));
|
|
31107
31120
|
}
|
|
31108
31121
|
|
|
31109
31122
|
/**
|
|
@@ -31164,12 +31177,7 @@ export default class Client extends OpenApi {
|
|
|
31164
31177
|
reqBodyType: "formData",
|
|
31165
31178
|
bodyType: "json",
|
|
31166
31179
|
});
|
|
31167
|
-
|
|
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
|
-
|
|
31180
|
+
return $tea.cast<DescribeComputeResourceUsageResponse>(await this.callApi(params, req, runtime), new DescribeComputeResourceUsageResponse({}));
|
|
31173
31181
|
}
|
|
31174
31182
|
|
|
31175
31183
|
/**
|
|
@@ -31217,12 +31225,7 @@ export default class Client extends OpenApi {
|
|
|
31217
31225
|
reqBodyType: "formData",
|
|
31218
31226
|
bodyType: "json",
|
|
31219
31227
|
});
|
|
31220
|
-
|
|
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
|
-
|
|
31228
|
+
return $tea.cast<DescribeDBClusterAttributeResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterAttributeResponse({}));
|
|
31226
31229
|
}
|
|
31227
31230
|
|
|
31228
31231
|
/**
|
|
@@ -31274,12 +31277,7 @@ export default class Client extends OpenApi {
|
|
|
31274
31277
|
reqBodyType: "formData",
|
|
31275
31278
|
bodyType: "json",
|
|
31276
31279
|
});
|
|
31277
|
-
|
|
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
|
-
|
|
31280
|
+
return $tea.cast<DescribeDBClusterHealthStatusResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterHealthStatusResponse({}));
|
|
31283
31281
|
}
|
|
31284
31282
|
|
|
31285
31283
|
/**
|
|
@@ -31347,12 +31345,7 @@ export default class Client extends OpenApi {
|
|
|
31347
31345
|
reqBodyType: "formData",
|
|
31348
31346
|
bodyType: "json",
|
|
31349
31347
|
});
|
|
31350
|
-
|
|
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
|
-
|
|
31348
|
+
return $tea.cast<DescribeDBClusterPerformanceResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterPerformanceResponse({}));
|
|
31356
31349
|
}
|
|
31357
31350
|
|
|
31358
31351
|
/**
|
|
@@ -31420,12 +31413,7 @@ export default class Client extends OpenApi {
|
|
|
31420
31413
|
reqBodyType: "formData",
|
|
31421
31414
|
bodyType: "json",
|
|
31422
31415
|
});
|
|
31423
|
-
|
|
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
|
-
|
|
31416
|
+
return $tea.cast<DescribeDBClusterSpaceSummaryResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterSpaceSummaryResponse({}));
|
|
31429
31417
|
}
|
|
31430
31418
|
|
|
31431
31419
|
/**
|
|
@@ -31473,12 +31461,7 @@ export default class Client extends OpenApi {
|
|
|
31473
31461
|
reqBodyType: "formData",
|
|
31474
31462
|
bodyType: "json",
|
|
31475
31463
|
});
|
|
31476
|
-
|
|
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
|
-
|
|
31464
|
+
return $tea.cast<DescribeDBClusterStatusResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterStatusResponse({}));
|
|
31482
31465
|
}
|
|
31483
31466
|
|
|
31484
31467
|
/**
|
|
@@ -31562,12 +31545,7 @@ export default class Client extends OpenApi {
|
|
|
31562
31545
|
reqBodyType: "formData",
|
|
31563
31546
|
bodyType: "json",
|
|
31564
31547
|
});
|
|
31565
|
-
|
|
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
|
-
|
|
31548
|
+
return $tea.cast<DescribeDBClustersResponse>(await this.callApi(params, req, runtime), new DescribeDBClustersResponse({}));
|
|
31571
31549
|
}
|
|
31572
31550
|
|
|
31573
31551
|
/**
|
|
@@ -31631,12 +31609,7 @@ export default class Client extends OpenApi {
|
|
|
31631
31609
|
reqBodyType: "formData",
|
|
31632
31610
|
bodyType: "json",
|
|
31633
31611
|
});
|
|
31634
|
-
|
|
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
|
-
|
|
31612
|
+
return $tea.cast<DescribeDBResourceGroupResponse>(await this.callApi(params, req, runtime), new DescribeDBResourceGroupResponse({}));
|
|
31640
31613
|
}
|
|
31641
31614
|
|
|
31642
31615
|
/**
|
|
@@ -31704,12 +31677,7 @@ export default class Client extends OpenApi {
|
|
|
31704
31677
|
reqBodyType: "formData",
|
|
31705
31678
|
bodyType: "json",
|
|
31706
31679
|
});
|
|
31707
|
-
|
|
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
|
-
|
|
31680
|
+
return $tea.cast<DescribeDiagnosisDimensionsResponse>(await this.callApi(params, req, runtime), new DescribeDiagnosisDimensionsResponse({}));
|
|
31713
31681
|
}
|
|
31714
31682
|
|
|
31715
31683
|
/**
|
|
@@ -31829,12 +31797,7 @@ export default class Client extends OpenApi {
|
|
|
31829
31797
|
reqBodyType: "formData",
|
|
31830
31798
|
bodyType: "json",
|
|
31831
31799
|
});
|
|
31832
|
-
|
|
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
|
-
|
|
31800
|
+
return $tea.cast<DescribeDiagnosisRecordsResponse>(await this.callApi(params, req, runtime), new DescribeDiagnosisRecordsResponse({}));
|
|
31838
31801
|
}
|
|
31839
31802
|
|
|
31840
31803
|
/**
|
|
@@ -31878,12 +31841,7 @@ export default class Client extends OpenApi {
|
|
|
31878
31841
|
reqBodyType: "formData",
|
|
31879
31842
|
bodyType: "json",
|
|
31880
31843
|
});
|
|
31881
|
-
|
|
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
|
-
|
|
31844
|
+
return $tea.cast<DescribeDiagnosisSQLInfoResponse>(await this.callApi(params, req, runtime), new DescribeDiagnosisSQLInfoResponse({}));
|
|
31887
31845
|
}
|
|
31888
31846
|
|
|
31889
31847
|
/**
|
|
@@ -31939,12 +31897,7 @@ export default class Client extends OpenApi {
|
|
|
31939
31897
|
reqBodyType: "formData",
|
|
31940
31898
|
bodyType: "json",
|
|
31941
31899
|
});
|
|
31942
|
-
|
|
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
|
-
|
|
31900
|
+
return $tea.cast<DescribeDownloadRecordsResponse>(await this.callApi(params, req, runtime), new DescribeDownloadRecordsResponse({}));
|
|
31948
31901
|
}
|
|
31949
31902
|
|
|
31950
31903
|
/**
|
|
@@ -31996,12 +31949,7 @@ export default class Client extends OpenApi {
|
|
|
31996
31949
|
reqBodyType: "formData",
|
|
31997
31950
|
bodyType: "json",
|
|
31998
31951
|
});
|
|
31999
|
-
|
|
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
|
-
|
|
31952
|
+
return $tea.cast<DescribeElasticPlanAttributeResponse>(await this.callApi(params, req, runtime), new DescribeElasticPlanAttributeResponse({}));
|
|
32005
31953
|
}
|
|
32006
31954
|
|
|
32007
31955
|
/**
|
|
@@ -32073,12 +32021,7 @@ export default class Client extends OpenApi {
|
|
|
32073
32021
|
reqBodyType: "formData",
|
|
32074
32022
|
bodyType: "json",
|
|
32075
32023
|
});
|
|
32076
|
-
|
|
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
|
-
|
|
32024
|
+
return $tea.cast<DescribeElasticPlanJobsResponse>(await this.callApi(params, req, runtime), new DescribeElasticPlanJobsResponse({}));
|
|
32082
32025
|
}
|
|
32083
32026
|
|
|
32084
32027
|
/**
|
|
@@ -32134,12 +32077,7 @@ export default class Client extends OpenApi {
|
|
|
32134
32077
|
reqBodyType: "formData",
|
|
32135
32078
|
bodyType: "json",
|
|
32136
32079
|
});
|
|
32137
|
-
|
|
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
|
-
|
|
32080
|
+
return $tea.cast<DescribeElasticPlanSpecificationsResponse>(await this.callApi(params, req, runtime), new DescribeElasticPlanSpecificationsResponse({}));
|
|
32143
32081
|
}
|
|
32144
32082
|
|
|
32145
32083
|
/**
|
|
@@ -32211,12 +32149,7 @@ export default class Client extends OpenApi {
|
|
|
32211
32149
|
reqBodyType: "formData",
|
|
32212
32150
|
bodyType: "json",
|
|
32213
32151
|
});
|
|
32214
|
-
|
|
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
|
-
|
|
32152
|
+
return $tea.cast<DescribeElasticPlansResponse>(await this.callApi(params, req, runtime), new DescribeElasticPlansResponse({}));
|
|
32220
32153
|
}
|
|
32221
32154
|
|
|
32222
32155
|
/**
|
|
@@ -32257,12 +32190,7 @@ export default class Client extends OpenApi {
|
|
|
32257
32190
|
reqBodyType: "formData",
|
|
32258
32191
|
bodyType: "json",
|
|
32259
32192
|
});
|
|
32260
|
-
|
|
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
|
-
|
|
32193
|
+
return $tea.cast<DescribeEnabledPrivilegesResponse>(await this.callApi(params, req, runtime), new DescribeEnabledPrivilegesResponse({}));
|
|
32266
32194
|
}
|
|
32267
32195
|
|
|
32268
32196
|
/**
|
|
@@ -32348,12 +32276,7 @@ export default class Client extends OpenApi {
|
|
|
32348
32276
|
reqBodyType: "formData",
|
|
32349
32277
|
bodyType: "json",
|
|
32350
32278
|
});
|
|
32351
|
-
|
|
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
|
-
|
|
32279
|
+
return $tea.cast<DescribeExcessivePrimaryKeysResponse>(await this.callApi(params, req, runtime), new DescribeExcessivePrimaryKeysResponse({}));
|
|
32357
32280
|
}
|
|
32358
32281
|
|
|
32359
32282
|
/**
|
|
@@ -32406,12 +32329,7 @@ export default class Client extends OpenApi {
|
|
|
32406
32329
|
reqBodyType: "formData",
|
|
32407
32330
|
bodyType: "json",
|
|
32408
32331
|
});
|
|
32409
|
-
|
|
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
|
-
|
|
32332
|
+
return $tea.cast<DescribeJobResourceUsageResponse>(await this.callApi(params, req, runtime), new DescribeJobResourceUsageResponse({}));
|
|
32415
32333
|
}
|
|
32416
32334
|
|
|
32417
32335
|
/**
|
|
@@ -32477,12 +32395,7 @@ export default class Client extends OpenApi {
|
|
|
32477
32395
|
reqBodyType: "formData",
|
|
32478
32396
|
bodyType: "json",
|
|
32479
32397
|
});
|
|
32480
|
-
|
|
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
|
-
|
|
32398
|
+
return $tea.cast<DescribePatternPerformanceResponse>(await this.callApi(params, req, runtime), new DescribePatternPerformanceResponse({}));
|
|
32486
32399
|
}
|
|
32487
32400
|
|
|
32488
32401
|
/**
|
|
@@ -32502,6 +32415,8 @@ export default class Client extends OpenApi {
|
|
|
32502
32415
|
}
|
|
32503
32416
|
|
|
32504
32417
|
/**
|
|
32418
|
+
* Queries the information about a monitoring view.
|
|
32419
|
+
*
|
|
32505
32420
|
* @param request - DescribePerformanceViewAttributeRequest
|
|
32506
32421
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
32507
32422
|
* @returns DescribePerformanceViewAttributeResponse
|
|
@@ -32551,15 +32466,12 @@ export default class Client extends OpenApi {
|
|
|
32551
32466
|
reqBodyType: "formData",
|
|
32552
32467
|
bodyType: "json",
|
|
32553
32468
|
});
|
|
32554
|
-
|
|
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
|
-
|
|
32469
|
+
return $tea.cast<DescribePerformanceViewAttributeResponse>(await this.callApi(params, req, runtime), new DescribePerformanceViewAttributeResponse({}));
|
|
32560
32470
|
}
|
|
32561
32471
|
|
|
32562
32472
|
/**
|
|
32473
|
+
* Queries the information about a monitoring view.
|
|
32474
|
+
*
|
|
32563
32475
|
* @param request - DescribePerformanceViewAttributeRequest
|
|
32564
32476
|
* @returns DescribePerformanceViewAttributeResponse
|
|
32565
32477
|
*/
|
|
@@ -32569,6 +32481,8 @@ export default class Client extends OpenApi {
|
|
|
32569
32481
|
}
|
|
32570
32482
|
|
|
32571
32483
|
/**
|
|
32484
|
+
* Queries a list of monitoring views.
|
|
32485
|
+
*
|
|
32572
32486
|
* @param request - DescribePerformanceViewsRequest
|
|
32573
32487
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
32574
32488
|
* @returns DescribePerformanceViewsResponse
|
|
@@ -32614,15 +32528,12 @@ export default class Client extends OpenApi {
|
|
|
32614
32528
|
reqBodyType: "formData",
|
|
32615
32529
|
bodyType: "json",
|
|
32616
32530
|
});
|
|
32617
|
-
|
|
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
|
-
|
|
32531
|
+
return $tea.cast<DescribePerformanceViewsResponse>(await this.callApi(params, req, runtime), new DescribePerformanceViewsResponse({}));
|
|
32623
32532
|
}
|
|
32624
32533
|
|
|
32625
32534
|
/**
|
|
32535
|
+
* Queries a list of monitoring views.
|
|
32536
|
+
*
|
|
32626
32537
|
* @param request - DescribePerformanceViewsRequest
|
|
32627
32538
|
* @returns DescribePerformanceViewsResponse
|
|
32628
32539
|
*/
|
|
@@ -32682,12 +32593,7 @@ export default class Client extends OpenApi {
|
|
|
32682
32593
|
reqBodyType: "formData",
|
|
32683
32594
|
bodyType: "json",
|
|
32684
32595
|
});
|
|
32685
|
-
|
|
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
|
-
|
|
32596
|
+
return $tea.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
|
|
32691
32597
|
}
|
|
32692
32598
|
|
|
32693
32599
|
/**
|
|
@@ -32769,12 +32675,7 @@ export default class Client extends OpenApi {
|
|
|
32769
32675
|
reqBodyType: "formData",
|
|
32770
32676
|
bodyType: "json",
|
|
32771
32677
|
});
|
|
32772
|
-
|
|
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
|
-
|
|
32678
|
+
return $tea.cast<DescribeSQLPatternsResponse>(await this.callApi(params, req, runtime), new DescribeSQLPatternsResponse({}));
|
|
32778
32679
|
}
|
|
32779
32680
|
|
|
32780
32681
|
/**
|
|
@@ -32829,12 +32730,7 @@ export default class Client extends OpenApi {
|
|
|
32829
32730
|
reqBodyType: "formData",
|
|
32830
32731
|
bodyType: "json",
|
|
32831
32732
|
});
|
|
32832
|
-
|
|
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
|
-
|
|
32733
|
+
return $tea.cast<DescribeSchemasResponse>(await this.callApi(params, req, runtime), new DescribeSchemasResponse({}));
|
|
32838
32734
|
}
|
|
32839
32735
|
|
|
32840
32736
|
/**
|
|
@@ -32892,12 +32788,7 @@ export default class Client extends OpenApi {
|
|
|
32892
32788
|
reqBodyType: "formData",
|
|
32893
32789
|
bodyType: "json",
|
|
32894
32790
|
});
|
|
32895
|
-
|
|
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
|
-
|
|
32791
|
+
return $tea.cast<DescribeSparkCodeLogResponse>(await this.callApi(params, req, runtime), new DescribeSparkCodeLogResponse({}));
|
|
32901
32792
|
}
|
|
32902
32793
|
|
|
32903
32794
|
/**
|
|
@@ -32955,12 +32846,7 @@ export default class Client extends OpenApi {
|
|
|
32955
32846
|
reqBodyType: "formData",
|
|
32956
32847
|
bodyType: "json",
|
|
32957
32848
|
});
|
|
32958
|
-
|
|
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
|
-
|
|
32849
|
+
return $tea.cast<DescribeSparkCodeOutputResponse>(await this.callApi(params, req, runtime), new DescribeSparkCodeOutputResponse({}));
|
|
32964
32850
|
}
|
|
32965
32851
|
|
|
32966
32852
|
/**
|
|
@@ -33018,12 +32904,7 @@ export default class Client extends OpenApi {
|
|
|
33018
32904
|
reqBodyType: "formData",
|
|
33019
32905
|
bodyType: "json",
|
|
33020
32906
|
});
|
|
33021
|
-
|
|
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
|
-
|
|
32907
|
+
return $tea.cast<DescribeSparkCodeWebUiResponse>(await this.callApi(params, req, runtime), new DescribeSparkCodeWebUiResponse({}));
|
|
33027
32908
|
}
|
|
33028
32909
|
|
|
33029
32910
|
/**
|
|
@@ -33100,12 +32981,7 @@ export default class Client extends OpenApi {
|
|
|
33100
32981
|
reqBodyType: "formData",
|
|
33101
32982
|
bodyType: "json",
|
|
33102
32983
|
});
|
|
33103
|
-
|
|
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
|
-
|
|
32984
|
+
return $tea.cast<DescribeSqlPatternResponse>(await this.callApi(params, req, runtime), new DescribeSqlPatternResponse({}));
|
|
33109
32985
|
}
|
|
33110
32986
|
|
|
33111
32987
|
/**
|
|
@@ -33161,12 +33037,7 @@ export default class Client extends OpenApi {
|
|
|
33161
33037
|
reqBodyType: "formData",
|
|
33162
33038
|
bodyType: "json",
|
|
33163
33039
|
});
|
|
33164
|
-
|
|
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
|
-
|
|
33040
|
+
return $tea.cast<DescribeStorageResourceUsageResponse>(await this.callApi(params, req, runtime), new DescribeStorageResourceUsageResponse({}));
|
|
33170
33041
|
}
|
|
33171
33042
|
|
|
33172
33043
|
/**
|
|
@@ -33238,12 +33109,7 @@ export default class Client extends OpenApi {
|
|
|
33238
33109
|
reqBodyType: "formData",
|
|
33239
33110
|
bodyType: "json",
|
|
33240
33111
|
});
|
|
33241
|
-
|
|
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
|
-
|
|
33112
|
+
return $tea.cast<DescribeTableAccessCountResponse>(await this.callApi(params, req, runtime), new DescribeTableAccessCountResponse({}));
|
|
33247
33113
|
}
|
|
33248
33114
|
|
|
33249
33115
|
/**
|
|
@@ -33300,12 +33166,7 @@ export default class Client extends OpenApi {
|
|
|
33300
33166
|
reqBodyType: "formData",
|
|
33301
33167
|
bodyType: "json",
|
|
33302
33168
|
});
|
|
33303
|
-
|
|
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
|
-
|
|
33169
|
+
return $tea.cast<DescribeTablesResponse>(await this.callApi(params, req, runtime), new DescribeTablesResponse({}));
|
|
33309
33170
|
}
|
|
33310
33171
|
|
|
33311
33172
|
/**
|
|
@@ -33350,12 +33211,7 @@ export default class Client extends OpenApi {
|
|
|
33350
33211
|
reqBodyType: "formData",
|
|
33351
33212
|
bodyType: "json",
|
|
33352
33213
|
});
|
|
33353
|
-
|
|
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
|
-
|
|
33214
|
+
return $tea.cast<DescribeUserQuotaResponse>(await this.callApi(params, req, runtime), new DescribeUserQuotaResponse({}));
|
|
33359
33215
|
}
|
|
33360
33216
|
|
|
33361
33217
|
/**
|
|
@@ -33401,12 +33257,7 @@ export default class Client extends OpenApi {
|
|
|
33401
33257
|
reqBodyType: "formData",
|
|
33402
33258
|
bodyType: "json",
|
|
33403
33259
|
});
|
|
33404
|
-
|
|
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
|
-
|
|
33260
|
+
return $tea.cast<DetachUserENIResponse>(await this.callApi(params, req, runtime), new DetachUserENIResponse({}));
|
|
33410
33261
|
}
|
|
33411
33262
|
|
|
33412
33263
|
/**
|
|
@@ -33456,12 +33307,7 @@ export default class Client extends OpenApi {
|
|
|
33456
33307
|
reqBodyType: "formData",
|
|
33457
33308
|
bodyType: "json",
|
|
33458
33309
|
});
|
|
33459
|
-
|
|
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
|
-
|
|
33310
|
+
return $tea.cast<DisableElasticPlanResponse>(await this.callApi(params, req, runtime), new DisableElasticPlanResponse({}));
|
|
33465
33311
|
}
|
|
33466
33312
|
|
|
33467
33313
|
/**
|
|
@@ -33565,12 +33411,7 @@ export default class Client extends OpenApi {
|
|
|
33565
33411
|
reqBodyType: "formData",
|
|
33566
33412
|
bodyType: "json",
|
|
33567
33413
|
});
|
|
33568
|
-
|
|
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
|
-
|
|
33414
|
+
return $tea.cast<DownloadDiagnosisRecordsResponse>(await this.callApi(params, req, runtime), new DownloadDiagnosisRecordsResponse({}));
|
|
33574
33415
|
}
|
|
33575
33416
|
|
|
33576
33417
|
/**
|
|
@@ -33622,12 +33463,7 @@ export default class Client extends OpenApi {
|
|
|
33622
33463
|
reqBodyType: "formData",
|
|
33623
33464
|
bodyType: "json",
|
|
33624
33465
|
});
|
|
33625
|
-
|
|
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
|
-
|
|
33466
|
+
return $tea.cast<EnableElasticPlanResponse>(await this.callApi(params, req, runtime), new EnableElasticPlanResponse({}));
|
|
33631
33467
|
}
|
|
33632
33468
|
|
|
33633
33469
|
/**
|
|
@@ -33681,12 +33517,7 @@ export default class Client extends OpenApi {
|
|
|
33681
33517
|
reqBodyType: "formData",
|
|
33682
33518
|
bodyType: "json",
|
|
33683
33519
|
});
|
|
33684
|
-
|
|
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
|
-
|
|
33520
|
+
return $tea.cast<ExistRunningSQLEngineResponse>(await this.callApi(params, req, runtime), new ExistRunningSQLEngineResponse({}));
|
|
33690
33521
|
}
|
|
33691
33522
|
|
|
33692
33523
|
/**
|
|
@@ -33761,12 +33592,7 @@ export default class Client extends OpenApi {
|
|
|
33761
33592
|
reqBodyType: "formData",
|
|
33762
33593
|
bodyType: "json",
|
|
33763
33594
|
});
|
|
33764
|
-
|
|
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
|
-
|
|
33595
|
+
return $tea.cast<GetDatabaseObjectsResponse>(await this.callApi(params, req, runtime), new GetDatabaseObjectsResponse({}));
|
|
33770
33596
|
}
|
|
33771
33597
|
|
|
33772
33598
|
/**
|
|
@@ -33831,12 +33657,7 @@ export default class Client extends OpenApi {
|
|
|
33831
33657
|
reqBodyType: "formData",
|
|
33832
33658
|
bodyType: "json",
|
|
33833
33659
|
});
|
|
33834
|
-
|
|
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
|
-
|
|
33660
|
+
return $tea.cast<GetSparkAppAttemptLogResponse>(await this.callApi(params, req, runtime), new GetSparkAppAttemptLogResponse({}));
|
|
33840
33661
|
}
|
|
33841
33662
|
|
|
33842
33663
|
/**
|
|
@@ -33894,12 +33715,7 @@ export default class Client extends OpenApi {
|
|
|
33894
33715
|
reqBodyType: "formData",
|
|
33895
33716
|
bodyType: "json",
|
|
33896
33717
|
});
|
|
33897
|
-
|
|
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
|
-
|
|
33718
|
+
return $tea.cast<GetSparkAppInfoResponse>(await this.callApi(params, req, runtime), new GetSparkAppInfoResponse({}));
|
|
33903
33719
|
}
|
|
33904
33720
|
|
|
33905
33721
|
/**
|
|
@@ -33969,12 +33785,7 @@ export default class Client extends OpenApi {
|
|
|
33969
33785
|
reqBodyType: "formData",
|
|
33970
33786
|
bodyType: "json",
|
|
33971
33787
|
});
|
|
33972
|
-
|
|
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
|
-
|
|
33788
|
+
return $tea.cast<GetSparkAppLogResponse>(await this.callApi(params, req, runtime), new GetSparkAppLogResponse({}));
|
|
33978
33789
|
}
|
|
33979
33790
|
|
|
33980
33791
|
/**
|
|
@@ -34032,12 +33843,7 @@ export default class Client extends OpenApi {
|
|
|
34032
33843
|
reqBodyType: "formData",
|
|
34033
33844
|
bodyType: "json",
|
|
34034
33845
|
});
|
|
34035
|
-
|
|
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
|
-
|
|
33846
|
+
return $tea.cast<GetSparkAppMetricsResponse>(await this.callApi(params, req, runtime), new GetSparkAppMetricsResponse({}));
|
|
34041
33847
|
}
|
|
34042
33848
|
|
|
34043
33849
|
/**
|
|
@@ -34095,12 +33901,7 @@ export default class Client extends OpenApi {
|
|
|
34095
33901
|
reqBodyType: "formData",
|
|
34096
33902
|
bodyType: "json",
|
|
34097
33903
|
});
|
|
34098
|
-
|
|
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
|
-
|
|
33904
|
+
return $tea.cast<GetSparkAppStateResponse>(await this.callApi(params, req, runtime), new GetSparkAppStateResponse({}));
|
|
34104
33905
|
}
|
|
34105
33906
|
|
|
34106
33907
|
/**
|
|
@@ -34158,12 +33959,7 @@ export default class Client extends OpenApi {
|
|
|
34158
33959
|
reqBodyType: "formData",
|
|
34159
33960
|
bodyType: "json",
|
|
34160
33961
|
});
|
|
34161
|
-
|
|
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
|
-
|
|
33962
|
+
return $tea.cast<GetSparkAppWebUiAddressResponse>(await this.callApi(params, req, runtime), new GetSparkAppWebUiAddressResponse({}));
|
|
34167
33963
|
}
|
|
34168
33964
|
|
|
34169
33965
|
/**
|
|
@@ -34215,12 +34011,7 @@ export default class Client extends OpenApi {
|
|
|
34215
34011
|
reqBodyType: "formData",
|
|
34216
34012
|
bodyType: "json",
|
|
34217
34013
|
});
|
|
34218
|
-
|
|
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
|
-
|
|
34014
|
+
return $tea.cast<GetSparkConfigLogPathResponse>(await this.callApi(params, req, runtime), new GetSparkConfigLogPathResponse({}));
|
|
34224
34015
|
}
|
|
34225
34016
|
|
|
34226
34017
|
/**
|
|
@@ -34272,12 +34063,7 @@ export default class Client extends OpenApi {
|
|
|
34272
34063
|
reqBodyType: "formData",
|
|
34273
34064
|
bodyType: "json",
|
|
34274
34065
|
});
|
|
34275
|
-
|
|
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
|
-
|
|
34066
|
+
return $tea.cast<GetSparkDefinitionsResponse>(await this.callApi(params, req, runtime), new GetSparkDefinitionsResponse({}));
|
|
34281
34067
|
}
|
|
34282
34068
|
|
|
34283
34069
|
/**
|
|
@@ -34329,12 +34115,7 @@ export default class Client extends OpenApi {
|
|
|
34329
34115
|
reqBodyType: "formData",
|
|
34330
34116
|
bodyType: "json",
|
|
34331
34117
|
});
|
|
34332
|
-
|
|
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
|
-
|
|
34118
|
+
return $tea.cast<GetSparkLogAnalyzeTaskResponse>(await this.callApi(params, req, runtime), new GetSparkLogAnalyzeTaskResponse({}));
|
|
34338
34119
|
}
|
|
34339
34120
|
|
|
34340
34121
|
/**
|
|
@@ -34390,12 +34171,7 @@ export default class Client extends OpenApi {
|
|
|
34390
34171
|
reqBodyType: "formData",
|
|
34391
34172
|
bodyType: "json",
|
|
34392
34173
|
});
|
|
34393
|
-
|
|
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
|
-
|
|
34174
|
+
return $tea.cast<GetSparkSQLEngineStateResponse>(await this.callApi(params, req, runtime), new GetSparkSQLEngineStateResponse({}));
|
|
34399
34175
|
}
|
|
34400
34176
|
|
|
34401
34177
|
/**
|
|
@@ -34451,12 +34227,7 @@ export default class Client extends OpenApi {
|
|
|
34451
34227
|
reqBodyType: "formData",
|
|
34452
34228
|
bodyType: "json",
|
|
34453
34229
|
});
|
|
34454
|
-
|
|
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
|
-
|
|
34230
|
+
return $tea.cast<GetSparkTemplateFileContentResponse>(await this.callApi(params, req, runtime), new GetSparkTemplateFileContentResponse({}));
|
|
34460
34231
|
}
|
|
34461
34232
|
|
|
34462
34233
|
/**
|
|
@@ -34508,12 +34279,7 @@ export default class Client extends OpenApi {
|
|
|
34508
34279
|
reqBodyType: "formData",
|
|
34509
34280
|
bodyType: "json",
|
|
34510
34281
|
});
|
|
34511
|
-
|
|
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
|
-
|
|
34282
|
+
return $tea.cast<GetSparkTemplateFolderTreeResponse>(await this.callApi(params, req, runtime), new GetSparkTemplateFolderTreeResponse({}));
|
|
34517
34283
|
}
|
|
34518
34284
|
|
|
34519
34285
|
/**
|
|
@@ -34565,12 +34331,7 @@ export default class Client extends OpenApi {
|
|
|
34565
34331
|
reqBodyType: "formData",
|
|
34566
34332
|
bodyType: "json",
|
|
34567
34333
|
});
|
|
34568
|
-
|
|
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
|
-
|
|
34334
|
+
return $tea.cast<GetSparkTemplateFullTreeResponse>(await this.callApi(params, req, runtime), new GetSparkTemplateFullTreeResponse({}));
|
|
34574
34335
|
}
|
|
34575
34336
|
|
|
34576
34337
|
/**
|
|
@@ -34629,12 +34390,7 @@ export default class Client extends OpenApi {
|
|
|
34629
34390
|
reqBodyType: "formData",
|
|
34630
34391
|
bodyType: "json",
|
|
34631
34392
|
});
|
|
34632
|
-
|
|
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
|
-
|
|
34393
|
+
return $tea.cast<GetTableResponse>(await this.callApi(params, req, runtime), new GetTableResponse({}));
|
|
34638
34394
|
}
|
|
34639
34395
|
|
|
34640
34396
|
/**
|
|
@@ -34704,12 +34460,7 @@ export default class Client extends OpenApi {
|
|
|
34704
34460
|
reqBodyType: "formData",
|
|
34705
34461
|
bodyType: "json",
|
|
34706
34462
|
});
|
|
34707
|
-
|
|
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
|
-
|
|
34463
|
+
return $tea.cast<GetTableColumnsResponse>(await this.callApi(params, req, runtime), new GetTableColumnsResponse({}));
|
|
34713
34464
|
}
|
|
34714
34465
|
|
|
34715
34466
|
/**
|
|
@@ -34771,12 +34522,7 @@ export default class Client extends OpenApi {
|
|
|
34771
34522
|
reqBodyType: "formData",
|
|
34772
34523
|
bodyType: "json",
|
|
34773
34524
|
});
|
|
34774
|
-
|
|
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
|
-
|
|
34525
|
+
return $tea.cast<GetTableDDLResponse>(await this.callApi(params, req, runtime), new GetTableDDLResponse({}));
|
|
34780
34526
|
}
|
|
34781
34527
|
|
|
34782
34528
|
/**
|
|
@@ -34858,12 +34604,7 @@ export default class Client extends OpenApi {
|
|
|
34858
34604
|
reqBodyType: "formData",
|
|
34859
34605
|
bodyType: "json",
|
|
34860
34606
|
});
|
|
34861
|
-
|
|
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
|
-
|
|
34607
|
+
return $tea.cast<GetTableObjectsResponse>(await this.callApi(params, req, runtime), new GetTableObjectsResponse({}));
|
|
34867
34608
|
}
|
|
34868
34609
|
|
|
34869
34610
|
/**
|
|
@@ -34921,12 +34662,7 @@ export default class Client extends OpenApi {
|
|
|
34921
34662
|
reqBodyType: "formData",
|
|
34922
34663
|
bodyType: "json",
|
|
34923
34664
|
});
|
|
34924
|
-
|
|
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
|
-
|
|
34665
|
+
return $tea.cast<GetViewDDLResponse>(await this.callApi(params, req, runtime), new GetViewDDLResponse({}));
|
|
34930
34666
|
}
|
|
34931
34667
|
|
|
34932
34668
|
/**
|
|
@@ -35008,12 +34744,7 @@ export default class Client extends OpenApi {
|
|
|
35008
34744
|
reqBodyType: "formData",
|
|
35009
34745
|
bodyType: "json",
|
|
35010
34746
|
});
|
|
35011
|
-
|
|
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
|
-
|
|
34747
|
+
return $tea.cast<GetViewObjectsResponse>(await this.callApi(params, req, runtime), new GetViewObjectsResponse({}));
|
|
35017
34748
|
}
|
|
35018
34749
|
|
|
35019
34750
|
/**
|
|
@@ -35070,12 +34801,7 @@ export default class Client extends OpenApi {
|
|
|
35070
34801
|
reqBodyType: "formData",
|
|
35071
34802
|
bodyType: "json",
|
|
35072
34803
|
});
|
|
35073
|
-
|
|
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
|
-
|
|
34804
|
+
return $tea.cast<KillSparkAppResponse>(await this.callApi(params, req, runtime), new KillSparkAppResponse({}));
|
|
35079
34805
|
}
|
|
35080
34806
|
|
|
35081
34807
|
/**
|
|
@@ -35127,12 +34853,7 @@ export default class Client extends OpenApi {
|
|
|
35127
34853
|
reqBodyType: "formData",
|
|
35128
34854
|
bodyType: "json",
|
|
35129
34855
|
});
|
|
35130
|
-
|
|
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
|
-
|
|
34856
|
+
return $tea.cast<KillSparkLogAnalyzeTaskResponse>(await this.callApi(params, req, runtime), new KillSparkLogAnalyzeTaskResponse({}));
|
|
35136
34857
|
}
|
|
35137
34858
|
|
|
35138
34859
|
/**
|
|
@@ -35188,12 +34909,7 @@ export default class Client extends OpenApi {
|
|
|
35188
34909
|
reqBodyType: "formData",
|
|
35189
34910
|
bodyType: "json",
|
|
35190
34911
|
});
|
|
35191
|
-
|
|
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
|
-
|
|
34912
|
+
return $tea.cast<KillSparkSQLEngineResponse>(await this.callApi(params, req, runtime), new KillSparkSQLEngineResponse({}));
|
|
35197
34913
|
}
|
|
35198
34914
|
|
|
35199
34915
|
/**
|
|
@@ -35257,12 +34973,7 @@ export default class Client extends OpenApi {
|
|
|
35257
34973
|
reqBodyType: "formData",
|
|
35258
34974
|
bodyType: "json",
|
|
35259
34975
|
});
|
|
35260
|
-
|
|
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
|
-
|
|
34976
|
+
return $tea.cast<ListSparkAppAttemptsResponse>(await this.callApi(params, req, runtime), new ListSparkAppAttemptsResponse({}));
|
|
35266
34977
|
}
|
|
35267
34978
|
|
|
35268
34979
|
/**
|
|
@@ -35321,12 +35032,7 @@ export default class Client extends OpenApi {
|
|
|
35321
35032
|
reqBodyType: "formData",
|
|
35322
35033
|
bodyType: "json",
|
|
35323
35034
|
});
|
|
35324
|
-
|
|
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
|
-
|
|
35035
|
+
return $tea.cast<ListSparkAppsResponse>(await this.callApi(params, req, runtime), new ListSparkAppsResponse({}));
|
|
35330
35036
|
}
|
|
35331
35037
|
|
|
35332
35038
|
/**
|
|
@@ -35381,12 +35087,7 @@ export default class Client extends OpenApi {
|
|
|
35381
35087
|
reqBodyType: "formData",
|
|
35382
35088
|
bodyType: "json",
|
|
35383
35089
|
});
|
|
35384
|
-
|
|
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
|
-
|
|
35090
|
+
return $tea.cast<ListSparkLogAnalyzeTasksResponse>(await this.callApi(params, req, runtime), new ListSparkLogAnalyzeTasksResponse({}));
|
|
35390
35091
|
}
|
|
35391
35092
|
|
|
35392
35093
|
/**
|
|
@@ -35438,12 +35139,7 @@ export default class Client extends OpenApi {
|
|
|
35438
35139
|
reqBodyType: "formData",
|
|
35439
35140
|
bodyType: "json",
|
|
35440
35141
|
});
|
|
35441
|
-
|
|
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
|
-
|
|
35142
|
+
return $tea.cast<ListSparkTemplateFileIdsResponse>(await this.callApi(params, req, runtime), new ListSparkTemplateFileIdsResponse({}));
|
|
35447
35143
|
}
|
|
35448
35144
|
|
|
35449
35145
|
/**
|
|
@@ -35493,12 +35189,7 @@ export default class Client extends OpenApi {
|
|
|
35493
35189
|
reqBodyType: "formData",
|
|
35494
35190
|
bodyType: "json",
|
|
35495
35191
|
});
|
|
35496
|
-
|
|
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
|
-
|
|
35192
|
+
return $tea.cast<LoadSampleDataSetResponse>(await this.callApi(params, req, runtime), new LoadSampleDataSetResponse({}));
|
|
35502
35193
|
}
|
|
35503
35194
|
|
|
35504
35195
|
/**
|
|
@@ -35558,12 +35249,7 @@ export default class Client extends OpenApi {
|
|
|
35558
35249
|
reqBodyType: "formData",
|
|
35559
35250
|
bodyType: "json",
|
|
35560
35251
|
});
|
|
35561
|
-
|
|
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
|
-
|
|
35252
|
+
return $tea.cast<ModifyAccountDescriptionResponse>(await this.callApi(params, req, runtime), new ModifyAccountDescriptionResponse({}));
|
|
35567
35253
|
}
|
|
35568
35254
|
|
|
35569
35255
|
/**
|
|
@@ -35629,12 +35315,7 @@ export default class Client extends OpenApi {
|
|
|
35629
35315
|
reqBodyType: "formData",
|
|
35630
35316
|
bodyType: "json",
|
|
35631
35317
|
});
|
|
35632
|
-
|
|
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
|
-
|
|
35318
|
+
return $tea.cast<ModifyAccountPrivilegesResponse>(await this.callApi(params, req, runtime), new ModifyAccountPrivilegesResponse({}));
|
|
35638
35319
|
}
|
|
35639
35320
|
|
|
35640
35321
|
/**
|
|
@@ -35710,12 +35391,7 @@ export default class Client extends OpenApi {
|
|
|
35710
35391
|
reqBodyType: "formData",
|
|
35711
35392
|
bodyType: "json",
|
|
35712
35393
|
});
|
|
35713
|
-
|
|
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
|
-
|
|
35394
|
+
return $tea.cast<ModifyAuditLogConfigResponse>(await this.callApi(params, req, runtime), new ModifyAuditLogConfigResponse({}));
|
|
35719
35395
|
}
|
|
35720
35396
|
|
|
35721
35397
|
/**
|
|
@@ -35799,12 +35475,7 @@ export default class Client extends OpenApi {
|
|
|
35799
35475
|
reqBodyType: "formData",
|
|
35800
35476
|
bodyType: "json",
|
|
35801
35477
|
});
|
|
35802
|
-
|
|
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
|
-
|
|
35478
|
+
return $tea.cast<ModifyBackupPolicyResponse>(await this.callApi(params, req, runtime), new ModifyBackupPolicyResponse({}));
|
|
35808
35479
|
}
|
|
35809
35480
|
|
|
35810
35481
|
/**
|
|
@@ -35868,12 +35539,7 @@ export default class Client extends OpenApi {
|
|
|
35868
35539
|
reqBodyType: "formData",
|
|
35869
35540
|
bodyType: "json",
|
|
35870
35541
|
});
|
|
35871
|
-
|
|
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
|
-
|
|
35542
|
+
return $tea.cast<ModifyClusterAccessWhiteListResponse>(await this.callApi(params, req, runtime), new ModifyClusterAccessWhiteListResponse({}));
|
|
35877
35543
|
}
|
|
35878
35544
|
|
|
35879
35545
|
/**
|
|
@@ -35933,12 +35599,7 @@ export default class Client extends OpenApi {
|
|
|
35933
35599
|
reqBodyType: "formData",
|
|
35934
35600
|
bodyType: "json",
|
|
35935
35601
|
});
|
|
35936
|
-
|
|
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
|
-
|
|
35602
|
+
return $tea.cast<ModifyClusterConnectionStringResponse>(await this.callApi(params, req, runtime), new ModifyClusterConnectionStringResponse({}));
|
|
35942
35603
|
}
|
|
35943
35604
|
|
|
35944
35605
|
/**
|
|
@@ -35965,7 +35626,7 @@ export default class Client extends OpenApi {
|
|
|
35965
35626
|
* * If the cluster has a built-in dataset loaded, make sure that the cluster has reserved storage resources of at least 24 AnalyticDB compute units (ACUs). Otherwise, the built-in dataset cannot be used.
|
|
35966
35627
|
* * When the scaling process is about to end, transient connections may occur. We recommend that you scale your cluster during off-peak hours or make sure that your application is configured to automatically reconnect to your cluster.
|
|
35967
35628
|
* * You can change an AnalyticDB for MySQL cluster from Data Warehouse Edition to Data Lakehouse Edition, but not the other way around. For more information, see Change a cluster from Data Warehouse Edition to Data Lakehouse Edition.
|
|
35968
|
-
* * For information about the endpoints of
|
|
35629
|
+
* * For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
35969
35630
|
*
|
|
35970
35631
|
* @param request - ModifyDBClusterRequest
|
|
35971
35632
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -36032,12 +35693,7 @@ export default class Client extends OpenApi {
|
|
|
36032
35693
|
reqBodyType: "formData",
|
|
36033
35694
|
bodyType: "json",
|
|
36034
35695
|
});
|
|
36035
|
-
|
|
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
|
-
|
|
35696
|
+
return $tea.cast<ModifyDBClusterResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterResponse({}));
|
|
36041
35697
|
}
|
|
36042
35698
|
|
|
36043
35699
|
/**
|
|
@@ -36050,7 +35706,7 @@ export default class Client extends OpenApi {
|
|
|
36050
35706
|
* * If the cluster has a built-in dataset loaded, make sure that the cluster has reserved storage resources of at least 24 AnalyticDB compute units (ACUs). Otherwise, the built-in dataset cannot be used.
|
|
36051
35707
|
* * When the scaling process is about to end, transient connections may occur. We recommend that you scale your cluster during off-peak hours or make sure that your application is configured to automatically reconnect to your cluster.
|
|
36052
35708
|
* * You can change an AnalyticDB for MySQL cluster from Data Warehouse Edition to Data Lakehouse Edition, but not the other way around. For more information, see Change a cluster from Data Warehouse Edition to Data Lakehouse Edition.
|
|
36053
|
-
* * For information about the endpoints of
|
|
35709
|
+
* * For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](https://help.aliyun.com/document_detail/612373.html).
|
|
36054
35710
|
*
|
|
36055
35711
|
* @param request - ModifyDBClusterRequest
|
|
36056
35712
|
* @returns ModifyDBClusterResponse
|
|
@@ -36095,12 +35751,7 @@ export default class Client extends OpenApi {
|
|
|
36095
35751
|
reqBodyType: "formData",
|
|
36096
35752
|
bodyType: "json",
|
|
36097
35753
|
});
|
|
36098
|
-
|
|
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
|
-
|
|
35754
|
+
return $tea.cast<ModifyDBClusterDescriptionResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterDescriptionResponse({}));
|
|
36104
35755
|
}
|
|
36105
35756
|
|
|
36106
35757
|
/**
|
|
@@ -36152,12 +35803,7 @@ export default class Client extends OpenApi {
|
|
|
36152
35803
|
reqBodyType: "formData",
|
|
36153
35804
|
bodyType: "json",
|
|
36154
35805
|
});
|
|
36155
|
-
|
|
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
|
-
|
|
35806
|
+
return $tea.cast<ModifyDBClusterMaintainTimeResponse>(await this.callApi(params, req, runtime), new ModifyDBClusterMaintainTimeResponse({}));
|
|
36161
35807
|
}
|
|
36162
35808
|
|
|
36163
35809
|
/**
|
|
@@ -36197,6 +35843,10 @@ export default class Client extends OpenApi {
|
|
|
36197
35843
|
}
|
|
36198
35844
|
|
|
36199
35845
|
let query = { };
|
|
35846
|
+
if (!Util.isUnset(request.autoStopInterval)) {
|
|
35847
|
+
query["AutoStopInterval"] = request.autoStopInterval;
|
|
35848
|
+
}
|
|
35849
|
+
|
|
36200
35850
|
if (!Util.isUnset(request.clusterMode)) {
|
|
36201
35851
|
query["ClusterMode"] = request.clusterMode;
|
|
36202
35852
|
}
|
|
@@ -36261,6 +35911,10 @@ export default class Client extends OpenApi {
|
|
|
36261
35911
|
query["SpecName"] = request.specName;
|
|
36262
35912
|
}
|
|
36263
35913
|
|
|
35914
|
+
if (!Util.isUnset(request.status)) {
|
|
35915
|
+
query["Status"] = request.status;
|
|
35916
|
+
}
|
|
35917
|
+
|
|
36264
35918
|
if (!Util.isUnset(request.targetResourceGroupName)) {
|
|
36265
35919
|
query["TargetResourceGroupName"] = request.targetResourceGroupName;
|
|
36266
35920
|
}
|
|
@@ -36279,12 +35933,7 @@ export default class Client extends OpenApi {
|
|
|
36279
35933
|
reqBodyType: "formData",
|
|
36280
35934
|
bodyType: "json",
|
|
36281
35935
|
});
|
|
36282
|
-
|
|
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
|
-
|
|
35936
|
+
return $tea.cast<ModifyDBResourceGroupResponse>(await this.callApi(params, req, runtime), new ModifyDBResourceGroupResponse({}));
|
|
36288
35937
|
}
|
|
36289
35938
|
|
|
36290
35939
|
/**
|
|
@@ -36352,12 +36001,7 @@ export default class Client extends OpenApi {
|
|
|
36352
36001
|
reqBodyType: "formData",
|
|
36353
36002
|
bodyType: "json",
|
|
36354
36003
|
});
|
|
36355
|
-
|
|
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
|
-
|
|
36004
|
+
return $tea.cast<ModifyElasticPlanResponse>(await this.callApi(params, req, runtime), new ModifyElasticPlanResponse({}));
|
|
36361
36005
|
}
|
|
36362
36006
|
|
|
36363
36007
|
/**
|
|
@@ -36436,12 +36080,7 @@ export default class Client extends OpenApi {
|
|
|
36436
36080
|
reqBodyType: "formData",
|
|
36437
36081
|
bodyType: "json",
|
|
36438
36082
|
});
|
|
36439
|
-
|
|
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
|
-
|
|
36083
|
+
return $tea.cast<ModifyPerformanceViewResponse>(await this.callApi(params, req, runtime), new ModifyPerformanceViewResponse({}));
|
|
36445
36084
|
}
|
|
36446
36085
|
|
|
36447
36086
|
/**
|
|
@@ -36494,12 +36133,7 @@ export default class Client extends OpenApi {
|
|
|
36494
36133
|
reqBodyType: "formData",
|
|
36495
36134
|
bodyType: "json",
|
|
36496
36135
|
});
|
|
36497
|
-
|
|
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
|
-
|
|
36136
|
+
return $tea.cast<PreloadSparkAppMetricsResponse>(await this.callApi(params, req, runtime), new PreloadSparkAppMetricsResponse({}));
|
|
36503
36137
|
}
|
|
36504
36138
|
|
|
36505
36139
|
/**
|
|
@@ -36553,12 +36187,7 @@ export default class Client extends OpenApi {
|
|
|
36553
36187
|
reqBodyType: "formData",
|
|
36554
36188
|
bodyType: "json",
|
|
36555
36189
|
});
|
|
36556
|
-
|
|
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
|
-
|
|
36190
|
+
return $tea.cast<ReleaseClusterPublicConnectionResponse>(await this.callApi(params, req, runtime), new ReleaseClusterPublicConnectionResponse({}));
|
|
36562
36191
|
}
|
|
36563
36192
|
|
|
36564
36193
|
/**
|
|
@@ -36616,12 +36245,7 @@ export default class Client extends OpenApi {
|
|
|
36616
36245
|
reqBodyType: "formData",
|
|
36617
36246
|
bodyType: "json",
|
|
36618
36247
|
});
|
|
36619
|
-
|
|
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
|
-
|
|
36248
|
+
return $tea.cast<RenameSparkTemplateFileResponse>(await this.callApi(params, req, runtime), new RenameSparkTemplateFileResponse({}));
|
|
36625
36249
|
}
|
|
36626
36250
|
|
|
36627
36251
|
/**
|
|
@@ -36687,12 +36311,7 @@ export default class Client extends OpenApi {
|
|
|
36687
36311
|
reqBodyType: "formData",
|
|
36688
36312
|
bodyType: "json",
|
|
36689
36313
|
});
|
|
36690
|
-
|
|
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
|
-
|
|
36314
|
+
return $tea.cast<ResetAccountPasswordResponse>(await this.callApi(params, req, runtime), new ResetAccountPasswordResponse({}));
|
|
36696
36315
|
}
|
|
36697
36316
|
|
|
36698
36317
|
/**
|
|
@@ -36750,12 +36369,7 @@ export default class Client extends OpenApi {
|
|
|
36750
36369
|
reqBodyType: "formData",
|
|
36751
36370
|
bodyType: "json",
|
|
36752
36371
|
});
|
|
36753
|
-
|
|
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
|
-
|
|
36372
|
+
return $tea.cast<SetSparkAppLogRootPathResponse>(await this.callApi(params, req, runtime), new SetSparkAppLogRootPathResponse({}));
|
|
36759
36373
|
}
|
|
36760
36374
|
|
|
36761
36375
|
/**
|
|
@@ -36831,12 +36445,7 @@ export default class Client extends OpenApi {
|
|
|
36831
36445
|
reqBodyType: "formData",
|
|
36832
36446
|
bodyType: "json",
|
|
36833
36447
|
});
|
|
36834
|
-
|
|
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
|
-
|
|
36448
|
+
return $tea.cast<StartSparkSQLEngineResponse>(await this.callApi(params, req, runtime), new StartSparkSQLEngineResponse({}));
|
|
36840
36449
|
}
|
|
36841
36450
|
|
|
36842
36451
|
/**
|
|
@@ -36916,12 +36525,7 @@ export default class Client extends OpenApi {
|
|
|
36916
36525
|
reqBodyType: "formData",
|
|
36917
36526
|
bodyType: "json",
|
|
36918
36527
|
});
|
|
36919
|
-
|
|
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
|
-
|
|
36528
|
+
return $tea.cast<SubmitSparkAppResponse>(await this.callApi(params, req, runtime), new SubmitSparkAppResponse({}));
|
|
36925
36529
|
}
|
|
36926
36530
|
|
|
36927
36531
|
/**
|
|
@@ -36973,12 +36577,7 @@ export default class Client extends OpenApi {
|
|
|
36973
36577
|
reqBodyType: "formData",
|
|
36974
36578
|
bodyType: "json",
|
|
36975
36579
|
});
|
|
36976
|
-
|
|
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
|
-
|
|
36580
|
+
return $tea.cast<SubmitSparkLogAnalyzeTaskResponse>(await this.callApi(params, req, runtime), new SubmitSparkLogAnalyzeTaskResponse({}));
|
|
36982
36581
|
}
|
|
36983
36582
|
|
|
36984
36583
|
/**
|
|
@@ -37032,12 +36631,7 @@ export default class Client extends OpenApi {
|
|
|
37032
36631
|
reqBodyType: "formData",
|
|
37033
36632
|
bodyType: "json",
|
|
37034
36633
|
});
|
|
37035
|
-
|
|
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
|
-
|
|
36634
|
+
return $tea.cast<UnbindAccountResponse>(await this.callApi(params, req, runtime), new UnbindAccountResponse({}));
|
|
37041
36635
|
}
|
|
37042
36636
|
|
|
37043
36637
|
/**
|
|
@@ -37093,12 +36687,7 @@ export default class Client extends OpenApi {
|
|
|
37093
36687
|
reqBodyType: "formData",
|
|
37094
36688
|
bodyType: "json",
|
|
37095
36689
|
});
|
|
37096
|
-
|
|
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
|
-
|
|
36690
|
+
return $tea.cast<UnbindDBResourceGroupWithUserResponse>(await this.callApi(params, req, runtime), new UnbindDBResourceGroupWithUserResponse({}));
|
|
37102
36691
|
}
|
|
37103
36692
|
|
|
37104
36693
|
/**
|
|
@@ -37160,12 +36749,7 @@ export default class Client extends OpenApi {
|
|
|
37160
36749
|
reqBodyType: "formData",
|
|
37161
36750
|
bodyType: "json",
|
|
37162
36751
|
});
|
|
37163
|
-
|
|
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
|
-
|
|
36752
|
+
return $tea.cast<UpdateSparkTemplateFileResponse>(await this.callApi(params, req, runtime), new UpdateSparkTemplateFileResponse({}));
|
|
37169
36753
|
}
|
|
37170
36754
|
|
|
37171
36755
|
/**
|