@alicloud/polardb20170801 5.0.1 → 5.0.2
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 +10 -2
- package/dist/client.js +24 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +34 -2
package/dist/client.d.ts
CHANGED
|
@@ -2145,6 +2145,7 @@ export declare class DescribeDBClusterAttributeRequest extends $tea.Model {
|
|
|
2145
2145
|
});
|
|
2146
2146
|
}
|
|
2147
2147
|
export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
2148
|
+
aiCreatingTime?: string;
|
|
2148
2149
|
aiType?: string;
|
|
2149
2150
|
architecture?: string;
|
|
2150
2151
|
blktagTotal?: number;
|
|
@@ -2575,6 +2576,7 @@ export declare class DescribeDBClusterParametersResponse extends $tea.Model {
|
|
|
2575
2576
|
export declare class DescribeDBClusterPerformanceRequest extends $tea.Model {
|
|
2576
2577
|
DBClusterId?: string;
|
|
2577
2578
|
endTime?: string;
|
|
2579
|
+
interval?: string;
|
|
2578
2580
|
key?: string;
|
|
2579
2581
|
startTime?: string;
|
|
2580
2582
|
static names(): {
|
|
@@ -5495,6 +5497,7 @@ export declare class ModifyDBClusterPrimaryZoneRequest extends $tea.Model {
|
|
|
5495
5497
|
VPCId?: string;
|
|
5496
5498
|
vSwitchId?: string;
|
|
5497
5499
|
zoneId?: string;
|
|
5500
|
+
zoneType?: string;
|
|
5498
5501
|
static names(): {
|
|
5499
5502
|
[key: string]: string;
|
|
5500
5503
|
};
|
|
@@ -7435,6 +7438,7 @@ export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.
|
|
|
7435
7438
|
maxConnections?: number;
|
|
7436
7439
|
maxIOPS?: number;
|
|
7437
7440
|
memorySize?: string;
|
|
7441
|
+
remoteMemorySize?: string;
|
|
7438
7442
|
sccMode?: string;
|
|
7439
7443
|
serverWeight?: string;
|
|
7440
7444
|
serverlessType?: string;
|
|
@@ -7611,6 +7615,10 @@ export declare class DescribeDBClusterMigrationResponseBodyRdsEndpointList exten
|
|
|
7611
7615
|
}
|
|
7612
7616
|
export declare class DescribeDBClusterParametersResponseBodyParametersParameters extends $tea.Model {
|
|
7613
7617
|
isEqual?: string;
|
|
7618
|
+
isInstancePolarDBKey?: string;
|
|
7619
|
+
isInstanceRdsKey?: string;
|
|
7620
|
+
isPolarDBKey?: string;
|
|
7621
|
+
isRdsKey?: string;
|
|
7614
7622
|
distParameterDescription?: string;
|
|
7615
7623
|
distParameterName?: string;
|
|
7616
7624
|
distParameterOptional?: string;
|
|
@@ -9178,7 +9186,7 @@ export default class Client extends OpenApi {
|
|
|
9178
9186
|
describeDBClusterTDEWithOptions(request: DescribeDBClusterTDERequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterTDEResponse>;
|
|
9179
9187
|
describeDBClusterTDE(request: DescribeDBClusterTDERequest): Promise<DescribeDBClusterTDEResponse>;
|
|
9180
9188
|
/**
|
|
9181
|
-
*
|
|
9189
|
+
* The release note of the kernel version.
|
|
9182
9190
|
*
|
|
9183
9191
|
* @param request DescribeDBClusterVersionRequest
|
|
9184
9192
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -9186,7 +9194,7 @@ export default class Client extends OpenApi {
|
|
|
9186
9194
|
*/
|
|
9187
9195
|
describeDBClusterVersionWithOptions(request: DescribeDBClusterVersionRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterVersionResponse>;
|
|
9188
9196
|
/**
|
|
9189
|
-
*
|
|
9197
|
+
* The release note of the kernel version.
|
|
9190
9198
|
*
|
|
9191
9199
|
* @param request DescribeDBClusterVersionRequest
|
|
9192
9200
|
* @return DescribeDBClusterVersionResponse
|
package/dist/client.js
CHANGED
|
@@ -3106,6 +3106,7 @@ class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
3106
3106
|
}
|
|
3107
3107
|
static names() {
|
|
3108
3108
|
return {
|
|
3109
|
+
aiCreatingTime: 'AiCreatingTime',
|
|
3109
3110
|
aiType: 'AiType',
|
|
3110
3111
|
architecture: 'Architecture',
|
|
3111
3112
|
blktagTotal: 'BlktagTotal',
|
|
@@ -3164,6 +3165,7 @@ class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
3164
3165
|
}
|
|
3165
3166
|
static types() {
|
|
3166
3167
|
return {
|
|
3168
|
+
aiCreatingTime: 'string',
|
|
3167
3169
|
aiType: 'string',
|
|
3168
3170
|
architecture: 'string',
|
|
3169
3171
|
blktagTotal: 'number',
|
|
@@ -3748,6 +3750,7 @@ class DescribeDBClusterPerformanceRequest extends $tea.Model {
|
|
|
3748
3750
|
return {
|
|
3749
3751
|
DBClusterId: 'DBClusterId',
|
|
3750
3752
|
endTime: 'EndTime',
|
|
3753
|
+
interval: 'Interval',
|
|
3751
3754
|
key: 'Key',
|
|
3752
3755
|
startTime: 'StartTime',
|
|
3753
3756
|
};
|
|
@@ -3756,6 +3759,7 @@ class DescribeDBClusterPerformanceRequest extends $tea.Model {
|
|
|
3756
3759
|
return {
|
|
3757
3760
|
DBClusterId: 'string',
|
|
3758
3761
|
endTime: 'string',
|
|
3762
|
+
interval: 'string',
|
|
3759
3763
|
key: 'string',
|
|
3760
3764
|
startTime: 'string',
|
|
3761
3765
|
};
|
|
@@ -7954,6 +7958,7 @@ class ModifyDBClusterPrimaryZoneRequest extends $tea.Model {
|
|
|
7954
7958
|
VPCId: 'VPCId',
|
|
7955
7959
|
vSwitchId: 'VSwitchId',
|
|
7956
7960
|
zoneId: 'ZoneId',
|
|
7961
|
+
zoneType: 'ZoneType',
|
|
7957
7962
|
};
|
|
7958
7963
|
}
|
|
7959
7964
|
static types() {
|
|
@@ -7970,6 +7975,7 @@ class ModifyDBClusterPrimaryZoneRequest extends $tea.Model {
|
|
|
7970
7975
|
VPCId: 'string',
|
|
7971
7976
|
vSwitchId: 'string',
|
|
7972
7977
|
zoneId: 'string',
|
|
7978
|
+
zoneType: 'string',
|
|
7973
7979
|
};
|
|
7974
7980
|
}
|
|
7975
7981
|
}
|
|
@@ -10732,6 +10738,7 @@ class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.Model {
|
|
|
10732
10738
|
maxConnections: 'MaxConnections',
|
|
10733
10739
|
maxIOPS: 'MaxIOPS',
|
|
10734
10740
|
memorySize: 'MemorySize',
|
|
10741
|
+
remoteMemorySize: 'RemoteMemorySize',
|
|
10735
10742
|
sccMode: 'SccMode',
|
|
10736
10743
|
serverWeight: 'ServerWeight',
|
|
10737
10744
|
serverlessType: 'ServerlessType',
|
|
@@ -10755,6 +10762,7 @@ class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.Model {
|
|
|
10755
10762
|
maxConnections: 'number',
|
|
10756
10763
|
maxIOPS: 'number',
|
|
10757
10764
|
memorySize: 'string',
|
|
10765
|
+
remoteMemorySize: 'string',
|
|
10758
10766
|
sccMode: 'string',
|
|
10759
10767
|
serverWeight: 'string',
|
|
10760
10768
|
serverlessType: 'string',
|
|
@@ -11009,6 +11017,10 @@ class DescribeDBClusterParametersResponseBodyParametersParameters extends $tea.M
|
|
|
11009
11017
|
static names() {
|
|
11010
11018
|
return {
|
|
11011
11019
|
isEqual: 'IsEqual',
|
|
11020
|
+
isInstancePolarDBKey: 'IsInstancePolarDBKey',
|
|
11021
|
+
isInstanceRdsKey: 'IsInstanceRdsKey',
|
|
11022
|
+
isPolarDBKey: 'IsPolarDBKey',
|
|
11023
|
+
isRdsKey: 'IsRdsKey',
|
|
11012
11024
|
distParameterDescription: 'distParameterDescription',
|
|
11013
11025
|
distParameterName: 'distParameterName',
|
|
11014
11026
|
distParameterOptional: 'distParameterOptional',
|
|
@@ -11022,6 +11034,10 @@ class DescribeDBClusterParametersResponseBodyParametersParameters extends $tea.M
|
|
|
11022
11034
|
static types() {
|
|
11023
11035
|
return {
|
|
11024
11036
|
isEqual: 'string',
|
|
11037
|
+
isInstancePolarDBKey: 'string',
|
|
11038
|
+
isInstanceRdsKey: 'string',
|
|
11039
|
+
isPolarDBKey: 'string',
|
|
11040
|
+
isRdsKey: 'string',
|
|
11025
11041
|
distParameterDescription: 'string',
|
|
11026
11042
|
distParameterName: 'string',
|
|
11027
11043
|
distParameterOptional: 'string',
|
|
@@ -15561,6 +15577,9 @@ class Client extends openapi_client_1.default {
|
|
|
15561
15577
|
if (!tea_util_1.default.isUnset(request.endTime)) {
|
|
15562
15578
|
query["EndTime"] = request.endTime;
|
|
15563
15579
|
}
|
|
15580
|
+
if (!tea_util_1.default.isUnset(request.interval)) {
|
|
15581
|
+
query["Interval"] = request.interval;
|
|
15582
|
+
}
|
|
15564
15583
|
if (!tea_util_1.default.isUnset(request.key)) {
|
|
15565
15584
|
query["Key"] = request.key;
|
|
15566
15585
|
}
|
|
@@ -15719,7 +15738,7 @@ class Client extends openapi_client_1.default {
|
|
|
15719
15738
|
return await this.describeDBClusterTDEWithOptions(request, runtime);
|
|
15720
15739
|
}
|
|
15721
15740
|
/**
|
|
15722
|
-
*
|
|
15741
|
+
* The release note of the kernel version.
|
|
15723
15742
|
*
|
|
15724
15743
|
* @param request DescribeDBClusterVersionRequest
|
|
15725
15744
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -15763,7 +15782,7 @@ class Client extends openapi_client_1.default {
|
|
|
15763
15782
|
return $tea.cast(await this.callApi(params, req, runtime), new DescribeDBClusterVersionResponse({}));
|
|
15764
15783
|
}
|
|
15765
15784
|
/**
|
|
15766
|
-
*
|
|
15785
|
+
* The release note of the kernel version.
|
|
15767
15786
|
*
|
|
15768
15787
|
* @param request DescribeDBClusterVersionRequest
|
|
15769
15788
|
* @return DescribeDBClusterVersionResponse
|
|
@@ -18665,6 +18684,9 @@ class Client extends openapi_client_1.default {
|
|
|
18665
18684
|
if (!tea_util_1.default.isUnset(request.zoneId)) {
|
|
18666
18685
|
query["ZoneId"] = request.zoneId;
|
|
18667
18686
|
}
|
|
18687
|
+
if (!tea_util_1.default.isUnset(request.zoneType)) {
|
|
18688
|
+
query["ZoneType"] = request.zoneType;
|
|
18689
|
+
}
|
|
18668
18690
|
let req = new $OpenApi.OpenApiRequest({
|
|
18669
18691
|
query: openapi_util_1.default.query(query),
|
|
18670
18692
|
});
|