@aws-sdk/client-rds 3.439.0 → 3.445.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 (117) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/RDS.js +10 -0
  3. package/dist-cjs/commands/CreateTenantDatabaseCommand.js +52 -0
  4. package/dist-cjs/commands/DeleteTenantDatabaseCommand.js +52 -0
  5. package/dist-cjs/commands/DescribeDBSnapshotTenantDatabasesCommand.js +51 -0
  6. package/dist-cjs/commands/DescribeTenantDatabasesCommand.js +52 -0
  7. package/dist-cjs/commands/ModifyTenantDatabaseCommand.js +52 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/models/models_0.js +83 -20
  10. package/dist-cjs/models/models_1.js +37 -1
  11. package/dist-cjs/pagination/DescribeDBSnapshotTenantDatabasesPaginator.js +29 -0
  12. package/dist-cjs/pagination/DescribeTenantDatabasesPaginator.js +29 -0
  13. package/dist-cjs/pagination/index.js +2 -0
  14. package/dist-cjs/protocols/Aws_query.js +700 -7
  15. package/dist-cjs/waiters/index.js +2 -0
  16. package/dist-cjs/waiters/waitForTenantDatabaseAvailable.js +89 -0
  17. package/dist-cjs/waiters/waitForTenantDatabaseDeleted.js +39 -0
  18. package/dist-es/RDS.js +10 -0
  19. package/dist-es/commands/CreateTenantDatabaseCommand.js +48 -0
  20. package/dist-es/commands/DeleteTenantDatabaseCommand.js +48 -0
  21. package/dist-es/commands/DescribeDBSnapshotTenantDatabasesCommand.js +47 -0
  22. package/dist-es/commands/DescribeTenantDatabasesCommand.js +48 -0
  23. package/dist-es/commands/ModifyTenantDatabaseCommand.js +48 -0
  24. package/dist-es/commands/index.js +5 -0
  25. package/dist-es/models/models_0.js +71 -16
  26. package/dist-es/models/models_1.js +32 -0
  27. package/dist-es/pagination/DescribeDBSnapshotTenantDatabasesPaginator.js +25 -0
  28. package/dist-es/pagination/DescribeTenantDatabasesPaginator.js +25 -0
  29. package/dist-es/pagination/index.js +2 -0
  30. package/dist-es/protocols/Aws_query.js +684 -2
  31. package/dist-es/waiters/index.js +2 -0
  32. package/dist-es/waiters/waitForTenantDatabaseAvailable.js +84 -0
  33. package/dist-es/waiters/waitForTenantDatabaseDeleted.js +34 -0
  34. package/dist-types/RDS.d.ts +35 -0
  35. package/dist-types/RDSClient.d.ts +7 -2
  36. package/dist-types/commands/AddTagsToResourceCommand.d.ts +6 -0
  37. package/dist-types/commands/CopyDBSnapshotCommand.d.ts +1 -0
  38. package/dist-types/commands/CreateDBClusterCommand.d.ts +12 -0
  39. package/dist-types/commands/CreateDBInstanceCommand.d.ts +7 -0
  40. package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +6 -0
  41. package/dist-types/commands/CreateDBSnapshotCommand.d.ts +1 -0
  42. package/dist-types/commands/CreateTenantDatabaseCommand.d.ts +122 -0
  43. package/dist-types/commands/DeleteDBClusterCommand.d.ts +8 -0
  44. package/dist-types/commands/DeleteDBInstanceAutomatedBackupCommand.d.ts +1 -0
  45. package/dist-types/commands/DeleteDBInstanceCommand.d.ts +2 -0
  46. package/dist-types/commands/DeleteDBSnapshotCommand.d.ts +1 -0
  47. package/dist-types/commands/DeleteTenantDatabaseCommand.d.ts +111 -0
  48. package/dist-types/commands/DescribeDBClusterAutomatedBackupsCommand.d.ts +2 -1
  49. package/dist-types/commands/DescribeDBClusterBacktracksCommand.d.ts +1 -1
  50. package/dist-types/commands/DescribeDBClusterEndpointsCommand.d.ts +1 -1
  51. package/dist-types/commands/DescribeDBClusterParameterGroupsCommand.d.ts +1 -1
  52. package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +1 -2
  53. package/dist-types/commands/DescribeDBClustersCommand.d.ts +8 -0
  54. package/dist-types/commands/DescribeDBInstanceAutomatedBackupsCommand.d.ts +1 -0
  55. package/dist-types/commands/DescribeDBInstancesCommand.d.ts +2 -0
  56. package/dist-types/commands/DescribeDBSnapshotTenantDatabasesCommand.d.ts +117 -0
  57. package/dist-types/commands/DescribeDBSnapshotsCommand.d.ts +1 -0
  58. package/dist-types/commands/DescribeTenantDatabasesCommand.d.ts +114 -0
  59. package/dist-types/commands/FailoverDBClusterCommand.d.ts +8 -0
  60. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
  61. package/dist-types/commands/ModifyDBClusterCommand.d.ts +8 -0
  62. package/dist-types/commands/ModifyDBInstanceCommand.d.ts +7 -0
  63. package/dist-types/commands/ModifyDBSnapshotCommand.d.ts +1 -0
  64. package/dist-types/commands/ModifyTenantDatabaseCommand.d.ts +114 -0
  65. package/dist-types/commands/PromoteReadReplicaCommand.d.ts +2 -0
  66. package/dist-types/commands/PromoteReadReplicaDBClusterCommand.d.ts +8 -0
  67. package/dist-types/commands/RebootDBClusterCommand.d.ts +8 -0
  68. package/dist-types/commands/RebootDBInstanceCommand.d.ts +2 -0
  69. package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +6 -0
  70. package/dist-types/commands/RestoreDBClusterFromS3Command.d.ts +8 -0
  71. package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +12 -0
  72. package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +12 -0
  73. package/dist-types/commands/RestoreDBInstanceFromDBSnapshotCommand.d.ts +6 -0
  74. package/dist-types/commands/RestoreDBInstanceFromS3Command.d.ts +2 -0
  75. package/dist-types/commands/RestoreDBInstanceToPointInTimeCommand.d.ts +6 -0
  76. package/dist-types/commands/StartDBClusterCommand.d.ts +8 -0
  77. package/dist-types/commands/StartDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -0
  78. package/dist-types/commands/StartDBInstanceCommand.d.ts +2 -0
  79. package/dist-types/commands/StopDBClusterCommand.d.ts +8 -0
  80. package/dist-types/commands/StopDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -0
  81. package/dist-types/commands/StopDBInstanceCommand.d.ts +2 -0
  82. package/dist-types/commands/SwitchoverReadReplicaCommand.d.ts +2 -0
  83. package/dist-types/commands/index.d.ts +5 -0
  84. package/dist-types/index.d.ts +2 -0
  85. package/dist-types/models/models_0.d.ts +364 -408
  86. package/dist-types/models/models_1.d.ts +944 -117
  87. package/dist-types/pagination/DescribeDBSnapshotTenantDatabasesPaginator.d.ts +7 -0
  88. package/dist-types/pagination/DescribeTenantDatabasesPaginator.d.ts +7 -0
  89. package/dist-types/pagination/index.d.ts +2 -0
  90. package/dist-types/protocols/Aws_query.d.ts +45 -0
  91. package/dist-types/ts3.4/RDS.d.ts +91 -0
  92. package/dist-types/ts3.4/RDSClient.d.ts +30 -0
  93. package/dist-types/ts3.4/commands/CreateTenantDatabaseCommand.d.ts +42 -0
  94. package/dist-types/ts3.4/commands/DeleteTenantDatabaseCommand.d.ts +42 -0
  95. package/dist-types/ts3.4/commands/DescribeDBClusterAutomatedBackupsCommand.d.ts +2 -4
  96. package/dist-types/ts3.4/commands/DescribeDBClusterBacktracksCommand.d.ts +1 -1
  97. package/dist-types/ts3.4/commands/DescribeDBClusterEndpointsCommand.d.ts +1 -1
  98. package/dist-types/ts3.4/commands/DescribeDBClusterParameterGroupsCommand.d.ts +1 -1
  99. package/dist-types/ts3.4/commands/DescribeDBClusterParametersCommand.d.ts +4 -2
  100. package/dist-types/ts3.4/commands/DescribeDBSnapshotTenantDatabasesCommand.d.ts +42 -0
  101. package/dist-types/ts3.4/commands/DescribeTenantDatabasesCommand.d.ts +42 -0
  102. package/dist-types/ts3.4/commands/ModifyTenantDatabaseCommand.d.ts +42 -0
  103. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  104. package/dist-types/ts3.4/index.d.ts +2 -0
  105. package/dist-types/ts3.4/models/models_0.d.ts +104 -71
  106. package/dist-types/ts3.4/models/models_1.d.ts +136 -1
  107. package/dist-types/ts3.4/pagination/DescribeDBSnapshotTenantDatabasesPaginator.d.ts +11 -0
  108. package/dist-types/ts3.4/pagination/DescribeTenantDatabasesPaginator.d.ts +11 -0
  109. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  110. package/dist-types/ts3.4/protocols/Aws_query.d.ts +60 -0
  111. package/dist-types/ts3.4/waiters/index.d.ts +2 -0
  112. package/dist-types/ts3.4/waiters/waitForTenantDatabaseAvailable.d.ts +11 -0
  113. package/dist-types/ts3.4/waiters/waitForTenantDatabaseDeleted.d.ts +11 -0
  114. package/dist-types/waiters/index.d.ts +2 -0
  115. package/dist-types/waiters/waitForTenantDatabaseAvailable.d.ts +14 -0
  116. package/dist-types/waiters/waitForTenantDatabaseDeleted.d.ts +14 -0
  117. package/package.json +4 -4
