@aws-sdk/client-networkmanager 3.150.0 → 3.153.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.153.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.152.0...v3.153.0) (2022-08-18)
7
+
8
+
9
+ ### Features
10
+
11
+ * **client-networkmanager:** Add TransitGatewayPeeringAttachmentId property to TransitGatewayPeering Model ([098d7ca](https://github.com/aws/aws-sdk-js-v3/commit/098d7ca4a41fbf03da3f7c5206837c27ccb00fc4))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.150.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.149.0...v3.150.0) (2022-08-15)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-networkmanager
@@ -7274,6 +7274,7 @@ const deserializeAws_restJson1TransitGatewayPeering = (output, context) => {
7274
7274
  return {
7275
7275
  Peering: output.Peering != null ? deserializeAws_restJson1Peering(output.Peering, context) : undefined,
7276
7276
  TransitGatewayArn: (0, smithy_client_1.expectString)(output.TransitGatewayArn),
7277
+ TransitGatewayPeeringAttachmentId: (0, smithy_client_1.expectString)(output.TransitGatewayPeeringAttachmentId),
7277
7278
  };
7278
7279
  };
7279
7280
  const deserializeAws_restJson1TransitGatewayRegistration = (output, context) => {
@@ -9762,6 +9762,7 @@ var deserializeAws_restJson1TransitGatewayPeering = function (output, context) {
9762
9762
  return {
9763
9763
  Peering: output.Peering != null ? deserializeAws_restJson1Peering(output.Peering, context) : undefined,
9764
9764
  TransitGatewayArn: __expectString(output.TransitGatewayArn),
9765
+ TransitGatewayPeeringAttachmentId: __expectString(output.TransitGatewayPeeringAttachmentId),
9765
9766
  };
9766
9767
  };
9767
9768
  var deserializeAws_restJson1TransitGatewayRegistration = function (output, context) {
@@ -1767,6 +1767,10 @@ export interface TransitGatewayPeering {
1767
1767
  * <p>The ARN of the transit gateway.</p>
1768
1768
  */
1769
1769
  TransitGatewayArn?: string;
1770
+ /**
1771
+ * <p>The ID of the transit gateway peering attachment.</p>
1772
+ */
1773
+ TransitGatewayPeeringAttachmentId?: string;
1770
1774
  }
1771
1775
  export interface CreateTransitGatewayPeeringResponse {
1772
1776
  /**
@@ -1005,6 +1005,8 @@ export interface TransitGatewayPeering {
1005
1005
  Peering?: Peering;
1006
1006
 
1007
1007
  TransitGatewayArn?: string;
1008
+
1009
+ TransitGatewayPeeringAttachmentId?: string;
1008
1010
  }
1009
1011
  export interface CreateTransitGatewayPeeringResponse {
1010
1012
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-networkmanager",
3
3
  "description": "AWS SDK for JavaScript Networkmanager Client for Node.js, Browser and React Native",
4
- "version": "3.150.0",
4
+ "version": "3.153.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",