@aws-sdk/client-rds 3.370.0 → 3.375.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.
- package/dist-cjs/protocols/Aws_query.js +6 -0
- package/dist-es/protocols/Aws_query.js +6 -0
- package/dist-types/commands/CopyDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/CreateDBInstanceCommand.d.ts +1 -0
- package/dist-types/commands/CreateDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/DeleteBlueGreenDeploymentCommand.d.ts +5 -5
- package/dist-types/commands/DeleteDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/DescribeBlueGreenDeploymentsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDBSnapshotsCommand.d.ts +1 -0
- package/dist-types/commands/ModifyDBSnapshotCommand.d.ts +1 -0
- package/dist-types/commands/SwitchoverBlueGreenDeploymentCommand.d.ts +5 -5
- package/dist-types/models/models_0.d.ts +201 -182
- package/dist-types/models/models_1.d.ts +9 -8
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +1 -1
|
@@ -9462,6 +9462,9 @@ const se_CreateDBInstanceMessage = (input, context) => {
|
|
|
9462
9462
|
if (input.CACertificateIdentifier != null) {
|
|
9463
9463
|
entries["CACertificateIdentifier"] = input.CACertificateIdentifier;
|
|
9464
9464
|
}
|
|
9465
|
+
if (input.DBSystemId != null) {
|
|
9466
|
+
entries["DBSystemId"] = input.DBSystemId;
|
|
9467
|
+
}
|
|
9465
9468
|
return entries;
|
|
9466
9469
|
};
|
|
9467
9470
|
const se_CreateDBInstanceReadReplicaMessage = (input, context) => {
|
|
@@ -16053,6 +16056,9 @@ const de_DBSnapshot = (output, context) => {
|
|
|
16053
16056
|
if (output["StorageThroughput"] !== undefined) {
|
|
16054
16057
|
contents.StorageThroughput = (0, smithy_client_1.strictParseInt32)(output["StorageThroughput"]);
|
|
16055
16058
|
}
|
|
16059
|
+
if (output["DBSystemId"] !== undefined) {
|
|
16060
|
+
contents.DBSystemId = (0, smithy_client_1.expectString)(output["DBSystemId"]);
|
|
16061
|
+
}
|
|
16056
16062
|
return contents;
|
|
16057
16063
|
};
|
|
16058
16064
|
const de_DBSnapshotAlreadyExistsFault = (output, context) => {
|
|
@@ -9172,6 +9172,9 @@ const se_CreateDBInstanceMessage = (input, context) => {
|
|
|
9172
9172
|
if (input.CACertificateIdentifier != null) {
|
|
9173
9173
|
entries["CACertificateIdentifier"] = input.CACertificateIdentifier;
|
|
9174
9174
|
}
|
|
9175
|
+
if (input.DBSystemId != null) {
|
|
9176
|
+
entries["DBSystemId"] = input.DBSystemId;
|
|
9177
|
+
}
|
|
9175
9178
|
return entries;
|
|
9176
9179
|
};
|
|
9177
9180
|
const se_CreateDBInstanceReadReplicaMessage = (input, context) => {
|
|
@@ -15763,6 +15766,9 @@ const de_DBSnapshot = (output, context) => {
|
|
|
15763
15766
|
if (output["StorageThroughput"] !== undefined) {
|
|
15764
15767
|
contents.StorageThroughput = __strictParseInt32(output["StorageThroughput"]);
|
|
15765
15768
|
}
|
|
15769
|
+
if (output["DBSystemId"] !== undefined) {
|
|
15770
|
+
contents.DBSystemId = __expectString(output["DBSystemId"]);
|
|
15771
|
+
}
|
|
15766
15772
|
return contents;
|
|
15767
15773
|
};
|
|
15768
15774
|
const de_DBSnapshotAlreadyExistsFault = (output, context) => {
|
|
@@ -99,6 +99,7 @@ export interface CopyDBSnapshotCommandOutput extends CopyDBSnapshotResult, __Met
|
|
|
99
99
|
* // SnapshotDatabaseTime: new Date("TIMESTAMP"),
|
|
100
100
|
* // SnapshotTarget: "STRING_VALUE",
|
|
101
101
|
* // StorageThroughput: Number("int"),
|
|
102
|
+
* // DBSystemId: "STRING_VALUE",
|
|
102
103
|
* // },
|
|
103
104
|
* // };
|
|
104
105
|
*
|
|
@@ -116,6 +116,7 @@ export interface CreateDBInstanceCommandOutput extends CreateDBInstanceResult, _
|
|
|
116
116
|
* ManageMasterUserPassword: true || false,
|
|
117
117
|
* MasterUserSecretKmsKeyId: "STRING_VALUE",
|
|
118
118
|
* CACertificateIdentifier: "STRING_VALUE",
|
|
119
|
+
* DBSystemId: "STRING_VALUE",
|
|
119
120
|
* };
|
|
120
121
|
* const command = new CreateDBInstanceCommand(input);
|
|
121
122
|
* const response = await client.send(command);
|
|
@@ -88,6 +88,7 @@ export interface CreateDBSnapshotCommandOutput extends CreateDBSnapshotResult, _
|
|
|
88
88
|
* // SnapshotDatabaseTime: new Date("TIMESTAMP"),
|
|
89
89
|
* // SnapshotTarget: "STRING_VALUE",
|
|
90
90
|
* // StorageThroughput: Number("int"),
|
|
91
|
+
* // DBSystemId: "STRING_VALUE",
|
|
91
92
|
* // },
|
|
92
93
|
* // };
|
|
93
94
|
*
|
|
@@ -24,11 +24,11 @@ export interface DeleteBlueGreenDeploymentCommandOutput extends DeleteBlueGreenD
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Deletes a blue/green deployment.</p>
|
|
27
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
*
|
|
27
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
28
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon RDS User
|
|
29
|
+
* Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
30
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
|
|
31
|
+
* User Guide</i>.</p>
|
|
32
32
|
* @example
|
|
33
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
34
|
* ```javascript
|
|
@@ -84,6 +84,7 @@ export interface DeleteDBSnapshotCommandOutput extends DeleteDBSnapshotResult, _
|
|
|
84
84
|
* // SnapshotDatabaseTime: new Date("TIMESTAMP"),
|
|
85
85
|
* // SnapshotTarget: "STRING_VALUE",
|
|
86
86
|
* // StorageThroughput: Number("int"),
|
|
87
|
+
* // DBSystemId: "STRING_VALUE",
|
|
87
88
|
* // },
|
|
88
89
|
* // };
|
|
89
90
|
*
|
|
@@ -23,7 +23,7 @@ export interface DescribeBlueGreenDeploymentsCommandOutput extends DescribeBlueG
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>
|
|
26
|
+
* <p>Describes one or more blue/green deployments.</p>
|
|
27
27
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS Blue/Green Deployments
|
|
28
28
|
* for database updates</a> in the <i>Amazon RDS User Guide</i> and
|
|
29
29
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">
|
|
@@ -97,6 +97,7 @@ export interface DescribeDBSnapshotsCommandOutput extends DBSnapshotMessage, __M
|
|
|
97
97
|
* // SnapshotDatabaseTime: new Date("TIMESTAMP"),
|
|
98
98
|
* // SnapshotTarget: "STRING_VALUE",
|
|
99
99
|
* // StorageThroughput: Number("int"),
|
|
100
|
+
* // DBSystemId: "STRING_VALUE",
|
|
100
101
|
* // },
|
|
101
102
|
* // ],
|
|
102
103
|
* // };
|
|
@@ -87,6 +87,7 @@ export interface ModifyDBSnapshotCommandOutput extends ModifyDBSnapshotResult, _
|
|
|
87
87
|
* // SnapshotDatabaseTime: new Date("TIMESTAMP"),
|
|
88
88
|
* // SnapshotTarget: "STRING_VALUE",
|
|
89
89
|
* // StorageThroughput: Number("int"),
|
|
90
|
+
* // DBSystemId: "STRING_VALUE",
|
|
90
91
|
* // },
|
|
91
92
|
* // };
|
|
92
93
|
*
|
|
@@ -26,11 +26,11 @@ export interface SwitchoverBlueGreenDeploymentCommandOutput extends SwitchoverBl
|
|
|
26
26
|
* <p>Switches over a blue/green deployment.</p>
|
|
27
27
|
* <p>Before you switch over, production traffic is routed to the databases in the blue environment.
|
|
28
28
|
* After you switch over, production traffic is routed to the databases in the green environment.</p>
|
|
29
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
29
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
30
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon RDS User
|
|
31
|
+
* Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
32
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
|
|
33
|
+
* User Guide</i>.</p>
|
|
34
34
|
* @example
|
|
35
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
36
36
|
* ```javascript
|
|
@@ -2028,6 +2028,11 @@ export interface DBSnapshot {
|
|
|
2028
2028
|
* <p>Specifies the storage throughput for the DB snapshot.</p>
|
|
2029
2029
|
*/
|
|
2030
2030
|
StorageThroughput?: number;
|
|
2031
|
+
/**
|
|
2032
|
+
* <p>The Oracle system identifier (SID), which is the name of the Oracle database instance that
|
|
2033
|
+
* manages your database files. The Oracle SID is also the name of your CDB.</p>
|
|
2034
|
+
*/
|
|
2035
|
+
DBSystemId?: string;
|
|
2031
2036
|
}
|
|
2032
2037
|
/**
|
|
2033
2038
|
* @public
|
|
@@ -2478,12 +2483,12 @@ export interface SwitchoverDetail {
|
|
|
2478
2483
|
}
|
|
2479
2484
|
/**
|
|
2480
2485
|
* @public
|
|
2481
|
-
* <p>
|
|
2482
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2483
|
-
*
|
|
2484
|
-
*
|
|
2485
|
-
*
|
|
2486
|
-
*
|
|
2486
|
+
* <p>Details about a task for a blue/green deployment.</p>
|
|
2487
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2488
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon RDS User
|
|
2489
|
+
* Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2490
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
|
|
2491
|
+
* User Guide</i>.</p>
|
|
2487
2492
|
*/
|
|
2488
2493
|
export interface BlueGreenDeploymentTask {
|
|
2489
2494
|
/**
|
|
@@ -2492,11 +2497,11 @@ export interface BlueGreenDeploymentTask {
|
|
|
2492
2497
|
Name?: string;
|
|
2493
2498
|
/**
|
|
2494
2499
|
* <p>The status of the blue/green deployment task.</p>
|
|
2495
|
-
* <p>Values:</p>
|
|
2500
|
+
* <p>Valid Values:</p>
|
|
2496
2501
|
* <ul>
|
|
2497
2502
|
* <li>
|
|
2498
2503
|
* <p>
|
|
2499
|
-
* <code>PENDING</code> - The
|
|
2504
|
+
* <code>PENDING</code> - The resource is being prepared for deployment.</p>
|
|
2500
2505
|
* </li>
|
|
2501
2506
|
* <li>
|
|
2502
2507
|
* <p>
|
|
@@ -2516,16 +2521,16 @@ export interface BlueGreenDeploymentTask {
|
|
|
2516
2521
|
}
|
|
2517
2522
|
/**
|
|
2518
2523
|
* @public
|
|
2519
|
-
* <p>
|
|
2520
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2521
|
-
*
|
|
2522
|
-
*
|
|
2523
|
-
*
|
|
2524
|
-
*
|
|
2524
|
+
* <p>Details about a blue/green deployment.</p>
|
|
2525
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2526
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon RDS User
|
|
2527
|
+
* Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2528
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
|
|
2529
|
+
* User Guide</i>.</p>
|
|
2525
2530
|
*/
|
|
2526
2531
|
export interface BlueGreenDeployment {
|
|
2527
2532
|
/**
|
|
2528
|
-
* <p>The
|
|
2533
|
+
* <p>The unique identifier of the blue/green deployment.</p>
|
|
2529
2534
|
*/
|
|
2530
2535
|
BlueGreenDeploymentIdentifier?: string;
|
|
2531
2536
|
/**
|
|
@@ -2552,7 +2557,7 @@ export interface BlueGreenDeployment {
|
|
|
2552
2557
|
Tasks?: BlueGreenDeploymentTask[];
|
|
2553
2558
|
/**
|
|
2554
2559
|
* <p>The status of the blue/green deployment.</p>
|
|
2555
|
-
* <p>Values:</p>
|
|
2560
|
+
* <p>Valid Values:</p>
|
|
2556
2561
|
* <ul>
|
|
2557
2562
|
* <li>
|
|
2558
2563
|
* <p>
|
|
@@ -2591,11 +2596,13 @@ export interface BlueGreenDeployment {
|
|
|
2591
2596
|
*/
|
|
2592
2597
|
StatusDetails?: string;
|
|
2593
2598
|
/**
|
|
2594
|
-
* <p>
|
|
2599
|
+
* <p>The time when the blue/green deployment was created, in Universal Coordinated Time
|
|
2600
|
+
* (UTC).</p>
|
|
2595
2601
|
*/
|
|
2596
2602
|
CreateTime?: Date;
|
|
2597
2603
|
/**
|
|
2598
|
-
* <p>
|
|
2604
|
+
* <p>The time when the blue/green deployment was deleted, in Universal Coordinated Time
|
|
2605
|
+
* (UTC).</p>
|
|
2599
2606
|
*/
|
|
2600
2607
|
DeleteTime?: Date;
|
|
2601
2608
|
/**
|
|
@@ -2610,12 +2617,12 @@ export interface BlueGreenDeployment {
|
|
|
2610
2617
|
*/
|
|
2611
2618
|
export interface CreateBlueGreenDeploymentResponse {
|
|
2612
2619
|
/**
|
|
2613
|
-
* <p>
|
|
2614
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2615
|
-
*
|
|
2616
|
-
*
|
|
2617
|
-
*
|
|
2618
|
-
*
|
|
2620
|
+
* <p>Details about a blue/green deployment.</p>
|
|
2621
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2622
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon RDS User
|
|
2623
|
+
* Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
2624
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
|
|
2625
|
+
* User Guide</i>.</p>
|
|
2619
2626
|
*/
|
|
2620
2627
|
BlueGreenDeployment?: BlueGreenDeployment;
|
|
2621
2628
|
}
|
|
@@ -5015,135 +5022,134 @@ export declare class CertificateNotFoundFault extends __BaseException {
|
|
|
5015
5022
|
*/
|
|
5016
5023
|
export interface CreateDBInstanceMessage {
|
|
5017
5024
|
/**
|
|
5018
|
-
* <p>The meaning of this parameter differs
|
|
5019
|
-
* <
|
|
5020
|
-
* <
|
|
5021
|
-
*
|
|
5022
|
-
*
|
|
5023
|
-
*
|
|
5024
|
-
*
|
|
5025
|
-
*
|
|
5026
|
-
*
|
|
5027
|
-
*
|
|
5028
|
-
*
|
|
5029
|
-
*
|
|
5030
|
-
*
|
|
5031
|
-
*
|
|
5032
|
-
* </
|
|
5033
|
-
* </
|
|
5034
|
-
*
|
|
5035
|
-
*
|
|
5036
|
-
*
|
|
5037
|
-
*
|
|
5038
|
-
*
|
|
5039
|
-
*
|
|
5040
|
-
*
|
|
5041
|
-
*
|
|
5042
|
-
*
|
|
5043
|
-
*
|
|
5044
|
-
*
|
|
5045
|
-
*
|
|
5046
|
-
*
|
|
5047
|
-
*
|
|
5048
|
-
*
|
|
5049
|
-
*
|
|
5050
|
-
*
|
|
5051
|
-
*
|
|
5052
|
-
*
|
|
5053
|
-
*
|
|
5054
|
-
*
|
|
5055
|
-
*
|
|
5056
|
-
*
|
|
5057
|
-
*
|
|
5058
|
-
*
|
|
5059
|
-
*
|
|
5060
|
-
*
|
|
5061
|
-
*
|
|
5062
|
-
*
|
|
5063
|
-
*
|
|
5064
|
-
*
|
|
5065
|
-
*
|
|
5066
|
-
*
|
|
5067
|
-
*
|
|
5068
|
-
*
|
|
5069
|
-
*
|
|
5070
|
-
*
|
|
5071
|
-
*
|
|
5072
|
-
* </
|
|
5073
|
-
* <
|
|
5074
|
-
*
|
|
5075
|
-
*
|
|
5076
|
-
*
|
|
5077
|
-
*
|
|
5078
|
-
* <
|
|
5079
|
-
* <p>
|
|
5080
|
-
*
|
|
5081
|
-
*
|
|
5082
|
-
*
|
|
5083
|
-
*
|
|
5084
|
-
*
|
|
5085
|
-
*
|
|
5086
|
-
*
|
|
5087
|
-
*
|
|
5088
|
-
*
|
|
5089
|
-
*
|
|
5090
|
-
*
|
|
5091
|
-
*
|
|
5092
|
-
*
|
|
5093
|
-
*
|
|
5094
|
-
*
|
|
5095
|
-
*
|
|
5096
|
-
* <p>
|
|
5097
|
-
*
|
|
5098
|
-
*
|
|
5099
|
-
*
|
|
5100
|
-
*
|
|
5101
|
-
*
|
|
5102
|
-
*
|
|
5103
|
-
*
|
|
5104
|
-
*
|
|
5105
|
-
*
|
|
5106
|
-
*
|
|
5107
|
-
*
|
|
5108
|
-
*
|
|
5109
|
-
*
|
|
5110
|
-
*
|
|
5111
|
-
*
|
|
5112
|
-
*
|
|
5113
|
-
*
|
|
5114
|
-
*
|
|
5115
|
-
*
|
|
5116
|
-
*
|
|
5117
|
-
*
|
|
5118
|
-
*
|
|
5119
|
-
*
|
|
5120
|
-
*
|
|
5121
|
-
*
|
|
5122
|
-
*
|
|
5123
|
-
* </
|
|
5124
|
-
*
|
|
5125
|
-
*
|
|
5126
|
-
*
|
|
5127
|
-
*
|
|
5128
|
-
*
|
|
5129
|
-
*
|
|
5130
|
-
*
|
|
5131
|
-
*
|
|
5132
|
-
*
|
|
5133
|
-
*
|
|
5134
|
-
*
|
|
5135
|
-
*
|
|
5136
|
-
*
|
|
5137
|
-
*
|
|
5138
|
-
*
|
|
5139
|
-
*
|
|
5140
|
-
*
|
|
5141
|
-
*
|
|
5142
|
-
*
|
|
5143
|
-
*
|
|
5144
|
-
*
|
|
5145
|
-
*
|
|
5146
|
-
* </dl>
|
|
5025
|
+
* <p>The meaning of this parameter differs according to the database engine you use.</p>
|
|
5026
|
+
* <p>
|
|
5027
|
+
* <b>MySQL</b>
|
|
5028
|
+
* </p>
|
|
5029
|
+
* <p>The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance.</p>
|
|
5030
|
+
* <p>Constraints:</p>
|
|
5031
|
+
* <ul>
|
|
5032
|
+
* <li>
|
|
5033
|
+
* <p>Must contain 1 to 64 letters or numbers.</p>
|
|
5034
|
+
* </li>
|
|
5035
|
+
* <li>
|
|
5036
|
+
* <p>Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).</p>
|
|
5037
|
+
* </li>
|
|
5038
|
+
* <li>
|
|
5039
|
+
* <p>Can't be a word reserved by the specified database engine</p>
|
|
5040
|
+
* </li>
|
|
5041
|
+
* </ul>
|
|
5042
|
+
* <p>
|
|
5043
|
+
* <b>MariaDB</b>
|
|
5044
|
+
* </p>
|
|
5045
|
+
* <p>The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance.</p>
|
|
5046
|
+
* <p>Constraints:</p>
|
|
5047
|
+
* <ul>
|
|
5048
|
+
* <li>
|
|
5049
|
+
* <p>Must contain 1 to 64 letters or numbers.</p>
|
|
5050
|
+
* </li>
|
|
5051
|
+
* <li>
|
|
5052
|
+
* <p>Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).</p>
|
|
5053
|
+
* </li>
|
|
5054
|
+
* <li>
|
|
5055
|
+
* <p>Can't be a word reserved by the specified database engine</p>
|
|
5056
|
+
* </li>
|
|
5057
|
+
* </ul>
|
|
5058
|
+
* <p>
|
|
5059
|
+
* <b>PostgreSQL</b>
|
|
5060
|
+
* </p>
|
|
5061
|
+
* <p>The name of the database to create when the DB instance is created. If this parameter isn't specified, a database named <code>postgres</code>
|
|
5062
|
+
* is created in the DB instance.</p>
|
|
5063
|
+
* <p>Constraints:</p>
|
|
5064
|
+
* <ul>
|
|
5065
|
+
* <li>
|
|
5066
|
+
* <p>Must contain 1 to 63 letters, numbers, or underscores.</p>
|
|
5067
|
+
* </li>
|
|
5068
|
+
* <li>
|
|
5069
|
+
* <p>Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9).</p>
|
|
5070
|
+
* </li>
|
|
5071
|
+
* <li>
|
|
5072
|
+
* <p>Can't be a word reserved by the specified database engine</p>
|
|
5073
|
+
* </li>
|
|
5074
|
+
* </ul>
|
|
5075
|
+
* <p>
|
|
5076
|
+
* <b>Oracle</b>
|
|
5077
|
+
* </p>
|
|
5078
|
+
* <p>The Oracle System ID (SID) of the created DB instance. If you don't specify a value,
|
|
5079
|
+
* the default value is <code>ORCL</code>. You can't specify the
|
|
5080
|
+
* string <code>null</code>, or any other reserved word, for <code>DBName</code>.</p>
|
|
5081
|
+
* <p>Default: <code>ORCL</code>
|
|
5082
|
+
* </p>
|
|
5083
|
+
* <p>Constraints:</p>
|
|
5084
|
+
* <ul>
|
|
5085
|
+
* <li>
|
|
5086
|
+
* <p>Can't be longer than 8 characters</p>
|
|
5087
|
+
* </li>
|
|
5088
|
+
* </ul>
|
|
5089
|
+
* <p>
|
|
5090
|
+
* <b>Amazon RDS Custom for Oracle</b>
|
|
5091
|
+
* </p>
|
|
5092
|
+
* <p>The Oracle System ID (SID) of the created RDS Custom DB instance.
|
|
5093
|
+
* If you don't specify a value, the default value is <code>ORCL</code> for non-CDBs and
|
|
5094
|
+
* <code>RDSCDB</code> for CDBs.</p>
|
|
5095
|
+
* <p>Default: <code>ORCL</code>
|
|
5096
|
+
* </p>
|
|
5097
|
+
* <p>Constraints:</p>
|
|
5098
|
+
* <ul>
|
|
5099
|
+
* <li>
|
|
5100
|
+
* <p>It must contain 1 to 8 alphanumeric characters.</p>
|
|
5101
|
+
* </li>
|
|
5102
|
+
* <li>
|
|
5103
|
+
* <p>It must contain a letter.</p>
|
|
5104
|
+
* </li>
|
|
5105
|
+
* <li>
|
|
5106
|
+
* <p>It can't be a word reserved by the database engine.</p>
|
|
5107
|
+
* </li>
|
|
5108
|
+
* </ul>
|
|
5109
|
+
* <p>
|
|
5110
|
+
* <b>Amazon RDS Custom for SQL Server</b>
|
|
5111
|
+
* </p>
|
|
5112
|
+
* <p>Not applicable. Must be null.</p>
|
|
5113
|
+
* <p>
|
|
5114
|
+
* <b>SQL Server</b>
|
|
5115
|
+
* </p>
|
|
5116
|
+
* <p>Not applicable. Must be null.</p>
|
|
5117
|
+
* <p>
|
|
5118
|
+
* <b>Amazon Aurora MySQL</b>
|
|
5119
|
+
* </p>
|
|
5120
|
+
* <p>The name of the database to create when the primary DB instance of the Aurora MySQL DB cluster is
|
|
5121
|
+
* created. If this parameter isn't specified for an Aurora MySQL DB cluster, no database is created
|
|
5122
|
+
* in the DB cluster.</p>
|
|
5123
|
+
* <p>Constraints:</p>
|
|
5124
|
+
* <ul>
|
|
5125
|
+
* <li>
|
|
5126
|
+
* <p>It must contain 1 to 64 alphanumeric characters.</p>
|
|
5127
|
+
* </li>
|
|
5128
|
+
* <li>
|
|
5129
|
+
* <p>It can't be a word reserved by the database engine.</p>
|
|
5130
|
+
* </li>
|
|
5131
|
+
* </ul>
|
|
5132
|
+
* <p>
|
|
5133
|
+
* <b>Amazon Aurora PostgreSQL</b>
|
|
5134
|
+
* </p>
|
|
5135
|
+
* <p>The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is
|
|
5136
|
+
* created. If this parameter isn't specified for an Aurora PostgreSQL DB cluster,
|
|
5137
|
+
* a database named <code>postgres</code> is created in the DB cluster.</p>
|
|
5138
|
+
* <p>Constraints:</p>
|
|
5139
|
+
* <ul>
|
|
5140
|
+
* <li>
|
|
5141
|
+
* <p>It must contain 1 to 63 alphanumeric characters.</p>
|
|
5142
|
+
* </li>
|
|
5143
|
+
* <li>
|
|
5144
|
+
* <p>It must begin with a letter.
|
|
5145
|
+
* Subsequent characters can be letters, underscores, or digits
|
|
5146
|
+
* (0 to 9).</p>
|
|
5147
|
+
* </li>
|
|
5148
|
+
* <li>
|
|
5149
|
+
* <p>It can't be a word reserved by the
|
|
5150
|
+
* database engine.</p>
|
|
5151
|
+
* </li>
|
|
5152
|
+
* </ul>
|
|
5147
5153
|
*/
|
|
5148
5154
|
DBName?: string;
|
|
5149
5155
|
/**
|
|
@@ -6197,6 +6203,13 @@ export interface CreateDBInstanceMessage {
|
|
|
6197
6203
|
* User Guide</i>.</p>
|
|
6198
6204
|
*/
|
|
6199
6205
|
CACertificateIdentifier?: string;
|
|
6206
|
+
/**
|
|
6207
|
+
* <p>The Oracle system identifier (SID), which is the name of the Oracle database instance that
|
|
6208
|
+
* manages your database files. In this context, the term "Oracle database instance" refers exclusively
|
|
6209
|
+
* to the system global area (SGA) and Oracle background processes. If you don't specify a SID,
|
|
6210
|
+
* the value defaults to <code>RDSCDB</code>. The Oracle SID is also the name of your CDB.</p>
|
|
6211
|
+
*/
|
|
6212
|
+
DBSystemId?: string;
|
|
6200
6213
|
}
|
|
6201
6214
|
/**
|
|
6202
6215
|
* @public
|
|
@@ -6665,15 +6678,9 @@ export interface DBInstance {
|
|
|
6665
6678
|
*/
|
|
6666
6679
|
MasterUsername?: string;
|
|
6667
6680
|
/**
|
|
6668
|
-
* <p>
|
|
6669
|
-
*
|
|
6670
|
-
*
|
|
6671
|
-
* <p>For RDS for MariaDB, Microsoft SQL Server, MySQL, and PostgreSQL - The name of the initial database specified for this DB instance when it was created, if one was provided. This same name is returned for the life of the DB instance.</p>
|
|
6672
|
-
* </li>
|
|
6673
|
-
* <li>
|
|
6674
|
-
* <p>For RDS for Oracle - The Oracle System ID (SID) of the created DB instance. This value is only returned when the object returned is an Oracle DB instance.</p>
|
|
6675
|
-
* </li>
|
|
6676
|
-
* </ul>
|
|
6681
|
+
* <p>Contains the initial database name that you provided (if required) when you created
|
|
6682
|
+
* the DB instance. This name is returned for the life of your DB instance. For an RDS for
|
|
6683
|
+
* Oracle CDB instance, the name identifies the PDB rather than the CDB.</p>
|
|
6677
6684
|
*/
|
|
6678
6685
|
DBName?: string;
|
|
6679
6686
|
/**
|
|
@@ -9119,7 +9126,8 @@ export interface CreateOptionGroupResult {
|
|
|
9119
9126
|
*/
|
|
9120
9127
|
export interface DeleteBlueGreenDeploymentRequest {
|
|
9121
9128
|
/**
|
|
9122
|
-
* <p>The
|
|
9129
|
+
* <p>The unique identifier of the blue/green deployment to delete. This parameter isn't
|
|
9130
|
+
* case-sensitive.</p>
|
|
9123
9131
|
* <p>Constraints:
|
|
9124
9132
|
* </p>
|
|
9125
9133
|
* <ul>
|
|
@@ -9130,9 +9138,9 @@ export interface DeleteBlueGreenDeploymentRequest {
|
|
|
9130
9138
|
*/
|
|
9131
9139
|
BlueGreenDeploymentIdentifier: string | undefined;
|
|
9132
9140
|
/**
|
|
9133
|
-
* <p>
|
|
9134
|
-
*
|
|
9135
|
-
*
|
|
9141
|
+
* <p>Specifies whether to delete the resources in the green environment. You can't specify
|
|
9142
|
+
* this option if the blue/green deployment <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_BlueGreenDeployment.html">status</a> is
|
|
9143
|
+
* <code>SWITCHOVER_COMPLETED</code>.</p>
|
|
9136
9144
|
*/
|
|
9137
9145
|
DeleteTarget?: boolean;
|
|
9138
9146
|
}
|
|
@@ -9141,12 +9149,12 @@ export interface DeleteBlueGreenDeploymentRequest {
|
|
|
9141
9149
|
*/
|
|
9142
9150
|
export interface DeleteBlueGreenDeploymentResponse {
|
|
9143
9151
|
/**
|
|
9144
|
-
* <p>
|
|
9145
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
9146
|
-
*
|
|
9147
|
-
*
|
|
9148
|
-
*
|
|
9149
|
-
*
|
|
9152
|
+
* <p>Details about a blue/green deployment.</p>
|
|
9153
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
9154
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon RDS User
|
|
9155
|
+
* Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
9156
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
|
|
9157
|
+
* User Guide</i>.</p>
|
|
9150
9158
|
*/
|
|
9151
9159
|
BlueGreenDeployment?: BlueGreenDeployment;
|
|
9152
9160
|
}
|
|
@@ -9994,19 +10002,20 @@ export interface Filter {
|
|
|
9994
10002
|
*/
|
|
9995
10003
|
export interface DescribeBlueGreenDeploymentsRequest {
|
|
9996
10004
|
/**
|
|
9997
|
-
* <p>The blue/green deployment identifier. If this parameter
|
|
9998
|
-
* specific blue/green deployment
|
|
10005
|
+
* <p>The blue/green deployment identifier. If you specify this parameter, the response only
|
|
10006
|
+
* includes information about the specific blue/green deployment. This parameter isn't
|
|
10007
|
+
* case-sensitive.</p>
|
|
9999
10008
|
* <p>Constraints:</p>
|
|
10000
10009
|
* <ul>
|
|
10001
10010
|
* <li>
|
|
10002
|
-
* <p>
|
|
10011
|
+
* <p>Must match an existing blue/green deployment identifier.</p>
|
|
10003
10012
|
* </li>
|
|
10004
10013
|
* </ul>
|
|
10005
10014
|
*/
|
|
10006
10015
|
BlueGreenDeploymentIdentifier?: string;
|
|
10007
10016
|
/**
|
|
10008
10017
|
* <p>A filter that specifies one or more blue/green deployments to describe.</p>
|
|
10009
|
-
* <p>
|
|
10018
|
+
* <p>Valid Values:</p>
|
|
10010
10019
|
* <ul>
|
|
10011
10020
|
* <li>
|
|
10012
10021
|
* <p>
|
|
@@ -10037,9 +10046,10 @@ export interface DescribeBlueGreenDeploymentsRequest {
|
|
|
10037
10046
|
*/
|
|
10038
10047
|
Filters?: Filter[];
|
|
10039
10048
|
/**
|
|
10040
|
-
* <p>An optional pagination token provided by a previous
|
|
10041
|
-
*
|
|
10042
|
-
* up to the value specified by
|
|
10049
|
+
* <p>An optional pagination token provided by a previous
|
|
10050
|
+
* <code>DescribeBlueGreenDeployments</code> request. If you specify this parameter,
|
|
10051
|
+
* the response only includes records beyond the marker, up to the value specified by
|
|
10052
|
+
* <code>MaxRecords</code>.</p>
|
|
10043
10053
|
*/
|
|
10044
10054
|
Marker?: string;
|
|
10045
10055
|
/**
|
|
@@ -10047,7 +10057,15 @@ export interface DescribeBlueGreenDeploymentsRequest {
|
|
|
10047
10057
|
* If more records exist than the specified <code>MaxRecords</code> value,
|
|
10048
10058
|
* a pagination token called a marker is included in the response so you can retrieve the remaining results.</p>
|
|
10049
10059
|
* <p>Default: 100</p>
|
|
10050
|
-
* <p>Constraints
|
|
10060
|
+
* <p>Constraints:</p>
|
|
10061
|
+
* <ul>
|
|
10062
|
+
* <li>
|
|
10063
|
+
* <p>Must be a minimum of 20.</p>
|
|
10064
|
+
* </li>
|
|
10065
|
+
* <li>
|
|
10066
|
+
* <p>Can't exceed 100.</p>
|
|
10067
|
+
* </li>
|
|
10068
|
+
* </ul>
|
|
10051
10069
|
*/
|
|
10052
10070
|
MaxRecords?: number;
|
|
10053
10071
|
}
|
|
@@ -10056,11 +10074,12 @@ export interface DescribeBlueGreenDeploymentsRequest {
|
|
|
10056
10074
|
*/
|
|
10057
10075
|
export interface DescribeBlueGreenDeploymentsResponse {
|
|
10058
10076
|
/**
|
|
10059
|
-
* <p>
|
|
10077
|
+
* <p>A list of blue/green deployments in the current account and Amazon Web Services Region.</p>
|
|
10060
10078
|
*/
|
|
10061
10079
|
BlueGreenDeployments?: BlueGreenDeployment[];
|
|
10062
10080
|
/**
|
|
10063
|
-
* <p>A pagination token that can be used in a later
|
|
10081
|
+
* <p>A pagination token that can be used in a later
|
|
10082
|
+
* <code>DescribeBlueGreenDeployments</code> request.</p>
|
|
10064
10083
|
*/
|
|
10065
10084
|
Marker?: string;
|
|
10066
10085
|
}
|
|
@@ -9049,7 +9049,7 @@ export interface StopDBInstanceAutomatedBackupsReplicationResult {
|
|
|
9049
9049
|
*/
|
|
9050
9050
|
export interface SwitchoverBlueGreenDeploymentRequest {
|
|
9051
9051
|
/**
|
|
9052
|
-
* <p>The blue/green deployment
|
|
9052
|
+
* <p>The unique identifier of the blue/green deployment.</p>
|
|
9053
9053
|
* <p>Constraints:</p>
|
|
9054
9054
|
* <ul>
|
|
9055
9055
|
* <li>
|
|
@@ -9059,7 +9059,8 @@ export interface SwitchoverBlueGreenDeploymentRequest {
|
|
|
9059
9059
|
*/
|
|
9060
9060
|
BlueGreenDeploymentIdentifier: string | undefined;
|
|
9061
9061
|
/**
|
|
9062
|
-
* <p>The amount of time, in seconds, for the switchover to complete
|
|
9062
|
+
* <p>The amount of time, in seconds, for the switchover to complete.</p>
|
|
9063
|
+
* <p>Default: 300</p>
|
|
9063
9064
|
* <p>If the switchover takes longer than the specified duration, then any changes are rolled back,
|
|
9064
9065
|
* and no changes are made to the environments.</p>
|
|
9065
9066
|
*/
|
|
@@ -9070,12 +9071,12 @@ export interface SwitchoverBlueGreenDeploymentRequest {
|
|
|
9070
9071
|
*/
|
|
9071
9072
|
export interface SwitchoverBlueGreenDeploymentResponse {
|
|
9072
9073
|
/**
|
|
9073
|
-
* <p>
|
|
9074
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
9075
|
-
*
|
|
9076
|
-
*
|
|
9077
|
-
*
|
|
9078
|
-
*
|
|
9074
|
+
* <p>Details about a blue/green deployment.</p>
|
|
9075
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
9076
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon RDS User
|
|
9077
|
+
* Guide</i> and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html">Using Amazon RDS
|
|
9078
|
+
* Blue/Green Deployments for database updates</a> in the <i>Amazon Aurora
|
|
9079
|
+
* User Guide</i>.</p>
|
|
9079
9080
|
*/
|
|
9080
9081
|
BlueGreenDeployment?: BlueGreenDeployment;
|
|
9081
9082
|
}
|
|
@@ -515,6 +515,7 @@ export interface DBSnapshot {
|
|
|
515
515
|
SnapshotDatabaseTime?: Date;
|
|
516
516
|
SnapshotTarget?: string;
|
|
517
517
|
StorageThroughput?: number;
|
|
518
|
+
DBSystemId?: string;
|
|
518
519
|
}
|
|
519
520
|
export interface CopyDBSnapshotResult {
|
|
520
521
|
DBSnapshot?: DBSnapshot;
|
|
@@ -1230,6 +1231,7 @@ export interface CreateDBInstanceMessage {
|
|
|
1230
1231
|
ManageMasterUserPassword?: boolean;
|
|
1231
1232
|
MasterUserSecretKmsKeyId?: string;
|
|
1232
1233
|
CACertificateIdentifier?: string;
|
|
1234
|
+
DBSystemId?: string;
|
|
1233
1235
|
}
|
|
1234
1236
|
export interface DBInstanceRole {
|
|
1235
1237
|
RoleArn?: string;
|
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.
|
|
4
|
+
"version": "3.375.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|