aws-sdk-appmesh 1.8.0 → 1.9.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: 665bb0c853ca77c580a15a330674e2c844964bf3
4
- data.tar.gz: 39d2df9e55e7d98090a3b2a3d7e0f7321547027c
3
+ metadata.gz: 49dcc9697d75ce71f6086328b74607f79ca3e47a
4
+ data.tar.gz: 7a4915d5345b2855c6224ab0603d793beb69c1e8
5
5
  SHA512:
6
- metadata.gz: b3522b3ca3bc7750eb7f13d4fb0be1c2d0c2ed12b2d66f076416a649de52b1538411099c522ea1e52d15f5d2080fb3659ae837aca487c126569e98e2ed9249c6
7
- data.tar.gz: 1d57964cc9d62d8adcdddc29b13b0e0e1a6aadb7e0b6d829d83d641355839bf18b03ad0ee33920b5e1acdccc15d7146b2a3445961ea6524d4f04e51ad4ce0d79
6
+ metadata.gz: 5cbe2d06097cace449a6a233f62073e46fee642aa783e5750ce9f9289f859cd2d1c80f5736df6fe0216ec46c67b4381fdfcd5c293f03ee2a0283f87707fcd7b7
7
+ data.tar.gz: d52498101dcb90c311e150798eb3371fb5604852cba5afa0ed6a36374a0bd2c61905dca3137c43eea839743c8410620c507fd3ece836fbecd88e69a2d9aadaab
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-appmesh/customizations'
42
42
  # @service
43
43
  module Aws::AppMesh
44
44
 
45
- GEM_VERSION = '1.8.0'
45
+ GEM_VERSION = '1.9.0'
46
46
 
47
47
  end
@@ -1954,7 +1954,7 @@ module Aws::AppMesh
1954
1954
  params: params,
1955
1955
  config: config)
1956
1956
  context[:gem_name] = 'aws-sdk-appmesh'
1957
- context[:gem_version] = '1.8.0'
1957
+ context[:gem_version] = '1.9.0'
1958
1958
  Seahorse::Client::Request.new(handlers, context)
1959
1959
  end
1960
1960
 
@@ -168,6 +168,12 @@ module Aws::AppMesh
168
168
 
169
169
  Backends.member = Shapes::ShapeRef.new(shape: Backend)
170
170
 
171
+ BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
172
+ BadRequestException.struct_class = Types::BadRequestException
173
+
174
+ ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
175
+ ConflictException.struct_class = Types::ConflictException
176
+
171
177
  CreateMeshInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
172
178
  CreateMeshInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
173
179
  CreateMeshInput.add_member(:spec, Shapes::ShapeRef.new(shape: MeshSpec, location_name: "spec"))
@@ -327,6 +333,9 @@ module Aws::AppMesh
327
333
  FileAccessLog.add_member(:path, Shapes::ShapeRef.new(shape: FilePath, required: true, location_name: "path"))
328
334
  FileAccessLog.struct_class = Types::FileAccessLog
329
335
 
336
+ ForbiddenException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
337
+ ForbiddenException.struct_class = Types::ForbiddenException
338
+
330
339
  HealthCheckPolicy.add_member(:healthy_threshold, Shapes::ShapeRef.new(shape: HealthCheckThreshold, required: true, location_name: "healthyThreshold"))
331
340
  HealthCheckPolicy.add_member(:interval_millis, Shapes::ShapeRef.new(shape: HealthCheckIntervalMillis, required: true, location_name: "intervalMillis"))
332
341
  HealthCheckPolicy.add_member(:path, Shapes::ShapeRef.new(shape: String, location_name: "path"))
@@ -346,6 +355,12 @@ module Aws::AppMesh
346
355
  HttpRouteMatch.add_member(:prefix, Shapes::ShapeRef.new(shape: String, required: true, location_name: "prefix"))
347
356
  HttpRouteMatch.struct_class = Types::HttpRouteMatch
348
357
 
358
+ InternalServerErrorException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
359
+ InternalServerErrorException.struct_class = Types::InternalServerErrorException
360
+
361
+ LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
362
+ LimitExceededException.struct_class = Types::LimitExceededException
363
+
349
364
  ListMeshesInput.add_member(:limit, Shapes::ShapeRef.new(shape: ListMeshesLimit, location: "querystring", location_name: "limit"))
350
365
  ListMeshesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
351
366
  ListMeshesInput.struct_class = Types::ListMeshesInput
@@ -427,10 +442,16 @@ module Aws::AppMesh
427
442
  MeshStatus.add_member(:status, Shapes::ShapeRef.new(shape: MeshStatusCode, location_name: "status"))
