aws-sdk-networkmanager 1.37.0 → 1.38.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7513e470ab1f3453e9efbf1b8d319f74d5ae2b3a63e364add29aff61c3b67e84
4
- data.tar.gz: 9e0038c3d37b33279bc15d52014a2fa17220d36feb763fe4cba4b8945f88f902
3
+ metadata.gz: d6e25ccaf5c63dfa520a4638eba2f523e4d0af63e0fd7c5dcd6c57294580582b
4
+ data.tar.gz: 4da08d0e4119f034abead64e21b0377fc1e97ca0296f09fcd0c3ad1797ef218e
5
5
  SHA512:
6
- metadata.gz: 0c7986550a8776c6091d699e7f4d4a00169af3af872660f159ff4fb791ee17da0dae29b7f5e1595e0c027c456f46bb7b32107cdb77736e44c15f2d70e4cf1886
7
- data.tar.gz: 212984b9dff12aa8033266eb6e29b8c6cd9c86885e64d60ba11c8231ebda8a64fe1ff1c6a8570cc85b367d82a5a764047a85024dfd60f80e37dbbdcca2352ef1
6
+ metadata.gz: c6026589f53df298755fe9dd148e76c2e1546227ffba20e529d5267277a777660d30aa23cbfbaf6c6f35bbde75942675cf7ceabba0f7a1da001730f58f6bf093
7
+ data.tar.gz: d186ac46147a352c5d84f578d8de12995b995ec6691709ccb8292d3b3f5e96a533f636365b9d43f629649b4fc757c6a2d58aac6cc9990590aed70c037a67e4d2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.38.0 (2023-10-23)
5
+ ------------------
6
+
7
+ * Feature - This release adds API support for Tunnel-less Connect (NoEncap Protocol) for AWS Cloud WAN
8
+
4
9
  1.37.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.37.0
1
+ 1.38.0
@@ -683,7 +683,7 @@ module Aws::NetworkManager
683
683
  # edge_location: "ExternalRegionCode", # required
684
684
  # transport_attachment_id: "AttachmentId", # required
685
685
  # options: { # required
686
- # protocol: "GRE", # accepts GRE
686
+ # protocol: "GRE", # accepts GRE, NO_ENCAP
687
687
  # },
688
688
  # tags: [
689
689
  # {
@@ -717,7 +717,7 @@ module Aws::NetworkManager
717
717
  # resp.connect_attachment.attachment.created_at #=> Time
718
718
  # resp.connect_attachment.attachment.updated_at #=> Time
719
719
  # resp.connect_attachment.transport_attachment_id #=> String
720
- # resp.connect_attachment.options.protocol #=> String, one of "GRE"
720
+ # resp.connect_attachment.options.protocol #=> String, one of "GRE", "NO_ENCAP"
721
721
  #
722
722
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateConnectAttachment AWS API Documentation
723
723
  #
@@ -745,7 +745,7 @@ module Aws::NetworkManager
745
745
  # @option params [Types::BgpOptions] :bgp_options
746
746
  # The Connect peer BGP options.
747
747
  #
748
- # @option params [required, Array<String>] :inside_cidr_blocks
748
+ # @option params [Array<String>] :inside_cidr_blocks
749
749
  # The inside IP addresses used for BGP peering.
750
750
  #
751
751
  # @option params [Array<Types::Tag>] :tags
@@ -757,6 +757,9 @@ module Aws::NetworkManager
757
757
  # **A suitable default value is auto-generated.** You should normally
758
758
  # not need to pass this option.**
759
759
  #
760
+ # @option params [String] :subnet_arn
761
+ # The subnet ARN for the Connect peer.
762
+ #
760
763
  # @return [Types::CreateConnectPeerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
761
764
  #
762
765
  # * {Types::CreateConnectPeerResponse#connect_peer #connect_peer} => Types::ConnectPeer
@@ -770,7 +773,7 @@ module Aws::NetworkManager
770
773
  # bgp_options: {
771
774
  # peer_asn: 1,
772
775
  # },
773
- # inside_cidr_blocks: ["ConstrainedString"], # required
776
+ # inside_cidr_blocks: ["ConstrainedString"],
774
777
  # tags: [
