@alicloud/dds20151201 8.2.0 → 8.2.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.js +21 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateBackupResponseBody.d.ts +5 -0
- package/dist/models/CreateBackupResponseBody.js +2 -0
- package/dist/models/CreateBackupResponseBody.js.map +1 -1
- package/dist/models/DescribeBackupsRequest.d.ts +10 -0
- package/dist/models/DescribeBackupsRequest.js +4 -0
- package/dist/models/DescribeBackupsRequest.js.map +1 -1
- package/dist/models/DescribeClusterBackupsRequest.d.ts +10 -0
- package/dist/models/DescribeClusterBackupsRequest.js +4 -0
- package/dist/models/DescribeClusterBackupsRequest.js.map +1 -1
- package/dist/models/DescribeClusterRecoverTimeRequest.d.ts +5 -0
- package/dist/models/DescribeClusterRecoverTimeRequest.js +2 -0
- package/dist/models/DescribeClusterRecoverTimeRequest.js.map +1 -1
- package/dist/models/DescribeDbinstanceAttributeResponseBody.d.ts +15 -0
- package/dist/models/DescribeDbinstanceAttributeResponseBody.js +6 -0
- package/dist/models/DescribeDbinstanceAttributeResponseBody.js.map +1 -1
- package/dist/models/DescribeInstanceRecoverTimeRequest.d.ts +5 -0
- package/dist/models/DescribeInstanceRecoverTimeRequest.js +2 -0
- package/dist/models/DescribeInstanceRecoverTimeRequest.js.map +1 -1
- package/dist/models/ModifyDbinstanceSpecRequest.d.ts +15 -0
- package/dist/models/ModifyDbinstanceSpecRequest.js +6 -0
- package/dist/models/ModifyDbinstanceSpecRequest.js.map +1 -1
- package/dist/models/ReleaseNodePrivateNetworkAddressRequest.d.ts +0 -2
- package/dist/models/ReleaseNodePrivateNetworkAddressRequest.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +28 -0
- package/src/models/CreateBackupResponseBody.ts +7 -0
- package/src/models/DescribeBackupsRequest.ts +14 -0
- package/src/models/DescribeClusterBackupsRequest.ts +14 -0
- package/src/models/DescribeClusterRecoverTimeRequest.ts +7 -0
- package/src/models/DescribeDbinstanceAttributeResponseBody.ts +21 -0
- package/src/models/DescribeInstanceRecoverTimeRequest.ts +7 -0
- package/src/models/ModifyDbinstanceSpecRequest.ts +21 -0
- package/src/models/ReleaseNodePrivateNetworkAddressRequest.ts +0 -2
|
@@ -1137,6 +1137,21 @@ export class DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstance extend
|
|
|
1137
1137
|
* rg-acfmyiu4ekp****
|
|
1138
1138
|
*/
|
|
1139
1139
|
resourceGroupId?: string;
|
|
1140
|
+
/**
|
|
1141
|
+
* @example
|
|
1142
|
+
* mdb.shard.2x.xlarge.d
|
|
1143
|
+
*/
|
|
1144
|
+
searchNodeClass?: string;
|
|
1145
|
+
/**
|
|
1146
|
+
* @example
|
|
1147
|
+
* 2
|
|
1148
|
+
*/
|
|
1149
|
+
searchNodeCount?: number;
|
|
1150
|
+
/**
|
|
1151
|
+
* @example
|
|
1152
|
+
* 20
|
|
1153
|
+
*/
|
|
1154
|
+
searchNodeStorage?: number;
|
|
1140
1155
|
/**
|
|
1141
1156
|
* @remarks
|
|
1142
1157
|
* The ID of the secondary zone 1 of the instance. Valid values:
|
|
@@ -1312,6 +1327,9 @@ export class DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstance extend
|
|
|
1312
1327
|
replicaSets: 'ReplicaSets',
|
|
1313
1328
|
replicationFactor: 'ReplicationFactor',
|
|
1314
1329
|
resourceGroupId: 'ResourceGroupId',
|
|
1330
|
+
searchNodeClass: 'SearchNodeClass',
|
|
1331
|
+
searchNodeCount: 'SearchNodeCount',
|
|
1332
|
+
searchNodeStorage: 'SearchNodeStorage',
|
|
1315
1333
|
secondaryZoneId: 'SecondaryZoneId',
|
|
1316
1334
|
shardList: 'ShardList',
|
|
1317
1335
|
storageEngine: 'StorageEngine',
|
|
@@ -1370,6 +1388,9 @@ export class DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstance extend
|
|
|
1370
1388
|
replicaSets: DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanceReplicaSets,
|
|
1371
1389
|
replicationFactor: 'string',
|
|
1372
1390
|
resourceGroupId: 'string',
|
|
1391
|
+
searchNodeClass: 'string',
|
|
1392
|
+
searchNodeCount: 'number',
|
|
1393
|
+
searchNodeStorage: 'number',
|
|
1373
1394
|
secondaryZoneId: 'string',
|
|
1374
1395
|
shardList: DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanceShardList,
|
|
1375
1396
|
storageEngine: 'string',
|
|
@@ -16,6 +16,11 @@ export class DescribeInstanceRecoverTimeRequest extends $dara.Model {
|
|
|
16
16
|
destRegion?: string;
|
|
17
17
|
ownerAccount?: string;
|
|
18
18
|
ownerId?: number;
|
|
19
|
+
/**
|
|
20
|
+
* @example
|
|
21
|
+
* rg-xxxx
|
|
22
|
+
*/
|
|
23
|
+
resourceGroupId?: string;
|
|
19
24
|
resourceOwnerAccount?: string;
|
|
20
25
|
resourceOwnerId?: number;
|
|
21
26
|
securityToken?: string;
|
|
@@ -26,6 +31,7 @@ export class DescribeInstanceRecoverTimeRequest extends $dara.Model {
|
|
|
26
31
|
destRegion: 'DestRegion',
|
|
27
32
|
ownerAccount: 'OwnerAccount',
|
|
28
33
|
ownerId: 'OwnerId',
|
|
34
|
+
resourceGroupId: 'ResourceGroupId',
|
|
29
35
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
30
36
|
resourceOwnerId: 'ResourceOwnerId',
|
|
31
37
|
securityToken: 'SecurityToken',
|
|
@@ -39,6 +45,7 @@ export class DescribeInstanceRecoverTimeRequest extends $dara.Model {
|
|
|
39
45
|
destRegion: 'string',
|
|
40
46
|
ownerAccount: 'string',
|
|
41
47
|
ownerId: 'number',
|
|
48
|
+
resourceGroupId: 'string',
|
|
42
49
|
resourceOwnerAccount: 'string',
|
|
43
50
|
resourceOwnerId: 'number',
|
|
44
51
|
securityToken: 'string',
|
|
@@ -143,6 +143,21 @@ export class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
143
143
|
replicationFactor?: string;
|
|
144
144
|
resourceOwnerAccount?: string;
|
|
145
145
|
resourceOwnerId?: number;
|
|
146
|
+
/**
|
|
147
|
+
* @example
|
|
148
|
+
* mdb.shard.2x.xlarge.d
|
|
149
|
+
*/
|
|
150
|
+
searchNodeClass?: string;
|
|
151
|
+
/**
|
|
152
|
+
* @example
|
|
153
|
+
* 2
|
|
154
|
+
*/
|
|
155
|
+
searchNodeCount?: number;
|
|
156
|
+
/**
|
|
157
|
+
* @example
|
|
158
|
+
* 20
|
|
159
|
+
*/
|
|
160
|
+
searchNodeStorage?: number;
|
|
146
161
|
targetHiddenZoneId?: string;
|
|
147
162
|
targetSecondaryZoneId?: string;
|
|
148
163
|
targetVswitchId?: string;
|
|
@@ -164,6 +179,9 @@ export class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
164
179
|
replicationFactor: 'ReplicationFactor',
|
|
165
180
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
166
181
|
resourceOwnerId: 'ResourceOwnerId',
|
|
182
|
+
searchNodeClass: 'SearchNodeClass',
|
|
183
|
+
searchNodeCount: 'SearchNodeCount',
|
|
184
|
+
searchNodeStorage: 'SearchNodeStorage',
|
|
167
185
|
targetHiddenZoneId: 'TargetHiddenZoneId',
|
|
168
186
|
targetSecondaryZoneId: 'TargetSecondaryZoneId',
|
|
169
187
|
targetVswitchId: 'TargetVswitchId',
|
|
@@ -188,6 +206,9 @@ export class ModifyDBInstanceSpecRequest extends $dara.Model {
|
|
|
188
206
|
replicationFactor: 'string',
|
|
189
207
|
resourceOwnerAccount: 'string',
|
|
190
208
|
resourceOwnerId: 'number',
|
|
209
|
+
searchNodeClass: 'string',
|
|
210
|
+
searchNodeCount: 'number',
|
|
211
|
+
searchNodeStorage: 'number',
|
|
191
212
|
targetHiddenZoneId: 'string',
|
|
192
213
|
targetSecondaryZoneId: 'string',
|
|
193
214
|
targetVswitchId: 'string',
|
|
@@ -45,8 +45,6 @@ export class ReleaseNodePrivateNetworkAddressRequest extends $dara.Model {
|
|
|
45
45
|
*
|
|
46
46
|
* > You can call the [DescribeDBInstanceAttribute](https://help.aliyun.com/document_detail/62010.html) operation to query the ID of the shard or Configserver node.
|
|
47
47
|
*
|
|
48
|
-
* This parameter is required.
|
|
49
|
-
*
|
|
50
48
|
* @example
|
|
51
49
|
* d-bp128a003436****
|
|
52
50
|
*/
|