@@ -0,0 +1,114 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { ModifyTenantDatabaseMessage, ModifyTenantDatabaseResult } from "../models/models_1";
5
+ import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ModifyTenantDatabaseCommand}.
14
+ */
15
+ export interface ModifyTenantDatabaseCommandInput extends ModifyTenantDatabaseMessage {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ModifyTenantDatabaseCommand}.
21
+ */
22
+ export interface ModifyTenantDatabaseCommandOutput extends ModifyTenantDatabaseResult, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Modifies an existing tenant database in a DB instance. You can change the tenant
27
+ * database name or the master user password. This operation is supported only for RDS for
28
+ * Oracle CDB instances using the multi-tenant configuration.</p>
29
+ * @example
30
+ * Use a bare-bones client and the command you need to make an API call.
31
+ * ```javascript
32
+ * import { RDSClient, ModifyTenantDatabaseCommand } from "@aws-sdk/client-rds"; // ES Modules import
33
+ * // const { RDSClient, ModifyTenantDatabaseCommand } = require("@aws-sdk/client-rds"); // CommonJS import
34
+ * const client = new RDSClient(config);
35
+ * const input = { // ModifyTenantDatabaseMessage
36
+ * DBInstanceIdentifier: "STRING_VALUE", // required
37
+ * TenantDBName: "STRING_VALUE", // required
38
+ * MasterUserPassword: "STRING_VALUE",
39
+ * NewTenantDBName: "STRING_VALUE",
40
+ * };
41
+ * const command = new ModifyTenantDatabaseCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // ModifyTenantDatabaseResult
44
+ * // TenantDatabase: { // TenantDatabase
45
+ * // TenantDatabaseCreateTime: new Date("TIMESTAMP"),
46
+ * // DBInstanceIdentifier: "STRING_VALUE",
47
+ * // TenantDBName: "STRING_VALUE",
48
+ * // Status: "STRING_VALUE",
49
+ * // MasterUsername: "STRING_VALUE",
50
+ * // DbiResourceId: "STRING_VALUE",
51
+ * // TenantDatabaseResourceId: "STRING_VALUE",
52
+ * // TenantDatabaseARN: "STRING_VALUE",
53
+ * // CharacterSetName: "STRING_VALUE",
54
+ * // NcharCharacterSetName: "STRING_VALUE",
55
+ * // DeletionProtection: true || false,
56
+ * // PendingModifiedValues: { // TenantDatabasePendingModifiedValues
57
+ * // MasterUserPassword: "STRING_VALUE",
58
+ * // TenantDBName: "STRING_VALUE",
59
+ * // },
60
+ * // TagList: [ // TagList
61
+ * // { // Tag
62
+ * // Key: "STRING_VALUE",
63
+ * // Value: "STRING_VALUE",
64
+ * // },
65
+ * // ],
66
+ * // },
67
+ * // };
68
+ *
69
+ * ```
70
+ *
71
+ * @param ModifyTenantDatabaseCommandInput - {@link ModifyTenantDatabaseCommandInput}
72
+ * @returns {@link ModifyTenantDatabaseCommandOutput}
73
+ * @see {@link ModifyTenantDatabaseCommandInput} for command's `input` shape.
74
+ * @see {@link ModifyTenantDatabaseCommandOutput} for command's `response` shape.
75
+ * @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape.
76
+ *
77
+ * @throws {@link DBInstanceNotFoundFault} (client fault)
78
+ * <p>
79
+ * <code>DBInstanceIdentifier</code> doesn't refer to an existing DB instance.</p>
80
+ *
81
+ * @throws {@link InvalidDBInstanceStateFault} (client fault)
82
+ * <p>The DB instance isn't in a valid state.</p>
83
+ *
84
+ * @throws {@link TenantDatabaseAlreadyExistsFault} (client fault)
85
+ * <p>You attempted to either create a tenant database that already exists or
86
+ * modify a tenant database to use the name of an existing tenant database.</p>
87
+ *
88
+ * @throws {@link TenantDatabaseNotFoundFault} (client fault)
89
+ * <p>The specified tenant database wasn't found in the DB instance.</p>
90
+ *
91
+ * @throws {@link RDSServiceException}
92
+ * <p>Base exception class for all service exceptions from RDS service.</p>
93
+ *
94
+ */
95
+ export declare class ModifyTenantDatabaseCommand extends $Command<ModifyTenantDatabaseCommandInput, ModifyTenantDatabaseCommandOutput, RDSClientResolvedConfig> {
96
+ readonly input: ModifyTenantDatabaseCommandInput;
97
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
98
+ /**
99
+ * @public
100
+ */
101
+ constructor(input: ModifyTenantDatabaseCommandInput);
102
+ /**
103
+ * @internal
104
+ */
105
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RDSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ModifyTenantDatabaseCommandInput, ModifyTenantDatabaseCommandOutput>;
106
+ /**
107
+ * @internal
108
+ */
109
+ private serialize;
110
+ /**
111
+ * @internal
112
+ */
113
+ private deserialize;
114
+ }
@@ -148,6 +148,7 @@ export interface PromoteReadReplicaCommandOutput extends PromoteReadReplicaResul
148
148
  * // StorageThroughput: Number("int"),