775
778
  # {
776
779
  # key: "TagKey",
@@ -778,6 +781,7 @@ module Aws::NetworkManager
778
781
  # },
779
782
  # ],
780
783
  # client_token: "ClientToken",
784
+ # subnet_arn: "SubnetArn",
781
785
  # })
782
786
  #
783
787
  # @example Response structure
@@ -792,7 +796,7 @@ module Aws::NetworkManager
792
796
  # resp.connect_peer.configuration.peer_address #=> String
793
797
  # resp.connect_peer.configuration.inside_cidr_blocks #=> Array
794
798
  # resp.connect_peer.configuration.inside_cidr_blocks[0] #=> String
795
- # resp.connect_peer.configuration.protocol #=> String, one of "GRE"
799
+ # resp.connect_peer.configuration.protocol #=> String, one of "GRE", "NO_ENCAP"
796
800
  # resp.connect_peer.configuration.bgp_configurations #=> Array
797
801
  # resp.connect_peer.configuration.bgp_configurations[0].core_network_asn #=> Integer
798
802
  # resp.connect_peer.configuration.bgp_configurations[0].peer_asn #=> Integer
@@ -801,6 +805,7 @@ module Aws::NetworkManager
801
805
  # resp.connect_peer.tags #=> Array
802
806
  # resp.connect_peer.tags[0].key #=> String
803
807
  # resp.connect_peer.tags[0].value #=> String
808
+ # resp.connect_peer.subnet_arn #=> String
804
809
  #
805
810
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateConnectPeer AWS API Documentation
806
811
  #
@@ -1617,7 +1622,7 @@ module Aws::NetworkManager
1617
1622
  # resp.connect_peer.configuration.peer_address #=> String
1618
1623
  # resp.connect_peer.configuration.inside_cidr_blocks #=> Array
1619
1624
  # resp.connect_peer.configuration.inside_cidr_blocks[0] #=> String
1620
- # resp.connect_peer.configuration.protocol #=> String, one of "GRE"
1625
+ # resp.connect_peer.configuration.protocol #=> String, one of "GRE", "NO_ENCAP"
1621
1626
  # resp.connect_peer.configuration.bgp_configurations #=> Array
1622
1627
  # resp.connect_peer.configuration.bgp_configurations[0].core_network_asn #=> Integer
1623
1628
  # resp.connect_peer.configuration.bgp_configurations[0].peer_asn #=> Integer
@@ -1626,6 +1631,7 @@ module Aws::NetworkManager
1626
1631
  # resp.connect_peer.tags #=> Array
1627
1632
  # resp.connect_peer.tags[0].key #=> String
1628
1633
  # resp.connect_peer.tags[0].value #=> String
1634
+ # resp.connect_peer.subnet_arn #=> String
1629
1635
  #
1630
1636
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeleteConnectPeer AWS API Documentation
1631
1637
  #
@@ -2313,7 +2319,7 @@ module Aws::NetworkManager
2313
2319
  # resp.connect_attachment.attachment.created_at #=> Time
2314
2320
  # resp.connect_attachment.attachment.updated_at #=> Time
2315
2321
  # resp.connect_attachment.transport_attachment_id #=> String
2316
- # resp.connect_attachment.options.protocol #=> String, one of "GRE"
2322
+ # resp.connect_attachment.options.protocol #=> String, one of "GRE", "NO_ENCAP"
2317
2323
  #
2318
2324
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetConnectAttachment AWS API Documentation
2319
2325
  #
@@ -2351,7 +2357,7 @@ module Aws::NetworkManager
2351
2357
  # resp.connect_peer.configuration.peer_address #=> String
2352
2358
  # resp.connect_peer.configuration.inside_cidr_blocks #=> Array
2353
2359
  # resp.connect_peer.configuration.inside_cidr_blocks[0] #=> String
2354
- # resp.connect_peer.configuration.protocol #=> String, one of "GRE"
2360
+ # resp.connect_peer.configuration.protocol #=> String, one of "GRE", "NO_ENCAP"
2355
2361
  # resp.connect_peer.configuration.bgp_configurations #=> Array
