@alicloud/adb20211201 1.2.0 → 1.3.0
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 +305 -0
- package/dist/client.js +577 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +705 -16
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;
|
|
@@ -1937,6 +2060,47 @@ export declare class DescribeDBClusterPerformanceResponse extends $tea.Model {
|
|
|
1937
2060
|
[key: string]: any;
|
|
1938
2061
|
});
|
|
1939
2062
|
}
|
|
2063
|
+
export declare class DescribeDBClusterStatusRequest extends $tea.Model {
|
|
2064
|
+
regionId?: string;
|
|
2065
|
+
static names(): {
|
|
2066
|
+
[key: string]: string;
|
|
2067
|
+
};
|
|
2068
|
+
static types(): {
|
|
2069
|
+
[key: string]: any;
|
|
2070
|
+
};
|
|
2071
|
+
constructor(map?: {
|
|
2072
|
+
[key: string]: any;
|
|
2073
|
+
});
|
|
2074
|
+
}
|
|
2075
|
+
export declare class DescribeDBClusterStatusResponseBody extends $tea.Model {
|
|
2076
|
+
requestId?: string;
|
|
2077
|
+
status?: string[];
|
|
2078
|
+
static names(): {
|
|
2079
|
+
[key: string]: string;
|
|
2080
|
+
};
|
|
2081
|
+
static types(): {
|
|
2082
|
+
[key: string]: any;
|
|
2083
|
+
};
|
|
2084
|
+
constructor(map?: {
|
|
2085
|
+
[key: string]: any;
|
|
2086
|
+
});
|
|
2087
|
+
}
|
|
2088
|
+
export declare class DescribeDBClusterStatusResponse extends $tea.Model {
|
|
2089
|
+
headers: {
|
|
2090
|
+
[key: string]: string;
|
|
2091
|
+
};
|
|
2092
|
+
statusCode: number;
|
|
2093
|
+
body: DescribeDBClusterStatusResponseBody;
|
|
2094
|
+
static names(): {
|
|
2095
|
+
[key: string]: string;
|
|
2096
|
+
};
|
|
2097
|
+
static types(): {
|
|
2098
|
+
[key: string]: any;
|
|
2099
|
+
};
|
|
2100
|
+
constructor(map?: {
|
|
2101
|
+
[key: string]: any;
|
|
2102
|
+
});
|
|
2103
|
+
}
|
|
1940
2104
|
export declare class DescribeDBClustersRequest extends $tea.Model {
|
|
1941
2105
|
DBClusterDescription?: string;
|
|
1942
2106
|
DBClusterIds?: string;
|
|
@@ -2929,6 +3093,90 @@ export declare class DescribeTablesResponse extends $tea.Model {
|
|
|
2929
3093
|
[key: string]: any;
|
|
2930
3094
|
});
|
|
2931
3095
|
}
|
|
3096
|
+
export declare class DescribeUserQuotaRequest extends $tea.Model {
|
|
3097
|
+
DBClusterId?: string;
|
|
3098
|
+
static names(): {
|
|
3099
|
+
[key: string]: string;
|
|
3100
|
+
};
|
|
3101
|
+
static types(): {
|
|
3102
|
+
[key: string]: any;
|
|
3103
|
+
};
|
|
3104
|
+
constructor(map?: {
|
|
3105
|
+
[key: string]: any;
|
|
3106
|
+
});
|
|
3107
|
+
}
|
|
3108
|
+
export declare class DescribeUserQuotaResponseBody extends $tea.Model {
|
|
3109
|
+
elasticACU?: string;
|
|
3110
|
+
requestId?: string;
|
|
3111
|
+
reserverdCompteACU?: string;
|
|
3112
|
+
reserverdStorageACU?: string;
|
|
3113
|
+
resourceGroupCount?: string;
|
|
3114
|
+
static names(): {
|
|
3115
|
+
[key: string]: string;
|
|
3116
|
+
};
|
|
3117
|
+
static types(): {
|
|
3118
|
+
[key: string]: any;
|
|
3119
|
+
};
|
|
3120
|
+
constructor(map?: {
|
|
3121
|
+
[key: string]: any;
|
|
3122
|
+
});
|
|
3123
|
+
}
|
|
3124
|
+
export declare class DescribeUserQuotaResponse extends $tea.Model {
|
|
3125
|
+
headers: {
|
|
3126
|
+
[key: string]: string;
|
|
3127
|
+
};
|
|
3128
|
+
statusCode: number;
|
|
3129
|
+
body: DescribeUserQuotaResponseBody;
|
|
3130
|
+
static names(): {
|
|
3131
|
+
[key: string]: string;
|
|
3132
|
+
};
|
|
3133
|
+
static types(): {
|
|
3134
|
+
[key: string]: any;
|
|
3135
|
+
};
|
|
3136
|
+
constructor(map?: {
|
|
3137
|
+
[key: string]: any;
|
|
3138
|
+
});
|
|
3139
|
+
}
|
|
3140
|
+
export declare class DetachUserENIRequest extends $tea.Model {
|
|
3141
|
+
DBClusterId?: string;
|
|
3142
|
+
static names(): {
|
|
3143
|
+
[key: string]: string;
|
|
3144
|
+
};
|
|
3145
|
+
static types(): {
|
|
3146
|
+
[key: string]: any;
|
|
3147
|
+
};
|
|
3148
|
+
constructor(map?: {
|
|
3149
|
+
[key: string]: any;
|
|
3150
|
+
});
|
|
3151
|
+
}
|
|
3152
|
+
export declare class DetachUserENIResponseBody extends $tea.Model {
|
|
3153
|
+
requestId?: string;
|
|
3154
|
+
static names(): {
|
|
3155
|
+
[key: string]: string;
|
|
3156
|
+
};
|
|
3157
|
+
static types(): {
|
|
3158
|
+
[key: string]: any;
|
|
3159
|
+
};
|
|
3160
|
+
constructor(map?: {
|
|
3161
|
+
[key: string]: any;
|
|
3162
|
+
});
|
|
3163
|
+
}
|
|
3164
|
+
export declare class DetachUserENIResponse extends $tea.Model {
|
|
3165
|
+
headers: {
|
|
3166
|
+
[key: string]: string;
|
|
3167
|
+
};
|
|
3168
|
+
statusCode: number;
|
|
3169
|
+
body: DetachUserENIResponseBody;
|
|
3170
|
+
static names(): {
|
|
3171
|
+
[key: string]: string;
|
|
3172
|
+
};
|
|
3173
|
+
static types(): {
|
|
3174
|
+
[key: string]: any;
|
|
3175
|
+
};
|
|
3176
|
+
constructor(map?: {
|
|
3177
|
+
[key: string]: any;
|
|
3178
|
+
});
|
|
3179
|
+
}
|
|
2932
3180
|
export declare class DisableElasticPlanRequest extends $tea.Model {
|
|
2933
3181
|
DBClusterId?: string;
|
|
2934
3182
|
elasticPlanName?: string;
|
|
@@ -5126,6 +5374,48 @@ export declare class UnbindAccountResponse extends $tea.Model {
|
|
|
5126
5374
|
[key: string]: any;
|
|
5127
5375
|
});
|
|
5128
5376
|
}
|
|
5377
|
+
export declare class UnbindDBResourceGroupWithUserRequest extends $tea.Model {
|
|
5378
|
+
DBClusterId?: string;
|
|
5379
|
+
groupName?: string;
|
|
5380
|
+
groupUser?: string;
|
|
5381
|
+
static names(): {
|
|
5382
|
+
[key: string]: string;
|
|
5383
|
+
};
|
|
5384
|
+
static types(): {
|
|
5385
|
+
[key: string]: any;
|
|
5386
|
+
};
|
|
5387
|
+
constructor(map?: {
|
|
5388
|
+
[key: string]: any;
|
|
5389
|
+
});
|
|
5390
|
+
}
|
|
5391
|
+
export declare class UnbindDBResourceGroupWithUserResponseBody extends $tea.Model {
|
|
5392
|
+
requestId?: string;
|
|
5393
|
+
static names(): {
|
|
5394
|
+
[key: string]: string;
|
|
5395
|
+
};
|
|
5396
|
+
static types(): {
|
|
5397
|
+
[key: string]: any;
|
|
5398
|
+
};
|
|
5399
|
+
constructor(map?: {
|
|
5400
|
+
[key: string]: any;
|
|
5401
|
+
});
|
|
5402
|
+
}
|
|
5403
|
+
export declare class UnbindDBResourceGroupWithUserResponse extends $tea.Model {
|
|
5404
|
+
headers: {
|
|
5405
|
+
[key: string]: string;
|
|
5406
|
+
};
|
|
5407
|
+
statusCode: number;
|
|
5408
|
+
body: UnbindDBResourceGroupWithUserResponseBody;
|
|
5409
|
+
static names(): {
|
|
5410
|
+
[key: string]: string;
|
|
5411
|
+
};
|
|
5412
|
+
static types(): {
|
|
5413
|
+
[key: string]: any;
|
|
5414
|
+
};
|
|
5415
|
+
constructor(map?: {
|
|
5416
|
+
[key: string]: any;
|
|
5417
|
+
});
|
|
5418
|
+
}
|
|
5129
5419
|
export declare class UpdateSparkTemplateFileRequest extends $tea.Model {
|
|
5130
5420
|
content?: string;
|
|
5131
5421
|
DBClusterId?: string;
|
|
@@ -6273,6 +6563,7 @@ export declare class GetDatabaseObjectsResponseBodyData extends $tea.Model {
|
|
|
6273
6563
|
});
|
|
6274
6564
|
}
|
|
6275
6565
|
export declare class GetSparkAppAttemptLogResponseBodyData extends $tea.Model {
|
|
6566
|
+
appId?: string;
|
|
6276
6567
|
DBClusterId?: string;
|
|
6277
6568
|
logContent?: string;
|
|
6278
6569
|
message?: string;
|
|
@@ -6650,10 +6941,16 @@ export default class Client extends OpenApi {
|
|
|
6650
6941
|
}, endpoint: string): string;
|
|
6651
6942
|
allocateClusterPublicConnectionWithOptions(request: AllocateClusterPublicConnectionRequest, runtime: $Util.RuntimeOptions): Promise<AllocateClusterPublicConnectionResponse>;
|
|
6652
6943
|
allocateClusterPublicConnection(request: AllocateClusterPublicConnectionRequest): Promise<AllocateClusterPublicConnectionResponse>;
|
|
6944
|
+
attachUserENIWithOptions(request: AttachUserENIRequest, runtime: $Util.RuntimeOptions): Promise<AttachUserENIResponse>;
|
|
6945
|
+
attachUserENI(request: AttachUserENIRequest): Promise<AttachUserENIResponse>;
|
|
6653
6946
|
bindAccountWithOptions(request: BindAccountRequest, runtime: $Util.RuntimeOptions): Promise<BindAccountResponse>;
|
|
6654
6947
|
bindAccount(request: BindAccountRequest): Promise<BindAccountResponse>;
|
|
6948
|
+
bindDBResourceGroupWithUserWithOptions(request: BindDBResourceGroupWithUserRequest, runtime: $Util.RuntimeOptions): Promise<BindDBResourceGroupWithUserResponse>;
|
|
6949
|
+
bindDBResourceGroupWithUser(request: BindDBResourceGroupWithUserRequest): Promise<BindDBResourceGroupWithUserResponse>;
|
|
6655
6950
|
checkBindRamUserWithOptions(request: CheckBindRamUserRequest, runtime: $Util.RuntimeOptions): Promise<CheckBindRamUserResponse>;
|
|
6656
6951
|
checkBindRamUser(request: CheckBindRamUserRequest): Promise<CheckBindRamUserResponse>;
|
|
6952
|
+
checkSampleDataSetWithOptions(request: CheckSampleDataSetRequest, runtime: $Util.RuntimeOptions): Promise<CheckSampleDataSetResponse>;
|
|
6953
|
+
checkSampleDataSet(request: CheckSampleDataSetRequest): Promise<CheckSampleDataSetResponse>;
|
|
6657
6954
|
createAccountWithOptions(request: CreateAccountRequest, runtime: $Util.RuntimeOptions): Promise<CreateAccountResponse>;
|
|
6658
6955
|
createAccount(request: CreateAccountRequest): Promise<CreateAccountResponse>;
|
|
6659
6956
|
createDBClusterWithOptions(request: CreateDBClusterRequest, runtime: $Util.RuntimeOptions): Promise<CreateDBClusterResponse>;
|
|
@@ -6729,6 +7026,8 @@ export default class Client extends OpenApi {
|
|
|
6729
7026
|
describeDBClusterHealthStatus(request: DescribeDBClusterHealthStatusRequest): Promise<DescribeDBClusterHealthStatusResponse>;
|
|
6730
7027
|
describeDBClusterPerformanceWithOptions(request: DescribeDBClusterPerformanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterPerformanceResponse>;
|
|
6731
7028
|
describeDBClusterPerformance(request: DescribeDBClusterPerformanceRequest): Promise<DescribeDBClusterPerformanceResponse>;
|
|
7029
|
+
describeDBClusterStatusWithOptions(request: DescribeDBClusterStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterStatusResponse>;
|
|
7030
|
+
describeDBClusterStatus(request: DescribeDBClusterStatusRequest): Promise<DescribeDBClusterStatusResponse>;
|
|
6732
7031
|
describeDBClustersWithOptions(request: DescribeDBClustersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClustersResponse>;
|
|
6733
7032
|
describeDBClusters(request: DescribeDBClustersRequest): Promise<DescribeDBClustersResponse>;
|
|
6734
7033
|
describeDBResourceGroupWithOptions(request: DescribeDBResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBResourceGroupResponse>;
|
|
@@ -6771,6 +7070,10 @@ export default class Client extends OpenApi {
|
|
|
6771
7070
|
describeTableAccessCount(request: DescribeTableAccessCountRequest): Promise<DescribeTableAccessCountResponse>;
|
|
6772
7071
|
describeTablesWithOptions(request: DescribeTablesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTablesResponse>;
|
|
6773
7072
|
describeTables(request: DescribeTablesRequest): Promise<DescribeTablesResponse>;
|
|
7073
|
+
describeUserQuotaWithOptions(request: DescribeUserQuotaRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUserQuotaResponse>;
|
|
7074
|
+
describeUserQuota(request: DescribeUserQuotaRequest): Promise<DescribeUserQuotaResponse>;
|
|
7075
|
+
detachUserENIWithOptions(request: DetachUserENIRequest, runtime: $Util.RuntimeOptions): Promise<DetachUserENIResponse>;
|
|
7076
|
+
detachUserENI(request: DetachUserENIRequest): Promise<DetachUserENIResponse>;
|
|
6774
7077
|
disableElasticPlanWithOptions(request: DisableElasticPlanRequest, runtime: $Util.RuntimeOptions): Promise<DisableElasticPlanResponse>;
|
|
6775
7078
|
disableElasticPlan(request: DisableElasticPlanRequest): Promise<DisableElasticPlanResponse>;
|
|
6776
7079
|
downloadDiagnosisRecordsWithOptions(request: DownloadDiagnosisRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DownloadDiagnosisRecordsResponse>;
|
|
@@ -6901,6 +7204,8 @@ export default class Client extends OpenApi {
|
|
|
6901
7204
|
submitSparkLogAnalyzeTask(request: SubmitSparkLogAnalyzeTaskRequest): Promise<SubmitSparkLogAnalyzeTaskResponse>;
|
|
6902
7205
|
unbindAccountWithOptions(request: UnbindAccountRequest, runtime: $Util.RuntimeOptions): Promise<UnbindAccountResponse>;
|
|
6903
7206
|
unbindAccount(request: UnbindAccountRequest): Promise<UnbindAccountResponse>;
|
|
7207
|
+
unbindDBResourceGroupWithUserWithOptions(request: UnbindDBResourceGroupWithUserRequest, runtime: $Util.RuntimeOptions): Promise<UnbindDBResourceGroupWithUserResponse>;
|
|
7208
|
+
unbindDBResourceGroupWithUser(request: UnbindDBResourceGroupWithUserRequest): Promise<UnbindDBResourceGroupWithUserResponse>;
|
|
6904
7209
|
updateSparkTemplateFileWithOptions(request: UpdateSparkTemplateFileRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSparkTemplateFileResponse>;
|
|
6905
7210
|
updateSparkTemplateFile(request: UpdateSparkTemplateFileRequest): Promise<UpdateSparkTemplateFileResponse>;
|
|
6906
7211
|
}
|