149
149
  * // Engine: "STRING_VALUE",
150
150
  * // DedicatedLogVolume: true || false,
151
+ * // MultiTenant: true || false,
151
152
  * // },
152
153
  * // LatestRestorableTime: new Date("TIMESTAMP"),
153
154
  * // MultiAZ: true || false,
@@ -275,6 +276,7 @@ export interface PromoteReadReplicaCommandOutput extends PromoteReadReplicaResul
275
276
  * // PercentProgress: "STRING_VALUE",
276
277
  * // DedicatedLogVolume: true || false,
277
278
  * // IsStorageConfigUpgradeAvailable: true || false,
279
+ * // MultiTenant: true || false,
278
280
  * // },
279
281
  * // };
280
282
  *
@@ -119,6 +119,10 @@ export interface PromoteReadReplicaDBClusterCommandOutput extends PromoteReadRep
119
119
  * // TimeoutAction: "STRING_VALUE",
120
120
  * // SecondsBeforeTimeout: Number("int"),
121
121
  * // },
122
+ * // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
123
+ * // InterconnectSubnetId: "STRING_VALUE",
124
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
125
+ * // },
122
126
  * // DeletionProtection: true || false,
123
127
  * // HttpEndpointEnabled: true || false,
124
128
  * // ActivityStreamMode: "sync" || "async",