2356
2362
  # resp.connect_peer.configuration.bgp_configurations[0].core_network_asn #=> Integer
2357
2363
  # resp.connect_peer.configuration.bgp_configurations[0].peer_asn #=> Integer
@@ -2360,6 +2366,7 @@ module Aws::NetworkManager
2360
2366
  # resp.connect_peer.tags #=> Array
2361
2367
  # resp.connect_peer.tags[0].key #=> String
2362
2368
  # resp.connect_peer.tags[0].value #=> String
2369
+ # resp.connect_peer.subnet_arn #=> String
2363
2370
  #
2364
2371
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetConnectPeer AWS API Documentation
2365
2372
  #
@@ -4016,6 +4023,7 @@ module Aws::NetworkManager
4016
4023
  # resp.connect_peers[0].tags #=> Array
4017
4024
  # resp.connect_peers[0].tags[0].key #=> String
4018
4025
  # resp.connect_peers[0].tags[0].value #=> String
4026
+ # resp.connect_peers[0].subnet_arn #=> String
4019
4027
  # resp.next_token #=> String
4020
4028
  #
4021
4029
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListConnectPeers AWS API Documentation
@@ -5175,7 +5183,7 @@ module Aws::NetworkManager
5175
5183
  params: params,
5176
5184
  config: config)
5177
5185
  context[:gem_name] = 'aws-sdk-networkmanager'
5178
- context[:gem_version] = '1.37.0'
5186
+ context[:gem_version] = '1.38.0'
5179
5187
  Seahorse::Client::Request.new(handlers, context)
5180
5188
  end
5181
5189
 
@@ -488,6 +488,7 @@ module Aws::NetworkManager
488
488
  ConnectPeer.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTime, location_name: "CreatedAt"))
489
489
  ConnectPeer.add_member(:configuration, Shapes::ShapeRef.new(shape: ConnectPeerConfiguration, location_name: "Configuration"))
490
490
  ConnectPeer.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
491
+ ConnectPeer.add_member(:subnet_arn, Shapes::ShapeRef.new(shape: SubnetArn, location_name: "SubnetArn"))
491
492
  ConnectPeer.struct_class = Types::ConnectPeer
492
493
 
493
494
  ConnectPeerAssociation.add_member(:connect_peer_id, Shapes::ShapeRef.new(shape: ConnectPeerId, location_name: "ConnectPeerId"))
@@ -523,6 +524,7 @@ module Aws::NetworkManager
523
524
  ConnectPeerSummary.add_member(:connect_peer_state, Shapes::ShapeRef.new(shape: ConnectPeerState, location_name: "ConnectPeerState"))
524
525
  ConnectPeerSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: DateTime, location_name: "CreatedAt"))
525
526
  ConnectPeerSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
527
+ ConnectPeerSummary.add_member(:subnet_arn, Shapes::ShapeRef.new(shape: SubnetArn, location_name: "SubnetArn"))
526
528
  ConnectPeerSummary.struct_class = Types::ConnectPeerSummary
527
529
 
528
530
  ConnectPeerSummaryList.member = Shapes::ShapeRef.new(shape: ConnectPeerSummary)
@@ -673,9 +675,10 @@ module Aws::NetworkManager
673
675
  CreateConnectPeerRequest.add_member(:core_network_address, Shapes::ShapeRef.new(shape: IPAddress, location_name: "CoreNetworkAddress"))
674
676
  CreateConnectPeerRequest.add_member(:peer_address, Shapes::ShapeRef.new(shape: IPAddress, required: true, location_name: "PeerAddress"))
675
677
  CreateConnectPeerRequest.add_member(:bgp_options, Shapes::ShapeRef.new(shape: BgpOptions, location_name: "BgpOptions"))
676
- CreateConnectPeerRequest.add_member(:inside_cidr_blocks, Shapes::ShapeRef.new(shape: ConstrainedStringList, required: true, location_name: "InsideCidrBlocks"))
678
+ CreateConnectPeerRequest.add_member(:inside_cidr_blocks, Shapes::ShapeRef.new(shape: ConstrainedStringList, location_name: "InsideCidrBlocks"))
677
679
  CreateConnectPeerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
678
680
  CreateConnectPeerRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
