@aws-sdk/client-rds 3.658.1 → 3.664.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 (37) hide show
  1. package/dist-cjs/index.js +34 -5
  2. package/dist-cjs/runtimeConfig.js +1 -0
  3. package/dist-es/commands/DeleteTenantDatabaseCommand.js +1 -1
  4. package/dist-es/models/models_0.js +4 -4
  5. package/dist-es/models/models_1.js +4 -0
  6. package/dist-es/protocols/Aws_query.js +23 -0
  7. package/dist-es/runtimeConfig.js +2 -1
  8. package/dist-types/commands/CreateDBClusterCommand.d.ts +2 -0
  9. package/dist-types/commands/CreateDBShardGroupCommand.d.ts +15 -0
  10. package/dist-types/commands/DeleteDBClusterCommand.d.ts +1 -0
  11. package/dist-types/commands/DeleteDBShardGroupCommand.d.ts +6 -0
  12. package/dist-types/commands/DeleteTenantDatabaseCommand.d.ts +2 -1
  13. package/dist-types/commands/DescribeDBClustersCommand.d.ts +1 -0
  14. package/dist-types/commands/DescribeDBShardGroupsCommand.d.ts +6 -0
  15. package/dist-types/commands/FailoverDBClusterCommand.d.ts +1 -0
  16. package/dist-types/commands/ModifyDBClusterCommand.d.ts +1 -0
  17. package/dist-types/commands/ModifyDBShardGroupCommand.d.ts +6 -0
  18. package/dist-types/commands/PromoteReadReplicaDBClusterCommand.d.ts +1 -0
  19. package/dist-types/commands/RebootDBClusterCommand.d.ts +1 -0
  20. package/dist-types/commands/RebootDBShardGroupCommand.d.ts +6 -0
  21. package/dist-types/commands/RestoreDBClusterFromS3Command.d.ts +1 -0
  22. package/dist-types/commands/RestoreDBClusterFromSnapshotCommand.d.ts +1 -0
  23. package/dist-types/commands/RestoreDBClusterToPointInTimeCommand.d.ts +1 -0
  24. package/dist-types/commands/StartDBClusterCommand.d.ts +1 -0
  25. package/dist-types/commands/StopDBClusterCommand.d.ts +1 -0
  26. package/dist-types/models/models_0.d.ts +46 -15
  27. package/dist-types/models/models_1.d.ts +15 -0
  28. package/dist-types/runtimeConfig.browser.d.ts +2 -1
  29. package/dist-types/runtimeConfig.d.ts +2 -1
  30. package/dist-types/runtimeConfig.native.d.ts +2 -1
  31. package/dist-types/ts3.4/commands/DeleteTenantDatabaseCommand.d.ts +2 -4
  32. package/dist-types/ts3.4/models/models_0.d.ts +10 -6
  33. package/dist-types/ts3.4/models/models_1.d.ts +6 -0
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -3
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +6 -3
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -3
  37. package/package.json +37 -37
package/dist-cjs/index.js CHANGED
@@ -44,6 +44,7 @@ __export(src_exports, {
44
44
  CancelExportTaskCommand: () => CancelExportTaskCommand,
45
45
  CertificateNotFoundFault: () => CertificateNotFoundFault,
46
46
  ClientPasswordAuthType: () => ClientPasswordAuthType,
47
+ ClusterScalabilityType: () => ClusterScalabilityType,
47
48
  CopyDBClusterParameterGroupCommand: () => CopyDBClusterParameterGroupCommand,
48
49
  CopyDBClusterSnapshotCommand: () => CopyDBClusterSnapshotCommand,
49
50
  CopyDBParameterGroupCommand: () => CopyDBParameterGroupCommand,
@@ -1432,6 +1433,10 @@ var _Ec2ImagePropertiesNotSupportedFault = class _Ec2ImagePropertiesNotSupported
1432
1433
  };
1433
1434
  __name(_Ec2ImagePropertiesNotSupportedFault, "Ec2ImagePropertiesNotSupportedFault");
1434
1435
  var Ec2ImagePropertiesNotSupportedFault = _Ec2ImagePropertiesNotSupportedFault;
1436
+ var ClusterScalabilityType = {
1437
+ LIMITLESS: "limitless",
1438
+ STANDARD: "standard"
1439
+ };
1435
1440
  var ReplicaMode = {
1436
1441
  MOUNTED: "mounted",
1437
1442
  OPEN_READ_ONLY: "open-read-only"
@@ -2732,10 +2737,6 @@ var CreateTenantDatabaseResultFilterSensitiveLog = /* @__PURE__ */ __name((obj)
2732
2737
  ...obj,
2733
2738
  ...obj.TenantDatabase && { TenantDatabase: TenantDatabaseFilterSensitiveLog(obj.TenantDatabase) }
2734
2739
  }), "CreateTenantDatabaseResultFilterSensitiveLog");
2735
- var DeleteTenantDatabaseResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
2736
- ...obj,
2737
- ...obj.TenantDatabase && { TenantDatabase: TenantDatabaseFilterSensitiveLog(obj.TenantDatabase) }
2738
- }), "DeleteTenantDatabaseResultFilterSensitiveLog");
2739
2740
 
2740
2741
  // src/models/models_1.ts
2741
2742
 
@@ -3227,6 +3228,10 @@ var _InvalidExportSourceStateFault = class _InvalidExportSourceStateFault extend
3227
3228
  };
3228
3229
  __name(_InvalidExportSourceStateFault, "InvalidExportSourceStateFault");
3229
3230
  var InvalidExportSourceStateFault = _InvalidExportSourceStateFault;
3231
+ var DeleteTenantDatabaseResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
3232
+ ...obj,
3233
+ ...obj.TenantDatabase && { TenantDatabase: TenantDatabaseFilterSensitiveLog(obj.TenantDatabase) }
3234
+ }), "DeleteTenantDatabaseResultFilterSensitiveLog");
3230
3235
  var TenantDatabasesMessageFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
3231
3236
  ...obj,
