@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/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -3872,6 +3872,7 @@ export class DescribeDBClusterAttributeRequest extends $tea.Model {
|
|
|
3872
3872
|
|
|
3873
3873
|
export class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
3874
3874
|
aiType?: string;
|
|
3875
|
+
architecture?: string;
|
|
3875
3876
|
blktagTotal?: number;
|
|
3876
3877
|
blktagUsed?: number;
|
|
3877
3878
|
category?: string;
|
|
@@ -3893,6 +3894,7 @@ export class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
3893
3894
|
expireTime?: string;
|
|
3894
3895
|
expired?: string;
|
|
3895
3896
|
hasCompleteStandbyRes?: boolean;
|
|
3897
|
+
hotStandbyCluster?: string;
|
|
3896
3898
|
inodeTotal?: number;
|
|
3897
3899
|
inodeUsed?: number;
|
|
3898
3900
|
isLatestVersion?: boolean;
|
|
@@ -3925,6 +3927,7 @@ export class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
3925
3927
|
static names(): { [key: string]: string } {
|
|
3926
3928
|
return {
|
|
3927
3929
|
aiType: 'AiType',
|
|
3930
|
+
architecture: 'Architecture',
|
|
3928
3931
|
blktagTotal: 'BlktagTotal',
|
|
3929
3932
|
blktagUsed: 'BlktagUsed',
|
|
3930
3933
|
category: 'Category',
|
|
@@ -3946,6 +3949,7 @@ export class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
3946
3949
|
expireTime: 'ExpireTime',
|
|
3947
3950
|
expired: 'Expired',
|
|
3948
3951
|
hasCompleteStandbyRes: 'HasCompleteStandbyRes',
|
|
3952
|
+
hotStandbyCluster: 'HotStandbyCluster',
|
|
3949
3953
|
inodeTotal: 'InodeTotal',
|
|
3950
3954
|
inodeUsed: 'InodeUsed',
|
|
3951
3955
|
isLatestVersion: 'IsLatestVersion',
|
|
@@ -3981,6 +3985,7 @@ export class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
3981
3985
|
static types(): { [key: string]: any } {
|
|
3982
3986
|
return {
|
|
3983
3987
|
aiType: 'string',
|
|
3988
|
+
architecture: 'string',
|
|
3984
3989
|
blktagTotal: 'number',
|
|
3985
3990
|
blktagUsed: 'number',
|
|
3986
3991
|
category: 'string',
|
|
@@ -4002,6 +4007,7 @@ export class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
4002
4007
|
expireTime: 'string',
|
|
4003
4008
|
expired: 'string',
|
|
4004
4009
|
hasCompleteStandbyRes: 'boolean',
|
|
4010
|
+
hotStandbyCluster: 'string',
|
|
4005
4011
|
inodeTotal: 'number',
|
|
4006
4012
|
inodeUsed: 'number',
|
|
4007
4013
|
isLatestVersion: 'boolean',
|
|
@@ -10569,6 +10575,7 @@ export class ModifyDBNodeClassRequest extends $tea.Model {
|
|
|
10569
10575
|
clientToken?: string;
|
|
10570
10576
|
DBClusterId?: string;
|
|
10571
10577
|
DBNodeTargetClass?: string;
|
|
10578
|
+
DBNodeType?: string;
|
|
10572
10579
|
modifyType?: string;
|
|
10573
10580
|
ownerAccount?: string;
|
|
10574
10581
|
ownerId?: number;
|
|
@@ -10582,6 +10589,7 @@ export class ModifyDBNodeClassRequest extends $tea.Model {
|
|
|
10582
10589
|
clientToken: 'ClientToken',
|
|
10583
10590
|
DBClusterId: 'DBClusterId',
|
|
10584
10591
|
DBNodeTargetClass: 'DBNodeTargetClass',
|
|
10592
|
+
DBNodeType: 'DBNodeType',
|
|
10585
10593
|
modifyType: 'ModifyType',
|
|
10586
10594
|
ownerAccount: 'OwnerAccount',
|
|
10587
10595
|
ownerId: 'OwnerId',
|
|
@@ -10598,6 +10606,7 @@ export class ModifyDBNodeClassRequest extends $tea.Model {
|
|
|
10598
10606
|
clientToken: 'string',
|
|
10599
10607
|
DBClusterId: 'string',
|
|
10600
10608
|
DBNodeTargetClass: 'string',
|
|
10609
|
+
DBNodeType: 'string',
|
|
10601
10610
|
modifyType: 'string',
|
|
10602
10611
|
ownerAccount: 'string',
|
|
10603
10612
|
ownerId: 'number',
|
|
@@ -23400,6 +23409,10 @@ export default class Client extends OpenApi {
|
|
|
23400
23409
|
query["DBNodeTargetClass"] = request.DBNodeTargetClass;
|
|
23401
23410
|
}
|
|
23402
23411
|
|
|
23412
|
+
if (!Util.isUnset(request.DBNodeType)) {
|
|
23413
|
+
query["DBNodeType"] = request.DBNodeType;
|
|
23414
|
+
}
|
|
23415
|
+
|
|
23403
23416
|
if (!Util.isUnset(request.modifyType)) {
|
|
23404
23417
|
query["ModifyType"] = request.modifyType;
|
|
23405
23418
|
}
|