Skip to content

Commit 89e6e2f

Browse files
author
awstools
committed
docs(client-rds): This release adds support for the os-upgrade pending maintenance action for Amazon Aurora DB clusters.
1 parent 362f7e0 commit 89e6e2f

File tree

3 files changed

+102
-20
lines changed

3 files changed

+102
-20
lines changed

clients/client-rds/src/models/models_0.ts

+94-12
Original file line numberDiff line numberDiff line change
@@ -771,9 +771,37 @@ export interface ApplyPendingMaintenanceActionMessage {
771771

772772
/**
773773
* <p>The pending maintenance action to apply to this resource.</p>
774-
* <p>Valid Values: <code>system-update</code>, <code>db-upgrade</code>,
775-
* <code>hardware-maintenance</code>, <code>ca-certificate-rotation</code>
776-
* </p>
774+
* <p>Valid Values:</p>
775+
* <ul>
776+
* <li>
777+
* <p>
778+
* <code>ca-certificate-rotation</code>
779+
* </p>
780+
* </li>
781+
* <li>
782+
* <p>
783+
* <code>db-upgrade</code>
784+
* </p>
785+
* </li>
786+
* <li>
787+
* <p>
788+
* <code>hardware-maintenance</code>
789+
* </p>
790+
* </li>
791+
* <li>
792+
* <p>
793+
* <code>os-upgrade</code>
794+
* </p>
795+
* </li>
796+
* <li>
797+
* <p>
798+
* <code>system-update</code>
799+
* </p>
800+
* </li>
801+
* </ul>
802+
* <p>For more information about these actions, see
803+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-aurora">Maintenance actions for Amazon Aurora</a> or
804+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-rds">Maintenance actions for Amazon RDS</a>.</p>
777805
* @public
778806
*/
779807
ApplyAction: string | undefined;
@@ -811,8 +839,37 @@ export interface PendingMaintenanceAction {
811839
/**
812840
* <p>The type of pending maintenance action that is available for the resource. </p>
813841
* <p>For more information about maintenance actions, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html">Maintaining a DB instance</a>.</p>
814-
* <p>Valid Values:<code> system-update | db-upgrade | hardware-maintenance | ca-certificate-rotation</code>
815-
* </p>
842+
* <p>Valid Values:</p>
843+
* <ul>
844+
* <li>
845+
* <p>
846+
* <code>ca-certificate-rotation</code>
847+
* </p>
848+
* </li>
849+
* <li>
850+
* <p>
851+
* <code>db-upgrade</code>
852+
* </p>
853+
* </li>
854+
* <li>
855+
* <p>
856+
* <code>hardware-maintenance</code>
857+
* </p>
858+
* </li>
859+
* <li>
860+
* <p>
861+
* <code>os-upgrade</code>
862+
* </p>
863+
* </li>
864+
* <li>
865+
* <p>
866+
* <code>system-update</code>
867+
* </p>
868+
* </li>
869+
* </ul>
870+
* <p>For more information about these actions, see
871+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-aurora">Maintenance actions for Amazon Aurora</a> or
872+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-rds">Maintenance actions for Amazon RDS</a>.</p>
816873
* @public
817874
*/
818875
Action?: string;
@@ -7430,6 +7487,10 @@ export interface CreateDBInstanceMessage {
74307487
* </li>
74317488
* <li>
74327489
* <p>
7490+
* <code>custom-sqlserver-dev</code> (for RDS Custom for SQL Server DB instances)</p>
7491+
* </li>
7492+
* <li>
7493+
* <p>
74337494
* <code>db2-ae</code>
74347495
* </p>
74357496
* </li>
@@ -7603,9 +7664,6 @@ export interface CreateDBInstanceMessage {
76037664
* <li>
76047665
* <p>Must match the name of an existing DB subnet group.</p>
76057666
* </li>
7606-
* <li>
7607-
* <p>Must not be <code>default</code>.</p>
7608-
* </li>
76097667
* </ul>
76107668
* <p>Example: <code>mydbsubnetgroup</code>
76117669
* </p>
@@ -8613,7 +8671,34 @@ export interface DBParameterGroupStatus {
86138671
DBParameterGroupName?: string;
86148672

86158673
/**
8616-
* <p>The status of parameter updates.</p>
8674+
* <p>The status of parameter updates. Valid values are:</p>
8675+
* <ul>
8676+
* <li>
8677+
* <p>
8678+
* <code>applying</code>: The parameter group change is being applied to the
8679+
* database.</p>
8680+
* </li>
8681+
* <li>
8682+
* <p>
8683+
* <code>failed-to-apply</code>: The parameter group is in an invalid
8684+
* state.</p>
8685+
* </li>
8686+
* <li>
8687+
* <p>
8688+
* <code>in-sync</code>: The parameter group change is synchronized with the
8689+
* database.</p>
8690+
* </li>
8691+
* <li>
8692+
* <p>
8693+
* <code>pending-database-upgrade</code>: The parameter group change will be
8694+
* applied after the DB instance is upgraded.</p>
8695+
* </li>
8696+
* <li>
8697+
* <p>
8698+
* <code>pending-reboot</code>: The parameter group change will be applied after
8699+
* the DB instance reboots.</p>
8700+
* </li>
8701+
* </ul>
86178702
* @public
86188703
*/
86198704
ParameterApplyStatus?: string;
@@ -10118,9 +10203,6 @@ export interface CreateDBInstanceReadReplicaMessage {
1011810203
* instead of specifying <code>PreSignedUrl</code> manually. Specifying
1011910204
* <code>SourceRegion</code> autogenerates a presigned URL that is a valid request
1012010205
* for the operation that can run in the source Amazon Web Services Region.</p>
10121-
* <p>
10122-
* <code>SourceRegion</code> isn't supported for SQL Server, because Amazon RDS for SQL Server
10123-
* doesn't support cross-Region read replicas.</p>
1012410206
* </note>
1012510207
* <p>This setting doesn't apply to RDS Custom DB instances.</p>
1012610208
* @public

clients/client-rds/src/models/models_1.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9543,7 +9543,7 @@ export interface ConnectionPoolConfiguration {
95439543

95449544
/**
95459545
* <p>The number of seconds for a proxy to wait for a connection to become available in the connection pool. This setting only applies when the
9546-
* proxy has opened its maximum number of connections and all connections are busy with client sessions. For an unlimited wait time, specify <code>0</code>.</p>
9546+
* proxy has opened its maximum number of connections and all connections are busy with client sessions.</p>
95479547
* <p>Default: <code>120</code>
95489548
* </p>
95499549
* <p>Constraints:</p>

0 commit comments

Comments
 (0)