aws-sdk-directconnect 1.49.0 → 1.53.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: bd8ceb942a0188aa92ab99eb02410082b5407f3ebc1f98bab58f922d436bb786
4
- data.tar.gz: c3cf22521a38936e21baff0447b5c3aa66b7eff34f1aecc2c1cff596be63b331
3
+ metadata.gz: 28239fce9d3570767bdc52f7bf950a6f61cdc7ecb0bb1e59cacf606c2f5ca411
4
+ data.tar.gz: 3eac9a2fd3184089a36f55551eb394877b998c4beb89f9d91d0c98be653b33ad
5
5
  SHA512:
6
- metadata.gz: 849024da9e0a14bbed40bcd6a0a712d653d5301a5dd6410823d62b3b1221b07f948b7163a4b335c74bed024877a9972da2febef1b00316ea186c5add6ff9a87e
7
- data.tar.gz: '0520308063ff05b524cb4ad004cefb2172b8ca22d907f11b5246b4525e6eb1459e53c0fe1f85abd713cbb8e50ea033f3c17ca4b11e3b48fc05e84063b053af3c'
6
+ metadata.gz: 64ef2f6f48e9d7226060fe3edc231386c608c538a97ab3dfef40ddd4fdc5957c21fb20fb6105209c8204d886075b98d4683c09d431c3f0751d2224b6c2aa32ff
7
+ data.tar.gz: 3248f6c0060192f508e32d73e4abfd43fa4fe5290aa6b1eb2af057396f230934c9495257a500fee08f18e9f2f5e8f1b05866564d5a42d57493e1ba81ada3f905
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.52.0 (2021-12-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.51.0 (2021-12-01)
15
+ ------------------
16
+
17
+ * Feature - Adds SiteLink support to private and transit virtual interfaces. SiteLink is a new Direct Connect feature that allows routing between Direct Connect points of presence.
18
+
19
+ 1.50.0 (2021-11-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.49.0 (2021-11-04)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.53.0
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::DirectConnect
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
82
 
@@ -119,7 +123,9 @@ module Aws::DirectConnect
119
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
124
  # are very aggressive. Construct and pass an instance of
121
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
123
129
  #
124
130
  # @option options [required, String] :region
125
131
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +179,10 @@ module Aws::DirectConnect
173
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
180
  # a clock skew correction and retry requests with skewed client clocks.
175
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
176
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
187
  # Set to true to disable SDK automatically adding host prefix
178
188
  # to default service endpoint when available.
@@ -305,7 +315,7 @@ module Aws::DirectConnect
305
315
  # seconds to wait when opening a HTTP session before raising a
306
316
  # `Timeout::Error`.
307
317
  #
308
- # @option options [Integer] :http_read_timeout (60) The default
318
+ # @option options [Float] :http_read_timeout (60) The default
309
319
  # number of seconds to wait for response data. This value can
310
320
  # safely be set per-request on the session.
311
321
  #
@@ -321,6 +331,9 @@ module Aws::DirectConnect
321
331
  # disables this behaviour. This value can safely be set per
322
332
  # request on the session.
323
333
  #
334
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
335
+ # in seconds.
336
+ #
324
337
  # @option options [Boolean] :http_wire_trace (false) When `true`,
325
338
  # HTTP debug output will be sent to the `:logger`.
326
339
  #
@@ -683,6 +696,7 @@ module Aws::DirectConnect
683
696
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
684
697
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
685
698
  # * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
699
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
686
700
  #
687
701
  # @example Request syntax with placeholder values
688
702
  #
@@ -747,6 +761,7 @@ module Aws::DirectConnect
747
761
  # resp.tags #=> Array
748
762
  # resp.tags[0].key #=> String
749
763
  # resp.tags[0].value #=> String
764
+ # resp.site_link_enabled #=> Boolean
750
765
  #
751
766
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocatePrivateVirtualInterface AWS API Documentation
752
767
  #
@@ -812,6 +827,7 @@ module Aws::DirectConnect
812
827
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
813
828
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
814
829
  # * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
830
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
815
831
  #
816
832
  # @example Request syntax with placeholder values
817
833
  #
@@ -880,6 +896,7 @@ module Aws::DirectConnect
880
896
  # resp.tags #=> Array
881
897
  # resp.tags[0].key #=> String
882
898
  # resp.tags[0].value #=> String
899
+ # resp.site_link_enabled #=> Boolean
883
900
  #
884
901
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocatePublicVirtualInterface AWS API Documentation
885
902
  #
@@ -980,6 +997,7 @@ module Aws::DirectConnect
980
997
  # resp.virtual_interface.tags #=> Array
981
998
  # resp.virtual_interface.tags[0].key #=> String
982
999
  # resp.virtual_interface.tags[0].value #=> String
1000
+ # resp.virtual_interface.site_link_enabled #=> Boolean
983
1001
  #
984
1002
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateTransitVirtualInterface AWS API Documentation
985
1003
  #
@@ -1313,6 +1331,7 @@ module Aws::DirectConnect
1313
1331
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
1314
1332
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
1315
1333
  # * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
1334
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
1316
1335
  #
1317
1336
  # @example Request syntax with placeholder values
1318
1337
  #
@@ -1361,6 +1380,7 @@ module Aws::DirectConnect
1361
1380
  # resp.tags #=> Array
1362
1381
  # resp.tags[0].key #=> String
1363
1382
  # resp.tags[0].value #=> String
1383
+ # resp.site_link_enabled #=> Boolean
1364
1384
  #
1365
1385
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateVirtualInterface AWS API Documentation
1366
1386
  #
@@ -1625,6 +1645,7 @@ module Aws::DirectConnect
1625
1645
  # resp.virtual_interface.tags #=> Array
1626
1646
  # resp.virtual_interface.tags[0].key #=> String
1627
1647
  # resp.virtual_interface.tags[0].value #=> String
1648
+ # resp.virtual_interface.site_link_enabled #=> Boolean
1628
1649
  #
1629
1650
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateBGPPeer AWS API Documentation
1630
1651
  #
@@ -2289,6 +2310,7 @@ module Aws::DirectConnect
2289
2310
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
2290
2311
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
2291
2312
  # * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
2313
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
2292
2314
  #
2293
2315
  # @example Request syntax with placeholder values
2294
2316
  #
@@ -2311,6 +2333,7 @@ module Aws::DirectConnect
2311
2333
  # value: "TagValue",
2312
2334
  # },
2313
2335
  # ],
2336
+ # enable_site_link: false,
2314
2337
  # },
2315
2338
  # })
2316
2339
  #
@@ -2354,6 +2377,7 @@ module Aws::DirectConnect
2354
2377
  # resp.tags #=> Array
2355
2378
  # resp.tags[0].key #=> String
2356
2379
  # resp.tags[0].value #=> String
2380
+ # resp.site_link_enabled #=> Boolean
2357
2381
  #
2358
2382
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreatePrivateVirtualInterface AWS API Documentation
2359
2383
  #
@@ -2406,6 +2430,7 @@ module Aws::DirectConnect
2406
2430
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
2407
2431
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
2408
2432
  # * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
2433
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
2409
2434
  #
2410
2435
  # @example Request syntax with placeholder values
2411
2436
  #
@@ -2473,6 +2498,7 @@ module Aws::DirectConnect
2473
2498
  # resp.tags #=> Array
2474
2499
  # resp.tags[0].key #=> String
2475
2500
  # resp.tags[0].value #=> String
2501
+ # resp.site_link_enabled #=> Boolean
2476
2502
  #
2477
2503
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreatePublicVirtualInterface AWS API Documentation
2478
2504
  #
@@ -2534,6 +2560,7 @@ module Aws::DirectConnect
2534
2560
  # value: "TagValue",
2535
2561
  # },
2536
2562
  # ],
2563
+ # enable_site_link: false,
2537
2564
  # },
2538
2565
  # })
2539
2566
  #
@@ -2577,6 +2604,7 @@ module Aws::DirectConnect
2577
2604
  # resp.virtual_interface.tags #=> Array
2578
2605
  # resp.virtual_interface.tags[0].key #=> String
2579
2606
  # resp.virtual_interface.tags[0].value #=> String
2607
+ # resp.virtual_interface.site_link_enabled #=> Boolean
2580
2608
  #
2581
2609
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateTransitVirtualInterface AWS API Documentation
2582
2610
  #
@@ -2658,6 +2686,7 @@ module Aws::DirectConnect
2658
2686
  # resp.virtual_interface.tags #=> Array
2659
2687
  # resp.virtual_interface.tags[0].key #=> String
2660
2688
  # resp.virtual_interface.tags[0].value #=> String
2689
+ # resp.virtual_interface.site_link_enabled #=> Boolean
2661
2690
  #
2662
2691
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteBGPPeer AWS API Documentation
2663
2692
  #
@@ -4008,6 +4037,7 @@ module Aws::DirectConnect
4008
4037
  # resp.virtual_interfaces[0].tags #=> Array
4009
4038
  # resp.virtual_interfaces[0].tags[0].key #=> String
4010
4039
  # resp.virtual_interfaces[0].tags[0].value #=> String
4040
+ # resp.virtual_interfaces[0].site_link_enabled #=> Boolean
4011
4041
  #
4012
4042
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeVirtualInterfaces AWS API Documentation
4013
4043
  #
@@ -4736,6 +4766,12 @@ module Aws::DirectConnect
4736
4766
  # The maximum transmission unit (MTU), in bytes. The supported values
4737
4767
  # are 1500 and 9001. The default value is 1500.
4738
4768
  #
4769
+ # @option params [Boolean] :enable_site_link
4770
+ # Indicates whether to enable or disable SiteLink.
4771
+ #
4772
+ # @option params [String] :virtual_interface_name
4773
+ # The name of the virtual private interface.
4774
+ #
4739
4775
  # @return [Types::VirtualInterface] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4740
4776
  #
4741
4777
  # * {Types::VirtualInterface#owner_account #owner_account} => String
@@ -4763,12 +4799,15 @@ module Aws::DirectConnect
4763
4799
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
4764
4800
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
4765
4801
  # * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
4802
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
4766
4803
  #
4767
4804
  # @example Request syntax with placeholder values
4768
4805
  #
4769
4806
  # resp = client.update_virtual_interface_attributes({
4770
4807
  # virtual_interface_id: "VirtualInterfaceId", # required
4771
4808
  # mtu: 1,
4809
+ # enable_site_link: false,
4810
+ # virtual_interface_name: "VirtualInterfaceName",
4772
4811
  # })
4773
4812
  #
4774
4813
  # @example Response structure
@@ -4811,6 +4850,7 @@ module Aws::DirectConnect
4811
4850
  # resp.tags #=> Array
4812
4851
  # resp.tags[0].key #=> String
4813
4852
  # resp.tags[0].value #=> String
4853
+ # resp.site_link_enabled #=> Boolean
4814
4854
  #
4815
4855
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateVirtualInterfaceAttributes AWS API Documentation
4816
4856
  #
@@ -4834,7 +4874,7 @@ module Aws::DirectConnect
4834
4874
  params: params,
4835
4875
  config: config)
4836
4876
  context[:gem_name] = 'aws-sdk-directconnect'
4837
- context[:gem_version] = '1.49.0'
4877
+ context[:gem_version] = '1.53.0'
4838
4878
  Seahorse::Client::Request.new(handlers, context)
4839
4879
  end
4840
4880
 
@@ -145,6 +145,7 @@ module Aws::DirectConnect
145
145
  DisassociateMacSecKeyRequest = Shapes::StructureShape.new(name: 'DisassociateMacSecKeyRequest')
146
146
  DisassociateMacSecKeyResponse = Shapes::StructureShape.new(name: 'DisassociateMacSecKeyResponse')
147
147
  DuplicateTagKeysException = Shapes::StructureShape.new(name: 'DuplicateTagKeysException')
148
+ EnableSiteLink = Shapes::BooleanShape.new(name: 'EnableSiteLink')
148
149
  EncryptionMode = Shapes::StringShape.new(name: 'EncryptionMode')
149
150
  EndTime = Shapes::TimestampShape.new(name: 'EndTime')
150
151
  ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
@@ -211,6 +212,7 @@ module Aws::DirectConnect
211
212
  RouterType = Shapes::StructureShape.new(name: 'RouterType')
212
213
  RouterTypeIdentifier = Shapes::StringShape.new(name: 'RouterTypeIdentifier')
213
214
  SecretARN = Shapes::StringShape.new(name: 'SecretARN')
215
+ SiteLinkEnabled = Shapes::BooleanShape.new(name: 'SiteLinkEnabled')
214
216
  Software = Shapes::StringShape.new(name: 'Software')
215
217
  StartBgpFailoverTestRequest = Shapes::StructureShape.new(name: 'StartBgpFailoverTestRequest')
216
218
  StartBgpFailoverTestResponse = Shapes::StructureShape.new(name: 'StartBgpFailoverTestResponse')
@@ -815,6 +817,7 @@ module Aws::DirectConnect
815
817
  NewPrivateVirtualInterface.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, location_name: "virtualGatewayId"))
