@aws-sdk/client-rds 3.51.0 → 3.52.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** update clients as of 2022/02/18 ([#3335](https://github.com/aws/aws-sdk-js-v3/issues/3335)) ([717b06f](https://github.com/aws/aws-sdk-js-v3/commit/717b06fc43e9876a6f8040147b75ad5da38b1e0f))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-rds
@@ -18798,6 +18798,7 @@ const deserializeAws_queryDBEngineVersion = (output, context) => {
18798
18798
  KMSKeyId: undefined,
18799
18799
  CreateTime: undefined,
18800
18800
  TagList: undefined,
18801
+ SupportsBabelfish: undefined,
18801
18802
  };
18802
18803
  if (output["Engine"] !== undefined) {
18803
18804
  contents.Engine = smithy_client_1.expectString(output["Engine"]);
@@ -18900,6 +18901,9 @@ const deserializeAws_queryDBEngineVersion = (output, context) => {
18900
18901
  if (output["TagList"] !== undefined && output["TagList"]["Tag"] !== undefined) {
18901
18902
  contents.TagList = deserializeAws_queryTagList(smithy_client_1.getArrayIfSingleItem(output["TagList"]["Tag"]), context);
18902
18903
  }
18904
+ if (output["SupportsBabelfish"] !== undefined) {
18905
+ contents.SupportsBabelfish = smithy_client_1.parseBoolean(output["SupportsBabelfish"]);
18906
+ }
18903
18907
  return contents;
18904
18908
  };
18905
18909
  const deserializeAws_queryDBEngineVersionList = (output, context) => {
@@ -23737,6 +23741,7 @@ const deserializeAws_queryUpgradeTarget = (output, context) => {
23737
23741
  SupportedEngineModes: undefined,
23738
23742
  SupportsParallelQuery: undefined,
23739
23743
  SupportsGlobalDatabases: undefined,
23744
+ SupportsBabelfish: undefined,
23740
23745
  };
23741
23746
  if (output["Engine"] !== undefined) {
23742
23747
  contents.Engine = smithy_client_1.expectString(output["Engine"]);
@@ -23765,6 +23770,9 @@ const deserializeAws_queryUpgradeTarget = (output, context) => {
23765
23770
  if (output["SupportsGlobalDatabases"] !== undefined) {
23766
23771
  contents.SupportsGlobalDatabases = smithy_client_1.parseBoolean(output["SupportsGlobalDatabases"]);
23767
23772
  }
23773
+ if (output["SupportsBabelfish"] !== undefined) {
23774
+ contents.SupportsBabelfish = smithy_client_1.parseBoolean(output["SupportsBabelfish"]);
23775
+ }
23768
23776
  return contents;
23769
23777
  };
23770
23778
  const deserializeAws_queryUserAuthConfigInfo = (output, context) => {
@@ -19765,6 +19765,7 @@ var deserializeAws_queryDBEngineVersion = function (output, context) {
19765
19765
  KMSKeyId: undefined,
19766
19766
  CreateTime: undefined,
19767
19767
  TagList: undefined,
19768
+ SupportsBabelfish: undefined,
19768
19769
  };
19769
19770
  if (output["Engine"] !== undefined) {
19770
19771
  contents.Engine = __expectString(output["Engine"]);
@@ -19867,6 +19868,9 @@ var deserializeAws_queryDBEngineVersion = function (output, context) {
19867
19868
  if (output["TagList"] !== undefined && output["TagList"]["Tag"] !== undefined) {
19868
19869
  contents.TagList = deserializeAws_queryTagList(__getArrayIfSingleItem(output["TagList"]["Tag"]), context);
19869
19870
  }
19871
+ if (output["SupportsBabelfish"] !== undefined) {
19872
+ contents.SupportsBabelfish = __parseBoolean(output["SupportsBabelfish"]);
19873
+ }
19870
19874
  return contents;
19871
19875
  };
19872
19876
  var deserializeAws_queryDBEngineVersionList = function (output, context) {
@@ -24704,6 +24708,7 @@ var deserializeAws_queryUpgradeTarget = function (output, context) {
24704
24708
  SupportedEngineModes: undefined,
24705
24709
  SupportsParallelQuery: undefined,
24706
24710
  SupportsGlobalDatabases: undefined,
24711
+ SupportsBabelfish: undefined,
24707
24712
  };
24708
24713
  if (output["Engine"] !== undefined) {
24709
24714
  contents.Engine = __expectString(output["Engine"]);
@@ -24732,6 +24737,9 @@ var deserializeAws_queryUpgradeTarget = function (output, context) {
24732
24737
  if (output["SupportsGlobalDatabases"] !== undefined) {
24733
24738
  contents.SupportsGlobalDatabases = __parseBoolean(output["SupportsGlobalDatabases"]);
24734
24739
  }
24740
+ if (output["SupportsBabelfish"] !== undefined) {
24741
+ contents.SupportsBabelfish = __parseBoolean(output["SupportsBabelfish"]);
24742
+ }
24735
24743
  return contents;
24736
24744
  };
24737
24745
  var deserializeAws_queryUserAuthConfigInfo = function (output, context) {
@@ -2659,6 +2659,10 @@ export interface UpgradeTarget {
2659
2659
  * <p>A value that indicates whether you can use Aurora global databases with the target engine version.</p>
2660
2660
  */
2661
2661
  SupportsGlobalDatabases?: boolean;
2662
+ /**
2663
+ * <p>A value that indicates whether you can use Babelfish for Aurora PostgreSQL with the target engine version.</p>
2664
+ */
2665
+ SupportsBabelfish?: boolean;
2662
2666
  }
2663
2667
  export declare namespace UpgradeTarget {
2664
2668
  /**
@@ -2798,6 +2802,10 @@ export interface DBEngineVersion {
2798
2802
  * </p>
2799
2803
  */
2800
2804
  TagList?: Tag[];
2805
+ /**
2806
+ * <p>A value that indicates whether the engine version supports Babelfish for Aurora PostgreSQL.</p>
2807
+ */
2808
+ SupportsBabelfish?: boolean;
2801
2809
  }
2802
2810
  export declare namespace DBEngineVersion {
2803
2811
  /**
@@ -9955,25 +9963,25 @@ export interface DescribeDBClustersMessage {
9955
9963
  * <li>
9956
9964
  * <p>
9957
9965
  * <code>clone-group-id</code> - Accepts clone group identifiers.
9958
- * The results list will only include information about
9966
+ * The results list only includes information about
9959
9967
  * the DB clusters associated with these clone groups.</p>
9960
9968
  * </li>
9961
9969
  * <li>
9962
9970
  * <p>
9963
9971
  * <code>db-cluster-id</code> - Accepts DB cluster identifiers and DB
9964
- * cluster Amazon Resource Names (ARNs). The results list will only include information about
9972
+ * cluster Amazon Resource Names (ARNs). The results list only includes information about
9965
9973
  * the DB clusters identified by these ARNs.</p>
9966
9974
  * </li>
9967
9975
  * <li>
9968
9976
  * <p>
9969
9977
  * <code>domain</code> - Accepts Active Directory directory IDs.
9970
- * The results list will only include information about
9978
+ * The results list only includes information about
9971
9979
  * the DB clusters associated with these domains.</p>
9972
9980
  * </li>
9973
9981
  * <li>
9974
9982
  * <p>
9975
9983
  * <code>engine</code> - Accepts engine names.
9976
- * The results list will only include information about
9984
+ * The results list only includes information about
9977
9985
  * the DB clusters for these engines.</p>
9978
9986
  * </li>
9979
9987
  * </ul>
@@ -10371,7 +10379,86 @@ export interface DescribeDBEngineVersionsMessage {
10371
10379
  */
10372
10380
  DBParameterGroupFamily?: string;
10373
10381
  /**
10374
- * <p>This parameter isn't currently supported.</p>
10382
+ * <p>A filter that specifies one or more DB engine versions to describe.</p>
10383
+ * <p>Supported filters:</p>
10384
+ * <ul>
10385
+ * <li>
10386
+ * <p>
10387
+ * <code>db-parameter-group-family</code> - Accepts parameter groups family names.
10388
+ * The results list only includes information about
10389
+ * the DB engine versions for these parameter group families.
10390
+ * </p>
10391
+ * </li>
10392
+ * <li>
10393
+ * <p>
10394
+ * <code>engine</code> - Accepts engine names.
10395
+ * The results list only includes information about
10396
+ * the DB engine versions for these engines.
10397
+ * </p>
10398
+ * </li>
10399
+ * <li>
10400
+ * <p>
10401
+ * <code>engine-mode</code> - Accepts DB engine modes.
10402
+ * The results list only includes information about
10403
+ * the DB engine versions for these engine modes. Valid
10404
+ * DB engine modes are the following:
10405
+ * </p>
10406
+ * <ul>
10407
+ * <li>
10408
+ * <p>
10409
+ * <code>global</code>
10410
+ * </p>
10411
+ * </li>
10412
+ * <li>
10413
+ * <p>
10414
+ * <code>multimaster</code>
10415
+ * </p>
10416
+ * </li>
10417
+ * <li>
10418
+ * <p>
10419
+ * <code>parallelquery</code>
10420
+ * </p>
10421
+ * </li>
10422
+ * <li>
10423
+ * <p>
10424
+ * <code>provisioned</code>
10425
+ * </p>
10426
+ * </li>
10427
+ * <li>
10428
+ * <p>
10429
+ * <code>serverless</code>
10430
+ * </p>
10431
+ * </li>
10432
+ * </ul>
10433
+ * </li>
10434
+ * <li>
10435
+ * <p>
10436
+ * <code>engine-version</code> - Accepts engine versions.
10437
+ * The results list only includes information about
10438
+ * the DB engine versions for these engine versions.
10439
+ * </p>
10440
+ * </li>
10441
+ * <li>
10442
+ * <p>
10443
+ * <code>status</code> - Accepts engine version statuses.
10444
+ * The results list only includes information about
10445
+ * the DB engine versions for these statuses. Valid statuses
10446
+ * are the following:
10447
+ * </p>
10448
+ * <ul>
10449
+ * <li>
10450
+ * <p>
10451
+ * <code>available</code>
10452
+ * </p>
10453
+ * </li>
10454
+ * <li>
10455
+ * <p>
10456
+ * <code>deprecated</code>
10457
+ * </p>
10458
+ * </li>
10459
+ * </ul>
10460
+ * </li>
10461
+ * </ul>
10375
10462
  */
10376
10463
  Filters?: Filter[];
10377
10464
  /**
@@ -10581,13 +10668,13 @@ export interface DescribeDBInstancesMessage {
10581
10668
  * <li>
10582
10669
  * <p>
10583
10670
  * <code>db-cluster-id</code> - Accepts DB cluster identifiers and DB
10584
- * cluster Amazon Resource Names (ARNs). The results list will only include information about
10671
+ * cluster Amazon Resource Names (ARNs). The results list only includes information about
10585
10672
  * the DB instances associated with the DB clusters identified by these ARNs.</p>
10586
10673
  * </li>
10587
10674
  * <li>
10588
10675
  * <p>
10589
10676
  * <code>db-instance-id</code> - Accepts DB instance identifiers and DB
10590
- * instance Amazon Resource Names (ARNs). The results list will only include information about
10677
+ * instance Amazon Resource Names (ARNs). The results list only includes information about
10591
10678
  * the DB instances identified by these ARNs.</p>
10592
10679
  * </li>
10593
10680
  * <li>
@@ -10597,12 +10684,12 @@ export interface DescribeDBInstancesMessage {
10597
10684
  * </li>
10598
10685
  * <li>
10599
10686
  * <p>
10600
- * <code>domain</code> - Accepts Active Directory directory IDs. The results list will only
10601
- * include information about the DB instances associated with these domains.</p>
10687
+ * <code>domain</code> - Accepts Active Directory directory IDs. The results list only includes
10688
+ * information about the DB instances associated with these domains.</p>
10602
10689
  * </li>
10603
10690
  * <li>
10604
10691
  * <p>
10605
- * <code>engine</code> - Accepts engine names. The results list will only include information
10692
+ * <code>engine</code> - Accepts engine names. The results list only includes information
10606
10693
  * about the DB instances for these engines.</p>
10607
10694
  * </li>
10608
10695
  * </ul>
@@ -1941,13 +1941,13 @@ export interface DescribePendingMaintenanceActionsMessage {
1941
1941
  * <li>
1942
1942
  * <p>
1943
1943
  * <code>db-cluster-id</code> - Accepts DB cluster identifiers and DB
1944
- * cluster Amazon Resource Names (ARNs). The results list will only include pending maintenance
1944
+ * cluster Amazon Resource Names (ARNs). The results list only includes pending maintenance
1945
1945
  * actions for the DB clusters identified by these ARNs.</p>
1946
1946
  * </li>
1947
1947
  * <li>
1948
1948
  * <p>
1949
1949
  * <code>db-instance-id</code> - Accepts DB instance identifiers and DB
1950
- * instance ARNs. The results list will only include pending maintenance
1950
+ * instance ARNs. The results list only includes pending maintenance
1951
1951
  * actions for the DB instances identified by these ARNs.</p>
1952
1952
  * </li>
1953
1953
  * </ul>
@@ -3315,8 +3315,8 @@ export interface ModifyDBClusterMessage {
3315
3315
  * <p>The name of the DB parameter group to apply to all instances of the DB cluster. </p>
3316
3316
  * <note>
3317
3317
  * <p>When you apply a parameter group using the <code>DBInstanceParameterGroupName</code> parameter, the DB
3318
- * cluster isn't rebooted automatically. Also, parameter changes aren't
3319
- * applied during the next maintenance window but instead are applied immediately.</p>
3318
+ * cluster isn't rebooted automatically. Also, parameter changes are applied immediately rather than
3319
+ * during the next maintenance window.</p>
3320
3320
  * </note>
3321
3321
  * <p>Default: The existing name setting</p>
3322
3322
  * <p>Constraints:</p>
@@ -3325,8 +3325,8 @@ export interface ModifyDBClusterMessage {
3325
3325
  * <p>The DB parameter group must be in the same DB parameter group family as this DB cluster.</p>
3326
3326
  * </li>
3327
3327
  * <li>
3328
- * <p>The <code>DBInstanceParameterGroupName</code> parameter is only valid in combination with
3329
- * the <code>AllowMajorVersionUpgrade</code> parameter.</p>
3328
+ * <p>The <code>DBInstanceParameterGroupName</code> parameter is valid in combination with the
3329
+ * <code>AllowMajorVersionUpgrade</code> parameter for a major version upgrade only.</p>
3330
3330
  * </li>
3331
3331
  * </ul>
3332
3332
  * <p>Valid for: Aurora DB clusters only</p>
@@ -6251,7 +6251,7 @@ export interface RestoreDBClusterFromSnapshotMessage {
6251
6251
  * <p>For the full list of DB instance classes, and availability for your engine, see
6252
6252
  * <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html">DB Instance Class</a> in the <i>Amazon RDS User Guide.</i>
6253
6253
  * </p>
6254
- * <p>Valid for: Aurora DB clusters and Multi-AZ DB clusters</p>
6254
+ * <p>Valid for: Multi-AZ DB clusters only</p>
6255
6255
  */
6256
6256
  DBClusterInstanceClass?: string;
6257
6257
  /**
@@ -1044,6 +1044,8 @@ export interface UpgradeTarget {
1044
1044
  SupportsParallelQuery?: boolean;
1045
1045
 
1046
1046
  SupportsGlobalDatabases?: boolean;
1047
+
1048
+ SupportsBabelfish?: boolean;
1047
1049
  }
1048
1050
  export declare namespace UpgradeTarget {
1049
1051
 
@@ -1101,6 +1103,8 @@ export interface DBEngineVersion {
1101
1103
  CreateTime?: Date;
1102
1104
 
1103
1105
  TagList?: Tag[];
1106
+
1107
+ SupportsBabelfish?: boolean;
1104
1108
  }
1105
1109
  export declare namespace DBEngineVersion {
1106
1110
 
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.51.0",
4
+ "version": "3.52.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",
@@ -9,7 +9,7 @@
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
11
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
- "clean": "rimraf ./dist-*"
12
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
13
13
  },
14
14
  "main": "./dist-cjs/index.js",
15
15
  "types": "./dist-types/index.d.ts",
@@ -18,44 +18,44 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.51.0",
22
- "@aws-sdk/config-resolver": "3.51.0",
23
- "@aws-sdk/credential-provider-node": "3.51.0",
24
- "@aws-sdk/fetch-http-handler": "3.50.0",
25
- "@aws-sdk/hash-node": "3.50.0",
26
- "@aws-sdk/invalid-dependency": "3.50.0",
27
- "@aws-sdk/middleware-content-length": "3.50.0",
28
- "@aws-sdk/middleware-host-header": "3.50.0",
29
- "@aws-sdk/middleware-logger": "3.50.0",
30
- "@aws-sdk/middleware-retry": "3.51.0",
31
- "@aws-sdk/middleware-sdk-rds": "3.50.0",
32
- "@aws-sdk/middleware-serde": "3.50.0",
33
- "@aws-sdk/middleware-signing": "3.50.0",
34
- "@aws-sdk/middleware-stack": "3.50.0",
35
- "@aws-sdk/middleware-user-agent": "3.50.0",
36
- "@aws-sdk/node-config-provider": "3.51.0",
37
- "@aws-sdk/node-http-handler": "3.50.0",
38
- "@aws-sdk/protocol-http": "3.50.0",
39
- "@aws-sdk/smithy-client": "3.50.0",
40
- "@aws-sdk/types": "3.50.0",
41
- "@aws-sdk/url-parser": "3.50.0",
42
- "@aws-sdk/util-base64-browser": "3.49.0",
43
- "@aws-sdk/util-base64-node": "3.49.0",
44
- "@aws-sdk/util-body-length-browser": "3.49.0",
45
- "@aws-sdk/util-body-length-node": "3.49.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.50.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.51.0",
48
- "@aws-sdk/util-user-agent-browser": "3.50.0",
49
- "@aws-sdk/util-user-agent-node": "3.51.0",
50
- "@aws-sdk/util-utf8-browser": "3.49.0",
51
- "@aws-sdk/util-utf8-node": "3.49.0",
52
- "@aws-sdk/util-waiter": "3.50.0",
21
+ "@aws-sdk/client-sts": "3.52.0",
22
+ "@aws-sdk/config-resolver": "3.52.0",
23
+ "@aws-sdk/credential-provider-node": "3.52.0",
24
+ "@aws-sdk/fetch-http-handler": "3.52.0",
25
+ "@aws-sdk/hash-node": "3.52.0",
26
+ "@aws-sdk/invalid-dependency": "3.52.0",
27
+ "@aws-sdk/middleware-content-length": "3.52.0",
28
+ "@aws-sdk/middleware-host-header": "3.52.0",
29
+ "@aws-sdk/middleware-logger": "3.52.0",
30
+ "@aws-sdk/middleware-retry": "3.52.0",
31
+ "@aws-sdk/middleware-sdk-rds": "3.52.0",
32
+ "@aws-sdk/middleware-serde": "3.52.0",
33
+ "@aws-sdk/middleware-signing": "3.52.0",
34
+ "@aws-sdk/middleware-stack": "3.52.0",
35
+ "@aws-sdk/middleware-user-agent": "3.52.0",
36
+ "@aws-sdk/node-config-provider": "3.52.0",
37
+ "@aws-sdk/node-http-handler": "3.52.0",
38
+ "@aws-sdk/protocol-http": "3.52.0",
39
+ "@aws-sdk/smithy-client": "3.52.0",
40
+ "@aws-sdk/types": "3.52.0",
41
+ "@aws-sdk/url-parser": "3.52.0",
42
+ "@aws-sdk/util-base64-browser": "3.52.0",
43
+ "@aws-sdk/util-base64-node": "3.52.0",
44
+ "@aws-sdk/util-body-length-browser": "3.52.0",
45
+ "@aws-sdk/util-body-length-node": "3.52.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.52.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.52.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.52.0",
49
+ "@aws-sdk/util-user-agent-node": "3.52.0",
50
+ "@aws-sdk/util-utf8-browser": "3.52.0",
51
+ "@aws-sdk/util-utf8-node": "3.52.0",
52
+ "@aws-sdk/util-waiter": "3.52.0",
53
53
  "entities": "2.2.0",
54
54
  "fast-xml-parser": "3.19.0",
55
55
  "tslib": "^2.3.0"
56
56
  },
57
57
  "devDependencies": {
58
- "@aws-sdk/service-client-documentation-generator": "3.49.0",
58
+ "@aws-sdk/service-client-documentation-generator": "3.52.0",
59
59
  "@tsconfig/recommended": "1.0.1",
60
60
  "@types/node": "^12.7.5",
61
61
  "concurrently": "7.0.0",