@@ -163,6 +167,10 @@ export interface PromoteReadReplicaDBClusterCommandOutput extends PromoteReadRep
163
167
  * // EngineVersion: "STRING_VALUE",
164
168
  * // BackupRetentionPeriod: Number("int"),
165
169
  * // AllocatedStorage: Number("int"),
170
+ * // RdsCustomClusterConfiguration: {
171
+ * // InterconnectSubnetId: "STRING_VALUE",
172
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
173
+ * // },
166
174
  * // Iops: Number("int"),
167
175
  * // StorageType: "STRING_VALUE",
168
176
  * // },
@@ -129,6 +129,10 @@ export interface RebootDBClusterCommandOutput extends RebootDBClusterResult, __M
129
129
  * // TimeoutAction: "STRING_VALUE",
130
130
  * // SecondsBeforeTimeout: Number("int"),
131
131
  * // },
132
+ * // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
133
+ * // InterconnectSubnetId: "STRING_VALUE",
134
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
135
+ * // },
132
136
  * // DeletionProtection: true || false,
133
137
  * // HttpEndpointEnabled: true || false,
134
138
  * // ActivityStreamMode: "sync" || "async",
@@ -173,6 +177,10 @@ export interface RebootDBClusterCommandOutput extends RebootDBClusterResult, __M
173
177
  * // EngineVersion: "STRING_VALUE",
174
178
  * // BackupRetentionPeriod: Number("int"),
175
179
  * // AllocatedStorage: Number("int"),
180
+ * // RdsCustomClusterConfiguration: {
181
+ * // InterconnectSubnetId: "STRING_VALUE",
182
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
183
+ * // },
176
184
  * // Iops: Number("int"),
177
185
  * // StorageType: "STRING_VALUE",
178
186
  * // },
@@ -139,6 +139,7 @@ export interface RebootDBInstanceCommandOutput extends RebootDBInstanceResult, _
139
139
  * // StorageThroughput: Number("int"),
140
140
  * // Engine: "STRING_VALUE",
141
141
  * // DedicatedLogVolume: true || false,
142
+ * // MultiTenant: true || false,
142
143
  * // },
143
144
  * // LatestRestorableTime: new Date("TIMESTAMP"),
144
145
  * // MultiAZ: true || false,
@@ -266,6 +267,7 @@ export interface RebootDBInstanceCommandOutput extends RebootDBInstanceResult, _
266
267
  * // PercentProgress: "STRING_VALUE",
267
268
  * // DedicatedLogVolume: true || false,
268
269
  * // IsStorageConfigUpgradeAvailable: true || false,
270
+ * // MultiTenant: true || false,
269
271
  * // },
270
272
  * // };
271
273
  *