816
818
  NewPrivateVirtualInterface.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, location_name: "directConnectGatewayId"))
817
819
  NewPrivateVirtualInterface.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
820
+ NewPrivateVirtualInterface.add_member(:enable_site_link, Shapes::ShapeRef.new(shape: EnableSiteLink, location_name: "enableSiteLink"))
818
821
  NewPrivateVirtualInterface.struct_class = Types::NewPrivateVirtualInterface
819
822
 
820
823
  NewPrivateVirtualInterfaceAllocation.add_member(:virtual_interface_name, Shapes::ShapeRef.new(shape: VirtualInterfaceName, required: true, location_name: "virtualInterfaceName"))
@@ -860,6 +863,7 @@ module Aws::DirectConnect
860
863
  NewTransitVirtualInterface.add_member(:address_family, Shapes::ShapeRef.new(shape: AddressFamily, location_name: "addressFamily"))
861
864
  NewTransitVirtualInterface.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, location_name: "directConnectGatewayId"))
862
865
  NewTransitVirtualInterface.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
866
+ NewTransitVirtualInterface.add_member(:enable_site_link, Shapes::ShapeRef.new(shape: EnableSiteLink, location_name: "enableSiteLink"))
863
867
  NewTransitVirtualInterface.struct_class = Types::NewTransitVirtualInterface