428
443
  MeshStatus.struct_class = Types::MeshStatus
429
444
 
445
+ NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
446
+ NotFoundException.struct_class = Types::NotFoundException
447
+
430
448
  PortMapping.add_member(:port, Shapes::ShapeRef.new(shape: PortNumber, required: true, location_name: "port"))
431
449
  PortMapping.add_member(:protocol, Shapes::ShapeRef.new(shape: PortProtocol, required: true, location_name: "protocol"))
432
450
  PortMapping.struct_class = Types::PortMapping
433
451
 
452
+ ResourceInUseException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
453
+ ResourceInUseException.struct_class = Types::ResourceInUseException
454
+
434
455
  ResourceMetadata.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
435
456
  ResourceMetadata.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
436
457
  ResourceMetadata.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
@@ -464,6 +485,9 @@ module Aws::AppMesh
464
485
  ServiceDiscovery.add_member(:dns, Shapes::ShapeRef.new(shape: DnsServiceDiscovery, location_name: "dns"))
465
486
  ServiceDiscovery.struct_class = Types::ServiceDiscovery
466
487
 
488
+ ServiceUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
489
+ ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
490
+
467
491
  TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
468
492
 
469
493
  TagList.member = Shapes::ShapeRef.new(shape: TagRef)
@@ -484,6 +508,12 @@ module Aws::AppMesh
484
508
  TcpRouteAction.add_member(:weighted_targets, Shapes::ShapeRef.new(shape: WeightedTargets, required: true, location_name: "weightedTargets"))
485
509
  TcpRouteAction.struct_class = Types::TcpRouteAction
486
510
 
511
+ TooManyRequestsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
512
+ TooManyRequestsException.struct_class = Types::TooManyRequestsException
513
+
514
+ TooManyTagsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
515
+ TooManyTagsException.struct_class = Types::TooManyTagsException
516
+
487
517
  UntagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "querystring", location_name: "resourceArn"))
488
518
  UntagResourceInput.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "tagKeys"))
489
519
  UntagResourceInput.struct_class = Types::UntagResourceInput
@@ -10,5 +10,165 @@ module Aws::AppMesh
10
10
 
11
11
  extend Aws::Errors::DynamicErrors
12
12
 
13
+ class ServiceUnavailableException < ServiceError
14
+
15
+ # @param [Seahorse::Client::RequestContext] context
16
+ # @param [String] message
17
+ # @param [Aws::AppMesh::Types::ServiceUnavailableException] 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 ResourceInUseException < ServiceError
30
+
31
+ # @param [Seahorse::Client::RequestContext] context
32
+ # @param [String] message
33
+ # @param [Aws::AppMesh::Types::ResourceInUseException] 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
+
45
+ class BadRequestException < ServiceError
46
+
47
+ # @param [Seahorse::Client::RequestContext] context
48
+ # @param [String] message
49
+ # @param [Aws::AppMesh::Types::BadRequestException] data
50
+ def initialize(context, message, data = Aws::EmptyStructure.new)
51
+ super(context, message, data)
52
+ end
53
+
54
+ # @return [String]
55
+ def message
56
+ @message || @data[:message]
57
+ end
58
+
59
+ end
60
+
61
+ class LimitExceededException < ServiceError
62
+
63
+ # @param [Seahorse::Client::RequestContext] context
64
+ # @param [String] message
65
+ # @param [Aws::AppMesh::Types::LimitExceededException] data
66
+ def initialize(context, message, data = Aws::EmptyStructure.new)
67
+ super(context, message, data)
68
+ end
69
+
70
+ # @return [String]
71
+ def message
72
+ @message || @data[:message]
73
+ end
74
+
75
+ end
76
+
77
+ class TooManyRequestsException < ServiceError
78
+
79
+ # @param [Seahorse::Client::RequestContext] context
80
+ # @param [String] message
81
+ # @param [Aws::AppMesh::Types::TooManyRequestsException] data
82
+ def initialize(context, message, data = Aws::EmptyStructure.new)
83
+ super(context, message, data)
84
+ end
85
+
86
+ # @return [String]
87
+ def message
88
+ @message || @data[:message]
89
+ end
90
+
91
+ end
92
+
93
+ class ConflictException < ServiceError
94
+
95
+ # @param [Seahorse::Client::RequestContext] context
96
+ # @param [String] message
97
+ # @param [Aws::AppMesh::Types::ConflictException] data
98
+ def initialize(context, message, data = Aws::EmptyStructure.new)
99
+ super(context, message, data)
100
+ end
101
+
102
+ # @return [String]
103
+ def message
104
+ @message || @data[:message]
105
+ end
106
+
107
+ end
108
+
109
+ class InternalServerErrorException < ServiceError
110
+
111
+ # @param [Seahorse::Client::RequestContext] context
112
+ # @param [String] message
113
+ # @param [Aws::AppMesh::Types::InternalServerErrorException] data
114
+ def initialize(context, message, data = Aws::EmptyStructure.new)
115
+ super(context, message, data)
116
+ end
117
+
118
+ # @return [String]
119
+ def message
120
+ @message || @data[:message]
121
+ end
122
+
123
+ end
124
+
125
+ class ForbiddenException < ServiceError
126
+
127
+ # @param [Seahorse::Client::RequestContext] context
128
+ # @param [String] message
129
+ # @param [Aws::AppMesh::Types::ForbiddenException] data
130
+ def initialize(context, message, data = Aws::EmptyStructure.new)
131
+ super(context, message, data)
132
+ end
133
+
134
+ # @return [String]
135
+ def message
136
+ @message || @data[:message]
137
+ end
138
+
139
+ end
140
+
141
+ class TooManyTagsException < ServiceError
142
+
143
+ # @param [Seahorse::Client::RequestContext] context
144
+ # @param [String] message
145
+ # @param [Aws::AppMesh::Types::TooManyTagsException] data
146
+ def initialize(context, message, data = Aws::EmptyStructure.new)
147
+ super(context, message, data)
148
+ end
149
+
150
+ # @return [String]
151
+ def message
152
+ @message || @data[:message]
153
+ end
154
+
155
+ end
156
+
157
+ class NotFoundException < ServiceError
158
+
159
+ # @param [Seahorse::Client::RequestContext] context
160
+ # @param [String] message
161
+ # @param [Aws::AppMesh::Types::NotFoundException] data
162
+ def initialize(context, message, data = Aws::EmptyStructure.new)
163
+ super(context, message, data)
164
+ end
165
+
166
+ # @return [String]
167
+ def message
168
+ @message || @data[:message]
169
+ end
170
+
171
+ end
172
+
13
173
  end