681
+ CreateConnectPeerRequest.add_member(:subnet_arn, Shapes::ShapeRef.new(shape: SubnetArn, location_name: "SubnetArn"))
679
682
  CreateConnectPeerRequest.struct_class = Types::CreateConnectPeerRequest
680
683
 
681
684
  CreateConnectPeerResponse.add_member(:connect_peer, Shapes::ShapeRef.new(shape: ConnectPeer, location_name: "ConnectPeer"))
@@ -38,7 +38,7 @@ module Aws::NetworkManager
38
38
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
39
39
  end
40
40
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
41
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
41
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
42
42
  return Aws::Endpoints::Endpoint.new(url: "https://networkmanager-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
43
43
  end
44
44
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -447,6 +447,10 @@ module Aws::NetworkManager
447
447
  # The list of key-value tags associated with the Connect peer.
448
448
  # @return [Array<Types::Tag>]
449
449
  #
450
+ # @!attribute [rw] subnet_arn
451
+ # The subnet ARN for the Connect peer.
452
+ # @return [String]
453
+ #
450
454
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectPeer AWS API Documentation
451
455
  #
452
456
  class ConnectPeer < Struct.new(
@@ -457,7 +461,8 @@ module Aws::NetworkManager
457
461
  :state,
458
462
  :created_at,
459
463
  :configuration,
460
- :tags)
464
+ :tags,
465
+ :subnet_arn)
461
466
  SENSITIVE = []
462
467
  include Aws::Structure
463
468
  end
@@ -589,6 +594,10 @@ module Aws::NetworkManager
589
594
  # The list of key-value tags associated with the Connect peer summary.
590
595
  # @return [Array<Types::Tag>]
591
596
  #
597
+ # @!attribute [rw] subnet_arn
598
+ # The subnet ARN for the Connect peer summary.
599
+ # @return [String]
600
+ #
592
601
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectPeerSummary AWS API Documentation
593
602
  #
594
603
  class ConnectPeerSummary < Struct.new(
@@ -598,7 +607,8 @@ module Aws::NetworkManager
598
607
  :edge_location,
599
608
  :connect_peer_state,
600
609
  :created_at,
601
- :tags)
610
+ :tags,
611
+ :subnet_arn)
602
612
  SENSITIVE = []
603
613
  include Aws::Structure
604
614
  end
@@ -1235,6 +1245,10 @@ module Aws::NetworkManager
1235
1245
  # not need to pass this option.
1236
1246
  # @return [String]
1237
1247
  #
1248
+ # @!attribute [rw] subnet_arn
1249
+ # The subnet ARN for the Connect peer.
1250
+ # @return [String]
1251
+ #
1238
1252
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateConnectPeerRequest AWS API Documentation
1239
1253
  #
1240
1254
  class CreateConnectPeerRequest < Struct.new(
@@ -1244,7 +1258,8 @@ module Aws::NetworkManager
1244
1258
  :bgp_options,
1245
1259
  :inside_cidr_blocks,
1246
1260
  :tags,
1247
- :client_token)
1261
+ :client_token,
1262
+ :subnet_arn)
1248
1263
  SENSITIVE = []
1249
1264
  include Aws::Structure
1250
1265
  end
@@ -4901,7 +4916,9 @@ module Aws::NetworkManager
4901
4916
  # Describes a route table.
4902
4917
  #
4903
4918
  # @!attribute [rw] transit_gateway_route_table_arn
4904
- # The ARN of the transit gateway route table.
4919
+ # The ARN of the transit gateway route table for the attachment
4920
+ # request. For example, `"TransitGatewayRouteTableArn":
4921
+ # "arn:aws:ec2:us-west-2:123456789012:transit-gateway-route-table/tgw-rtb-9876543210123456"`.
4905
4922
  # @return [String]
4906
4923
  #
4907
4924
  # @!attribute [rw] core_network_segment_edge
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-networkmanager/customizations'
52
52
  # @!group service
53
53
  module Aws::NetworkManager
54
54
 
55
- GEM_VERSION = '1.37.0'
55
+ GEM_VERSION = '1.38.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-networkmanager
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.37.0
4
+ version: 1.38.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2023-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core