864
868
 
865
869
  NewTransitVirtualInterfaceAllocation.add_member(:virtual_interface_name, Shapes::ShapeRef.new(shape: VirtualInterfaceName, location_name: "virtualInterfaceName"))
@@ -960,6 +964,8 @@ module Aws::DirectConnect
960
964
 
961
965
  UpdateVirtualInterfaceAttributesRequest.add_member(:virtual_interface_id, Shapes::ShapeRef.new(shape: VirtualInterfaceId, required: true, location_name: "virtualInterfaceId"))
962
966
  UpdateVirtualInterfaceAttributesRequest.add_member(:mtu, Shapes::ShapeRef.new(shape: MTU, location_name: "mtu"))
967
+ UpdateVirtualInterfaceAttributesRequest.add_member(:enable_site_link, Shapes::ShapeRef.new(shape: EnableSiteLink, location_name: "enableSiteLink"))
968
+ UpdateVirtualInterfaceAttributesRequest.add_member(:virtual_interface_name, Shapes::ShapeRef.new(shape: VirtualInterfaceName, location_name: "virtualInterfaceName"))
963
969
  UpdateVirtualInterfaceAttributesRequest.struct_class = Types::UpdateVirtualInterfaceAttributesRequest
964
970
 
965
971
  VirtualGateway.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, location_name: "virtualGatewayId"))
@@ -996,6 +1002,7 @@ module Aws::DirectConnect
996
1002
  VirtualInterface.add_member(:aws_device_v2, Shapes::ShapeRef.new(shape: AwsDeviceV2, location_name: "awsDeviceV2"))
997
1003
  VirtualInterface.add_member(:aws_logical_device_id, Shapes::ShapeRef.new(shape: AwsLogicalDeviceId, location_name: "awsLogicalDeviceId"))
998
1004
  VirtualInterface.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
1005
+ VirtualInterface.add_member(:site_link_enabled, Shapes::ShapeRef.new(shape: SiteLinkEnabled, location_name: "siteLinkEnabled"))
999
1006
  VirtualInterface.struct_class = Types::VirtualInterface
1000
1007
 
1001
1008
  VirtualInterfaceList.member = Shapes::ShapeRef.new(shape: VirtualInterface)
@@ -1526,6 +1526,7 @@ module Aws::DirectConnect
1526
1526
  # value: "TagValue",
1527
1527
  # },
1528
1528
  # ],
1529
+ # enable_site_link: false,
1529
1530
  # },
1530
1531
  # }
1531
1532
  #
@@ -1611,6 +1612,7 @@ module Aws::DirectConnect
1611
1612
  # value: "TagValue",
1612
1613
  # },