@@ -74,9 +74,15 @@ export interface RemoveTagsFromResourceCommandOutput extends __MetadataBearer {
74
74
  * <p>
75
75
  * <code>DBSnapshotIdentifier</code> doesn't refer to an existing DB snapshot.</p>
76
76
  *
77
+ * @throws {@link DBSnapshotTenantDatabaseNotFoundFault} (client fault)
78
+ * <p>The specified snapshot tenant database wasn't found.</p>
79
+ *
77
80
  * @throws {@link IntegrationNotFoundFault} (client fault)
78
81
  * <p>The specified integration could not be found.</p>
79
82
  *
83
+ * @throws {@link TenantDatabaseNotFoundFault} (client fault)
84
+ * <p>The specified tenant database wasn't found in the DB instance.</p>
85
+ *
80
86
  * @throws {@link RDSServiceException}
81
87
  * <p>Base exception class for all service exceptions from RDS service.</p>
82
88
  *
@@ -185,6 +185,10 @@ export interface RestoreDBClusterFromS3CommandOutput extends RestoreDBClusterFro
185
185
  * // TimeoutAction: "STRING_VALUE",
186
186
  * // SecondsBeforeTimeout: Number("int"),
187
187
  * // },
188
+ * // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
189
+ * // InterconnectSubnetId: "STRING_VALUE",
190
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
191
+ * // },
188
192
  * // DeletionProtection: true || false,
189
193
  * // HttpEndpointEnabled: true || false,
190
194
  * // ActivityStreamMode: "sync" || "async",
@@ -229,6 +233,10 @@ export interface RestoreDBClusterFromS3CommandOutput extends RestoreDBClusterFro
229
233
  * // EngineVersion: "STRING_VALUE",
230
234
  * // BackupRetentionPeriod: Number("int"),
231
235
  * // AllocatedStorage: Number("int"),
236
+ * // RdsCustomClusterConfiguration: {
237
+ * // InterconnectSubnetId: "STRING_VALUE",
238
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
239
+ * // },
232
240
  * // Iops: Number("int"),
233
241
  * // StorageType: "STRING_VALUE",
234
242
  * // },
@@ -98,6 +98,10 @@ export interface RestoreDBClusterFromSnapshotCommandOutput extends RestoreDBClus
98
98
  * MaxCapacity: Number("double"),
99
99
  * },
100
100
  * NetworkType: "STRING_VALUE",
101
+ * RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
102
+ * InterconnectSubnetId: "STRING_VALUE",
103
+ * TransitGatewayMulticastDomainId: "STRING_VALUE",
104
+ * },
101
105
  * };
102
106
  * const command = new RestoreDBClusterFromSnapshotCommand(input);
103
107
  * const response = await client.send(command);
@@ -185,6 +189,10 @@ export interface RestoreDBClusterFromSnapshotCommandOutput extends RestoreDBClus
185
189
  * // TimeoutAction: "STRING_VALUE",
186
190
  * // SecondsBeforeTimeout: Number("int"),
187
191
  * // },
192
+ * // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
193
+ * // InterconnectSubnetId: "STRING_VALUE",
194
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
195
+ * // },
188
196
  * // DeletionProtection: true || false,
189
197
  * // HttpEndpointEnabled: true || false,
190
198
  * // ActivityStreamMode: "sync" || "async",
@@ -229,6 +237,10 @@ export interface RestoreDBClusterFromSnapshotCommandOutput extends RestoreDBClus
229
237
  * // EngineVersion: "STRING_VALUE",
230
238
  * // BackupRetentionPeriod: Number("int"),
231
239
  * // AllocatedStorage: Number("int"),
240
+ * // RdsCustomClusterConfiguration: {
241
+ * // InterconnectSubnetId: "STRING_VALUE",
242
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
243
+ * // },
232
244
  * // Iops: Number("int"),
233
245
  * // StorageType: "STRING_VALUE",
234
246
  * // },
@@ -97,6 +97,10 @@ export interface RestoreDBClusterToPointInTimeCommandOutput extends RestoreDBClu
97
97
  * },
98
98
  * NetworkType: "STRING_VALUE",
99
99
  * SourceDbClusterResourceId: "STRING_VALUE",
100
+ * RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
101
+ * InterconnectSubnetId: "STRING_VALUE",
102
+ * TransitGatewayMulticastDomainId: "STRING_VALUE",
103
+ * },
100
104
  * };
101
105
  * const command = new RestoreDBClusterToPointInTimeCommand(input);
102
106
  * const response = await client.send(command);
@@ -184,6 +188,10 @@ export interface RestoreDBClusterToPointInTimeCommandOutput extends RestoreDBClu
184
188
  * // TimeoutAction: "STRING_VALUE",
185
189
  * // SecondsBeforeTimeout: Number("int"),
186
190
  * // },
