@alicloud/polardb20170801 3.0.0 → 3.0.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 +3 -0
- package/dist/client.js +9 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +13 -0
package/dist/client.d.ts
CHANGED
|
@@ -2097,6 +2097,7 @@ export declare class DescribeDBClusterAttributeRequest extends $tea.Model {
|
|
|
2097
2097
|
}
|
|
2098
2098
|
export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
2099
2099
|
aiType?: string;
|
|
2100
|
+
architecture?: string;
|
|
2100
2101
|
blktagTotal?: number;
|
|
2101
2102
|
blktagUsed?: number;
|
|
2102
2103
|
category?: string;
|
|
@@ -2118,6 +2119,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
2118
2119
|
expireTime?: string;
|
|
2119
2120
|
expired?: string;
|
|
2120
2121
|
hasCompleteStandbyRes?: boolean;
|
|
2122
|
+
hotStandbyCluster?: string;
|
|
2121
2123
|
inodeTotal?: number;
|
|
2122
2124
|
inodeUsed?: number;
|
|
2123
2125
|
isLatestVersion?: boolean;
|
|
@@ -5674,6 +5676,7 @@ export declare class ModifyDBNodeClassRequest extends $tea.Model {
|
|
|
5674
5676
|
clientToken?: string;
|
|
5675
5677
|
DBClusterId?: string;
|
|
5676
5678
|
DBNodeTargetClass?: string;
|
|
5679
|
+
DBNodeType?: string;
|
|
5677
5680
|
modifyType?: string;
|
|
5678
5681
|
ownerAccount?: string;
|
|
5679
5682
|
ownerId?: number;
|
package/dist/client.js
CHANGED
|
@@ -3024,6 +3024,7 @@ class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
3024
3024
|
static names() {
|
|
3025
3025
|
return {
|
|
3026
3026
|
aiType: 'AiType',
|
|
3027
|
+
architecture: 'Architecture',
|
|
3027
3028
|
blktagTotal: 'BlktagTotal',
|
|
3028
3029
|
blktagUsed: 'BlktagUsed',
|
|
3029
3030
|
category: 'Category',
|
|
@@ -3045,6 +3046,7 @@ class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
3045
3046
|
expireTime: 'ExpireTime',
|
|
3046
3047
|
expired: 'Expired',
|
|
3047
3048
|
hasCompleteStandbyRes: 'HasCompleteStandbyRes',
|
|
3049
|
+
hotStandbyCluster: 'HotStandbyCluster',
|
|
3048
3050
|
inodeTotal: 'InodeTotal',
|
|
3049
3051
|
inodeUsed: 'InodeUsed',
|
|
3050
3052
|
isLatestVersion: 'IsLatestVersion',
|
|
@@ -3079,6 +3081,7 @@ class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
3079
3081
|
static types() {
|
|
3080
3082
|
return {
|
|
3081
3083
|
aiType: 'string',
|
|
3084
|
+
architecture: 'string',
|
|
3082
3085
|
blktagTotal: 'number',
|
|
3083
3086
|
blktagUsed: 'number',
|
|
3084
3087
|
category: 'string',
|
|
@@ -3100,6 +3103,7 @@ class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
3100
3103
|
expireTime: 'string',
|
|
3101
3104
|
expired: 'string',
|
|
3102
3105
|
hasCompleteStandbyRes: 'boolean',
|
|
3106
|
+
hotStandbyCluster: 'string',
|
|
3103
3107
|
inodeTotal: 'number',
|
|
3104
3108
|
inodeUsed: 'number',
|
|
3105
3109
|
isLatestVersion: 'boolean',
|
|
@@ -8196,6 +8200,7 @@ class ModifyDBNodeClassRequest extends $tea.Model {
|
|
|
8196
8200
|
clientToken: 'ClientToken',
|
|
8197
8201
|
DBClusterId: 'DBClusterId',
|
|
8198
8202
|
DBNodeTargetClass: 'DBNodeTargetClass',
|
|
8203
|
+
DBNodeType: 'DBNodeType',
|
|
8199
8204
|
modifyType: 'ModifyType',
|
|
8200
8205
|
ownerAccount: 'OwnerAccount',
|
|
8201
8206
|
ownerId: 'OwnerId',
|
|
@@ -8211,6 +8216,7 @@ class ModifyDBNodeClassRequest extends $tea.Model {
|
|
|
8211
8216
|
clientToken: 'string',
|
|
8212
8217
|
DBClusterId: 'string',
|
|
8213
8218
|
DBNodeTargetClass: 'string',
|
|
8219
|
+
DBNodeType: 'string',
|
|
8214
8220
|
modifyType: 'string',
|
|
8215
8221
|
ownerAccount: 'string',
|
|
8216
8222
|
ownerId: 'number',
|
|
@@ -18600,6 +18606,9 @@ class Client extends openapi_client_1.default {
|
|
|
18600
18606
|
if (!tea_util_1.default.isUnset(request.DBNodeTargetClass)) {
|
|
18601
18607
|
query["DBNodeTargetClass"] = request.DBNodeTargetClass;
|
|
18602
18608
|
}
|
|
18609
|
+
if (!tea_util_1.default.isUnset(request.DBNodeType)) {
|
|
18610
|
+
query["DBNodeType"] = request.DBNodeType;
|
|
18611
|
+
}
|
|
18603
18612
|
if (!tea_util_1.default.isUnset(request.modifyType)) {
|
|
18604
18613
|
query["ModifyType"] = request.modifyType;
|
|
18605
18614
|
}
|