14
174
  end
@@ -322,6 +322,18 @@ module Aws::AppMesh
322
322
  include Aws::Structure
323
323
  end
324
324
 
325
+ # The request has failed due to a temporary failure of the service.
326
+ #
327
+ # @!attribute [rw] message
328
+ # @return [String]
329
+ #
330
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ServiceUnavailableException AWS API Documentation
331
+ #
332
+ class ServiceUnavailableException < Struct.new(
333
+ :message)
334
+ include Aws::Structure
335
+ end
336
+
325
337
  # @!attribute [rw] virtual_router
326
338
  # A full description of the virtual router that was updated.
327
339
  # @return [Types::VirtualRouterData]
@@ -465,6 +477,19 @@ module Aws::AppMesh
465
477
  include Aws::Structure
466
478
  end
467
479
 
480
+ # You can't delete the specified resource because it's in use or
481
+ # required by another resource.
482
+ #
483
+ # @!attribute [rw] message
484
+ # @return [String]
485
+ #
486
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ResourceInUseException AWS API Documentation
487
+ #
488
+ class ResourceInUseException < Struct.new(
489
+ :message)
490
+ include Aws::Structure
491
+ end
492
+
468
493
  # @!attribute [rw] virtual_node
469
494
  # A full description of the virtual node that was updated.
470
495
  # @return [Types::VirtualNodeData]
@@ -517,6 +542,19 @@ module Aws::AppMesh
517
542
  include Aws::Structure
518
543
  end
519
544
 
545
+ # The request syntax was malformed. Check your request syntax and try
546
+ # again.
547
+ #
548
+ # @!attribute [rw] message
549
+ # @return [String]
550
+ #
551
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/BadRequestException AWS API Documentation
552
+ #
553
+ class BadRequestException < Struct.new(
554
+ :message)
555
+ include Aws::Structure
556
+ end
557
+
520
558
  # @note When making an API call, you may pass UpdateVirtualServiceInput
521
559
  # data as a hash:
522
560
  #
@@ -932,6 +970,23 @@ module Aws::AppMesh
932
970
  include Aws::Structure
933
971
  end
934
972
 
973
+ # You have exceeded a service limit for your account. For more
974
+ # information, see [Service Limits][1] in the *AWS App Mesh User Guide*.
975
+ #
976
+ #
977
+ #
978
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/service_limits.html
979
+ #
980
+ # @!attribute [rw] message
981
+ # @return [String]
982
+ #
983
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/LimitExceededException AWS API Documentation
984
+ #
985
+ class LimitExceededException < Struct.new(
986
+ :message)
987
+ include Aws::Structure
988
+ end
989
+
935
990
  # @!attribute [rw] mesh