191
+ * // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
192
+ * // InterconnectSubnetId: "STRING_VALUE",
193
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
194
+ * // },
187
195
  * // DeletionProtection: true || false,
188
196
  * // HttpEndpointEnabled: true || false,
189
197
  * // ActivityStreamMode: "sync" || "async",
@@ -228,6 +236,10 @@ export interface RestoreDBClusterToPointInTimeCommandOutput extends RestoreDBClu
228
236
  * // EngineVersion: "STRING_VALUE",
229
237
  * // BackupRetentionPeriod: Number("int"),
230
238
  * // AllocatedStorage: Number("int"),
239
+ * // RdsCustomClusterConfiguration: {
240
+ * // InterconnectSubnetId: "STRING_VALUE",
241
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
242
+ * // },
231
243
  * // Iops: Number("int"),
232
244
  * // StorageType: "STRING_VALUE",
233
245
  * // },
@@ -197,6 +197,7 @@ export interface RestoreDBInstanceFromDBSnapshotCommandOutput extends RestoreDBI
197
197
  * // StorageThroughput: Number("int"),
198
198
  * // Engine: "STRING_VALUE",
199
199
  * // DedicatedLogVolume: true || false,
200
+ * // MultiTenant: true || false,
200
201
  * // },
201
202
  * // LatestRestorableTime: new Date("TIMESTAMP"),
202
203
  * // MultiAZ: true || false,
@@ -324,6 +325,7 @@ export interface RestoreDBInstanceFromDBSnapshotCommandOutput extends RestoreDBI
324
325
  * // PercentProgress: "STRING_VALUE",
325
326
  * // DedicatedLogVolume: true || false,
326
327
  * // IsStorageConfigUpgradeAvailable: true || false,
328
+ * // MultiTenant: true || false,
327
329
  * // },
328
330
  * // };
329
331
  *
@@ -414,6 +416,10 @@ export interface RestoreDBInstanceFromDBSnapshotCommandOutput extends RestoreDBI
414
416
  * @throws {@link StorageTypeNotSupportedFault} (client fault)
415
417
  * <p>The specified <code>StorageType</code> can't be associated with the DB instance.</p>
416
418
  *
419
+ * @throws {@link TenantDatabaseQuotaExceededFault} (client fault)
420
+ * <p>You attempted to create more tenant databases than are permitted in your Amazon Web Services
421
+ * account.</p>
422
+ *
417
423
  * @throws {@link RDSServiceException}
418
424
  * <p>Base exception class for all service exceptions from RDS service.</p>
419
425
  *
@@ -201,6 +201,7 @@ export interface RestoreDBInstanceFromS3CommandOutput extends RestoreDBInstanceF
201
201
  * // StorageThroughput: Number("int"),
202
202
  * // Engine: "STRING_VALUE",
203
203
  * // DedicatedLogVolume: true || false,
204
+ * // MultiTenant: true || false,
204
205
  * // },
205
206
  * // LatestRestorableTime: new Date("TIMESTAMP"),
206
207
  * // MultiAZ: true || false,
@@ -328,6 +329,7 @@ export interface RestoreDBInstanceFromS3CommandOutput extends RestoreDBInstanceF
328
329
  * // PercentProgress: "STRING_VALUE",
329
330
  * // DedicatedLogVolume: true || false,
330
331
  * // IsStorageConfigUpgradeAvailable: true || false,
332
+ * // MultiTenant: true || false,
331
333
  * // },
332
334
  * // };
333
335
  *
@@ -197,6 +197,7 @@ export interface RestoreDBInstanceToPointInTimeCommandOutput extends RestoreDBIn
197
197
  * // StorageThroughput: Number("int"),
198
198
  * // Engine: "STRING_VALUE",
199
199
  * // DedicatedLogVolume: true || false,
200
+ * // MultiTenant: true || false,
200
201
  * // },
201
202
  * // LatestRestorableTime: new Date("TIMESTAMP"),
202
203
  * // MultiAZ: true || false,
@@ -324,6 +325,7 @@ export interface RestoreDBInstanceToPointInTimeCommandOutput extends RestoreDBIn
324
325
  * // PercentProgress: "STRING_VALUE",
325
326
  * // DedicatedLogVolume: true || false,
326
327
  * // IsStorageConfigUpgradeAvailable: true || false,
328
+ * // MultiTenant: true || false,
327
329
  * // },
328
330
  * // };
329
331
  *
@@ -419,6 +421,10 @@ export interface RestoreDBInstanceToPointInTimeCommandOutput extends RestoreDBIn
419
421
  * @throws {@link StorageTypeNotSupportedFault} (client fault)
420
422
  * <p>The specified <code>StorageType</code> can't be associated with the DB instance.</p>
421
423
  *
