aws-sdk-directconnect 1.19.0 → 1.20.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
  SHA1:
3
- metadata.gz: d6454e40357dcdbd04278016fa92675d58ec23c5
4
- data.tar.gz: 73c0749b97a6a2c325fda92f07539e8abc3d62d3
3
+ metadata.gz: 8abbfd11eb606a7238045180b051058d3d266cf3
4
+ data.tar.gz: 86c2aeaa80f358227f9d099a57f3f9376405b9f3
5
5
  SHA512:
6
- metadata.gz: ebc51e32b82a27e295452c3770c3205ddf1ef0cba3f98b752cbd446569e3e062d010e5aec044186c6bd8546ebb805f99828befdf2187a9ae179403e442ca4f8d
7
- data.tar.gz: e059eb8219277b19aa8d3de440d4757443a33c6751c9dbbbfb67df426052c6a6dc2dc867430b8143fc2b0b0be700d5db8bc4328943a0550cf7229fceaffec287
6
+ metadata.gz: 7bbae93ff996300e9c450eef67872db0b583f11b287273606636953b3fb86670f53a880fa70c2ba23ba3f1b8df5cbcb4de3b0aba55319f0d460ce792e8c370b0
7
+ data.tar.gz: 65e511adeb609db6feefe0f5b8b5b4e1cd42e0bcb7a4aef2755df45971468d84338252c71b8d80dade60702ccdcb42e4ab608a47a487caaa2b9a827e198f6254
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-directconnect/customizations'
42
42
  # @service
43
43
  module Aws::DirectConnect
44
44
 
45
- GEM_VERSION = '1.19.0'
45
+ GEM_VERSION = '1.20.0'
46
46
 
47
47
  end
@@ -3632,7 +3632,7 @@ module Aws::DirectConnect
3632
3632
  params: params,
3633
3633
  config: config)
3634
3634
  context[:gem_name] = 'aws-sdk-directconnect'
3635
- context[:gem_version] = '1.19.0'
3635
+ context[:gem_version] = '1.20.0'
3636
3636
  Seahorse::Client::Request.new(handlers, context)
3637
3637
  end
3638
3638
 
@@ -532,6 +532,9 @@ module Aws::DirectConnect
532
532
  DescribeVirtualInterfacesRequest.add_member(:virtual_interface_id, Shapes::ShapeRef.new(shape: VirtualInterfaceId, location_name: "virtualInterfaceId"))
533
533
  DescribeVirtualInterfacesRequest.struct_class = Types::DescribeVirtualInterfacesRequest
534
534
 
535
+ DirectConnectClientException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
536
+ DirectConnectClientException.struct_class = Types::DirectConnectClientException
537
+
535
538
  DirectConnectGateway.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, location_name: "directConnectGatewayId"))
536
539
  DirectConnectGateway.add_member(:direct_connect_gateway_name, Shapes::ShapeRef.new(shape: DirectConnectGatewayName, location_name: "directConnectGatewayName"))
537
540
  DirectConnectGateway.add_member(:amazon_side_asn, Shapes::ShapeRef.new(shape: LongAsn, location_name: "amazonSideAsn"))
@@ -578,6 +581,9 @@ module Aws::DirectConnect
578
581
 
579
582
  DirectConnectGatewayList.member = Shapes::ShapeRef.new(shape: DirectConnectGateway)
580
583
 
584
+ DirectConnectServerException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
585
+ DirectConnectServerException.struct_class = Types::DirectConnectServerException
586
+
581
587
  DisassociateConnectionFromLagRequest.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, required: true, location_name: "connectionId"))
582
588
  DisassociateConnectionFromLagRequest.add_member(:lag_id, Shapes::ShapeRef.new(shape: LagId, required: true, location_name: "lagId"))
583
589
  DisassociateConnectionFromLagRequest.struct_class = Types::DisassociateConnectionFromLagRequest
@@ -10,5 +10,37 @@ module Aws::DirectConnect
10
10
 
11
11
  extend Aws::Errors::DynamicErrors
12
12
 
13
+ class DirectConnectClientException < ServiceError
14
+
15
+ # @param [Seahorse::Client::RequestContext] context
16
+ # @param [String] message
17
+ # @param [Aws::DirectConnect::Types::DirectConnectClientException] data
18
+ def initialize(context, message, data = Aws::EmptyStructure.new)
19
+ super(context, message, data)
20
+ end
21
+
22
+ # @return [String]
23
+ def message
24
+ @message || @data[:message]
25
+ end
26
+
27
+ end
28
+
29
+ class DirectConnectServerException < ServiceError
30
+
31
+ # @param [Seahorse::Client::RequestContext] context
32
+ # @param [String] message
33
+ # @param [Aws::DirectConnect::Types::DirectConnectServerException] data
34
+ def initialize(context, message, data = Aws::EmptyStructure.new)
35
+ super(context, message, data)
36
+ end
37
+
38
+ # @return [String]
39
+ def message
40
+ @message || @data[:message]
41
+ end
42
+
43
+ end
44
+
13
45
  end
14
46
  end
@@ -2075,6 +2075,18 @@ module Aws::DirectConnect
2075
2075
  include Aws::Structure
2076
2076
  end
2077
2077
 
2078
+ # One or more parameters are not valid.
2079
+ #
2080
+ # @!attribute [rw] message
2081
+ # @return [String]
2082
+ #
2083
+ # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DirectConnectClientException AWS API Documentation
2084
+ #
2085
+ class DirectConnectClientException < Struct.new(
2086
+ :message)
2087
+ include Aws::Structure
2088
+ end
2089
+
2078
2090
  # Information about a Direct Connect gateway, which enables you to
2079
2091
  # connect virtual interfaces and virtual private gateway or transit
2080
2092
  # gateways.
@@ -2315,6 +2327,18 @@ module Aws::DirectConnect
2315
2327
  include Aws::Structure
2316
2328
  end
2317
2329
 
2330
+ # A server-side error occurred.
2331
+ #
2332
+ # @!attribute [rw] message
2333
+ # @return [String]
2334
+ #
2335
+ # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DirectConnectServerException AWS API Documentation
2336
+ #
2337
+ class DirectConnectServerException < Struct.new(
2338
+ :message)
2339
+ include Aws::Structure
2340
+ end
2341
+
2318
2342
  # @note When making an API call, you may pass DisassociateConnectionFromLagRequest
2319
2343
  # data as a hash:
2320
2344
  #
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.19.0
4
+ version: 1.20.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: 2019-05-15 00:00:00.000000000 Z
11
+ date: 2019-05-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.52.1
22
+ version: 3.53.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.52.1
32
+ version: 3.53.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement