aws-sdk-directconnect 1.48.0 → 1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 131137d04b5c0ec253cd7b161f50a5c090ee30775478c123eda455bc4542c71f
4
- data.tar.gz: 64d632d5c1729a2fa46ff98aacac356588e6042855a67d2babc398cedbace84b
3
+ metadata.gz: e9933cdfc07b93505a7e5485bc77d191431b591659c50254dc9e8f9666853504
4
+ data.tar.gz: 6899412a70fffd02ccca88cd006164d2a3fea6a04159fa6b63af5096eb5f1c41
5
5
  SHA512:
6
- metadata.gz: 4ae527a7dd1d05c346addb8e15c0fc38979b11e082a27735f3906a90cb0f34076185faf36e04db6c8e8e502afc9980a2def94845de66b4e6b2435b286bcce0f1
7
- data.tar.gz: b6698aae10ec90e56ebbce77183d9c4381fc0526c50bd43be706b88779128b0e265364079a366d7b49fad4846d0fba1b72d53c7edbc695689a959b8142aa0af1
6
+ metadata.gz: 3040038d9497b6df5cd86c6e98cb6198654cfd913f1c84732288c542887d2da3728a6c9a8fc13130dbf4228050e36c863b1daf761ab7ae92f770f7cc82e062d8
7
+ data.tar.gz: 5e2ccaa0429ec1c68ca95e53267ec0e6d35f1f487e4f8d24c28a9557e336239a8a35e0be786dc563fbe6aa3d05d41a38d7d9a6c5e1e50f457711f3487c69342d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.52.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.51.0 (2021-12-01)
10
+ ------------------
11
+
12
+ * 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.
13
+
14
+ 1.50.0 (2021-11-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.49.0 (2021-11-04)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.48.0 (2021-10-20)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.48.0
1
+ 1.52.0
@@ -27,6 +27,7 @@ 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'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::DirectConnect
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
80
 
@@ -119,7 +121,9 @@ module Aws::DirectConnect
119
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
122
  # are very aggressive. Construct and pass an instance of
121
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
123
127
  #
124
128
  # @option options [required, String] :region
125
129
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +177,10 @@ module Aws::DirectConnect
173
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
178
  # a clock skew correction and retry requests with skewed client clocks.
175
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
176
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
185
  # Set to true to disable SDK automatically adding host prefix
178
186
  # to default service endpoint when available.
@@ -285,6 +293,15 @@ module Aws::DirectConnect
285
293
  # ** Please note ** When response stubbing is enabled, no HTTP
286
294
  # requests are made, and retries are disabled.
287
295
  #
296
+ # @option options [Boolean] :use_dualstack_endpoint
297
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
298
+ # will be used if available.
299
+ #
300
+ # @option options [Boolean] :use_fips_endpoint
301
+ # When set to `true`, fips compatible endpoints will be used if available.
302
+ # When a `fips` region is used, the region is normalized and this config
303
+ # is set to `true`.
304
+ #
288
305
  # @option options [Boolean] :validate_params (true)
289
306
  # When `true`, request parameters are validated before
290
307
  # sending the request.
@@ -296,7 +313,7 @@ module Aws::DirectConnect
296
313
  # seconds to wait when opening a HTTP session before raising a
297
314
  # `Timeout::Error`.
298
315
  #
299
- # @option options [Integer] :http_read_timeout (60) The default
316
+ # @option options [Float] :http_read_timeout (60) The default
300
317
  # number of seconds to wait for response data. This value can
301
318
  # safely be set per-request on the session.
302
319
  #
@@ -312,6 +329,9 @@ module Aws::DirectConnect
312
329
  # disables this behaviour. This value can safely be set per
313
330
  # request on the session.
314
331
  #
332
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
333
+ # in seconds.
334
+ #
315
335
  # @option options [Boolean] :http_wire_trace (false) When `true`,
316
336
  # HTTP debug output will be sent to the `:logger`.
317
337
  #
@@ -674,6 +694,7 @@ module Aws::DirectConnect
674
694
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
675
695
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
676
696
  # * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
697
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
677
698
  #
678
699
  # @example Request syntax with placeholder values
679
700
  #
@@ -738,6 +759,7 @@ module Aws::DirectConnect
738
759
  # resp.tags #=> Array
739
760
  # resp.tags[0].key #=> String
740
761
  # resp.tags[0].value #=> String
762
+ # resp.site_link_enabled #=> Boolean
741
763
  #
742
764
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocatePrivateVirtualInterface AWS API Documentation
743
765
  #
@@ -803,6 +825,7 @@ module Aws::DirectConnect
803
825
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
804
826
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
805
827
  # * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
828
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
806
829
  #
807
830
  # @example Request syntax with placeholder values
808
831
  #
@@ -871,6 +894,7 @@ module Aws::DirectConnect
871
894
  # resp.tags #=> Array
872
895
  # resp.tags[0].key #=> String
873
896
  # resp.tags[0].value #=> String
897
+ # resp.site_link_enabled #=> Boolean
874
898
  #
875
899
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocatePublicVirtualInterface AWS API Documentation
876
900
  #
@@ -971,6 +995,7 @@ module Aws::DirectConnect
971
995
  # resp.virtual_interface.tags #=> Array
972
996
  # resp.virtual_interface.tags[0].key #=> String
973
997
  # resp.virtual_interface.tags[0].value #=> String
998
+ # resp.virtual_interface.site_link_enabled #=> Boolean
974
999
  #
975
1000
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateTransitVirtualInterface AWS API Documentation
976
1001
  #
@@ -1304,6 +1329,7 @@ module Aws::DirectConnect
1304
1329
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
1305
1330
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
1306
1331
  # * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
1332
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
1307
1333
  #
1308
1334
  # @example Request syntax with placeholder values
1309
1335
  #
@@ -1352,6 +1378,7 @@ module Aws::DirectConnect
1352
1378
  # resp.tags #=> Array
1353
1379
  # resp.tags[0].key #=> String
1354
1380
  # resp.tags[0].value #=> String
1381
+ # resp.site_link_enabled #=> Boolean
1355
1382
  #
1356
1383
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateVirtualInterface AWS API Documentation
1357
1384
  #
@@ -1616,6 +1643,7 @@ module Aws::DirectConnect
1616
1643
  # resp.virtual_interface.tags #=> Array
1617
1644
  # resp.virtual_interface.tags[0].key #=> String
1618
1645
  # resp.virtual_interface.tags[0].value #=> String
1646
+ # resp.virtual_interface.site_link_enabled #=> Boolean
1619
1647
  #
1620
1648
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateBGPPeer AWS API Documentation
1621
1649
  #
@@ -2280,6 +2308,7 @@ module Aws::DirectConnect
2280
2308
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
2281
2309
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
2282
2310
  # * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
2311
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
2283
2312
  #
2284
2313
  # @example Request syntax with placeholder values
2285
2314
  #
@@ -2302,6 +2331,7 @@ module Aws::DirectConnect
2302
2331
  # value: "TagValue",
2303
2332
  # },
2304
2333
  # ],
2334
+ # enable_site_link: false,
2305
2335
  # },
2306
2336
  # })
2307
2337
  #
@@ -2345,6 +2375,7 @@ module Aws::DirectConnect
2345
2375
  # resp.tags #=> Array
2346
2376
  # resp.tags[0].key #=> String
2347
2377
  # resp.tags[0].value #=> String
2378
+ # resp.site_link_enabled #=> Boolean
2348
2379
  #
2349
2380
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreatePrivateVirtualInterface AWS API Documentation
2350
2381
  #
@@ -2397,6 +2428,7 @@ module Aws::DirectConnect
2397
2428
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
2398
2429
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
2399
2430
  # * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
2431
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
2400
2432
  #
2401
2433
  # @example Request syntax with placeholder values
2402
2434
  #
@@ -2464,6 +2496,7 @@ module Aws::DirectConnect
2464
2496
  # resp.tags #=> Array
2465
2497
  # resp.tags[0].key #=> String
2466
2498
  # resp.tags[0].value #=> String
2499
+ # resp.site_link_enabled #=> Boolean
2467
2500
  #
2468
2501
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreatePublicVirtualInterface AWS API Documentation
2469
2502
  #
@@ -2525,6 +2558,7 @@ module Aws::DirectConnect
2525
2558
  # value: "TagValue",
2526
2559
  # },
2527
2560
  # ],
2561
+ # enable_site_link: false,
2528
2562
  # },
2529
2563
  # })
2530
2564
  #
@@ -2568,6 +2602,7 @@ module Aws::DirectConnect
2568
2602
  # resp.virtual_interface.tags #=> Array
2569
2603
  # resp.virtual_interface.tags[0].key #=> String
2570
2604
  # resp.virtual_interface.tags[0].value #=> String
2605
+ # resp.virtual_interface.site_link_enabled #=> Boolean
2571
2606
  #
2572
2607
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateTransitVirtualInterface AWS API Documentation
2573
2608
  #
@@ -2649,6 +2684,7 @@ module Aws::DirectConnect
2649
2684
  # resp.virtual_interface.tags #=> Array
2650
2685
  # resp.virtual_interface.tags[0].key #=> String
2651
2686
  # resp.virtual_interface.tags[0].value #=> String
2687
+ # resp.virtual_interface.site_link_enabled #=> Boolean
2652
2688
  #
2653
2689
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteBGPPeer AWS API Documentation
2654
2690
  #
@@ -3999,6 +4035,7 @@ module Aws::DirectConnect
3999
4035
  # resp.virtual_interfaces[0].tags #=> Array
4000
4036
  # resp.virtual_interfaces[0].tags[0].key #=> String
4001
4037
  # resp.virtual_interfaces[0].tags[0].value #=> String
4038
+ # resp.virtual_interfaces[0].site_link_enabled #=> Boolean
4002
4039
  #
4003
4040
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeVirtualInterfaces AWS API Documentation
4004
4041
  #
@@ -4727,6 +4764,12 @@ module Aws::DirectConnect
4727
4764
  # The maximum transmission unit (MTU), in bytes. The supported values
4728
4765
  # are 1500 and 9001. The default value is 1500.
4729
4766
  #
4767
+ # @option params [Boolean] :enable_site_link
4768
+ # Indicates whether to enable or disable SiteLink.
4769
+ #
4770
+ # @option params [String] :virtual_interface_name
4771
+ # The name of the virtual private interface.
4772
+ #
4730
4773
  # @return [Types::VirtualInterface] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4731
4774
  #
4732
4775
  # * {Types::VirtualInterface#owner_account #owner_account} => String
@@ -4754,12 +4797,15 @@ module Aws::DirectConnect
4754
4797
  # * {Types::VirtualInterface#aws_device_v2 #aws_device_v2} => String
4755
4798
  # * {Types::VirtualInterface#aws_logical_device_id #aws_logical_device_id} => String
4756
4799
  # * {Types::VirtualInterface#tags #tags} => Array<Types::Tag>
4800
+ # * {Types::VirtualInterface#site_link_enabled #site_link_enabled} => Boolean
4757
4801
  #
4758
4802
  # @example Request syntax with placeholder values
4759
4803
  #
4760
4804
  # resp = client.update_virtual_interface_attributes({
4761
4805
  # virtual_interface_id: "VirtualInterfaceId", # required
4762
4806
  # mtu: 1,
4807
+ # enable_site_link: false,
4808
+ # virtual_interface_name: "VirtualInterfaceName",
4763
4809
  # })
4764
4810
  #
4765
4811
  # @example Response structure
@@ -4802,6 +4848,7 @@ module Aws::DirectConnect
4802
4848
  # resp.tags #=> Array
4803
4849
  # resp.tags[0].key #=> String
4804
4850
  # resp.tags[0].value #=> String
4851
+ # resp.site_link_enabled #=> Boolean
4805
4852
  #
4806
4853
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateVirtualInterfaceAttributes AWS API Documentation
4807
4854
  #
@@ -4825,7 +4872,7 @@ module Aws::DirectConnect
4825
4872
  params: params,
4826
4873
  config: config)
4827
4874
  context[:gem_name] = 'aws-sdk-directconnect'
4828
- context[:gem_version] = '1.48.0'
4875
+ context[:gem_version] = '1.52.0'
4829
4876
  Seahorse::Client::Request.new(handlers, context)
4830
4877
  end
4831
4878
 
@@ -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.48.0'
51
+ GEM_VERSION = '1.52.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.48.0
4
+ version: 1.52.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-10-20 00:00:00.000000000 Z
11
+ date: 2021-12-21 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.121.2
22
+ version: 3.125.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.121.2
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement