@alicloud/adb20211201 1.2.0 → 1.3.1
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 +318 -0
- package/dist/client.js +627 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +760 -0
package/dist/client.d.ts
CHANGED
|
@@ -466,6 +466,46 @@ export declare class AllocateClusterPublicConnectionResponse extends $tea.Model
|
|
|
466
466
|
[key: string]: any;
|
|
467
467
|
});
|
|
468
468
|
}
|
|
469
|
+
export declare class AttachUserENIRequest extends $tea.Model {
|
|
470
|
+
DBClusterId?: string;
|
|
471
|
+
static names(): {
|
|
472
|
+
[key: string]: string;
|
|
473
|
+
};
|
|
474
|
+
static types(): {
|
|
475
|
+
[key: string]: any;
|
|
476
|
+
};
|
|
477
|
+
constructor(map?: {
|
|
478
|
+
[key: string]: any;
|
|
479
|
+
});
|
|
480
|
+
}
|
|
481
|
+
export declare class AttachUserENIResponseBody extends $tea.Model {
|
|
482
|
+
requestId?: string;
|
|
483
|
+
static names(): {
|
|
484
|
+
[key: string]: string;
|
|
485
|
+
};
|
|
486
|
+
static types(): {
|
|
487
|
+
[key: string]: any;
|
|
488
|
+
};
|
|
489
|
+
constructor(map?: {
|
|
490
|
+
[key: string]: any;
|
|
491
|
+
});
|
|
492
|
+
}
|
|
493
|
+
export declare class AttachUserENIResponse extends $tea.Model {
|
|
494
|
+
headers: {
|
|
495
|
+
[key: string]: string;
|
|
496
|
+
};
|
|
497
|
+
statusCode: number;
|
|
498
|
+
body: AttachUserENIResponseBody;
|
|
499
|
+
static names(): {
|
|
500
|
+
[key: string]: string;
|
|
501
|
+
};
|
|
502
|
+
static types(): {
|
|
503
|
+
[key: string]: any;
|
|
504
|
+
};
|
|
505
|
+
constructor(map?: {
|
|
506
|
+
[key: string]: any;
|
|
507
|
+
});
|
|
508
|
+
}
|
|
469
509
|
export declare class BindAccountRequest extends $tea.Model {
|
|
470
510
|
accountName?: string;
|
|
471
511
|
DBClusterId?: string;
|
|
@@ -508,6 +548,48 @@ export declare class BindAccountResponse extends $tea.Model {
|
|
|
508
548
|
[key: string]: any;
|
|
509
549
|
});
|
|
510
550
|
}
|
|
551
|
+
export declare class BindDBResourceGroupWithUserRequest extends $tea.Model {
|
|
552
|
+
DBClusterId?: string;
|
|
553
|
+
groupName?: string;
|
|
554
|
+
groupUser?: string;
|
|
555
|
+
static names(): {
|
|
556
|
+
[key: string]: string;
|
|
557
|
+
};
|
|
558
|
+
static types(): {
|
|
559
|
+
[key: string]: any;
|
|
560
|
+
};
|
|
561
|
+
constructor(map?: {
|
|
562
|
+
[key: string]: any;
|
|
563
|
+
});
|
|
564
|
+
}
|
|
565
|
+
export declare class BindDBResourceGroupWithUserResponseBody extends $tea.Model {
|
|
566
|
+
requestId?: string;
|
|
567
|
+
static names(): {
|
|
568
|
+
[key: string]: string;
|
|
569
|
+
};
|
|
570
|
+
static types(): {
|
|
571
|
+
[key: string]: any;
|
|
572
|
+
};
|
|
573
|
+
constructor(map?: {
|
|
574
|
+
[key: string]: any;
|
|
575
|
+
});
|
|
576
|
+
}
|
|
577
|
+
export declare class BindDBResourceGroupWithUserResponse extends $tea.Model {
|
|
578
|
+
headers: {
|
|
579
|
+
[key: string]: string;
|
|
580
|
+
};
|
|
581
|
+
statusCode: number;
|
|
582
|
+
body: BindDBResourceGroupWithUserResponseBody;
|
|
583
|
+
static names(): {
|
|
584
|
+
[key: string]: string;
|
|
585
|
+
};
|
|
586
|
+
static types(): {
|
|
587
|
+
[key: string]: any;
|
|
588
|
+
};
|
|
589
|
+
constructor(map?: {
|
|
590
|
+
[key: string]: any;
|
|
591
|
+
});
|
|
592
|
+
}
|
|
511
593
|
export declare class CheckBindRamUserRequest extends $tea.Model {
|
|
512
594
|
DBClusterId?: string;
|
|
513
595
|
regionId?: string;
|
|
@@ -550,6 +632,47 @@ export declare class CheckBindRamUserResponse extends $tea.Model {
|
|
|
550
632
|
[key: string]: any;
|
|
551
633
|
});
|
|
552
634
|
}
|
|
635
|
+
export declare class CheckSampleDataSetRequest extends $tea.Model {
|
|
636
|
+
DBClusterId?: string;
|
|
637
|
+
static names(): {
|
|
638
|
+
[key: string]: string;
|
|
639
|
+
};
|
|
640
|
+
static types(): {
|
|
641
|
+
[key: string]: any;
|
|
642
|
+
};
|
|
643
|
+
constructor(map?: {
|
|
644
|
+
[key: string]: any;
|
|
645
|
+
});
|
|
646
|
+
}
|
|
647
|
+
export declare class CheckSampleDataSetResponseBody extends $tea.Model {
|
|
648
|
+
requestId?: string;
|
|
649
|
+
status?: string;
|
|
650
|
+
static names(): {
|
|
651
|
+
[key: string]: string;
|
|
652
|
+
};
|
|
653
|
+
static types(): {
|
|
654
|
+
[key: string]: any;
|
|
655
|
+
};
|
|
656
|
+
constructor(map?: {
|
|
657
|
+
[key: string]: any;
|
|
658
|
+
});
|
|
659
|
+
}
|
|
660
|
+
export declare class CheckSampleDataSetResponse extends $tea.Model {
|
|
661
|
+
headers: {
|
|
662
|
+
[key: string]: string;
|
|
663
|
+
};
|
|
664
|
+
statusCode: number;
|
|
665
|
+
body: CheckSampleDataSetResponseBody;
|
|
666
|
+
static names(): {
|
|
667
|
+
[key: string]: string;
|
|
668
|
+
};
|
|
669
|
+
static types(): {
|
|
670
|
+
[key: string]: any;
|
|
671
|
+
};
|
|
672
|
+
constructor(map?: {
|
|
673
|
+
[key: string]: any;
|
|
674
|
+
});
|
|
675
|
+
}
|
|
553
676
|
export declare class CreateAccountRequest extends $tea.Model {
|
|
554
677
|
accountDescription?: string;
|
|
555
678
|
accountName?: string;
|
|
@@ -656,10 +779,14 @@ export declare class CreateDBClusterResponse extends $tea.Model {
|
|
|
656
779
|
});
|
|
657
780
|
}
|
|
658
781
|
export declare class CreateDBResourceGroupRequest extends $tea.Model {
|
|
782
|
+
clusterMode?: string;
|
|
783
|
+
clusterSizeResource?: string;
|
|
659
784
|
DBClusterId?: string;
|
|
660
785
|
groupName?: string;
|
|
661
786
|
groupType?: string;
|
|
787
|
+
maxClusterCount?: number;
|
|
662
788
|
maxComputeResource?: string;
|
|
789
|
+
minClusterCount?: number;
|
|
663
790
|
minComputeResource?: string;
|
|
664
791
|
static names(): {
|
|
665
792
|
[key: string]: string;
|
|
@@ -1937,6 +2064,47 @@ export declare class DescribeDBClusterPerformanceResponse extends $tea.Model {
|
|
|
1937
2064
|
[key: string]: any;
|
|
1938
2065
|
});
|
|
1939
2066
|
}
|
|
2067
|
+
export declare class DescribeDBClusterStatusRequest extends $tea.Model {
|
|
2068
|
+
regionId?: string;
|
|
2069
|
+
static names(): {
|
|
2070
|
+
[key: string]: string;
|
|
2071
|
+
};
|
|
2072
|
+
static types(): {
|
|
2073
|
+
[key: string]: any;
|
|
2074
|
+
};
|
|
2075
|
+
constructor(map?: {
|
|
2076
|
+
[key: string]: any;
|
|
2077
|
+
});
|
|
2078
|
+
}
|
|
2079
|
+
export declare class DescribeDBClusterStatusResponseBody extends $tea.Model {
|
|
2080
|
+
requestId?: string;
|
|
2081
|
+
status?: string[];
|
|
2082
|
+
static names(): {
|
|
2083
|
+
[key: string]: string;
|
|
2084
|
+
};
|
|
2085
|
+
static types(): {
|
|
2086
|
+
[key: string]: any;
|
|
2087
|
+
};
|
|
2088
|
+
constructor(map?: {
|
|
2089
|
+
[key: string]: any;
|
|
2090
|
+
});
|
|
2091
|
+
}
|
|
2092
|
+
export declare class DescribeDBClusterStatusResponse extends $tea.Model {
|
|
2093
|
+
headers: {
|
|
2094
|
+
[key: string]: string;
|
|
2095
|
+
};
|
|
2096
|
+
statusCode: number;
|
|
2097
|
+
body: DescribeDBClusterStatusResponseBody;
|
|
2098
|
+
static names(): {
|
|
2099
|
+
[key: string]: string;
|
|
2100
|
+
};
|
|
2101
|
+
static types(): {
|
|
2102
|
+
[key: string]: any;
|
|
2103
|
+
};
|
|
2104
|
+
constructor(map?: {
|
|
2105
|
+
[key: string]: any;
|
|
2106
|
+
});
|
|
2107
|
+
}
|
|
1940
2108
|
export declare class DescribeDBClustersRequest extends $tea.Model {
|
|
1941
2109
|
DBClusterDescription?: string;
|
|
1942
2110
|
DBClusterIds?: string;
|
|
@@ -2929,6 +3097,90 @@ export declare class DescribeTablesResponse extends $tea.Model {
|
|
|
2929
3097
|
[key: string]: any;
|
|
2930
3098
|
});
|
|
2931
3099
|
}
|
|
3100
|
+
export declare class DescribeUserQuotaRequest extends $tea.Model {
|
|
3101
|
+
DBClusterId?: string;
|
|
3102
|
+
static names(): {
|
|
3103
|
+
[key: string]: string;
|
|
3104
|
+
};
|
|
3105
|
+
static types(): {
|
|
3106
|
+
[key: string]: any;
|
|
3107
|
+
};
|
|
3108
|
+
constructor(map?: {
|
|
3109
|
+
[key: string]: any;
|
|
3110
|
+
});
|
|
3111
|
+
}
|
|
3112
|
+
export declare class DescribeUserQuotaResponseBody extends $tea.Model {
|
|
3113
|
+
elasticACU?: string;
|
|
3114
|
+
requestId?: string;
|
|
3115
|
+
reserverdCompteACU?: string;
|
|
3116
|
+
reserverdStorageACU?: string;
|
|
3117
|
+
resourceGroupCount?: string;
|
|
3118
|
+
static names(): {
|
|
3119
|
+
[key: string]: string;
|
|
3120
|
+
};
|
|
3121
|
+
static types(): {
|
|
3122
|
+
[key: string]: any;
|
|
3123
|
+
};
|
|
3124
|
+
constructor(map?: {
|
|
3125
|
+
[key: string]: any;
|
|
3126
|
+
});
|
|
3127
|
+
}
|
|
3128
|
+
export declare class DescribeUserQuotaResponse extends $tea.Model {
|
|
3129
|
+
headers: {
|
|
3130
|
+
[key: string]: string;
|
|
3131
|
+
};
|
|
3132
|
+
statusCode: number;
|
|
3133
|
+
body: DescribeUserQuotaResponseBody;
|
|
3134
|
+
static names(): {
|
|
3135
|
+
[key: string]: string;
|
|
3136
|
+
};
|
|
3137
|
+
static types(): {
|
|
3138
|
+
[key: string]: any;
|
|
3139
|
+
};
|
|
3140
|
+
constructor(map?: {
|
|
3141
|
+
[key: string]: any;
|
|
3142
|
+
});
|
|
3143
|
+
}
|
|
3144
|
+
export declare class DetachUserENIRequest extends $tea.Model {
|
|
3145
|
+
DBClusterId?: string;
|
|
3146
|
+
static names(): {
|
|
3147
|
+
[key: string]: string;
|
|
3148
|
+
};
|
|
3149
|
+
static types(): {
|
|
3150
|
+
[key: string]: any;
|
|
3151
|
+
};
|
|
3152
|
+
constructor(map?: {
|
|
3153
|
+
[key: string]: any;
|
|
3154
|
+
});
|
|
3155
|
+
}
|
|
3156
|
+
export declare class DetachUserENIResponseBody extends $tea.Model {
|
|
3157
|
+
requestId?: string;
|
|
3158
|
+
static names(): {
|
|
3159
|
+
[key: string]: string;
|
|
3160
|
+
};
|
|
3161
|
+
static types(): {
|
|
3162
|
+
[key: string]: any;
|
|
3163
|
+
};
|
|
3164
|
+
constructor(map?: {
|
|
3165
|
+
[key: string]: any;
|
|
3166
|
+
});
|
|
3167
|
+
}
|
|
3168
|
+
export declare class DetachUserENIResponse extends $tea.Model {
|
|
3169
|
+
headers: {
|
|
3170
|
+
[key: string]: string;
|
|
3171
|
+
};
|
|
3172
|
+
statusCode: number;
|
|
3173
|
+
body: DetachUserENIResponseBody;
|
|
3174
|
+
static names(): {
|
|
3175
|
+
[key: string]: string;
|
|
3176
|
+
};
|
|
3177
|
+
static types(): {
|
|
3178
|
+
[key: string]: any;
|
|
3179
|
+
};
|
|
3180
|
+
constructor(map?: {
|
|
3181
|
+
[key: string]: any;
|
|
3182
|
+
});
|
|
3183
|
+
}
|
|
2932
3184
|
export declare class DisableElasticPlanRequest extends $tea.Model {
|
|
2933
3185
|
DBClusterId?: string;
|
|
2934
3186
|
elasticPlanName?: string;
|
|
@@ -4651,10 +4903,14 @@ export declare class ModifyDBClusterMaintainTimeResponse extends $tea.Model {
|
|
|
4651
4903
|
});
|
|
4652
4904
|
}
|
|
4653
4905
|
export declare class ModifyDBResourceGroupRequest extends $tea.Model {
|
|
4906
|
+
clusterMode?: string;
|
|
4907
|
+
clusterSizeResource?: string;
|
|
4654
4908
|
DBClusterId?: string;
|
|
4655
4909
|
groupName?: string;
|
|
4656
4910
|
groupType?: string;
|
|
4911
|
+
maxClusterCount?: number;
|
|
4657
4912
|
maxComputeResource?: string;
|
|
4913
|
+
minClusterCount?: number;
|
|
4658
4914
|
minComputeResource?: string;
|
|
4659
4915
|
static names(): {
|
|
4660
4916
|
[key: string]: string;
|
|
@@ -5126,6 +5382,48 @@ export declare class UnbindAccountResponse extends $tea.Model {
|
|
|
5126
5382
|
[key: string]: any;
|
|
5127
5383
|
});
|
|
5128
5384
|
}
|
|
5385
|
+
export declare class UnbindDBResourceGroupWithUserRequest extends $tea.Model {
|
|
5386
|
+
DBClusterId?: string;
|
|
5387
|
+
groupName?: string;
|
|
5388
|
+
groupUser?: string;
|
|
5389
|
+
static names(): {
|
|
5390
|
+
[key: string]: string;
|
|
5391
|
+
};
|
|
5392
|
+
static types(): {
|
|
5393
|
+
[key: string]: any;
|
|
5394
|
+
};
|
|
5395
|
+
constructor(map?: {
|
|
5396
|
+
[key: string]: any;
|
|
5397
|
+
});
|
|
5398
|
+
}
|
|
5399
|
+
export declare class UnbindDBResourceGroupWithUserResponseBody extends $tea.Model {
|
|
5400
|
+
requestId?: string;
|
|
5401
|
+
static names(): {
|
|
5402
|
+
[key: string]: string;
|
|
5403
|
+
};
|
|
5404
|
+
static types(): {
|
|
5405
|
+
[key: string]: any;
|
|
5406
|
+
};
|
|
5407
|
+
constructor(map?: {
|
|
5408
|
+
[key: string]: any;
|
|
5409
|
+
});
|
|
5410
|
+
}
|
|
5411
|
+
export declare class UnbindDBResourceGroupWithUserResponse extends $tea.Model {
|
|
5412
|
+
headers: {
|
|
5413
|
+
[key: string]: string;
|
|
5414
|
+
};
|
|
5415
|
+
statusCode: number;
|
|
5416
|
+
body: UnbindDBResourceGroupWithUserResponseBody;
|
|
5417
|
+
static names(): {
|
|
5418
|
+
[key: string]: string;
|
|
5419
|
+
};
|
|
5420
|
+
static types(): {
|
|
5421
|
+
[key: string]: any;
|
|
5422
|
+
};
|
|
5423
|
+
constructor(map?: {
|
|
5424
|
+
[key: string]: any;
|
|
5425
|
+
});
|
|
5426
|
+
}
|
|
5129
5427
|
export declare class UpdateSparkTemplateFileRequest extends $tea.Model {
|
|
5130
5428
|
content?: string;
|
|
5131
5429
|
DBClusterId?: string;
|
|
@@ -5879,13 +6177,18 @@ export declare class DescribeDBClustersResponseBodyItems extends $tea.Model {
|
|
|
5879
6177
|
});
|
|
5880
6178
|
}
|
|
5881
6179
|
export declare class DescribeDBResourceGroupResponseBodyGroupsInfo extends $tea.Model {
|
|
6180
|
+
clusterMode?: string;
|
|
6181
|
+
clusterSizeResource?: string;
|
|
5882
6182
|
createTime?: string;
|
|
5883
6183
|
elasticMinComputeResource?: string;
|
|
5884
6184
|
groupName?: string;
|
|
5885
6185
|
groupType?: string;
|
|
5886
6186
|
groupUsers?: string;
|
|
6187
|
+
maxClusterCount?: number;
|
|
5887
6188
|
maxComputeResource?: string;
|
|
6189
|
+
minClusterCount?: number;
|
|
5888
6190
|
minComputeResource?: string;
|
|
6191
|
+
runningClusterCount?: number;
|
|
5889
6192
|
status?: string;
|
|
5890
6193
|
updateTime?: string;
|
|
5891
6194
|
static names(): {
|
|
@@ -6273,6 +6576,7 @@ export declare class GetDatabaseObjectsResponseBodyData extends $tea.Model {
|
|
|
6273
6576
|
});
|
|
6274
6577
|
}
|
|
6275
6578
|
export declare class GetSparkAppAttemptLogResponseBodyData extends $tea.Model {
|
|
6579
|
+
appId?: string;
|
|
6276
6580
|
DBClusterId?: string;
|
|
6277
6581
|
logContent?: string;
|
|
6278
6582
|
message?: string;
|
|
@@ -6650,10 +6954,16 @@ export default class Client extends OpenApi {
|
|
|
6650
6954
|
}, endpoint: string): string;
|
|
6651
6955
|
allocateClusterPublicConnectionWithOptions(request: AllocateClusterPublicConnectionRequest, runtime: $Util.RuntimeOptions): Promise<AllocateClusterPublicConnectionResponse>;
|
|
6652
6956
|
allocateClusterPublicConnection(request: AllocateClusterPublicConnectionRequest): Promise<AllocateClusterPublicConnectionResponse>;
|
|
6957
|
+
attachUserENIWithOptions(request: AttachUserENIRequest, runtime: $Util.RuntimeOptions): Promise<AttachUserENIResponse>;
|
|
6958
|
+
attachUserENI(request: AttachUserENIRequest): Promise<AttachUserENIResponse>;
|
|
6653
6959
|
bindAccountWithOptions(request: BindAccountRequest, runtime: $Util.RuntimeOptions): Promise<BindAccountResponse>;
|
|
6654
6960
|
bindAccount(request: BindAccountRequest): Promise<BindAccountResponse>;
|
|
6961
|
+
bindDBResourceGroupWithUserWithOptions(request: BindDBResourceGroupWithUserRequest, runtime: $Util.RuntimeOptions): Promise<BindDBResourceGroupWithUserResponse>;
|
|
6962
|
+
bindDBResourceGroupWithUser(request: BindDBResourceGroupWithUserRequest): Promise<BindDBResourceGroupWithUserResponse>;
|
|
6655
6963
|
checkBindRamUserWithOptions(request: CheckBindRamUserRequest, runtime: $Util.RuntimeOptions): Promise<CheckBindRamUserResponse>;
|
|
6656
6964
|
checkBindRamUser(request: CheckBindRamUserRequest): Promise<CheckBindRamUserResponse>;
|
|
6965
|
+
checkSampleDataSetWithOptions(request: CheckSampleDataSetRequest, runtime: $Util.RuntimeOptions): Promise<CheckSampleDataSetResponse>;
|
|
6966
|
+
checkSampleDataSet(request: CheckSampleDataSetRequest): Promise<CheckSampleDataSetResponse>;
|
|
6657
6967
|
createAccountWithOptions(request: CreateAccountRequest, runtime: $Util.RuntimeOptions): Promise<CreateAccountResponse>;
|
|
6658
6968
|
createAccount(request: CreateAccountRequest): Promise<CreateAccountResponse>;
|
|
6659
6969
|
createDBClusterWithOptions(request: CreateDBClusterRequest, runtime: $Util.RuntimeOptions): Promise<CreateDBClusterResponse>;
|
|
@@ -6729,6 +7039,8 @@ export default class Client extends OpenApi {
|
|
|
6729
7039
|
describeDBClusterHealthStatus(request: DescribeDBClusterHealthStatusRequest): Promise<DescribeDBClusterHealthStatusResponse>;
|
|
6730
7040
|
describeDBClusterPerformanceWithOptions(request: DescribeDBClusterPerformanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterPerformanceResponse>;
|
|
6731
7041
|
describeDBClusterPerformance(request: DescribeDBClusterPerformanceRequest): Promise<DescribeDBClusterPerformanceResponse>;
|
|
7042
|
+
describeDBClusterStatusWithOptions(request: DescribeDBClusterStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterStatusResponse>;
|
|
7043
|
+
describeDBClusterStatus(request: DescribeDBClusterStatusRequest): Promise<DescribeDBClusterStatusResponse>;
|
|
6732
7044
|
describeDBClustersWithOptions(request: DescribeDBClustersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClustersResponse>;
|
|
6733
7045
|
describeDBClusters(request: DescribeDBClustersRequest): Promise<DescribeDBClustersResponse>;
|
|
6734
7046
|
describeDBResourceGroupWithOptions(request: DescribeDBResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBResourceGroupResponse>;
|
|
@@ -6771,6 +7083,10 @@ export default class Client extends OpenApi {
|
|
|
6771
7083
|
describeTableAccessCount(request: DescribeTableAccessCountRequest): Promise<DescribeTableAccessCountResponse>;
|
|
6772
7084
|
describeTablesWithOptions(request: DescribeTablesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTablesResponse>;
|
|
6773
7085
|
describeTables(request: DescribeTablesRequest): Promise<DescribeTablesResponse>;
|
|
7086
|
+
describeUserQuotaWithOptions(request: DescribeUserQuotaRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUserQuotaResponse>;
|
|
7087
|
+
describeUserQuota(request: DescribeUserQuotaRequest): Promise<DescribeUserQuotaResponse>;
|
|
7088
|
+
detachUserENIWithOptions(request: DetachUserENIRequest, runtime: $Util.RuntimeOptions): Promise<DetachUserENIResponse>;
|
|
7089
|
+
detachUserENI(request: DetachUserENIRequest): Promise<DetachUserENIResponse>;
|
|
6774
7090
|
disableElasticPlanWithOptions(request: DisableElasticPlanRequest, runtime: $Util.RuntimeOptions): Promise<DisableElasticPlanResponse>;
|
|
6775
7091
|
disableElasticPlan(request: DisableElasticPlanRequest): Promise<DisableElasticPlanResponse>;
|
|
6776
7092
|
downloadDiagnosisRecordsWithOptions(request: DownloadDiagnosisRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DownloadDiagnosisRecordsResponse>;
|
|
@@ -6901,6 +7217,8 @@ export default class Client extends OpenApi {
|
|
|
6901
7217
|
submitSparkLogAnalyzeTask(request: SubmitSparkLogAnalyzeTaskRequest): Promise<SubmitSparkLogAnalyzeTaskResponse>;
|
|
6902
7218
|
unbindAccountWithOptions(request: UnbindAccountRequest, runtime: $Util.RuntimeOptions): Promise<UnbindAccountResponse>;
|
|
6903
7219
|
unbindAccount(request: UnbindAccountRequest): Promise<UnbindAccountResponse>;
|
|
7220
|
+
unbindDBResourceGroupWithUserWithOptions(request: UnbindDBResourceGroupWithUserRequest, runtime: $Util.RuntimeOptions): Promise<UnbindDBResourceGroupWithUserResponse>;
|
|
7221
|
+
unbindDBResourceGroupWithUser(request: UnbindDBResourceGroupWithUserRequest): Promise<UnbindDBResourceGroupWithUserResponse>;
|
|
6904
7222
|
updateSparkTemplateFileWithOptions(request: UpdateSparkTemplateFileRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSparkTemplateFileResponse>;
|
|
6905
7223
|
updateSparkTemplateFile(request: UpdateSparkTemplateFileRequest): Promise<UpdateSparkTemplateFileResponse>;
|
|
6906
7224
|
}
|