@alicloud/polardb20170801 5.0.4 → 5.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +5 -13
- package/dist/client.js +1632 -1621
- package/dist/client.js.map +1 -1
- package/package.json +4 -4
- package/src/client.ts +15 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alicloud/polardb20170801",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/client.js",
|
|
6
6
|
"scripts": {
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
"author": "Alibaba Cloud SDK",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@types/node": "^
|
|
15
|
+
"@types/node": "^16.0.0",
|
|
16
16
|
"nyc": "^15.0.0",
|
|
17
17
|
"source-map-support": "^0.5.16",
|
|
18
|
-
"ts-node": "^
|
|
19
|
-
"typescript": "^
|
|
18
|
+
"ts-node": "^10.0.0",
|
|
19
|
+
"typescript": "^5"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@alicloud/tea-typescript": "^1.7.1",
|
package/src/client.ts
CHANGED
|
@@ -4012,6 +4012,7 @@ export class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
4012
4012
|
storageUsed?: number;
|
|
4013
4013
|
strictConsistency?: string;
|
|
4014
4014
|
subCategory?: string;
|
|
4015
|
+
supportInstantSwitchWithImci?: string;
|
|
4015
4016
|
tags?: DescribeDBClusterAttributeResponseBodyTags[];
|
|
4016
4017
|
VPCId?: string;
|
|
4017
4018
|
vSwitchId?: string;
|
|
@@ -4069,6 +4070,7 @@ export class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
4069
4070
|
storageUsed: 'StorageUsed',
|
|
4070
4071
|
strictConsistency: 'StrictConsistency',
|
|
4071
4072
|
subCategory: 'SubCategory',
|
|
4073
|
+
supportInstantSwitchWithImci: 'SupportInstantSwitchWithImci',
|
|
4072
4074
|
tags: 'Tags',
|
|
4073
4075
|
VPCId: 'VPCId',
|
|
4074
4076
|
vSwitchId: 'VSwitchId',
|
|
@@ -4129,6 +4131,7 @@ export class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
4129
4131
|
storageUsed: 'number',
|
|
4130
4132
|
strictConsistency: 'string',
|
|
4131
4133
|
subCategory: 'string',
|
|
4134
|
+
supportInstantSwitchWithImci: 'string',
|
|
4132
4135
|
tags: { 'type': 'array', 'itemType': DescribeDBClusterAttributeResponseBodyTags },
|
|
4133
4136
|
VPCId: 'string',
|
|
4134
4137
|
vSwitchId: 'string',
|
|
@@ -14609,6 +14612,7 @@ export class DescribeDBClustersResponseBodyItemsDBClusterTags extends $tea.Model
|
|
|
14609
14612
|
export class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.Model {
|
|
14610
14613
|
aiType?: string;
|
|
14611
14614
|
category?: string;
|
|
14615
|
+
cpuCores?: string;
|
|
14612
14616
|
createTime?: string;
|
|
14613
14617
|
DBClusterDescription?: string;
|
|
14614
14618
|
DBClusterId?: string;
|
|
@@ -14624,14 +14628,17 @@ export class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.Model {
|
|
|
14624
14628
|
expireTime?: string;
|
|
14625
14629
|
expired?: string;
|
|
14626
14630
|
lockMode?: string;
|
|
14631
|
+
memorySize?: string;
|
|
14627
14632
|
payType?: string;
|
|
14628
14633
|
regionId?: string;
|
|
14634
|
+
remoteMemorySize?: string;
|
|
14629
14635
|
resourceGroupId?: string;
|
|
14630
14636
|
serverlessType?: string;
|
|
14631
14637
|
storagePayType?: string;
|
|
14632
14638
|
storageSpace?: number;
|
|
14633
14639
|
storageUsed?: number;
|
|
14634
14640
|
strictConsistency?: string;
|
|
14641
|
+
subCategory?: string;
|
|
14635
14642
|
tags?: DescribeDBClustersResponseBodyItemsDBClusterTags;
|
|
14636
14643
|
vpcId?: string;
|
|
14637
14644
|
vswitchId?: string;
|
|
@@ -14640,6 +14647,7 @@ export class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.Model {
|
|
|
14640
14647
|
return {
|
|
14641
14648
|
aiType: 'AiType',
|
|
14642
14649
|
category: 'Category',
|
|
14650
|
+
cpuCores: 'CpuCores',
|
|
14643
14651
|
createTime: 'CreateTime',
|
|
14644
14652
|
DBClusterDescription: 'DBClusterDescription',
|
|
14645
14653
|
DBClusterId: 'DBClusterId',
|
|
@@ -14655,14 +14663,17 @@ export class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.Model {
|
|
|
14655
14663
|
expireTime: 'ExpireTime',
|
|
14656
14664
|
expired: 'Expired',
|
|
14657
14665
|
lockMode: 'LockMode',
|
|
14666
|
+
memorySize: 'MemorySize',
|
|
14658
14667
|
payType: 'PayType',
|
|
14659
14668
|
regionId: 'RegionId',
|
|
14669
|
+
remoteMemorySize: 'RemoteMemorySize',
|
|
14660
14670
|
resourceGroupId: 'ResourceGroupId',
|
|
14661
14671
|
serverlessType: 'ServerlessType',
|
|
14662
14672
|
storagePayType: 'StoragePayType',
|
|
14663
14673
|
storageSpace: 'StorageSpace',
|
|
14664
14674
|
storageUsed: 'StorageUsed',
|
|
14665
14675
|
strictConsistency: 'StrictConsistency',
|
|
14676
|
+
subCategory: 'SubCategory',
|
|
14666
14677
|
tags: 'Tags',
|
|
14667
14678
|
vpcId: 'VpcId',
|
|
14668
14679
|
vswitchId: 'VswitchId',
|
|
@@ -14674,6 +14685,7 @@ export class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.Model {
|
|
|
14674
14685
|
return {
|
|
14675
14686
|
aiType: 'string',
|
|
14676
14687
|
category: 'string',
|
|
14688
|
+
cpuCores: 'string',
|
|
14677
14689
|
createTime: 'string',
|
|
14678
14690
|
DBClusterDescription: 'string',
|
|
14679
14691
|
DBClusterId: 'string',
|
|
@@ -14689,14 +14701,17 @@ export class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.Model {
|
|
|
14689
14701
|
expireTime: 'string',
|
|
14690
14702
|
expired: 'string',
|
|
14691
14703
|
lockMode: 'string',
|
|
14704
|
+
memorySize: 'string',
|
|
14692
14705
|
payType: 'string',
|
|
14693
14706
|
regionId: 'string',
|
|
14707
|
+
remoteMemorySize: 'string',
|
|
14694
14708
|
resourceGroupId: 'string',
|
|
14695
14709
|
serverlessType: 'string',
|
|
14696
14710
|
storagePayType: 'string',
|
|
14697
14711
|
storageSpace: 'number',
|
|
14698
14712
|
storageUsed: 'number',
|
|
14699
14713
|
strictConsistency: 'string',
|
|
14714
|
+
subCategory: 'string',
|
|
14700
14715
|
tags: DescribeDBClustersResponseBodyItemsDBClusterTags,
|
|
14701
14716
|
vpcId: 'string',
|
|
14702
14717
|
vswitchId: 'string',
|
|
@@ -20006,13 +20021,6 @@ export default class Client extends OpenApi {
|
|
|
20006
20021
|
return await this.describeDBClusterTDEWithOptions(request, runtime);
|
|
20007
20022
|
}
|
|
20008
20023
|
|
|
20009
|
-
/**
|
|
20010
|
-
* The release note of the kernel version.
|
|
20011
|
-
*
|
|
20012
|
-
* @param request DescribeDBClusterVersionRequest
|
|
20013
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
20014
|
-
* @return DescribeDBClusterVersionResponse
|
|
20015
|
-
*/
|
|
20016
20024
|
async describeDBClusterVersionWithOptions(request: DescribeDBClusterVersionRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterVersionResponse> {
|
|
20017
20025
|
Util.validateModel(request);
|
|
20018
20026
|
let query = { };
|
|
@@ -20057,12 +20065,6 @@ export default class Client extends OpenApi {
|
|
|
20057
20065
|
return $tea.cast<DescribeDBClusterVersionResponse>(await this.callApi(params, req, runtime), new DescribeDBClusterVersionResponse({}));
|
|
20058
20066
|
}
|
|
20059
20067
|
|
|
20060
|
-
/**
|
|
20061
|
-
* The release note of the kernel version.
|
|
20062
|
-
*
|
|
20063
|
-
* @param request DescribeDBClusterVersionRequest
|
|
20064
|
-
* @return DescribeDBClusterVersionResponse
|
|
20065
|
-
*/
|
|
20066
20068
|
async describeDBClusterVersion(request: DescribeDBClusterVersionRequest): Promise<DescribeDBClusterVersionResponse> {
|
|
20067
20069
|
let runtime = new $Util.RuntimeOptions({ });
|
|
20068
20070
|
return await this.describeDBClusterVersionWithOptions(request, runtime);
|