@aws-sdk/client-rds 3.937.0 → 3.938.0

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.
Files changed (34) hide show
  1. package/dist-cjs/index.js +11 -0
  2. package/dist-es/models/enums.js +5 -0
  3. package/dist-es/schemas/schemas_0.js +5 -0
  4. package/dist-types/commands/CreateDBClusterCommand.d.ts +3 -2
  5. package/dist-types/commands/CreateDBInstanceCommand.d.ts +3 -2
  6. package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +3 -2
  7. package/dist-types/commands/DeleteDBClusterCommand.d.ts +1 -0
  8. package/dist-types/commands/DeleteDBInstanceCommand.d.ts +1 -0
  9. package/dist-types/commands/DescribeDBClustersCommand.d.ts +1 -0
  10. package/dist-types/commands/DescribeDBInstancesCommand.d.ts +1 -0
  11. package/dist-types/commands/FailoverDBClusterCommand.d.ts +1 -0
  12. package/dist-types/commands/ModifyDBClusterCommand.d.ts +3 -2
  13. package/dist-types/commands/ModifyDBInstanceCommand.d.ts +3 -2
  14. package/dist-types/commands/PromoteReadReplicaCommand.d.ts +1 -0
  15. package/dist-types/commands/PromoteReadReplicaDBClusterCommand.d.ts +1 -0
  16. package/dist-types/commands/RebootDBClusterCommand.d.ts +1 -0
  17. package/dist-types/commands/RebootDBInstanceCommand.d.ts +1 -0
  18. package/dist-types/commands/RestoreDBClusterFromS3Command.d.ts +1 -0
  19. package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +3 -2
  20. package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +3 -2
  21. package/dist-types/commands/RestoreDBInstanceFromDBSnapshotCommand.d.ts +3 -2
  22. package/dist-types/commands/RestoreDBInstanceFromS3Command.d.ts +3 -2
  23. package/dist-types/commands/RestoreDBInstanceToPointInTimeCommand.d.ts +3 -2
  24. package/dist-types/commands/StartDBClusterCommand.d.ts +3 -2
  25. package/dist-types/commands/StartDBInstanceCommand.d.ts +3 -2
  26. package/dist-types/commands/StopDBClusterCommand.d.ts +1 -0
  27. package/dist-types/commands/StopDBInstanceCommand.d.ts +1 -0
  28. package/dist-types/commands/SwitchoverReadReplicaCommand.d.ts +1 -0
  29. package/dist-types/models/enums.d.ts +13 -0
  30. package/dist-types/models/errors.d.ts +2 -2
  31. package/dist-types/models/models_0.d.ts +33 -1
  32. package/dist-types/ts3.4/models/enums.d.ts +7 -0
  33. package/dist-types/ts3.4/models/models_0.d.ts +3 -0
  34. package/package.json +1 -1
package/dist-cjs/index.js CHANGED
@@ -3337,6 +3337,7 @@ const _UETOPITU = "UseEarliestTimeOnPointInTimeUnavailable";
3337
3337
  const _ULRT = "UseLatestRestorableTime";
3338
3338
  const _UN = "UserName";
3339
3339
  const _UP = "UsagePrice";
3340
+ const _URO = "UpgradeRolloutOrder";
3340
3341
  const _USC = "UpgradeStorageConfig";
3341
3342
  const _UT = "UpdatedTime";
3342
3343
  const _UTSC = "UpgradeTargetStorageConfig";
@@ -4328,6 +4329,7 @@ var DBCluster = [
4328
4329
  _DBCOGM,
4329
4330
  _PBW,
4330
4331
  _PMW,
4332
+ _URO,
4331
4333
  _RSI,
4332
4334
  _RRI,
4333
4335
  _SIt,
@@ -4415,6 +4417,7 @@ var DBCluster = [
4415
4417
  0,
4416
4418
  0,
4417
4419
  0,
4420
+ 0,
4418
4421
  [() => ReadReplicaIdentifierList, 0],
4419
4422
  [() => DBClusterStatusInfoList, 0],
4420
4423
  [() => DBClusterMemberList, 0],
@@ -5007,6 +5010,7 @@ var DBInstance = [
5007
5010
  _AZ,
5008
5011
  _DBSGu,
5009
5012
  _PMW,
5013
+ _URO,
5010
5014
  _PMV,
5011
5015
  _LRT,
5012
5016
  _MAZ,
@@ -5096,6 +5100,7 @@ var DBInstance = [
5096
5100
  0,
5097
5101
  [() => DBSubnetGroup, 0],
5098
5102
  0,
5103
+ 0,
5099
5104
  [() => PendingModifiedValues, 0],
5100
5105
  4,
5101
5106
  2,
@@ -15006,6 +15011,11 @@ const LocalWriteForwardingStatus = {
15006
15011
  ENABLING: "enabling",
15007
15012
  REQUESTED: "requested",
15008
15013
  };
15014
+ const UpgradeRolloutOrder = {
15015
+ FIRST: "first",
15016
+ LAST: "last",
15017
+ SECOND: "second",
15018
+ };
15009
15019
  const AutomationMode = {
15010
15020
  ALL_PAUSED: "all-paused",
15011
15021
  FULL: "full",
@@ -15491,6 +15501,7 @@ exports.TenantDatabaseAlreadyExistsFault = TenantDatabaseAlreadyExistsFault$1;
15491
15501
  exports.TenantDatabaseNotFoundFault = TenantDatabaseNotFoundFault$1;
15492
15502
  exports.TenantDatabaseQuotaExceededFault = TenantDatabaseQuotaExceededFault$1;
15493
15503
  exports.UnsupportedDBEngineVersionFault = UnsupportedDBEngineVersionFault$1;
15504
+ exports.UpgradeRolloutOrder = UpgradeRolloutOrder;
15494
15505
  exports.VpcEncryptionControlViolationException = VpcEncryptionControlViolationException$1;
15495
15506
  exports.WriteForwardingStatus = WriteForwardingStatus;
15496
15507
  exports.paginateDescribeBlueGreenDeployments = paginateDescribeBlueGreenDeployments;
@@ -58,6 +58,11 @@ export const LocalWriteForwardingStatus = {
58
58
  ENABLING: "enabling",
59
59
  REQUESTED: "requested",
60
60
  };
61
+ export const UpgradeRolloutOrder = {
62
+ FIRST: "first",
63
+ LAST: "last",
64
+ SECOND: "second",
65
+ };
61
66
  export const AutomationMode = {
62
67
  ALL_PAUSED: "all-paused",
63
68
  FULL: "full",
@@ -1463,6 +1463,7 @@ const _UETOPITU = "UseEarliestTimeOnPointInTimeUnavailable";
1463
1463
  const _ULRT = "UseLatestRestorableTime";
1464
1464
  const _UN = "UserName";
1465
1465
  const _UP = "UsagePrice";
1466
+ const _URO = "UpgradeRolloutOrder";
1466
1467
  const _USC = "UpgradeStorageConfig";
1467
1468
  const _UT = "UpdatedTime";
1468
1469
  const _UTSC = "UpgradeTargetStorageConfig";
@@ -2457,6 +2458,7 @@ export var DBCluster = [
2457
2458
  _DBCOGM,
2458
2459
  _PBW,
2459
2460
  _PMW,
2461
+ _URO,
2460
2462
  _RSI,
2461
2463
  _RRI,
2462
2464
  _SIt,
@@ -2544,6 +2546,7 @@ export var DBCluster = [
2544
2546
  0,
2545
2547
  0,
2546
2548
  0,
2549
+ 0,
2547
2550
  [() => ReadReplicaIdentifierList, 0],
2548
2551
  [() => DBClusterStatusInfoList, 0],
2549
2552
  [() => DBClusterMemberList, 0],
@@ -3136,6 +3139,7 @@ export var DBInstance = [
3136
3139
  _AZ,
3137
3140
  _DBSGu,
3138
3141
  _PMW,
3142
+ _URO,
3139
3143
  _PMV,
3140
3144
  _LRT,
3141
3145
  _MAZ,
@@ -3225,6 +3229,7 @@ export var DBInstance = [
3225
3229
  0,
3226
3230
  [() => DBSubnetGroup, 0],
3227
3231
  0,
3232
+ 0,
3228
3233
  [() => PendingModifiedValues, 0],
3229
3234
  4,
3230
3235
  2,
@@ -170,6 +170,7 @@ declare const CreateDBClusterCommand_base: {
170
170
  * // ],
171
171
  * // PreferredBackupWindow: "STRING_VALUE",
172
172
  * // PreferredMaintenanceWindow: "STRING_VALUE",
173
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
173
174
  * // ReplicationSourceIdentifier: "STRING_VALUE",
174
175
  * // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
175
176
  * // "STRING_VALUE",
@@ -422,8 +423,8 @@ declare const CreateDBClusterCommand_base: {
422
423
  * <p>The specified <code>StorageType</code> can't be associated with the DB instance.</p>
423
424
  *
424
425
  * @throws {@link VpcEncryptionControlViolationException} (client fault)
425
- * <p>The operation violates VPC encryption control settings. Make sure that your DB instance
426
- * type supports the Nitro encryption-in-transit capability,
426
+ * <p>The operation violates VPC encryption control settings. Make sure that your DB
427
+ * instance type supports the Nitro encryption-in-transit capability,
427
428
  * or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
428
429
  *
429
430
  * @throws {@link RDSServiceException}
@@ -190,6 +190,7 @@ declare const CreateDBInstanceCommand_base: {
190
190
  * // ],
191
191
  * // },
192
192
  * // PreferredMaintenanceWindow: "STRING_VALUE",
193
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
193
194
  * // PendingModifiedValues: { // PendingModifiedValues
194
195
  * // DBInstanceClass: "STRING_VALUE",
195
196
  * // AllocatedStorage: Number("int"),
@@ -449,8 +450,8 @@ declare const CreateDBInstanceCommand_base: {
449
450
  * account.</p>
450
451
  *
451
452
  * @throws {@link VpcEncryptionControlViolationException} (client fault)
452
- * <p>The operation violates VPC encryption control settings. Make sure that your DB instance
453
- * type supports the Nitro encryption-in-transit capability,
453
+ * <p>The operation violates VPC encryption control settings. Make sure that your DB
454
+ * instance type supports the Nitro encryption-in-transit capability,
454
455
  * or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
455
456
  *
456
457
  * @throws {@link RDSServiceException}
@@ -175,6 +175,7 @@ declare const CreateDBInstanceReadReplicaCommand_base: {
175
175
  * // ],
176
176
  * // },
177
177
  * // PreferredMaintenanceWindow: "STRING_VALUE",
178
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
178
179
  * // PendingModifiedValues: { // PendingModifiedValues
179
180
  * // DBInstanceClass: "STRING_VALUE",
180
181
  * // AllocatedStorage: Number("int"),
@@ -441,8 +442,8 @@ declare const CreateDBInstanceReadReplicaCommand_base: {
441
442
  * account.</p>
442
443
  *
443
444
  * @throws {@link VpcEncryptionControlViolationException} (client fault)
444
- * <p>The operation violates VPC encryption control settings. Make sure that your DB instance
445
- * type supports the Nitro encryption-in-transit capability,
445
+ * <p>The operation violates VPC encryption control settings. Make sure that your DB
446
+ * instance type supports the Nitro encryption-in-transit capability,
446
447
  * or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
447
448
  *
448
449
  * @throws {@link RDSServiceException}
@@ -88,6 +88,7 @@ declare const DeleteDBClusterCommand_base: {
88
88
  * // ],
89
89
  * // PreferredBackupWindow: "STRING_VALUE",
90
90
  * // PreferredMaintenanceWindow: "STRING_VALUE",
91
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
91
92
  * // ReplicationSourceIdentifier: "STRING_VALUE",
92
93
  * // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
93
94
  * // "STRING_VALUE",
@@ -125,6 +125,7 @@ declare const DeleteDBInstanceCommand_base: {
125
125
  * // ],
126
126
  * // },
127
127
  * // PreferredMaintenanceWindow: "STRING_VALUE",
128
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
128
129
  * // PendingModifiedValues: { // PendingModifiedValues
129
130
  * // DBInstanceClass: "STRING_VALUE",
130
131
  * // AllocatedStorage: Number("int"),
@@ -95,6 +95,7 @@ declare const DescribeDBClustersCommand_base: {
95
95
  * // ],
96
96
  * // PreferredBackupWindow: "STRING_VALUE",
97
97
  * // PreferredMaintenanceWindow: "STRING_VALUE",
98
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
98
99
  * // ReplicationSourceIdentifier: "STRING_VALUE",
99
100
  * // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
100
101
  * // "STRING_VALUE",
@@ -115,6 +115,7 @@ declare const DescribeDBInstancesCommand_base: {
115
115
  * // ],
116
116
  * // },
117
117
  * // PreferredMaintenanceWindow: "STRING_VALUE",
118
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
118
119
  * // PendingModifiedValues: { // PendingModifiedValues
119
120
  * // DBInstanceClass: "STRING_VALUE",
120
121
  * // AllocatedStorage: Number("int"),
@@ -94,6 +94,7 @@ declare const FailoverDBClusterCommand_base: {
94
94
  * // ],
95
95
  * // PreferredBackupWindow: "STRING_VALUE",
96
96
  * // PreferredMaintenanceWindow: "STRING_VALUE",
97
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
97
98
  * // ReplicationSourceIdentifier: "STRING_VALUE",
98
99
  * // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
99
100
  * // "STRING_VALUE",
@@ -149,6 +149,7 @@ declare const ModifyDBClusterCommand_base: {
149
149
  * // ],
150
150
  * // PreferredBackupWindow: "STRING_VALUE",
151
151
  * // PreferredMaintenanceWindow: "STRING_VALUE",
152
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
152
153
  * // ReplicationSourceIdentifier: "STRING_VALUE",
153
154
  * // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
154
155
  * // "STRING_VALUE",
@@ -389,8 +390,8 @@ declare const ModifyDBClusterCommand_base: {
389
390
  * <p>The specified <code>StorageType</code> can't be associated with the DB instance.</p>
390
391
  *
391
392
  * @throws {@link VpcEncryptionControlViolationException} (client fault)
392
- * <p>The operation violates VPC encryption control settings. Make sure that your DB instance
393
- * type supports the Nitro encryption-in-transit capability,
393
+ * <p>The operation violates VPC encryption control settings. Make sure that your DB
394
+ * instance type supports the Nitro encryption-in-transit capability,
394
395
  * or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
395
396
  *
396
397
  * @throws {@link RDSServiceException}
@@ -183,6 +183,7 @@ declare const ModifyDBInstanceCommand_base: {
183
183
  * // ],
184
184
  * // },
185
185
  * // PreferredMaintenanceWindow: "STRING_VALUE",
186
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
186
187
  * // PendingModifiedValues: { // PendingModifiedValues
187
188
  * // DBInstanceClass: "STRING_VALUE",
188
189
  * // AllocatedStorage: Number("int"),
@@ -438,8 +439,8 @@ declare const ModifyDBInstanceCommand_base: {
438
439
  * account.</p>
439
440
  *
440
441
  * @throws {@link VpcEncryptionControlViolationException} (client fault)
441
- * <p>The operation violates VPC encryption control settings. Make sure that your DB instance
442
- * type supports the Nitro encryption-in-transit capability,
442
+ * <p>The operation violates VPC encryption control settings. Make sure that your DB
443
+ * instance type supports the Nitro encryption-in-transit capability,
443
444
  * or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
444
445
  *
445
446
  * @throws {@link RDSServiceException}
@@ -119,6 +119,7 @@ declare const PromoteReadReplicaCommand_base: {
119
119
  * // ],
120
120
  * // },
121
121
  * // PreferredMaintenanceWindow: "STRING_VALUE",
122
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
122
123
  * // PendingModifiedValues: { // PendingModifiedValues
123
124
  * // DBInstanceClass: "STRING_VALUE",
124
125
  * // AllocatedStorage: Number("int"),
@@ -75,6 +75,7 @@ declare const PromoteReadReplicaDBClusterCommand_base: {
75
75
  * // ],
76
76
  * // PreferredBackupWindow: "STRING_VALUE",
77
77
  * // PreferredMaintenanceWindow: "STRING_VALUE",
78
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
78
79
  * // ReplicationSourceIdentifier: "STRING_VALUE",
79
80
  * // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
80
81
  * // "STRING_VALUE",
@@ -85,6 +85,7 @@ declare const RebootDBClusterCommand_base: {
85
85
  * // ],
86
86
  * // PreferredBackupWindow: "STRING_VALUE",
87
87
  * // PreferredMaintenanceWindow: "STRING_VALUE",
88
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
88
89
  * // ReplicationSourceIdentifier: "STRING_VALUE",
89
90
  * // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
90
91
  * // "STRING_VALUE",
@@ -110,6 +110,7 @@ declare const RebootDBInstanceCommand_base: {
110
110
  * // ],
111
111
  * // },
112
112
  * // PreferredMaintenanceWindow: "STRING_VALUE",
113
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
113
114
  * // PendingModifiedValues: { // PendingModifiedValues
114
115
  * // DBInstanceClass: "STRING_VALUE",
115
116
  * // AllocatedStorage: Number("int"),
@@ -143,6 +143,7 @@ declare const RestoreDBClusterFromS3Command_base: {
143
143
  * // ],
144
144
  * // PreferredBackupWindow: "STRING_VALUE",
145
145
  * // PreferredMaintenanceWindow: "STRING_VALUE",
146
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
146
147
  * // ReplicationSourceIdentifier: "STRING_VALUE",
147
148
  * // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
148
149
  * // "STRING_VALUE",
@@ -153,6 +153,7 @@ declare const RestoreDBClusterFromSnapshotCommand_base: {
153
153
  * // ],
154
154
  * // PreferredBackupWindow: "STRING_VALUE",
155
155
  * // PreferredMaintenanceWindow: "STRING_VALUE",
156
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
156
157
  * // ReplicationSourceIdentifier: "STRING_VALUE",
157
158
  * // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
158
159
  * // "STRING_VALUE",
@@ -401,8 +402,8 @@ declare const RestoreDBClusterFromSnapshotCommand_base: {
401
402
  * <p>The specified <code>StorageType</code> can't be associated with the DB instance.</p>
402
403
  *
403
404
  * @throws {@link VpcEncryptionControlViolationException} (client fault)
404
- * <p>The operation violates VPC encryption control settings. Make sure that your DB instance
405
- * type supports the Nitro encryption-in-transit capability,
405
+ * <p>The operation violates VPC encryption control settings. Make sure that your DB
406
+ * instance type supports the Nitro encryption-in-transit capability,
406
407
  * or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
407
408
  *
408
409
  * @throws {@link RDSServiceException}
@@ -155,6 +155,7 @@ declare const RestoreDBClusterToPointInTimeCommand_base: {
155
155
  * // ],
156
156
  * // PreferredBackupWindow: "STRING_VALUE",
157
157
  * // PreferredMaintenanceWindow: "STRING_VALUE",
158
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
158
159
  * // ReplicationSourceIdentifier: "STRING_VALUE",
159
160
  * // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
160
161
  * // "STRING_VALUE",
@@ -403,8 +404,8 @@ declare const RestoreDBClusterToPointInTimeCommand_base: {
403
404
  * <p>The specified <code>StorageType</code> can't be associated with the DB instance.</p>
404
405
  *
405
406
  * @throws {@link VpcEncryptionControlViolationException} (client fault)
406
- * <p>The operation violates VPC encryption control settings. Make sure that your DB instance
407
- * type supports the Nitro encryption-in-transit capability,
407
+ * <p>The operation violates VPC encryption control settings. Make sure that your DB
408
+ * instance type supports the Nitro encryption-in-transit capability,
408
409
  * or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
409
410
  *
410
411
  * @throws {@link RDSServiceException}
@@ -175,6 +175,7 @@ declare const RestoreDBInstanceFromDBSnapshotCommand_base: {
175
175
  * // ],
176
176
  * // },
177
177
  * // PreferredMaintenanceWindow: "STRING_VALUE",
178
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
178
179
  * // PendingModifiedValues: { // PendingModifiedValues
179
180
  * // DBInstanceClass: "STRING_VALUE",
180
181
  * // AllocatedStorage: Number("int"),
@@ -441,8 +442,8 @@ declare const RestoreDBInstanceFromDBSnapshotCommand_base: {
441
442
  * account.</p>
442
443
  *
443
444
  * @throws {@link VpcEncryptionControlViolationException} (client fault)
444
- * <p>The operation violates VPC encryption control settings. Make sure that your DB instance
445
- * type supports the Nitro encryption-in-transit capability,
445
+ * <p>The operation violates VPC encryption control settings. Make sure that your DB
446
+ * instance type supports the Nitro encryption-in-transit capability,
446
447
  * or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
447
448
  *
448
449
  * @throws {@link RDSServiceException}
@@ -175,6 +175,7 @@ declare const RestoreDBInstanceFromS3Command_base: {
175
175
  * // ],
176
176
  * // },
177
177
  * // PreferredMaintenanceWindow: "STRING_VALUE",
178
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
178
179
  * // PendingModifiedValues: { // PendingModifiedValues
179
180
  * // DBInstanceClass: "STRING_VALUE",
180
181
  * // AllocatedStorage: Number("int"),
@@ -423,8 +424,8 @@ declare const RestoreDBInstanceFromS3Command_base: {
423
424
  * <p>The specified <code>StorageType</code> can't be associated with the DB instance.</p>
424
425
  *
425
426
  * @throws {@link VpcEncryptionControlViolationException} (client fault)
426
- * <p>The operation violates VPC encryption control settings. Make sure that your DB instance
427
- * type supports the Nitro encryption-in-transit capability,
427
+ * <p>The operation violates VPC encryption control settings. Make sure that your DB
428
+ * instance type supports the Nitro encryption-in-transit capability,
428
429
  * or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
429
430
  *
430
431
  * @throws {@link RDSServiceException}
@@ -172,6 +172,7 @@ declare const RestoreDBInstanceToPointInTimeCommand_base: {
172
172
  * // ],
173
173
  * // },
174
174
  * // PreferredMaintenanceWindow: "STRING_VALUE",
175
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
175
176
  * // PendingModifiedValues: { // PendingModifiedValues
176
177
  * // DBInstanceClass: "STRING_VALUE",
177
178
  * // AllocatedStorage: Number("int"),
@@ -443,8 +444,8 @@ declare const RestoreDBInstanceToPointInTimeCommand_base: {
443
444
  * account.</p>
444
445
  *
445
446
  * @throws {@link VpcEncryptionControlViolationException} (client fault)
446
- * <p>The operation violates VPC encryption control settings. Make sure that your DB instance
447
- * type supports the Nitro encryption-in-transit capability,
447
+ * <p>The operation violates VPC encryption control settings. Make sure that your DB
448
+ * instance type supports the Nitro encryption-in-transit capability,
448
449
  * or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
449
450
  *
450
451
  * @throws {@link RDSServiceException}
@@ -82,6 +82,7 @@ declare const StartDBClusterCommand_base: {
82
82
  * // ],
83
83
  * // PreferredBackupWindow: "STRING_VALUE",
84
84
  * // PreferredMaintenanceWindow: "STRING_VALUE",
85
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
85
86
  * // ReplicationSourceIdentifier: "STRING_VALUE",
86
87
  * // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
87
88
  * // "STRING_VALUE",
@@ -268,8 +269,8 @@ declare const StartDBClusterCommand_base: {
268
269
  * <p>An error occurred accessing an Amazon Web Services KMS key.</p>
269
270
  *
270
271
  * @throws {@link VpcEncryptionControlViolationException} (client fault)
271
- * <p>The operation violates VPC encryption control settings. Make sure that your DB instance
272
- * type supports the Nitro encryption-in-transit capability,
272
+ * <p>The operation violates VPC encryption control settings. Make sure that your DB
273
+ * instance type supports the Nitro encryption-in-transit capability,
273
274
  * or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
274
275
  *
275
276
  * @throws {@link RDSServiceException}
@@ -109,6 +109,7 @@ declare const StartDBInstanceCommand_base: {
109
109
  * // ],
110
110
  * // },
111
111
  * // PreferredMaintenanceWindow: "STRING_VALUE",
112
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
112
113
  * // PendingModifiedValues: { // PendingModifiedValues
113
114
  * // DBInstanceClass: "STRING_VALUE",
114
115
  * // AllocatedStorage: Number("int"),
@@ -328,8 +329,8 @@ declare const StartDBInstanceCommand_base: {
328
329
  * <p>An error occurred accessing an Amazon Web Services KMS key.</p>
329
330
  *
330
331
  * @throws {@link VpcEncryptionControlViolationException} (client fault)
331
- * <p>The operation violates VPC encryption control settings. Make sure that your DB instance
332
- * type supports the Nitro encryption-in-transit capability,
332
+ * <p>The operation violates VPC encryption control settings. Make sure that your DB
333
+ * instance type supports the Nitro encryption-in-transit capability,
333
334
  * or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
334
335
  *
335
336
  * @throws {@link RDSServiceException}
@@ -83,6 +83,7 @@ declare const StopDBClusterCommand_base: {
83
83
  * // ],
84
84
  * // PreferredBackupWindow: "STRING_VALUE",
85
85
  * // PreferredMaintenanceWindow: "STRING_VALUE",
86
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
86
87
  * // ReplicationSourceIdentifier: "STRING_VALUE",
87
88
  * // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList
88
89
  * // "STRING_VALUE",
@@ -113,6 +113,7 @@ declare const StopDBInstanceCommand_base: {
113
113
  * // ],
114
114
  * // },
115
115
  * // PreferredMaintenanceWindow: "STRING_VALUE",
116
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
116
117
  * // PendingModifiedValues: { // PendingModifiedValues
117
118
  * // DBInstanceClass: "STRING_VALUE",
118
119
  * // AllocatedStorage: Number("int"),
@@ -101,6 +101,7 @@ declare const SwitchoverReadReplicaCommand_base: {
101
101
  * // ],
102
102
  * // },
103
103
  * // PreferredMaintenanceWindow: "STRING_VALUE",
104
+ * // UpgradeRolloutOrder: "first" || "second" || "last",
104
105
  * // PendingModifiedValues: { // PendingModifiedValues
105
106
  * // DBInstanceClass: "STRING_VALUE",
106
107
  * // AllocatedStorage: Number("int"),
@@ -146,6 +146,19 @@ export declare const LocalWriteForwardingStatus: {
146
146
  * @public
147
147
  */
148
148
  export type LocalWriteForwardingStatus = (typeof LocalWriteForwardingStatus)[keyof typeof LocalWriteForwardingStatus];
149
+ /**
150
+ * @public
151
+ * @enum
152
+ */
153
+ export declare const UpgradeRolloutOrder: {
154
+ readonly FIRST: "first";
155
+ readonly LAST: "last";
156
+ readonly SECOND: "second";
157
+ };
158
+ /**
159
+ * @public
160
+ */
161
+ export type UpgradeRolloutOrder = (typeof UpgradeRolloutOrder)[keyof typeof UpgradeRolloutOrder];
149
162
  /**
150
163
  * @public
151
164
  * @enum
@@ -843,8 +843,8 @@ export declare class StorageTypeNotSupportedFault extends __BaseException {
843
843
  constructor(opts: __ExceptionOptionType<StorageTypeNotSupportedFault, __BaseException>);
844
844
  }
845
845
  /**
846
- * <p>The operation violates VPC encryption control settings. Make sure that your DB instance
847
- * type supports the Nitro encryption-in-transit capability,
846
+ * <p>The operation violates VPC encryption control settings. Make sure that your DB
847
+ * instance type supports the Nitro encryption-in-transit capability,
848
848
  * or modify your VPC's encryption controls to not enforce encryption-in-transit.</p>
849
849
  * @public
850
850
  */
@@ -1,4 +1,4 @@
1
- import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, ApplyMethod, AuthScheme, AutomationMode, ClientPasswordAuthType, ClusterScalabilityType, DatabaseInsightsMode, DBProxyEndpointStatus, DBProxyEndpointTargetRole, DBProxyStatus, DefaultAuthScheme, EndpointNetworkType, EngineFamily, ExportSourceType, FailoverStatus, GlobalClusterMemberSynchronizationStatus, IAMAuthMode, IntegrationStatus, LifecycleSupportName, LimitlessDatabaseStatus, LocalWriteForwardingStatus, MasterUserAuthenticationType, ReplicaMode, SourceType, TargetConnectionNetworkType, TargetHealthReason, TargetRole, TargetState, TargetType, WriteForwardingStatus } from "./enums";
1
+ import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, ApplyMethod, AuthScheme, AutomationMode, ClientPasswordAuthType, ClusterScalabilityType, DatabaseInsightsMode, DBProxyEndpointStatus, DBProxyEndpointTargetRole, DBProxyStatus, DefaultAuthScheme, EndpointNetworkType, EngineFamily, ExportSourceType, FailoverStatus, GlobalClusterMemberSynchronizationStatus, IAMAuthMode, IntegrationStatus, LifecycleSupportName, LimitlessDatabaseStatus, LocalWriteForwardingStatus, MasterUserAuthenticationType, ReplicaMode, SourceType, TargetConnectionNetworkType, TargetHealthReason, TargetRole, TargetState, TargetType, UpgradeRolloutOrder, WriteForwardingStatus } from "./enums";
2
2
  /**
3
3
  * <p>Describes a quota for an Amazon Web Services account.</p>
4
4
  * <p>The following are account quotas:</p>
@@ -4563,6 +4563,22 @@ export interface DBCluster {
4563
4563
  * @public
4564
4564
  */
4565
4565
  PreferredMaintenanceWindow?: string | undefined;
4566
+ /**
4567
+ * <p>This data type represents the order in which the clusters are upgraded.</p>
4568
+ * <ul>
4569
+ * <li>
4570
+ * <p>[first] - Typically used for development or testing environments.</p>
4571
+ * </li>
4572
+ * <li>
4573
+ * <p>[second] - Default order for resources not specifically configured.</p>
4574
+ * </li>
4575
+ * <li>
4576
+ * <p>[last] - Usually reserved for production environments.</p>
4577
+ * </li>
4578
+ * </ul>
4579
+ * @public
4580
+ */
4581
+ UpgradeRolloutOrder?: UpgradeRolloutOrder | undefined;
4566
4582
  /**
4567
4583
  * <p>The identifier of the source DB cluster if this DB cluster is a read
4568
4584
  * replica.</p>
@@ -7242,6 +7258,22 @@ export interface DBInstance {
7242
7258
  * @public
7243
7259
  */
7244
7260
  PreferredMaintenanceWindow?: string | undefined;
7261
+ /**
7262
+ * <p>This data type represents the order in which the instances are upgraded.</p>
7263
+ * <ul>
7264
+ * <li>
7265
+ * <p>[first] - Typically used for development or testing environments.</p>
7266
+ * </li>
7267
+ * <li>
7268
+ * <p>[second] - Default order for resources not specifically configured.</p>
7269
+ * </li>
7270
+ * <li>
7271
+ * <p>[last] - Usually reserved for production environments.</p>
7272
+ * </li>
7273
+ * </ul>
7274
+ * @public
7275
+ */
7276
+ UpgradeRolloutOrder?: UpgradeRolloutOrder | undefined;
7245
7277
  /**
7246
7278
  * <p>Information about pending changes to the DB instance. This information is returned only when there are pending changes. Specific changes are identified by subelements.</p>
7247
7279
  * @public
@@ -79,6 +79,13 @@ export declare const LocalWriteForwardingStatus: {
79
79
  };
80
80
  export type LocalWriteForwardingStatus =
81
81
  (typeof LocalWriteForwardingStatus)[keyof typeof LocalWriteForwardingStatus];
82
+ export declare const UpgradeRolloutOrder: {
83
+ readonly FIRST: "first";
84
+ readonly LAST: "last";
85
+ readonly SECOND: "second";
86
+ };
87
+ export type UpgradeRolloutOrder =
88
+ (typeof UpgradeRolloutOrder)[keyof typeof UpgradeRolloutOrder];
82
89
  export declare const AutomationMode: {
83
90
  readonly ALL_PAUSED: "all-paused";
84
91
  readonly FULL: "full";
@@ -30,6 +30,7 @@ import {
30
30
  TargetRole,
31
31
  TargetState,
32
32
  TargetType,
33
+ UpgradeRolloutOrder,
33
34
  WriteForwardingStatus,
34
35
  } from "./enums";
35
36
  export interface AccountQuota {
@@ -637,6 +638,7 @@ export interface DBCluster {
637
638
  DBClusterOptionGroupMemberships?: DBClusterOptionGroupStatus[] | undefined;
638
639
  PreferredBackupWindow?: string | undefined;
639
640
  PreferredMaintenanceWindow?: string | undefined;
641
+ UpgradeRolloutOrder?: UpgradeRolloutOrder | undefined;
640
642
  ReplicationSourceIdentifier?: string | undefined;
641
643
  ReadReplicaIdentifiers?: string[] | undefined;
642
644
  StatusInfos?: DBClusterStatusInfo[] | undefined;
@@ -898,6 +900,7 @@ export interface DBInstance {
898
900
  AvailabilityZone?: string | undefined;
899
901
  DBSubnetGroup?: DBSubnetGroup | undefined;
900
902
  PreferredMaintenanceWindow?: string | undefined;
903
+ UpgradeRolloutOrder?: UpgradeRolloutOrder | undefined;
901
904
  PendingModifiedValues?: PendingModifiedValues | undefined;
902
905
  LatestRestorableTime?: Date | undefined;
903
906
  MultiAZ?: boolean | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rds",
3
3
  "description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native",
4
- "version": "3.937.0",
4
+ "version": "3.938.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-rds",