424
+ * @throws {@link TenantDatabaseQuotaExceededFault} (client fault)
425
+ * <p>You attempted to create more tenant databases than are permitted in your Amazon Web Services
426
+ * account.</p>
427
+ *
422
428
  * @throws {@link RDSServiceException}
423
429
  * <p>Base exception class for all service exceptions from RDS service.</p>
424
430
  *
@@ -126,6 +126,10 @@ export interface StartDBClusterCommandOutput extends StartDBClusterResult, __Met
126
126
  * // TimeoutAction: "STRING_VALUE",
127
127
  * // SecondsBeforeTimeout: Number("int"),
128
128
  * // },
129
+ * // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
130
+ * // InterconnectSubnetId: "STRING_VALUE",
131
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
132
+ * // },
129
133
  * // DeletionProtection: true || false,
130
134
  * // HttpEndpointEnabled: true || false,
131
135
  * // ActivityStreamMode: "sync" || "async",
@@ -170,6 +174,10 @@ export interface StartDBClusterCommandOutput extends StartDBClusterResult, __Met
170
174
  * // EngineVersion: "STRING_VALUE",
171
175
  * // BackupRetentionPeriod: Number("int"),
172
176
  * // AllocatedStorage: Number("int"),
177
+ * // RdsCustomClusterConfiguration: {
178
+ * // InterconnectSubnetId: "STRING_VALUE",
179
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
180
+ * // },
173
181
  * // Iops: Number("int"),
174
182
  * // StorageType: "STRING_VALUE",
175
183
  * // },
@@ -81,6 +81,7 @@ export interface StartDBInstanceAutomatedBackupsReplicationCommandOutput extends
81
81
  * // StorageThroughput: Number("int"),
82
82
  * // AwsBackupRecoveryPointArn: "STRING_VALUE",
83
83
  * // DedicatedLogVolume: true || false,
84
+ * // MultiTenant: true || false,
84
85
  * // },
85
86
  * // };
86
87
  *
@@ -138,6 +138,7 @@ export interface StartDBInstanceCommandOutput extends StartDBInstanceResult, __M
138
138
  * // StorageThroughput: Number("int"),
139
139
  * // Engine: "STRING_VALUE",
140
140
  * // DedicatedLogVolume: true || false,
141
+ * // MultiTenant: true || false,
141
142
  * // },
142
143
  * // LatestRestorableTime: new Date("TIMESTAMP"),
143
144
  * // MultiAZ: true || false,
@@ -265,6 +266,7 @@ export interface StartDBInstanceCommandOutput extends StartDBInstanceResult, __M
265
266
  * // PercentProgress: "STRING_VALUE",
266
267
  * // DedicatedLogVolume: true || false,
267
268
  * // IsStorageConfigUpgradeAvailable: true || false,
269
+ * // MultiTenant: true || false,
268
270
  * // },
269
271
  * // };
270
272
  *
@@ -127,6 +127,10 @@ export interface StopDBClusterCommandOutput extends StopDBClusterResult, __Metad
127
127
  * // TimeoutAction: "STRING_VALUE",
128
128
  * // SecondsBeforeTimeout: Number("int"),
129
129
  * // },
130
+ * // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration
131
+ * // InterconnectSubnetId: "STRING_VALUE",
132
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
133
+ * // },
130
134
  * // DeletionProtection: true || false,
131
135
  * // HttpEndpointEnabled: true || false,
132
136
  * // ActivityStreamMode: "sync" || "async",
@@ -171,6 +175,10 @@ export interface StopDBClusterCommandOutput extends StopDBClusterResult, __Metad
171
175
  * // EngineVersion: "STRING_VALUE",
172
176
  * // BackupRetentionPeriod: Number("int"),
173
177
  * // AllocatedStorage: Number("int"),
178
+ * // RdsCustomClusterConfiguration: {
179
+ * // InterconnectSubnetId: "STRING_VALUE",
180
+ * // TransitGatewayMulticastDomainId: "STRING_VALUE",
181
+ * // },
174
182
  * // Iops: Number("int"),
175
183
  * // StorageType: "STRING_VALUE",
176
184
  * // },
@@ -78,6 +78,7 @@ export interface StopDBInstanceAutomatedBackupsReplicationCommandOutput extends
78
78
  * // StorageThroughput: Number("int"),
79
79
  * // AwsBackupRecoveryPointArn: "STRING_VALUE",
80
80
  * // DedicatedLogVolume: true || false,
81
+ * // MultiTenant: true || false,
81
82
  * // },
82
83
  * // };
83
84
  *
@@ -141,6 +141,7 @@ export interface StopDBInstanceCommandOutput extends StopDBInstanceResult, __Met
141
141
  * // StorageThroughput: Number("int"),
142
142
  * // Engine: "STRING_VALUE",
143
143
  * // DedicatedLogVolume: true || false,
144
+ * // MultiTenant: true || false,
144
145
  * // },
145
146
  * // LatestRestorableTime: new Date("TIMESTAMP"),
146
147
  * // MultiAZ: true || false,
@@ -268,6 +269,7 @@ export interface StopDBInstanceCommandOutput extends StopDBInstanceResult, __Met
268
269
  * // PercentProgress: "STRING_VALUE",
269
270
  * // DedicatedLogVolume: true || false,
270
271
  * // IsStorageConfigUpgradeAvailable: true || false,
272
+ * // MultiTenant: true || false,
271
273
  * // },
272
274
  * // };
273
275
  *
@@ -130,6 +130,7 @@ export interface SwitchoverReadReplicaCommandOutput extends SwitchoverReadReplic
130
130
  * // StorageThroughput: Number("int"),
131
131
  * // Engine: "STRING_VALUE",
132
132
  * // DedicatedLogVolume: true || false,
133
+ * // MultiTenant: true || false,
133
134
  * // },
134
135
  * // LatestRestorableTime: new Date("TIMESTAMP"),
135
136
  * // MultiAZ: true || false,
@@ -257,6 +258,7 @@ export interface SwitchoverReadReplicaCommandOutput extends SwitchoverReadReplic
257
258
  * // PercentProgress: "STRING_VALUE",
258
259
  * // DedicatedLogVolume: true || false,
259
260
  * // IsStorageConfigUpgradeAvailable: true || false,
261
+ * // MultiTenant: true || false,
260
262
  * // },
261
263
  * // };
262
264
  *
@@ -29,6 +29,7 @@ export * from "./CreateEventSubscriptionCommand";
29
29
  export * from "./CreateGlobalClusterCommand";
30
30
  export * from "./CreateIntegrationCommand";
31
31
  export * from "./CreateOptionGroupCommand";
32
+ export * from "./CreateTenantDatabaseCommand";
32
33
  export * from "./DeleteBlueGreenDeploymentCommand";
33
34
  export * from "./DeleteCustomDBEngineVersionCommand";
34
35
  export * from "./DeleteDBClusterAutomatedBackupCommand";
@@ -48,6 +49,7 @@ export * from "./DeleteEventSubscriptionCommand";
48
49
  export * from "./DeleteGlobalClusterCommand";
49
50
  export * from "./DeleteIntegrationCommand";
50
51
  export * from "./DeleteOptionGroupCommand";
52
+ export * from "./DeleteTenantDatabaseCommand";
51
53
  export * from "./DeregisterDBProxyTargetsCommand";
52
54
  export * from "./DescribeAccountAttributesCommand";
53
55
  export * from "./DescribeBlueGreenDeploymentsCommand";
@@ -72,6 +74,7 @@ export * from "./DescribeDBProxyTargetGroupsCommand";
72
74
  export * from "./DescribeDBProxyTargetsCommand";
73
75
  export * from "./DescribeDBSecurityGroupsCommand";
74
76
  export * from "./DescribeDBSnapshotAttributesCommand";
77
+ export * from "./DescribeDBSnapshotTenantDatabasesCommand";
75
78
  export * from "./DescribeDBSnapshotsCommand";
76
79
  export * from "./DescribeDBSubnetGroupsCommand";
77
80
  export * from "./DescribeEngineDefaultClusterParametersCommand";
@@ -89,6 +92,7 @@ export * from "./DescribePendingMaintenanceActionsCommand";
89
92
  export * from "./DescribeReservedDBInstancesCommand";
90
93
  export * from "./DescribeReservedDBInstancesOfferingsCommand";
91
94
  export * from "./DescribeSourceRegionsCommand";
95
+ export * from "./DescribeTenantDatabasesCommand";
92
96
  export * from "./DescribeValidDBInstanceModificationsCommand";
93
97
  export * from "./DownloadDBLogFilePortionCommand";
94
98
  export * from "./FailoverDBClusterCommand";
@@ -113,6 +117,7 @@ export * from "./ModifyDBSubnetGroupCommand";
113
117
  export * from "./ModifyEventSubscriptionCommand";
114
118
  export * from "./ModifyGlobalClusterCommand";
115
119
  export * from "./ModifyOptionGroupCommand";
120
+ export * from "./ModifyTenantDatabaseCommand";
116
121
  export * from "./PromoteReadReplicaCommand";
117
122
  export * from "./PromoteReadReplicaDBClusterCommand";
118
123
  export * from "./PurchaseReservedDBInstancesOfferingCommand";
@@ -58,6 +58,8 @@
58
58
  export * from "./RDSClient";
59
59
  export * from "./RDS";
60
60
  export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
61
+ export { RuntimeExtension } from "./runtimeExtensions";
62
+ export { RDSExtensionConfiguration } from "./extensionConfiguration";
61
63
  export * from "./commands";
62
64
  export * from "./pagination";
63
65
  export * from "./waiters";