936
991
  # An object representing a service mesh returned by a describe
937
992
  # operation.
@@ -1543,6 +1598,20 @@ module Aws::AppMesh
1543
1598
  include Aws::Structure
1544
1599
  end
1545
1600
 
1601
+ # The maximum request rate permitted by the App Mesh APIs has been
1602
+ # exceeded for your account. For best results, use an increasing or
1603
+ # variable sleep interval between requests.
1604
+ #
1605
+ # @!attribute [rw] message
1606
+ # @return [String]
1607
+ #
1608
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/TooManyRequestsException AWS API Documentation
1609
+ #
1610
+ class TooManyRequestsException < Struct.new(
1611
+ :message)
1612
+ include Aws::Structure
1613
+ end
1614
+
1546
1615
  # An object representing the specification of a virtual node.
1547
1616
  #
1548
1617
  # @note When making an API call, you may pass VirtualNodeSpec
@@ -1638,6 +1707,20 @@ module Aws::AppMesh
1638
1707
  include Aws::Structure
1639
1708
  end
1640
1709
 
1710
+ # The request contains a client token that was used for a previous
1711
+ # update resource call with different specifications. Try the request
1712
+ # again with a new client token.
1713
+ #
1714
+ # @!attribute [rw] message
1715
+ # @return [String]
1716
+ #
1717
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ConflictException AWS API Documentation
1718
+ #
1719
+ class ConflictException < Struct.new(
1720
+ :message)
1721
+ include Aws::Structure
1722
+ end
1723
+
1641
1724
  # @!attribute [rw] route
1642
1725
  # The full description of your route.
1643
1726
  # @return [Types::RouteData]
@@ -2068,6 +2151,19 @@ module Aws::AppMesh
2068
2151
  include Aws::Structure
2069
2152
  end
2070
2153
 
2154
+ # The request processing has failed because of an unknown error,
2155
+ # exception, or failure.
2156
+ #
2157
+ # @!attribute [rw] message
2158
+ # @return [String]
2159
+ #
2160
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/InternalServerErrorException AWS API Documentation
2161
+ #
2162
+ class InternalServerErrorException < Struct.new(
2163
+ :message)
2164
+ include Aws::Structure
2165
+ end
2166
+
2071
2167
  # @note When making an API call, you may pass DescribeVirtualRouterInput
2072
2168
  # data as a hash:
2073
2169
  #
@@ -2096,6 +2192,33 @@ module Aws::AppMesh
2096
2192
  #
2097
2193
  class TagResourceOutput < Aws::EmptyStructure; end
2098
2194
 
2195
+ # You don't have permissions to perform this action.
2196
+ #
2197
+ # @!attribute [rw] message
2198
+ # @return [String]
2199
+ #
2200
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ForbiddenException AWS API Documentation
2201
+ #
2202
+ class ForbiddenException < Struct.new(
2203
+ :message)
2204
+ include Aws::Structure
2205
+ end
2206
+
2207
+ # The request exceeds the maximum allowed number of tags allowed per
2208
+ # resource. The current limit is 50 user tags per resource. You must
2209
+ # reduce the number of tags in the request. None of the tags in this
2210
+ # request were applied.
2211
+ #
2212
+ # @!attribute [rw] message
2213
+ # @return [String]
2214
+ #
2215
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/TooManyTagsException AWS API Documentation
2216
+ #
2217
+ class TooManyTagsException < Struct.new(
2218
+ :message)
2219
+ include Aws::Structure
2220
+ end
2221
+
2099
2222
  # @!attribute [rw] mesh
2100
2223
  # The service mesh that was deleted.
2101
2224
  # @return [Types::MeshData]
@@ -2444,6 +2567,19 @@ module Aws::AppMesh
2444
2567
  include Aws::Structure
2445
2568
  end
2446
2569
 
2570
+ # The specified resource doesn't exist. Check your request syntax and
2571
+ # try again.
2572
+ #
2573
+ # @!attribute [rw] message
2574
+ # @return [String]
2575
+ #
2576
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/NotFoundException AWS API Documentation
2577
+ #
2578
+ class NotFoundException < Struct.new(
2579
+ :message)
2580
+ include Aws::Structure
2581
+ end
2582
+
2447
2583
  # An object representing the specification of a route.
2448
2584
  #
2449
2585
  # @note When making an API call, you may pass RouteSpec
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appmesh
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.9.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