1613
1614
  # ],
1615
+ # enable_site_link: false,
1614
1616
  # },
1615
1617
  # }
1616
1618
  #
@@ -2512,7 +2514,7 @@ module Aws::DirectConnect
2512
2514
  # @return [String]
2513
2515
  #
2514
2516
  # @!attribute [rw] virtual_interface_name
2515
- # The name of the virtual interface assigned by the customer network.
2517
+ # Provides the details about a virtual interface's router.
2516
2518
  # @return [String]
2517
2519
  #
2518
2520
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeRouterConfigurationResponse AWS API Documentation
@@ -3474,6 +3476,7 @@ module Aws::DirectConnect
3474
3476
  # value: "TagValue",
3475
3477
  # },
3476
3478
  # ],
3479
+ # enable_site_link: false,
3477
3480
  # }
3478
3481
  #
3479
3482
  # @!attribute [rw] virtual_interface_name
@@ -3528,6 +3531,10 @@ module Aws::DirectConnect
3528
3531
  # The tags associated with the private virtual interface.
3529
3532
  # @return [Array<Types::Tag>]
3530
3533
  #
3534
+ # @!attribute [rw] enable_site_link
3535
+ # Indicates whether to enable or disable SiteLink.
3536
+ # @return [Boolean]
3537
+ #
3531
3538
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/NewPrivateVirtualInterface AWS API Documentation
3532
3539
  #
3533
3540
  class NewPrivateVirtualInterface < Struct.new(
@@ -3541,7 +3548,8 @@ module Aws::DirectConnect
3541
3548
  :address_family,
3542
3549
  :virtual_gateway_id,
3543
3550
  :direct_connect_gateway_id,
3544
- :tags)
3551
+ :tags,
3552
+ :enable_site_link)
3545
3553
  SENSITIVE = []
3546
3554
  include Aws::Structure
3547
3555
  end
@@ -3823,6 +3831,7 @@ module Aws::DirectConnect
3823
3831
  # value: "TagValue",
3824
3832
  # },
3825
3833
  # ],