3232
3237
  ...obj.TenantDatabases && {
@@ -9330,6 +9335,9 @@ var se_CreateDBClusterMessage = /* @__PURE__ */ __name((input, context) => {
9330
9335
  if (input[_NT] != null) {
9331
9336
  entries[_NT] = input[_NT];
9332
9337
  }
9338
+ if (input[_CST] != null) {
9339
+ entries[_CST] = input[_CST];
9340
+ }
9333
9341
  if (input[_DBSI] != null) {
9334
9342
  entries[_DBSI] = input[_DBSI];
9335
9343
  }
@@ -9959,6 +9967,7 @@ var se_CreateDBSecurityGroupMessage = /* @__PURE__ */ __name((input, context) =>
9959
9967
  return entries;
9960
9968
  }, "se_CreateDBSecurityGroupMessage");
9961
9969
  var se_CreateDBShardGroupMessage = /* @__PURE__ */ __name((input, context) => {
9970
+ var _a;
9962
9971
  const entries = {};
9963
9972
  if (input[_DBSGI] != null) {
9964
9973
  entries[_DBSGI] = input[_DBSGI];
@@ -9978,6 +9987,16 @@ var se_CreateDBShardGroupMessage = /* @__PURE__ */ __name((input, context) => {
9978
9987
  if (input[_PA] != null) {
9979
9988
  entries[_PA] = input[_PA];
9980
9989
  }
9990
+ if (input[_T] != null) {
9991
+ const memberEntries = se_TagList(input[_T], context);
9992
+ if (((_a = input[_T]) == null ? void 0 : _a.length) === 0) {
9993
+ entries.Tags = [];
9994
+ }
9995
+ Object.entries(memberEntries).forEach(([key, value]) => {
9996
+ const loc = `Tags.${key}`;
9997
+ entries[loc] = value;
9998
+ });
9999
+ }
9981
10000
  return entries;
9982
10001
  }, "se_CreateDBShardGroupMessage");
9983
10002
  var se_CreateDBSnapshotMessage = /* @__PURE__ */ __name((input, context) => {
@@ -15142,6 +15161,9 @@ var de_DBCluster = /* @__PURE__ */ __name((output, context) => {
15142
15161
  if (output[_STt] != null) {
15143
15162
  contents[_STt] = (0, import_smithy_client.strictParseInt32)(output[_STt]);
15144
15163
  }
15164
+ if (output[_CST] != null) {
15165
+ contents[_CST] = (0, import_smithy_client.expectString)(output[_CST]);
15166
+ }
15145
15167
  if (output[_CD] != null) {
15146
15168
  contents[_CD] = de_CertificateDetails(output[_CD], context);
15147
15169
  }
@@ -16949,6 +16971,11 @@ var de_DBShardGroup = /* @__PURE__ */ __name((output, context) => {
16949
16971
  if (output[_DBSGAh] != null) {
16950
16972
  contents[_DBSGAh] = (0, import_smithy_client.expectString)(output[_DBSGAh]);
16951
16973
  }
16974
+ if (output.TagList === "") {
16975
+ contents[_TL] = [];
16976
+ } else if (output[_TL] != null && output[_TL][_Tag] != null) {
16977
+ contents[_TL] = de_TagList((0, import_smithy_client.getArrayIfSingleItem)(output[_TL][_Tag]), context);
16978
+ }
16952
16979
  return contents;
16953
16980
  }, "de_DBShardGroup");
16954
16981
  var de_DBShardGroupAlreadyExistsFault = /* @__PURE__ */ __name((output, context) => {
@@ -20601,6 +20628,7 @@ var _CS = "CharacterSet";
20601
20628
  var _CSD = "CharacterSetDescription";
20602
20629
  var _CSI = "CustSubscriptionId";
20603
20630
  var _CSN = "CharacterSetName";
20631
+ var _CST = "ClusterScalabilityType";
20604
20632
  var _CT = "CopyTags";
20605
20633
  var _CTD = "CreateTenantDatabase";
20606
20634
  var _CTTS = "CopyTagsToSnapshot";
@@ -25235,6 +25263,7 @@ var waitUntilTenantDatabaseDeleted = /* @__PURE__ */ __name(async (params, input
25235
25263
  CustomDBEngineVersionAlreadyExistsFault,
25236
25264
  CustomDBEngineVersionQuotaExceededFault,
25237
25265
  Ec2ImagePropertiesNotSupportedFault,
25266
+ ClusterScalabilityType,
25238
25267
  ReplicaMode,
25239
25268
  WriteForwardingStatus,
25240
25269
  LimitlessDatabaseStatus,
@@ -25324,7 +25353,6 @@ var waitUntilTenantDatabaseDeleted = /* @__PURE__ */ __name(async (params, input
25324
25353
  TenantDatabasePendingModifiedValuesFilterSensitiveLog,
25325
25354
  TenantDatabaseFilterSensitiveLog,
25326
25355
  CreateTenantDatabaseResultFilterSensitiveLog,
25327
- DeleteTenantDatabaseResultFilterSensitiveLog,
25328
25356
  DBProxyTargetNotFoundFault,
25329
25357
  DBClusterBacktrackNotFoundFault,
25330
25358
  ApplyMethod,
@@ -25359,6 +25387,7 @@ var waitUntilTenantDatabaseDeleted = /* @__PURE__ */ __name(async (params, input
25359
25387
  IamRoleNotFoundFault,
25360
25388
  InvalidExportOnlyFault,
25361
25389
  InvalidExportSourceStateFault,
25390
+ DeleteTenantDatabaseResultFilterSensitiveLog,
25362
25391
  TenantDatabasesMessageFilterSensitiveLog,
25363
25392
  ModifyTenantDatabaseMessageFilterSensitiveLog,
25364
25393
  ModifyTenantDatabaseResultFilterSensitiveLog
@@ -44,6 +44,7 @@ const getRuntimeConfig = (config) => {
44
44
  streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
45
45
  useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
46
46
  useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
47
+ userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS),
47
48
  };
48
49
  };
49
50
  exports.getRuntimeConfig = getRuntimeConfig;
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
4
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { DeleteTenantDatabaseResultFilterSensitiveLog, } from "../models/models_0";
5
+ import { DeleteTenantDatabaseResultFilterSensitiveLog } from "../models/models_1";
6
6
  import { de_DeleteTenantDatabaseCommand, se_DeleteTenantDatabaseCommand } from "../protocols/Aws_query";
7
7
  export { $Command };
8
8
  export class DeleteTenantDatabaseCommand extends $Command
@@ -596,6 +596,10 @@ export class Ec2ImagePropertiesNotSupportedFault extends __BaseException {
596
596
  Object.setPrototypeOf(this, Ec2ImagePropertiesNotSupportedFault.prototype);
597
597
  }
598
598
  }
599
+ export const ClusterScalabilityType = {
600
+ LIMITLESS: "limitless",
601
+ STANDARD: "standard",
602
+ };
599
603
  export const ReplicaMode = {
600
604
  MOUNTED: "mounted",
601
605
  OPEN_READ_ONLY: "open-read-only",
@@ -1546,7 +1550,3 @@ export const CreateTenantDatabaseResultFilterSensitiveLog = (obj) => ({
1546
1550
  ...obj,
1547
1551
  ...(obj.TenantDatabase && { TenantDatabase: TenantDatabaseFilterSensitiveLog(obj.TenantDatabase) }),
1548
1552
  });
1549
- export const DeleteTenantDatabaseResultFilterSensitiveLog = (obj) => ({
1550
- ...obj,
1551
- ...(obj.TenantDatabase && { TenantDatabase: TenantDatabaseFilterSensitiveLog(obj.TenantDatabase) }),
1552
- });
@@ -359,6 +359,10 @@ export class InvalidExportSourceStateFault extends __BaseException {
359
359
  Object.setPrototypeOf(this, InvalidExportSourceStateFault.prototype);
360
360
  }
361
361
  }
362
+ export const DeleteTenantDatabaseResultFilterSensitiveLog = (obj) => ({
363
+ ...obj,
364
+ ...(obj.TenantDatabase && { TenantDatabase: TenantDatabaseFilterSensitiveLog(obj.TenantDatabase) }),
365
+ });
362
366
  export const TenantDatabasesMessageFilterSensitiveLog = (obj) => ({
363
367
  ...obj,
364
368
  ...(obj.TenantDatabases && {
@@ -6067,6 +6067,9 @@ const se_CreateDBClusterMessage = (input, context) => {
6067
6067
  if (input[_NT] != null) {
6068
6068
  entries[_NT] = input[_NT];
6069
6069
  }
6070
+ if (input[_CST] != null) {
6071
+ entries[_CST] = input[_CST];
6072
+ }
6070
6073
  if (input[_DBSI] != null) {
6071
6074
  entries[_DBSI] = input[_DBSI];
6072
6075
  }
@@ -6707,6 +6710,16 @@ const se_CreateDBShardGroupMessage = (input, context) => {
6707
6710
  if (input[_PA] != null) {
6708
6711
  entries[_PA] = input[_PA];
6709
6712
  }
6713
+ if (input[_T] != null) {
6714
+ const memberEntries = se_TagList(input[_T], context);
6715
+ if (input[_T]?.length === 0) {
6716
+ entries.Tags = [];
6717
+ }
6718
+ Object.entries(memberEntries).forEach(([key, value]) => {
6719
+ const loc = `Tags.${key}`;
6720
+ entries[loc] = value;
6721
+ });
6722
+ }
6710
6723
  return entries;
6711
6724
  };
6712
6725
  const se_CreateDBSnapshotMessage = (input, context) => {
@@ -11834,6 +11847,9 @@ const de_DBCluster = (output, context) => {
11834
11847
  if (output[_STt] != null) {
11835
11848
  contents[_STt] = __strictParseInt32(output[_STt]);
11836
11849
  }
11850
+ if (output[_CST] != null) {
11851
+ contents[_CST] = __expectString(output[_CST]);
11852
+ }
11837
11853
  if (output[_CD] != null) {
11838
11854
  contents[_CD] = de_CertificateDetails(output[_CD], context);
11839
11855
  }
@@ -13730,6 +13746,12 @@ const de_DBShardGroup = (output, context) => {
13730
13746
  if (output[_DBSGAh] != null) {
13731
13747
  contents[_DBSGAh] = __expectString(output[_DBSGAh]);
13732
13748
  }
13749
+ if (output.TagList === "") {
13750
+ contents[_TL] = [];
13751
+ }
13752
+ else if (output[_TL] != null && output[_TL][_Tag] != null) {
13753
+ contents[_TL] = de_TagList(__getArrayIfSingleItem(output[_TL][_Tag]), context);
13754
+ }
13733
13755
  return contents;
13734
13756
  };
13735
13757
  const de_DBShardGroupAlreadyExistsFault = (output, context) => {
@@ -17592,6 +17614,7 @@ const _CS = "CharacterSet";
17592
17614
  const _CSD = "CharacterSetDescription";
17593
17615
  const _CSI = "CustSubscriptionId";
17594
17616
  const _CSN = "CharacterSetName";
17617
+ const _CST = "ClusterScalabilityType";
17595
17618
  const _CT = "CopyTags";
17596
17619
  const _CTD = "CreateTenantDatabase";
17597
17620
  const _CTTS = "CopyTagsToSnapshot";
@@ -1,7 +1,7 @@
1
1
  import packageInfo from "../package.json";
2
2
  import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core";
3
3
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
4
- import { defaultUserAgent } from "@aws-sdk/util-user-agent-node";
4
+ import { NODE_APP_ID_CONFIG_OPTIONS, defaultUserAgent } from "@aws-sdk/util-user-agent-node";
5
5
  import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
6
6
  import { Hash } from "@smithy/hash-node";
7
7
  import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry";
@@ -40,5 +40,6 @@ export const getRuntimeConfig = (config) => {
40
40
  streamCollector: config?.streamCollector ?? streamCollector,
41
41
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
42
42
  useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
43
+ userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS),
43
44
  };
44
45
  };
@@ -121,6 +121,7 @@ declare const CreateDBClusterCommand_base: {
121
121
  * MaxCapacity: Number("double"),
122
122
  * },
123
123
  * NetworkType: "STRING_VALUE",
124
+ * ClusterScalabilityType: "standard" || "limitless",
124
125
  * DBSystemId: "STRING_VALUE",
125
126
  * ManageMasterUserPassword: true || false,
126
127
  * MasterUserSecretKmsKeyId: "STRING_VALUE",
@@ -312,6 +313,7 @@ declare const CreateDBClusterCommand_base: {
312
313
  * // MinRequiredACU: Number("double"),
313
314
  * // },
314
315
  * // StorageThroughput: Number("int"),
316
+ * // ClusterScalabilityType: "standard" || "limitless",
315
317
  * // CertificateDetails: {
316
318
  * // CAIdentifier: "STRING_VALUE",
317
319
  * // ValidTill: new Date("TIMESTAMP"),
@@ -42,6 +42,12 @@ declare const CreateDBShardGroupCommand_base: {
42
42
  * MaxACU: Number("double"), // required
43
43
  * MinACU: Number("double"),
44
44
  * PubliclyAccessible: true || false,
45
+ * Tags: [ // TagList
46
+ * { // Tag
47
+ * Key: "STRING_VALUE",
48
+ * Value: "STRING_VALUE",
49
+ * },
50
+ * ],
45
51
  * };
46
52
  * const command = new CreateDBShardGroupCommand(input);
47
53
  * const response = await client.send(command);
@@ -56,6 +62,12 @@ declare const CreateDBShardGroupCommand_base: {
56
62
  * // PubliclyAccessible: true || false,
57
63
  * // Endpoint: "STRING_VALUE",
58
64
  * // DBShardGroupArn: "STRING_VALUE",
65
+ * // TagList: [ // TagList
66
+ * // { // Tag
67
+ * // Key: "STRING_VALUE",
68
+ * // Value: "STRING_VALUE",
69
+ * // },
70
+ * // ],
59
71
  * // };
60
72
  *
61
73
  * ```
@@ -83,6 +95,9 @@ declare const CreateDBShardGroupCommand_base: {
83
95
  * @throws {@link MaxDBShardGroupLimitReached} (client fault)
84
96
  * <p>The maximum number of DB shard groups for your Amazon Web Services account in the specified Amazon Web Services Region has been reached.</p>
85
97
  *
98
+ * @throws {@link NetworkTypeNotSupported} (client fault)
99
+ * <p>The network type is invalid for the DB instance. Valid nework type values are <code>IPV4</code> and <code>DUAL</code>.</p>
100
+ *
86
101
  * @throws {@link UnsupportedDBEngineVersionFault} (client fault)
87
102
  * <p>The specified DB engine version isn't supported for Aurora Limitless Database.</p>
88
103
  *
@@ -234,6 +234,7 @@ declare const DeleteDBClusterCommand_base: {
234
234
  * // MinRequiredACU: Number("double"),
235
235
  * // },
236
236
  * // StorageThroughput: Number("int"),
237
+ * // ClusterScalabilityType: "standard" || "limitless",
237
238
  * // CertificateDetails: {
238
239
  * // CAIdentifier: "STRING_VALUE",
239
240
  * // ValidTill: new Date("TIMESTAMP"),
@@ -50,6 +50,12 @@ declare const DeleteDBShardGroupCommand_base: {
50
50
  * // PubliclyAccessible: true || false,
51
51
  * // Endpoint: "STRING_VALUE",
52
52
  * // DBShardGroupArn: "STRING_VALUE",
53
+ * // TagList: [ // TagList
54
+ * // { // Tag
55
+ * // Key: "STRING_VALUE",
56
+ * // Value: "STRING_VALUE",
57
+ * // },
58
+ * // ],
53
59
  * // };
54
60
  *
55
61
  * ```
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DeleteTenantDatabaseMessage, DeleteTenantDatabaseResult } from "../models/models_0";
3
+ import { DeleteTenantDatabaseMessage } from "../models/models_0";
4
+ import { DeleteTenantDatabaseResult } from "../models/models_1";
4
5
  import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
5
6
  /**
6
7
  * @public
@@ -241,6 +241,7 @@ declare const DescribeDBClustersCommand_base: {
241
241
  * // MinRequiredACU: Number("double"),
242
242
  * // },
243
243
  * // StorageThroughput: Number("int"),
244
+ * // ClusterScalabilityType: "standard" || "limitless",
244
245
  * // CertificateDetails: {
245
246
  * // CAIdentifier: "STRING_VALUE",
246
247
  * // ValidTill: new Date("TIMESTAMP"),
@@ -62,6 +62,12 @@ declare const DescribeDBShardGroupsCommand_base: {
62
62
  * // PubliclyAccessible: true || false,
63
63
  * // Endpoint: "STRING_VALUE",
64
64
  * // DBShardGroupArn: "STRING_VALUE",
65
+ * // TagList: [ // TagList
66
+ * // { // Tag
67
+ * // Key: "STRING_VALUE",
68
+ * // Value: "STRING_VALUE",
69
+ * // },
70
+ * // ],
65
71
  * // },
66
72
  * // ],
67
73
  * // Marker: "STRING_VALUE",
@@ -240,6 +240,7 @@ declare const FailoverDBClusterCommand_base: {
240
240
  * // MinRequiredACU: Number("double"),
241
241
  * // },
242
242
  * // StorageThroughput: Number("int"),
243
+ * // ClusterScalabilityType: "standard" || "limitless",
243
244
  * // CertificateDetails: {
244
245
  * // CAIdentifier: "STRING_VALUE",
245
246
  * // ValidTill: new Date("TIMESTAMP"),
@@ -292,6 +292,7 @@ declare const ModifyDBClusterCommand_base: {
292
292
  * // MinRequiredACU: Number("double"),
293
293
  * // },
294
294
  * // StorageThroughput: Number("int"),
295
+ * // ClusterScalabilityType: "standard" || "limitless",
295
296
  * // CertificateDetails: {
296
297
  * // CAIdentifier: "STRING_VALUE",
297
298
  * // ValidTill: new Date("TIMESTAMP"),
@@ -55,6 +55,12 @@ declare const ModifyDBShardGroupCommand_base: {
55
55
  * // PubliclyAccessible: true || false,
56
56
  * // Endpoint: "STRING_VALUE",
57
57
  * // DBShardGroupArn: "STRING_VALUE",
58
+ * // TagList: [ // TagList
59
+ * // { // Tag
60
+ * // Key: "STRING_VALUE",
61
+ * // Value: "STRING_VALUE",
62
+ * // },
63
+ * // ],
58
64
  * // };
59
65
  *
60
66
  * ```
@@ -221,6 +221,7 @@ declare const PromoteReadReplicaDBClusterCommand_base: {
221
221
  * // MinRequiredACU: Number("double"),
222
222
  * // },
223
223
  * // StorageThroughput: Number("int"),
224
+ * // ClusterScalabilityType: "standard" || "limitless",
224
225
  * // CertificateDetails: {
225
226
  * // CAIdentifier: "STRING_VALUE",
226
227
  * // ValidTill: new Date("TIMESTAMP"),
@@ -231,6 +231,7 @@ declare const RebootDBClusterCommand_base: {
231
231
  * // MinRequiredACU: Number("double"),
232
232
  * // },
233
233
  * // StorageThroughput: Number("int"),
234
+ * // ClusterScalabilityType: "standard" || "limitless",
234
235
  * // CertificateDetails: {
235
236
  * // CAIdentifier: "STRING_VALUE",
236
237
  * // ValidTill: new Date("TIMESTAMP"),
@@ -53,6 +53,12 @@ declare const RebootDBShardGroupCommand_base: {
53
53
  * // PubliclyAccessible: true || false,
54
54
  * // Endpoint: "STRING_VALUE",
55
55
  * // DBShardGroupArn: "STRING_VALUE",
56
+ * // TagList: [ // TagList
57
+ * // { // Tag
58
+ * // Key: "STRING_VALUE",
59
+ * // Value: "STRING_VALUE",
60
+ * // },
61
+ * // ],
56
62
  * // };
57
63
  *
58
64
  * ```
@@ -288,6 +288,7 @@ declare const RestoreDBClusterFromS3Command_base: {
288
288
  * // MinRequiredACU: Number("double"),
289
289
  * // },
290
290
  * // StorageThroughput: Number("int"),
291
+ * // ClusterScalabilityType: "standard" || "limitless",
291
292
  * // CertificateDetails: {
292
293
  * // CAIdentifier: "STRING_VALUE",
293
294
  * // ValidTill: new Date("TIMESTAMP"),
@@ -293,6 +293,7 @@ declare const RestoreDBClusterFromSnapshotCommand_base: {
293
293
  * // MinRequiredACU: Number("double"),
294
294
  * // },
295
295
  * // StorageThroughput: Number("int"),
296
+ * // ClusterScalabilityType: "standard" || "limitless",
296
297
  * // CertificateDetails: {
297
298
  * // CAIdentifier: "STRING_VALUE",
298
299
  * // ValidTill: new Date("TIMESTAMP"),
@@ -292,6 +292,7 @@ declare const RestoreDBClusterToPointInTimeCommand_base: {
292
292
  * // MinRequiredACU: Number("double"),
293
293
  * // },
294
294
  * // StorageThroughput: Number("int"),
295
+ * // ClusterScalabilityType: "standard" || "limitless",
295
296
  * // CertificateDetails: {
296
297
  * // CAIdentifier: "STRING_VALUE",
297
298
  * // ValidTill: new Date("TIMESTAMP"),
@@ -228,6 +228,7 @@ declare const StartDBClusterCommand_base: {
228
228
  * // MinRequiredACU: Number("double"),
229
229
  * // },
230
230
  * // StorageThroughput: Number("int"),
231
+ * // ClusterScalabilityType: "standard" || "limitless",
231
232
  * // CertificateDetails: {
232
233
  * // CAIdentifier: "STRING_VALUE",
233
234
  * // ValidTill: new Date("TIMESTAMP"),
@@ -229,6 +229,7 @@ declare const StopDBClusterCommand_base: {
229
229
  * // MinRequiredACU: Number("double"),
230
230
  * // },
231
231
  * // StorageThroughput: Number("int"),
232
+ * // ClusterScalabilityType: "standard" || "limitless",
232
233
  * // CertificateDetails: {
233
234
  * // CAIdentifier: "STRING_VALUE",
234
235
  * // ValidTill: new Date("TIMESTAMP"),
@@ -3536,6 +3536,18 @@ export declare class Ec2ImagePropertiesNotSupportedFault extends __BaseException
3536
3536
  */
3537
3537
  constructor(opts: __ExceptionOptionType<Ec2ImagePropertiesNotSupportedFault, __BaseException>);
3538
3538
  }
3539
+ /**
3540
+ * @public
3541
+ * @enum
3542
+ */
3543
+ export declare const ClusterScalabilityType: {
3544
+ readonly LIMITLESS: "limitless";
3545
+ readonly STANDARD: "standard";
3546
+ };
3547
+ /**
3548
+ * @public
3549
+ */
3550
+ export type ClusterScalabilityType = (typeof ClusterScalabilityType)[keyof typeof ClusterScalabilityType];
3539
3551
  /**
3540
3552
  * @public
3541
3553
  * @enum
@@ -4400,6 +4412,16 @@ export interface CreateDBClusterMessage {
4400
4412
  * @public
4401
4413
  */
4402
4414
  NetworkType?: string;
4415
+ /**
4416
+ * <p>Specifies the scalability mode of the Aurora DB cluster. When set to <code>limitless</code>, the cluster operates as an Aurora Limitless Database.
4417
+ * When set to <code>standard</code> (the default), the cluster uses normal DB instance creation.</p>
4418
+ * <p>Valid for: Aurora DB clusters only</p>
4419
+ * <note>
4420
+ * <p>You can't modify this setting after you create the DB cluster.</p>
4421
+ * </note>
4422
+ * @public
4423
+ */
4424
+ ClusterScalabilityType?: ClusterScalabilityType;
4403
4425
  /**
4404
4426
  * <p>Reserved for future use.</p>
4405
4427
  * @public
@@ -5436,6 +5458,12 @@ export interface DBCluster {
5436
5458
  * @public
5437
5459
  */
5438
5460
  StorageThroughput?: number;
5461
+ /**
5462
+ * <p>The scalability mode of the Aurora DB cluster. When set to <code>limitless</code>, the cluster operates as an Aurora Limitless Database.
5463
+ * When set to <code>standard</code> (the default), the cluster uses normal DB instance creation.</p>
5464
+ * @public
5465
+ */
5466
+ ClusterScalabilityType?: ClusterScalabilityType;
5439
5467
  /**
5440
5468
  * <p>The details of the DB instance’s server certificate.</p>
5441
5469
  * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html">Using SSL/TLS to encrypt a connection to a DB
@@ -9979,6 +10007,15 @@ export interface CreateDBShardGroupMessage {
9979
10007
  * @public
9980
10008
  */
9981
10009
  PubliclyAccessible?: boolean;
10010
+ /**
10011
+ * <p>A list of tags.</p>
10012
+ * <p>For more information, see
10013
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
10014
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
10015
+ * </p>
10016
+ * @public
10017
+ */
10018
+ Tags?: Tag[];
9982
10019
  }
9983
10020
  /**
9984
10021
  * @public
@@ -10054,6 +10091,15 @@ export interface DBShardGroup {
10054
10091
  * @public
10055
10092
  */
10056
10093
  DBShardGroupArn?: string;
10094
+ /**
10095
+ * <p>A list of tags.</p>
10096
+ * <p>For more information, see
10097
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html">Tagging Amazon RDS resources</a> in the <i>Amazon RDS User Guide</i> or
10098
+ * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html">Tagging Amazon Aurora and Amazon RDS resources</a> in the <i>Amazon Aurora User Guide</i>.
10099
+ * </p>
10100
+ * @public
10101
+ */
10102
+ TagList?: Tag[];
10057
10103
  }
10058
10104
  /**
10059
10105
  * <p>The specified DB shard group name must be unique in your Amazon Web Services account in the specified Amazon Web Services Region.</p>
@@ -12470,17 +12516,6 @@ export interface DeleteTenantDatabaseMessage {
12470
12516
  */
12471
12517
  FinalDBSnapshotIdentifier?: string;
12472
12518
  }
12473
- /**
12474
- * @public
12475
- */
12476
- export interface DeleteTenantDatabaseResult {
12477
- /**
12478
- * <p>A tenant database in the DB instance. This data type is an element in the response to
12479
- * the <code>DescribeTenantDatabases</code> action.</p>
12480
- * @public
12481
- */
12482
- TenantDatabase?: TenantDatabase;
12483
- }
12484
12519
  /**
12485
12520
  * @internal
12486
12521
  */
@@ -12497,7 +12532,3 @@ export declare const TenantDatabaseFilterSensitiveLog: (obj: TenantDatabase) =>
12497
12532
  * @internal
12498
12533
  */
12499
12534
  export declare const CreateTenantDatabaseResultFilterSensitiveLog: (obj: CreateTenantDatabaseResult) => any;
12500
- /**
12501
- * @internal
12502
- */
12503
- export declare const DeleteTenantDatabaseResultFilterSensitiveLog: (obj: DeleteTenantDatabaseResult) => any;
@@ -1,6 +1,17 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, AutomationMode, AvailabilityZone, BlueGreenDeployment, DBCluster, DBClusterAutomatedBackup, DBClusterBacktrack, DBClusterEndpoint, DBClusterParameterGroup, DBClusterSnapshot, DBEngineVersion, DBInstance, DBInstanceAutomatedBackup, DBParameterGroup, DBProxy, DBProxyEndpoint, DBSecurityGroup, DBShardGroup, DBSnapshot, DBSubnetGroup, EventSubscription, ExportSourceType, ExportTask, GlobalCluster, Integration, OptionGroup, OptionSetting, ProcessorFeature, RdsCustomClusterConfiguration, ReplicaMode, ResourcePendingMaintenanceActions, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, TenantDatabase, UserAuthConfig } from "./models_0";
3
3
  import { RDSServiceException as __BaseException } from "./RDSServiceException";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface DeleteTenantDatabaseResult {
8
+ /**
9
+ * <p>A tenant database in the DB instance. This data type is an element in the response to
10
+ * the <code>DescribeTenantDatabases</code> action.</p>
11
+ * @public
12
+ */
13
+ TenantDatabase?: TenantDatabase;
14
+ }
4
15
  /**
5
16
  * <p>The specified RDS DB instance or Aurora DB cluster isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.</p>
6
17
  * @public
@@ -13724,6 +13735,10 @@ export interface SwitchoverReadReplicaResult {
13724
13735
  */
13725
13736
  DBInstance?: DBInstance;
13726
13737
  }
13738
+ /**
13739
+ * @internal
13740
+ */
13741
+ export declare const DeleteTenantDatabaseResultFilterSensitiveLog: (obj: DeleteTenantDatabaseResult) => any;
13727
13742
  /**
13728
13743
  * @internal
13729
13744
  */
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
11
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
11
+ defaultUserAgentProvider: (config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
29
29
  logger: import("@smithy/types").Logger;
30
30
  extensions: import("./runtimeExtensions").RuntimeExtension[];
31
31
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
32
33
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
33
34
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
34
35
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
11
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<string>;
14
14
  requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
@@ -17,6 +17,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
17
17
  streamCollector: import("@smithy/types").StreamCollector;
18
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
20
21
  apiVersion: string;
21
22
  cacheMiddleware?: boolean | undefined;
22
23
  urlParser: import("@smithy/types").UrlParser;
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
20
20
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
21
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
22
  region: string | import("@smithy/types").Provider<any>;
23
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
23
+ defaultUserAgentProvider: (config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
24
24
  credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
25
25
  maxAttempts: number | import("@smithy/types").Provider<number>;
26
26
  retryMode: string | import("@smithy/types").Provider<string>;
@@ -28,6 +28,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
28
28
  extensions: import("./runtimeExtensions").RuntimeExtension[];
29
29
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
30
30
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
31
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
31
32
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
32
33
  endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
33
34
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
@@ -1,9 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DeleteTenantDatabaseMessage,
5
- DeleteTenantDatabaseResult,
6
- } from "../models/models_0";
3
+ import { DeleteTenantDatabaseMessage } from "../models/models_0";
4
+ import { DeleteTenantDatabaseResult } from "../models/models_1";
7
5
  import {
8
6
  RDSClientResolvedConfig,
9
7
  ServiceInputTypes,
@@ -845,6 +845,12 @@ export declare class Ec2ImagePropertiesNotSupportedFault extends __BaseException
845
845
  >
846
846
  );
847
847
  }
848
+ export declare const ClusterScalabilityType: {
849
+ readonly LIMITLESS: "limitless";
850
+ readonly STANDARD: "standard";
851
+ };
852
+ export type ClusterScalabilityType =
853
+ (typeof ClusterScalabilityType)[keyof typeof ClusterScalabilityType];
848
854
  export declare const ReplicaMode: {
849
855
  readonly MOUNTED: "mounted";
850
856
  readonly OPEN_READ_ONLY: "open-read-only";
@@ -916,6 +922,7 @@ export interface CreateDBClusterMessage {
916
922
  EnableLimitlessDatabase?: boolean;
917
923
  ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
918
924
  NetworkType?: string;
925
+ ClusterScalabilityType?: ClusterScalabilityType;
919
926
  DBSystemId?: string;
920
927
  ManageMasterUserPassword?: boolean;
921
928
  MasterUserSecretKmsKeyId?: string;
@@ -1104,6 +1111,7 @@ export interface DBCluster {
1104
1111
  AwsBackupRecoveryPointArn?: string;
1105
1112
  LimitlessDatabase?: LimitlessDatabase;
1106
1113
  StorageThroughput?: number;
1114
+ ClusterScalabilityType?: ClusterScalabilityType;
1107
1115
  CertificateDetails?: CertificateDetails;
1108
1116
  EngineLifecycleSupport?: string;
1109
1117
  }
@@ -1837,6 +1845,7 @@ export interface CreateDBShardGroupMessage {
1837
1845
  MaxACU: number | undefined;
1838
1846
  MinACU?: number;
1839
1847
  PubliclyAccessible?: boolean;
1848
+ Tags?: Tag[];
1840
1849
  }
1841
1850
  export interface DBShardGroup {
1842
1851
  DBShardGroupResourceId?: string;
@@ -1849,6 +1858,7 @@ export interface DBShardGroup {
1849
1858
  PubliclyAccessible?: boolean;
1850
1859
  Endpoint?: string;
1851
1860
  DBShardGroupArn?: string;
1861
+ TagList?: Tag[];
1852
1862
  }
1853
1863
  export declare class DBShardGroupAlreadyExistsFault extends __BaseException {
1854
1864
  readonly name: "DBShardGroupAlreadyExistsFault";
@@ -2518,9 +2528,6 @@ export interface DeleteTenantDatabaseMessage {
2518
2528
  SkipFinalSnapshot?: boolean;
2519
2529
  FinalDBSnapshotIdentifier?: string;
2520
2530
  }
2521
- export interface DeleteTenantDatabaseResult {
2522
- TenantDatabase?: TenantDatabase;
2523
- }
2524
2531
  export declare const CreateTenantDatabaseMessageFilterSensitiveLog: (
2525
2532
  obj: CreateTenantDatabaseMessage
2526
2533
  ) => any;
@@ -2533,6 +2540,3 @@ export declare const TenantDatabaseFilterSensitiveLog: (
2533
2540
  export declare const CreateTenantDatabaseResultFilterSensitiveLog: (
2534
2541
  obj: CreateTenantDatabaseResult
2535
2542
  ) => any;
2536
- export declare const DeleteTenantDatabaseResultFilterSensitiveLog: (
2537
- obj: DeleteTenantDatabaseResult
2538
- ) => any;
@@ -40,6 +40,9 @@ import {
40
40
  UserAuthConfig,
41
41
  } from "./models_0";
42
42
  import { RDSServiceException as __BaseException } from "./RDSServiceException";
43
+ export interface DeleteTenantDatabaseResult {
44
+ TenantDatabase?: TenantDatabase;
45
+ }
43
46
  export declare class DBProxyTargetNotFoundFault extends __BaseException {
44
47
  readonly name: "DBProxyTargetNotFoundFault";
45
48
  readonly $fault: "client";
@@ -1964,6 +1967,9 @@ export interface SwitchoverReadReplicaMessage {
1964
1967
  export interface SwitchoverReadReplicaResult {
1965
1968
  DBInstance?: DBInstance;
1966
1969
  }
1970
+ export declare const DeleteTenantDatabaseResultFilterSensitiveLog: (
1971
+ obj: DeleteTenantDatabaseResult
1972
+ ) => any;
1967
1973
  export declare const TenantDatabasesMessageFilterSensitiveLog: (
1968
1974
  obj: TenantDatabasesMessage
1969
1975
  ) => any;
@@ -9,9 +9,9 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
9
9
  credentialDefaultProvider: (
10
10
  input: any
11
11
  ) => import("@smithy/types").AwsCredentialIdentityProvider;
12
- defaultUserAgentProvider: import("@smithy/types").Provider<
13
- import("@smithy/types").UserAgent
14
- >;
12
+ defaultUserAgentProvider: (
13
+ config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
14
+ ) => Promise<import("@smithy/types").UserAgent>;
15
15
  maxAttempts: number | import("@smithy/types").Provider<number>;
16
16
  region: string | import("@smithy/types").Provider<any>;
17
17
  requestHandler:
@@ -34,6 +34,10 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
34
34
  logger: import("@smithy/types").Logger;
35
35
  extensions: import("./runtimeExtensions").RuntimeExtension[];
36
36
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
37
+ userAgentAppId?:
38
+ | string
39
+ | import("@smithy/types").Provider<string | undefined>
40
+ | undefined;
37
41
  retryStrategy?:
38
42
  | import("@smithy/types").RetryStrategy
39
43
  | import("@smithy/types").RetryStrategyV2
@@ -13,9 +13,11 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
13
13
  ) => import("@smithy/types").MemoizedProvider<
14
14
  import("@smithy/types").AwsCredentialIdentity
15
15
  >;
16
- defaultUserAgentProvider: import("@smithy/types").Provider<
17
- import("@smithy/types").UserAgent
18
- >;
16
+ defaultUserAgentProvider: (
17
+ config?:
18
+ | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
19
+ | undefined
20
+ ) => Promise<import("@smithy/types").UserAgent>;
19
21
  maxAttempts: number | import("@smithy/types").Provider<number>;
20
22
  region: string | import("@smithy/types").Provider<string>;
21
23
  requestHandler:
@@ -26,6 +28,7 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
26
28
  streamCollector: import("@smithy/types").StreamCollector;
27
29
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
28
30
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
31
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
29
32
  apiVersion: string;
30
33
  cacheMiddleware?: boolean | undefined;
31
34
  urlParser: import("@smithy/types").UrlParser;
@@ -22,9 +22,9 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
22
22
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
23
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
24
  region: string | import("@smithy/types").Provider<any>;
25
- defaultUserAgentProvider: import("@smithy/types").Provider<
26
- import("@smithy/types").UserAgent
27
- >;
25
+ defaultUserAgentProvider: (
26
+ config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
27
+ ) => Promise<import("@smithy/types").UserAgent>;
28
28
  credentialDefaultProvider: (
29
29
  input: any
30
30
  ) => import("@smithy/types").AwsCredentialIdentityProvider;
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: RDSClientConfig) => {
38
38
  import("@smithy/smithy-client").DefaultsMode
39
39
  >;
40
40
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
41
+ userAgentAppId?:
42
+ | string
43
+ | import("@smithy/types").Provider<string | undefined>
44
+ | undefined;
41
45
  retryStrategy?:
42
46
  | import("@smithy/types").RetryStrategy
43
47
  | import("@smithy/types").RetryStrategyV2
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.658.1",
4
+ "version": "3.664.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",
@@ -20,46 +20,46 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.658.1",
24
- "@aws-sdk/client-sts": "3.658.1",
25
- "@aws-sdk/core": "3.658.1",
26
- "@aws-sdk/credential-provider-node": "3.658.1",
27
- "@aws-sdk/middleware-host-header": "3.654.0",
28
- "@aws-sdk/middleware-logger": "3.654.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.654.0",
30
- "@aws-sdk/middleware-sdk-rds": "3.658.1",
31
- "@aws-sdk/middleware-user-agent": "3.654.0",
32
- "@aws-sdk/region-config-resolver": "3.654.0",
33
- "@aws-sdk/types": "3.654.0",
34
- "@aws-sdk/util-endpoints": "3.654.0",
35
- "@aws-sdk/util-user-agent-browser": "3.654.0",
36
- "@aws-sdk/util-user-agent-node": "3.654.0",
37
- "@smithy/config-resolver": "^3.0.8",
38
- "@smithy/core": "^2.4.6",
39
- "@smithy/fetch-http-handler": "^3.2.8",
40
- "@smithy/hash-node": "^3.0.6",
41
- "@smithy/invalid-dependency": "^3.0.6",
42
- "@smithy/middleware-content-length": "^3.0.8",
43
- "@smithy/middleware-endpoint": "^3.1.3",
44
- "@smithy/middleware-retry": "^3.0.21",
45
- "@smithy/middleware-serde": "^3.0.6",
46
- "@smithy/middleware-stack": "^3.0.6",
47
- "@smithy/node-config-provider": "^3.1.7",
48
- "@smithy/node-http-handler": "^3.2.3",
49
- "@smithy/protocol-http": "^4.1.3",
50
- "@smithy/smithy-client": "^3.3.5",
51
- "@smithy/types": "^3.4.2",
52
- "@smithy/url-parser": "^3.0.6",
23
+ "@aws-sdk/client-sso-oidc": "3.664.0",
24
+ "@aws-sdk/client-sts": "3.664.0",
25
+ "@aws-sdk/core": "3.664.0",
26
+ "@aws-sdk/credential-provider-node": "3.664.0",
27
+ "@aws-sdk/middleware-host-header": "3.664.0",
28
+ "@aws-sdk/middleware-logger": "3.664.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.664.0",
30
+ "@aws-sdk/middleware-sdk-rds": "3.664.0",
31
+ "@aws-sdk/middleware-user-agent": "3.664.0",
32
+ "@aws-sdk/region-config-resolver": "3.664.0",
33
+ "@aws-sdk/types": "3.664.0",
34
+ "@aws-sdk/util-endpoints": "3.664.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.664.0",
36
+ "@aws-sdk/util-user-agent-node": "3.664.0",
37
+ "@smithy/config-resolver": "^3.0.9",
38
+ "@smithy/core": "^2.4.7",
39
+ "@smithy/fetch-http-handler": "^3.2.9",
40
+ "@smithy/hash-node": "^3.0.7",
41
+ "@smithy/invalid-dependency": "^3.0.7",
42
+ "@smithy/middleware-content-length": "^3.0.9",
43
+ "@smithy/middleware-endpoint": "^3.1.4",
44
+ "@smithy/middleware-retry": "^3.0.22",
45
+ "@smithy/middleware-serde": "^3.0.7",
46
+ "@smithy/middleware-stack": "^3.0.7",
47
+ "@smithy/node-config-provider": "^3.1.8",
48
+ "@smithy/node-http-handler": "^3.2.4",
49
+ "@smithy/protocol-http": "^4.1.4",
50
+ "@smithy/smithy-client": "^3.3.6",
51
+ "@smithy/types": "^3.5.0",
52
+ "@smithy/url-parser": "^3.0.7",
53
53
  "@smithy/util-base64": "^3.0.0",
54
54
  "@smithy/util-body-length-browser": "^3.0.0",
55
55
  "@smithy/util-body-length-node": "^3.0.0",
56
- "@smithy/util-defaults-mode-browser": "^3.0.21",
57
- "@smithy/util-defaults-mode-node": "^3.0.21",
58
- "@smithy/util-endpoints": "^2.1.2",
59
- "@smithy/util-middleware": "^3.0.6",
60
- "@smithy/util-retry": "^3.0.6",
56
+ "@smithy/util-defaults-mode-browser": "^3.0.22",
57
+ "@smithy/util-defaults-mode-node": "^3.0.22",
58
+ "@smithy/util-endpoints": "^2.1.3",
59
+ "@smithy/util-middleware": "^3.0.7",
60
+ "@smithy/util-retry": "^3.0.7",
61
61
  "@smithy/util-utf8": "^3.0.0",
62
- "@smithy/util-waiter": "^3.1.5",
62
+ "@smithy/util-waiter": "^3.1.6",
63
63
  "tslib": "^2.6.2"
64
64
  },
65
65
  "devDependencies": {