3834
+ # enable_site_link: false,
3826
3835
  # }
3827
3836
  #
3828
3837
  # @!attribute [rw] virtual_interface_name
@@ -3873,6 +3882,10 @@ module Aws::DirectConnect
3873
3882
  # The tags associated with the transitive virtual interface.
3874
3883
  # @return [Array<Types::Tag>]
3875
3884
  #
3885
+ # @!attribute [rw] enable_site_link
3886
+ # Indicates whether to enable or disable SiteLink.
3887
+ # @return [Boolean]
3888
+ #
3876
3889
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/NewTransitVirtualInterface AWS API Documentation
3877
3890
  #
3878
3891
  class NewTransitVirtualInterface < Struct.new(
@@ -3885,7 +3898,8 @@ module Aws::DirectConnect
3885
3898
  :customer_address,
3886
3899
  :address_family,
3887
3900
  :direct_connect_gateway_id,
3888
- :tags)
3901
+ :tags,
3902
+ :enable_site_link)
3889
3903
  SENSITIVE = []
3890
3904
  include Aws::Structure
3891
3905
  end
@@ -4407,6 +4421,8 @@ module Aws::DirectConnect
4407
4421
  # {
4408
4422
  # virtual_interface_id: "VirtualInterfaceId", # required
4409
4423
  # mtu: 1,
4424
+ # enable_site_link: false,
4425
+ # virtual_interface_name: "VirtualInterfaceName",
4410
4426
  # }
4411
4427
  #
4412
4428
  # @!attribute [rw] virtual_interface_id
@@ -4418,11 +4434,21 @@ module Aws::DirectConnect
4418
4434
  # are 1500 and 9001. The default value is 1500.
4419
4435
  # @return [Integer]
4420
4436
  #
4437
+ # @!attribute [rw] enable_site_link
4438
+ # Indicates whether to enable or disable SiteLink.
4439
+ # @return [Boolean]
4440
+ #
4441
+ # @!attribute [rw] virtual_interface_name
4442
+ # The name of the virtual private interface.
4443
+ # @return [String]
4444
+ #
4421
4445
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateVirtualInterfaceAttributesRequest AWS API Documentation
4422
4446
  #
4423
4447
  class UpdateVirtualInterfaceAttributesRequest < Struct.new(
4424
4448
  :virtual_interface_id,
4425
- :mtu)
4449
+ :mtu,
4450
+ :enable_site_link,
4451
+ :virtual_interface_name)
4426
4452
  SENSITIVE = []
4427
4453
  include Aws::Structure
4428
4454
  end
@@ -4621,6 +4647,10 @@ module Aws::DirectConnect
4621
4647
  # The tags associated with the virtual interface.
4622
4648
  # @return [Array<Types::Tag>]
4623
4649
  #
4650
+ # @!attribute [rw] site_link_enabled
4651
+ # Indicates whether SiteLink is enabled.
4652
+ # @return [Boolean]
4653
+ #
4624
4654
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/VirtualInterface AWS API Documentation
4625
4655
  #
4626
4656
  class VirtualInterface < Struct.new(
@@ -4648,7 +4678,8 @@ module Aws::DirectConnect
4648
4678
  :region,
4649
4679
  :aws_device_v2,
4650
4680
  :aws_logical_device_id,
4651
- :tags)
4681
+ :tags,
4682
+ :site_link_enabled)
4652
4683
  SENSITIVE = []
4653
4684
  include Aws::Structure
4654
4685
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-directconnect/customizations'
48
48
  # @!group service
49
49
  module Aws::DirectConnect
50
50
 
51
- GEM_VERSION = '1.49.0'
51
+ GEM_VERSION = '1.53.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-directconnect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.49.0
4
+ version: 1.53.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: 2021-11-04 00:00:00.000000000 Z
11
+ date: 2022-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.122.0
22
+ version: 3.126.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.122.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement