aws-sdk-appmesh 1.25.1 → 1.30.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 +4 -4
- data/lib/aws-sdk-appmesh.rb +6 -3
- data/lib/aws-sdk-appmesh/client.rb +1301 -40
- data/lib/aws-sdk-appmesh/client_api.rb +522 -0
- data/lib/aws-sdk-appmesh/errors.rb +2 -0
- data/lib/aws-sdk-appmesh/resource.rb +2 -0
- data/lib/aws-sdk-appmesh/types.rb +2955 -233
- metadata +2 -2
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -29,30 +31,42 @@ module Aws::AppMesh
|
|
29
31
|
ClientPolicy = Shapes::StructureShape.new(name: 'ClientPolicy')
|
30
32
|
ClientPolicyTls = Shapes::StructureShape.new(name: 'ClientPolicyTls')
|
31
33
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
34
|
+
CreateGatewayRouteInput = Shapes::StructureShape.new(name: 'CreateGatewayRouteInput')
|
35
|
+
CreateGatewayRouteOutput = Shapes::StructureShape.new(name: 'CreateGatewayRouteOutput')
|
32
36
|
CreateMeshInput = Shapes::StructureShape.new(name: 'CreateMeshInput')
|
33
37
|
CreateMeshOutput = Shapes::StructureShape.new(name: 'CreateMeshOutput')
|
34
38
|
CreateRouteInput = Shapes::StructureShape.new(name: 'CreateRouteInput')
|
35
39
|
CreateRouteOutput = Shapes::StructureShape.new(name: 'CreateRouteOutput')
|
40
|
+
CreateVirtualGatewayInput = Shapes::StructureShape.new(name: 'CreateVirtualGatewayInput')
|
41
|
+
CreateVirtualGatewayOutput = Shapes::StructureShape.new(name: 'CreateVirtualGatewayOutput')
|
36
42
|
CreateVirtualNodeInput = Shapes::StructureShape.new(name: 'CreateVirtualNodeInput')
|
37
43
|
CreateVirtualNodeOutput = Shapes::StructureShape.new(name: 'CreateVirtualNodeOutput')
|
38
44
|
CreateVirtualRouterInput = Shapes::StructureShape.new(name: 'CreateVirtualRouterInput')
|
39
45
|
CreateVirtualRouterOutput = Shapes::StructureShape.new(name: 'CreateVirtualRouterOutput')
|
40
46
|
CreateVirtualServiceInput = Shapes::StructureShape.new(name: 'CreateVirtualServiceInput')
|
41
47
|
CreateVirtualServiceOutput = Shapes::StructureShape.new(name: 'CreateVirtualServiceOutput')
|
48
|
+
DeleteGatewayRouteInput = Shapes::StructureShape.new(name: 'DeleteGatewayRouteInput')
|
49
|
+
DeleteGatewayRouteOutput = Shapes::StructureShape.new(name: 'DeleteGatewayRouteOutput')
|
42
50
|
DeleteMeshInput = Shapes::StructureShape.new(name: 'DeleteMeshInput')
|
43
51
|
DeleteMeshOutput = Shapes::StructureShape.new(name: 'DeleteMeshOutput')
|
44
52
|
DeleteRouteInput = Shapes::StructureShape.new(name: 'DeleteRouteInput')
|
45
53
|
DeleteRouteOutput = Shapes::StructureShape.new(name: 'DeleteRouteOutput')
|
54
|
+
DeleteVirtualGatewayInput = Shapes::StructureShape.new(name: 'DeleteVirtualGatewayInput')
|
55
|
+
DeleteVirtualGatewayOutput = Shapes::StructureShape.new(name: 'DeleteVirtualGatewayOutput')
|
46
56
|
DeleteVirtualNodeInput = Shapes::StructureShape.new(name: 'DeleteVirtualNodeInput')
|
47
57
|
DeleteVirtualNodeOutput = Shapes::StructureShape.new(name: 'DeleteVirtualNodeOutput')
|
48
58
|
DeleteVirtualRouterInput = Shapes::StructureShape.new(name: 'DeleteVirtualRouterInput')
|
49
59
|
DeleteVirtualRouterOutput = Shapes::StructureShape.new(name: 'DeleteVirtualRouterOutput')
|
50
60
|
DeleteVirtualServiceInput = Shapes::StructureShape.new(name: 'DeleteVirtualServiceInput')
|
51
61
|
DeleteVirtualServiceOutput = Shapes::StructureShape.new(name: 'DeleteVirtualServiceOutput')
|
62
|
+
DescribeGatewayRouteInput = Shapes::StructureShape.new(name: 'DescribeGatewayRouteInput')
|
63
|
+
DescribeGatewayRouteOutput = Shapes::StructureShape.new(name: 'DescribeGatewayRouteOutput')
|
52
64
|
DescribeMeshInput = Shapes::StructureShape.new(name: 'DescribeMeshInput')
|
53
65
|
DescribeMeshOutput = Shapes::StructureShape.new(name: 'DescribeMeshOutput')
|
54
66
|
DescribeRouteInput = Shapes::StructureShape.new(name: 'DescribeRouteInput')
|
55
67
|
DescribeRouteOutput = Shapes::StructureShape.new(name: 'DescribeRouteOutput')
|
68
|
+
DescribeVirtualGatewayInput = Shapes::StructureShape.new(name: 'DescribeVirtualGatewayInput')
|
69
|
+
DescribeVirtualGatewayOutput = Shapes::StructureShape.new(name: 'DescribeVirtualGatewayOutput')
|
56
70
|
DescribeVirtualNodeInput = Shapes::StructureShape.new(name: 'DescribeVirtualNodeInput')
|
57
71
|
DescribeVirtualNodeOutput = Shapes::StructureShape.new(name: 'DescribeVirtualNodeOutput')
|
58
72
|
DescribeVirtualRouterInput = Shapes::StructureShape.new(name: 'DescribeVirtualRouterInput')
|
@@ -68,6 +82,17 @@ module Aws::AppMesh
|
|
68
82
|
FileAccessLog = Shapes::StructureShape.new(name: 'FileAccessLog')
|
69
83
|
FilePath = Shapes::StringShape.new(name: 'FilePath')
|
70
84
|
ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
|
85
|
+
GatewayRouteData = Shapes::StructureShape.new(name: 'GatewayRouteData')
|
86
|
+
GatewayRouteList = Shapes::ListShape.new(name: 'GatewayRouteList')
|
87
|
+
GatewayRouteRef = Shapes::StructureShape.new(name: 'GatewayRouteRef')
|
88
|
+
GatewayRouteSpec = Shapes::StructureShape.new(name: 'GatewayRouteSpec')
|
89
|
+
GatewayRouteStatus = Shapes::StructureShape.new(name: 'GatewayRouteStatus')
|
90
|
+
GatewayRouteStatusCode = Shapes::StringShape.new(name: 'GatewayRouteStatusCode')
|
91
|
+
GatewayRouteTarget = Shapes::StructureShape.new(name: 'GatewayRouteTarget')
|
92
|
+
GatewayRouteVirtualService = Shapes::StructureShape.new(name: 'GatewayRouteVirtualService')
|
93
|
+
GrpcGatewayRoute = Shapes::StructureShape.new(name: 'GrpcGatewayRoute')
|
94
|
+
GrpcGatewayRouteAction = Shapes::StructureShape.new(name: 'GrpcGatewayRouteAction')
|
95
|
+
GrpcGatewayRouteMatch = Shapes::StructureShape.new(name: 'GrpcGatewayRouteMatch')
|
71
96
|
GrpcRetryPolicy = Shapes::StructureShape.new(name: 'GrpcRetryPolicy')
|
72
97
|
GrpcRetryPolicyEvent = Shapes::StringShape.new(name: 'GrpcRetryPolicyEvent')
|
73
98
|
GrpcRetryPolicyEvents = Shapes::ListShape.new(name: 'GrpcRetryPolicyEvents')
|
@@ -77,6 +102,7 @@ module Aws::AppMesh
|
|
77
102
|
GrpcRouteMetadata = Shapes::StructureShape.new(name: 'GrpcRouteMetadata')
|
78
103
|
GrpcRouteMetadataList = Shapes::ListShape.new(name: 'GrpcRouteMetadataList')
|
79
104
|
GrpcRouteMetadataMatchMethod = Shapes::StructureShape.new(name: 'GrpcRouteMetadataMatchMethod')
|
105
|
+
GrpcTimeout = Shapes::StructureShape.new(name: 'GrpcTimeout')
|
80
106
|
HeaderMatch = Shapes::StringShape.new(name: 'HeaderMatch')
|
81
107
|
HeaderMatchMethod = Shapes::StructureShape.new(name: 'HeaderMatchMethod')
|
82
108
|
HeaderName = Shapes::StringShape.new(name: 'HeaderName')
|
@@ -85,6 +111,9 @@ module Aws::AppMesh
|
|
85
111
|
HealthCheckThreshold = Shapes::IntegerShape.new(name: 'HealthCheckThreshold')
|
86
112
|
HealthCheckTimeoutMillis = Shapes::IntegerShape.new(name: 'HealthCheckTimeoutMillis')
|
87
113
|
Hostname = Shapes::StringShape.new(name: 'Hostname')
|
114
|
+
HttpGatewayRoute = Shapes::StructureShape.new(name: 'HttpGatewayRoute')
|
115
|
+
HttpGatewayRouteAction = Shapes::StructureShape.new(name: 'HttpGatewayRouteAction')
|
116
|
+
HttpGatewayRouteMatch = Shapes::StructureShape.new(name: 'HttpGatewayRouteMatch')
|
88
117
|
HttpMethod = Shapes::StringShape.new(name: 'HttpMethod')
|
89
118
|
HttpRetryPolicy = Shapes::StructureShape.new(name: 'HttpRetryPolicy')
|
90
119
|
HttpRetryPolicyEvent = Shapes::StringShape.new(name: 'HttpRetryPolicyEvent')
|
@@ -95,8 +124,12 @@ module Aws::AppMesh
|
|
95
124
|
HttpRouteHeaders = Shapes::ListShape.new(name: 'HttpRouteHeaders')
|
96
125
|
HttpRouteMatch = Shapes::StructureShape.new(name: 'HttpRouteMatch')
|
97
126
|
HttpScheme = Shapes::StringShape.new(name: 'HttpScheme')
|
127
|
+
HttpTimeout = Shapes::StructureShape.new(name: 'HttpTimeout')
|
98
128
|
InternalServerErrorException = Shapes::StructureShape.new(name: 'InternalServerErrorException')
|
99
129
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
130
|
+
ListGatewayRoutesInput = Shapes::StructureShape.new(name: 'ListGatewayRoutesInput')
|
131
|
+
ListGatewayRoutesLimit = Shapes::IntegerShape.new(name: 'ListGatewayRoutesLimit')
|
132
|
+
ListGatewayRoutesOutput = Shapes::StructureShape.new(name: 'ListGatewayRoutesOutput')
|
100
133
|
ListMeshesInput = Shapes::StructureShape.new(name: 'ListMeshesInput')
|
101
134
|
ListMeshesLimit = Shapes::IntegerShape.new(name: 'ListMeshesLimit')
|
102
135
|
ListMeshesOutput = Shapes::StructureShape.new(name: 'ListMeshesOutput')
|
@@ -105,6 +138,9 @@ module Aws::AppMesh
|
|
105
138
|
ListRoutesOutput = Shapes::StructureShape.new(name: 'ListRoutesOutput')
|
106
139
|
ListTagsForResourceInput = Shapes::StructureShape.new(name: 'ListTagsForResourceInput')
|
107
140
|
ListTagsForResourceOutput = Shapes::StructureShape.new(name: 'ListTagsForResourceOutput')
|
141
|
+
ListVirtualGatewaysInput = Shapes::StructureShape.new(name: 'ListVirtualGatewaysInput')
|
142
|
+
ListVirtualGatewaysLimit = Shapes::IntegerShape.new(name: 'ListVirtualGatewaysLimit')
|
143
|
+
ListVirtualGatewaysOutput = Shapes::StructureShape.new(name: 'ListVirtualGatewaysOutput')
|
108
144
|
ListVirtualNodesInput = Shapes::StructureShape.new(name: 'ListVirtualNodesInput')
|
109
145
|
ListVirtualNodesLimit = Shapes::IntegerShape.new(name: 'ListVirtualNodesLimit')
|
110
146
|
ListVirtualNodesOutput = Shapes::StructureShape.new(name: 'ListVirtualNodesOutput')
|
@@ -115,6 +151,7 @@ module Aws::AppMesh
|
|
115
151
|
ListVirtualServicesLimit = Shapes::IntegerShape.new(name: 'ListVirtualServicesLimit')
|
116
152
|
ListVirtualServicesOutput = Shapes::StructureShape.new(name: 'ListVirtualServicesOutput')
|
117
153
|
Listener = Shapes::StructureShape.new(name: 'Listener')
|
154
|
+
ListenerTimeout = Shapes::StructureShape.new(name: 'ListenerTimeout')
|
118
155
|
ListenerTls = Shapes::StructureShape.new(name: 'ListenerTls')
|
119
156
|
ListenerTlsAcmCertificate = Shapes::StructureShape.new(name: 'ListenerTlsAcmCertificate')
|
120
157
|
ListenerTlsCertificate = Shapes::StructureShape.new(name: 'ListenerTlsCertificate')
|
@@ -164,6 +201,7 @@ module Aws::AppMesh
|
|
164
201
|
TcpRetryPolicyEvents = Shapes::ListShape.new(name: 'TcpRetryPolicyEvents')
|
165
202
|
TcpRoute = Shapes::StructureShape.new(name: 'TcpRoute')
|
166
203
|
TcpRouteAction = Shapes::StructureShape.new(name: 'TcpRouteAction')
|
204
|
+
TcpTimeout = Shapes::StructureShape.new(name: 'TcpTimeout')
|
167
205
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
168
206
|
TlsValidationContext = Shapes::StructureShape.new(name: 'TlsValidationContext')
|
169
207
|
TlsValidationContextAcmTrust = Shapes::StructureShape.new(name: 'TlsValidationContextAcmTrust')
|
@@ -173,16 +211,50 @@ module Aws::AppMesh
|
|
173
211
|
TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
|
174
212
|
UntagResourceInput = Shapes::StructureShape.new(name: 'UntagResourceInput')
|
175
213
|
UntagResourceOutput = Shapes::StructureShape.new(name: 'UntagResourceOutput')
|
214
|
+
UpdateGatewayRouteInput = Shapes::StructureShape.new(name: 'UpdateGatewayRouteInput')
|
215
|
+
UpdateGatewayRouteOutput = Shapes::StructureShape.new(name: 'UpdateGatewayRouteOutput')
|
176
216
|
UpdateMeshInput = Shapes::StructureShape.new(name: 'UpdateMeshInput')
|
177
217
|
UpdateMeshOutput = Shapes::StructureShape.new(name: 'UpdateMeshOutput')
|
178
218
|
UpdateRouteInput = Shapes::StructureShape.new(name: 'UpdateRouteInput')
|
179
219
|
UpdateRouteOutput = Shapes::StructureShape.new(name: 'UpdateRouteOutput')
|
220
|
+
UpdateVirtualGatewayInput = Shapes::StructureShape.new(name: 'UpdateVirtualGatewayInput')
|
221
|
+
UpdateVirtualGatewayOutput = Shapes::StructureShape.new(name: 'UpdateVirtualGatewayOutput')
|
180
222
|
UpdateVirtualNodeInput = Shapes::StructureShape.new(name: 'UpdateVirtualNodeInput')
|
181
223
|
UpdateVirtualNodeOutput = Shapes::StructureShape.new(name: 'UpdateVirtualNodeOutput')
|
182
224
|
UpdateVirtualRouterInput = Shapes::StructureShape.new(name: 'UpdateVirtualRouterInput')
|
183
225
|
UpdateVirtualRouterOutput = Shapes::StructureShape.new(name: 'UpdateVirtualRouterOutput')
|
184
226
|
UpdateVirtualServiceInput = Shapes::StructureShape.new(name: 'UpdateVirtualServiceInput')
|
185
227
|
UpdateVirtualServiceOutput = Shapes::StructureShape.new(name: 'UpdateVirtualServiceOutput')
|
228
|
+
VirtualGatewayAccessLog = Shapes::StructureShape.new(name: 'VirtualGatewayAccessLog')
|
229
|
+
VirtualGatewayBackendDefaults = Shapes::StructureShape.new(name: 'VirtualGatewayBackendDefaults')
|
230
|
+
VirtualGatewayCertificateAuthorityArns = Shapes::ListShape.new(name: 'VirtualGatewayCertificateAuthorityArns')
|
231
|
+
VirtualGatewayClientPolicy = Shapes::StructureShape.new(name: 'VirtualGatewayClientPolicy')
|
232
|
+
VirtualGatewayClientPolicyTls = Shapes::StructureShape.new(name: 'VirtualGatewayClientPolicyTls')
|
233
|
+
VirtualGatewayData = Shapes::StructureShape.new(name: 'VirtualGatewayData')
|
234
|
+
VirtualGatewayFileAccessLog = Shapes::StructureShape.new(name: 'VirtualGatewayFileAccessLog')
|
235
|
+
VirtualGatewayHealthCheckIntervalMillis = Shapes::IntegerShape.new(name: 'VirtualGatewayHealthCheckIntervalMillis')
|
236
|
+
VirtualGatewayHealthCheckPolicy = Shapes::StructureShape.new(name: 'VirtualGatewayHealthCheckPolicy')
|
237
|
+
VirtualGatewayHealthCheckThreshold = Shapes::IntegerShape.new(name: 'VirtualGatewayHealthCheckThreshold')
|
238
|
+
VirtualGatewayHealthCheckTimeoutMillis = Shapes::IntegerShape.new(name: 'VirtualGatewayHealthCheckTimeoutMillis')
|
239
|
+
VirtualGatewayList = Shapes::ListShape.new(name: 'VirtualGatewayList')
|
240
|
+
VirtualGatewayListener = Shapes::StructureShape.new(name: 'VirtualGatewayListener')
|
241
|
+
VirtualGatewayListenerTls = Shapes::StructureShape.new(name: 'VirtualGatewayListenerTls')
|
242
|
+
VirtualGatewayListenerTlsAcmCertificate = Shapes::StructureShape.new(name: 'VirtualGatewayListenerTlsAcmCertificate')
|
243
|
+
VirtualGatewayListenerTlsCertificate = Shapes::StructureShape.new(name: 'VirtualGatewayListenerTlsCertificate')
|
244
|
+
VirtualGatewayListenerTlsFileCertificate = Shapes::StructureShape.new(name: 'VirtualGatewayListenerTlsFileCertificate')
|
245
|
+
VirtualGatewayListenerTlsMode = Shapes::StringShape.new(name: 'VirtualGatewayListenerTlsMode')
|
246
|
+
VirtualGatewayListeners = Shapes::ListShape.new(name: 'VirtualGatewayListeners')
|
247
|
+
VirtualGatewayLogging = Shapes::StructureShape.new(name: 'VirtualGatewayLogging')
|
248
|
+
VirtualGatewayPortMapping = Shapes::StructureShape.new(name: 'VirtualGatewayPortMapping')
|
249
|
+
VirtualGatewayPortProtocol = Shapes::StringShape.new(name: 'VirtualGatewayPortProtocol')
|
250
|
+
VirtualGatewayRef = Shapes::StructureShape.new(name: 'VirtualGatewayRef')
|
251
|
+
VirtualGatewaySpec = Shapes::StructureShape.new(name: 'VirtualGatewaySpec')
|
252
|
+
VirtualGatewayStatus = Shapes::StructureShape.new(name: 'VirtualGatewayStatus')
|
253
|
+
VirtualGatewayStatusCode = Shapes::StringShape.new(name: 'VirtualGatewayStatusCode')
|
254
|
+
VirtualGatewayTlsValidationContext = Shapes::StructureShape.new(name: 'VirtualGatewayTlsValidationContext')
|
255
|
+
VirtualGatewayTlsValidationContextAcmTrust = Shapes::StructureShape.new(name: 'VirtualGatewayTlsValidationContextAcmTrust')
|
256
|
+
VirtualGatewayTlsValidationContextFileTrust = Shapes::StructureShape.new(name: 'VirtualGatewayTlsValidationContextFileTrust')
|
257
|
+
VirtualGatewayTlsValidationContextTrust = Shapes::StructureShape.new(name: 'VirtualGatewayTlsValidationContextTrust')
|
186
258
|
VirtualNodeData = Shapes::StructureShape.new(name: 'VirtualNodeData')
|
187
259
|
VirtualNodeList = Shapes::ListShape.new(name: 'VirtualNodeList')
|
188
260
|
VirtualNodeRef = Shapes::StructureShape.new(name: 'VirtualNodeRef')
|
@@ -248,6 +320,20 @@ module Aws::AppMesh
|
|
248
320
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
249
321
|
ConflictException.struct_class = Types::ConflictException
|
250
322
|
|
323
|
+
CreateGatewayRouteInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
324
|
+
CreateGatewayRouteInput.add_member(:gateway_route_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "gatewayRouteName"))
|
325
|
+
CreateGatewayRouteInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
326
|
+
CreateGatewayRouteInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
327
|
+
CreateGatewayRouteInput.add_member(:spec, Shapes::ShapeRef.new(shape: GatewayRouteSpec, required: true, location_name: "spec"))
|
328
|
+
CreateGatewayRouteInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
329
|
+
CreateGatewayRouteInput.add_member(:virtual_gateway_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "virtualGatewayName"))
|
330
|
+
CreateGatewayRouteInput.struct_class = Types::CreateGatewayRouteInput
|
331
|
+
|
332
|
+
CreateGatewayRouteOutput.add_member(:gateway_route, Shapes::ShapeRef.new(shape: GatewayRouteData, required: true, location_name: "gatewayRoute"))
|
333
|
+
CreateGatewayRouteOutput.struct_class = Types::CreateGatewayRouteOutput
|
334
|
+
CreateGatewayRouteOutput[:payload] = :gateway_route
|
335
|
+
CreateGatewayRouteOutput[:payload_member] = CreateGatewayRouteOutput.member(:gateway_route)
|
336
|
+
|
251
337
|
CreateMeshInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
252
338
|
CreateMeshInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
253
339
|
CreateMeshInput.add_member(:spec, Shapes::ShapeRef.new(shape: MeshSpec, location_name: "spec"))
|
@@ -273,6 +359,19 @@ module Aws::AppMesh
|
|
273
359
|
CreateRouteOutput[:payload] = :route
|
274
360
|
CreateRouteOutput[:payload_member] = CreateRouteOutput.member(:route)
|
275
361
|
|
362
|
+
CreateVirtualGatewayInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
363
|
+
CreateVirtualGatewayInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
364
|
+
CreateVirtualGatewayInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
365
|
+
CreateVirtualGatewayInput.add_member(:spec, Shapes::ShapeRef.new(shape: VirtualGatewaySpec, required: true, location_name: "spec"))
|
366
|
+
CreateVirtualGatewayInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
367
|
+
CreateVirtualGatewayInput.add_member(:virtual_gateway_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualGatewayName"))
|
368
|
+
CreateVirtualGatewayInput.struct_class = Types::CreateVirtualGatewayInput
|
369
|
+
|
370
|
+
CreateVirtualGatewayOutput.add_member(:virtual_gateway, Shapes::ShapeRef.new(shape: VirtualGatewayData, required: true, location_name: "virtualGateway"))
|
371
|
+
CreateVirtualGatewayOutput.struct_class = Types::CreateVirtualGatewayOutput
|
372
|
+
CreateVirtualGatewayOutput[:payload] = :virtual_gateway
|
373
|
+
CreateVirtualGatewayOutput[:payload_member] = CreateVirtualGatewayOutput.member(:virtual_gateway)
|
374
|
+
|
276
375
|
CreateVirtualNodeInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
277
376
|
CreateVirtualNodeInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
278
377
|
CreateVirtualNodeInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
@@ -312,6 +411,17 @@ module Aws::AppMesh
|
|
312
411
|
CreateVirtualServiceOutput[:payload] = :virtual_service
|
313
412
|
CreateVirtualServiceOutput[:payload_member] = CreateVirtualServiceOutput.member(:virtual_service)
|
314
413
|
|
414
|
+
DeleteGatewayRouteInput.add_member(:gateway_route_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "gatewayRouteName"))
|
415
|
+
DeleteGatewayRouteInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
416
|
+
DeleteGatewayRouteInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
417
|
+
DeleteGatewayRouteInput.add_member(:virtual_gateway_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "virtualGatewayName"))
|
418
|
+
DeleteGatewayRouteInput.struct_class = Types::DeleteGatewayRouteInput
|
419
|
+
|
420
|
+
DeleteGatewayRouteOutput.add_member(:gateway_route, Shapes::ShapeRef.new(shape: GatewayRouteData, required: true, location_name: "gatewayRoute"))
|
421
|
+
DeleteGatewayRouteOutput.struct_class = Types::DeleteGatewayRouteOutput
|
422
|
+
DeleteGatewayRouteOutput[:payload] = :gateway_route
|
423
|
+
DeleteGatewayRouteOutput[:payload_member] = DeleteGatewayRouteOutput.member(:gateway_route)
|
424
|
+
|
315
425
|
DeleteMeshInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
316
426
|
DeleteMeshInput.struct_class = Types::DeleteMeshInput
|
317
427
|
|
@@ -331,6 +441,16 @@ module Aws::AppMesh
|
|
331
441
|
DeleteRouteOutput[:payload] = :route
|
332
442
|
DeleteRouteOutput[:payload_member] = DeleteRouteOutput.member(:route)
|
333
443
|
|
444
|
+
DeleteVirtualGatewayInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
445
|
+
DeleteVirtualGatewayInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
446
|
+
DeleteVirtualGatewayInput.add_member(:virtual_gateway_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "virtualGatewayName"))
|
447
|
+
DeleteVirtualGatewayInput.struct_class = Types::DeleteVirtualGatewayInput
|
448
|
+
|
449
|
+
DeleteVirtualGatewayOutput.add_member(:virtual_gateway, Shapes::ShapeRef.new(shape: VirtualGatewayData, required: true, location_name: "virtualGateway"))
|
450
|
+
DeleteVirtualGatewayOutput.struct_class = Types::DeleteVirtualGatewayOutput
|
451
|
+
DeleteVirtualGatewayOutput[:payload] = :virtual_gateway
|
452
|
+
DeleteVirtualGatewayOutput[:payload_member] = DeleteVirtualGatewayOutput.member(:virtual_gateway)
|
453
|
+
|
334
454
|
DeleteVirtualNodeInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
335
455
|
DeleteVirtualNodeInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
336
456
|
DeleteVirtualNodeInput.add_member(:virtual_node_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "virtualNodeName"))
|
@@ -361,6 +481,17 @@ module Aws::AppMesh
|
|
361
481
|
DeleteVirtualServiceOutput[:payload] = :virtual_service
|
362
482
|
DeleteVirtualServiceOutput[:payload_member] = DeleteVirtualServiceOutput.member(:virtual_service)
|
363
483
|
|
484
|
+
DescribeGatewayRouteInput.add_member(:gateway_route_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "gatewayRouteName"))
|
485
|
+
DescribeGatewayRouteInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
486
|
+
DescribeGatewayRouteInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
487
|
+
DescribeGatewayRouteInput.add_member(:virtual_gateway_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "virtualGatewayName"))
|
488
|
+
DescribeGatewayRouteInput.struct_class = Types::DescribeGatewayRouteInput
|
489
|
+
|
490
|
+
DescribeGatewayRouteOutput.add_member(:gateway_route, Shapes::ShapeRef.new(shape: GatewayRouteData, required: true, location_name: "gatewayRoute"))
|
491
|
+
DescribeGatewayRouteOutput.struct_class = Types::DescribeGatewayRouteOutput
|
492
|
+
DescribeGatewayRouteOutput[:payload] = :gateway_route
|
493
|
+
DescribeGatewayRouteOutput[:payload_member] = DescribeGatewayRouteOutput.member(:gateway_route)
|
494
|
+
|
364
495
|
DescribeMeshInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
365
496
|
DescribeMeshInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
366
497
|
DescribeMeshInput.struct_class = Types::DescribeMeshInput
|
@@ -381,6 +512,16 @@ module Aws::AppMesh
|
|
381
512
|
DescribeRouteOutput[:payload] = :route
|
382
513
|
DescribeRouteOutput[:payload_member] = DescribeRouteOutput.member(:route)
|
383
514
|
|
515
|
+
DescribeVirtualGatewayInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
516
|
+
DescribeVirtualGatewayInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
517
|
+
DescribeVirtualGatewayInput.add_member(:virtual_gateway_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "virtualGatewayName"))
|
518
|
+
DescribeVirtualGatewayInput.struct_class = Types::DescribeVirtualGatewayInput
|
519
|
+
|
520
|
+
DescribeVirtualGatewayOutput.add_member(:virtual_gateway, Shapes::ShapeRef.new(shape: VirtualGatewayData, required: true, location_name: "virtualGateway"))
|
521
|
+
DescribeVirtualGatewayOutput.struct_class = Types::DescribeVirtualGatewayOutput
|
522
|
+
DescribeVirtualGatewayOutput[:payload] = :virtual_gateway
|
523
|
+
DescribeVirtualGatewayOutput[:payload_member] = DescribeVirtualGatewayOutput.member(:virtual_gateway)
|
524
|
+
|
384
525
|
DescribeVirtualNodeInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
385
526
|
DescribeVirtualNodeInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
386
527
|
DescribeVirtualNodeInput.add_member(:virtual_node_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "virtualNodeName"))
|
@@ -427,6 +568,51 @@ module Aws::AppMesh
|
|
427
568
|
ForbiddenException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
428
569
|
ForbiddenException.struct_class = Types::ForbiddenException
|
429
570
|
|
571
|
+
GatewayRouteData.add_member(:gateway_route_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "gatewayRouteName"))
|
572
|
+
GatewayRouteData.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
573
|
+
GatewayRouteData.add_member(:metadata, Shapes::ShapeRef.new(shape: ResourceMetadata, required: true, location_name: "metadata"))
|
574
|
+
GatewayRouteData.add_member(:spec, Shapes::ShapeRef.new(shape: GatewayRouteSpec, required: true, location_name: "spec"))
|
575
|
+
GatewayRouteData.add_member(:status, Shapes::ShapeRef.new(shape: GatewayRouteStatus, required: true, location_name: "status"))
|
576
|
+
GatewayRouteData.add_member(:virtual_gateway_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualGatewayName"))
|
577
|
+
GatewayRouteData.struct_class = Types::GatewayRouteData
|
578
|
+
|
579
|
+
GatewayRouteList.member = Shapes::ShapeRef.new(shape: GatewayRouteRef)
|
580
|
+
|
581
|
+
GatewayRouteRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
582
|
+
GatewayRouteRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
583
|
+
GatewayRouteRef.add_member(:gateway_route_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "gatewayRouteName"))
|
584
|
+
GatewayRouteRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
585
|
+
GatewayRouteRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
586
|
+
GatewayRouteRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
587
|
+
GatewayRouteRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
588
|
+
GatewayRouteRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
589
|
+
GatewayRouteRef.add_member(:virtual_gateway_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualGatewayName"))
|
590
|
+
GatewayRouteRef.struct_class = Types::GatewayRouteRef
|
591
|
+
|
592
|
+
GatewayRouteSpec.add_member(:grpc_route, Shapes::ShapeRef.new(shape: GrpcGatewayRoute, location_name: "grpcRoute"))
|
593
|
+
GatewayRouteSpec.add_member(:http2_route, Shapes::ShapeRef.new(shape: HttpGatewayRoute, location_name: "http2Route"))
|
594
|
+
GatewayRouteSpec.add_member(:http_route, Shapes::ShapeRef.new(shape: HttpGatewayRoute, location_name: "httpRoute"))
|
595
|
+
GatewayRouteSpec.struct_class = Types::GatewayRouteSpec
|
596
|
+
|
597
|
+
GatewayRouteStatus.add_member(:status, Shapes::ShapeRef.new(shape: GatewayRouteStatusCode, required: true, location_name: "status"))
|
598
|
+
GatewayRouteStatus.struct_class = Types::GatewayRouteStatus
|
599
|
+
|
600
|
+
GatewayRouteTarget.add_member(:virtual_service, Shapes::ShapeRef.new(shape: GatewayRouteVirtualService, required: true, location_name: "virtualService"))
|
601
|
+
GatewayRouteTarget.struct_class = Types::GatewayRouteTarget
|
602
|
+
|
603
|
+
GatewayRouteVirtualService.add_member(:virtual_service_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualServiceName"))
|
604
|
+
GatewayRouteVirtualService.struct_class = Types::GatewayRouteVirtualService
|
605
|
+
|
606
|
+
GrpcGatewayRoute.add_member(:action, Shapes::ShapeRef.new(shape: GrpcGatewayRouteAction, required: true, location_name: "action"))
|
607
|
+
GrpcGatewayRoute.add_member(:match, Shapes::ShapeRef.new(shape: GrpcGatewayRouteMatch, required: true, location_name: "match"))
|
608
|
+
GrpcGatewayRoute.struct_class = Types::GrpcGatewayRoute
|
609
|
+
|
610
|
+
GrpcGatewayRouteAction.add_member(:target, Shapes::ShapeRef.new(shape: GatewayRouteTarget, required: true, location_name: "target"))
|
611
|
+
GrpcGatewayRouteAction.struct_class = Types::GrpcGatewayRouteAction
|
612
|
+
|
613
|
+
GrpcGatewayRouteMatch.add_member(:service_name, Shapes::ShapeRef.new(shape: ServiceName, location_name: "serviceName"))
|
614
|
+
GrpcGatewayRouteMatch.struct_class = Types::GrpcGatewayRouteMatch
|
615
|
+
|
430
616
|
GrpcRetryPolicy.add_member(:grpc_retry_events, Shapes::ShapeRef.new(shape: GrpcRetryPolicyEvents, location_name: "grpcRetryEvents"))
|
431
617
|
GrpcRetryPolicy.add_member(:http_retry_events, Shapes::ShapeRef.new(shape: HttpRetryPolicyEvents, location_name: "httpRetryEvents"))
|
432
618
|
GrpcRetryPolicy.add_member(:max_retries, Shapes::ShapeRef.new(shape: MaxRetries, required: true, location_name: "maxRetries"))
|
@@ -439,6 +625,7 @@ module Aws::AppMesh
|
|
439
625
|
GrpcRoute.add_member(:action, Shapes::ShapeRef.new(shape: GrpcRouteAction, required: true, location_name: "action"))
|
440
626
|
GrpcRoute.add_member(:match, Shapes::ShapeRef.new(shape: GrpcRouteMatch, required: true, location_name: "match"))
|
441
627
|
GrpcRoute.add_member(:retry_policy, Shapes::ShapeRef.new(shape: GrpcRetryPolicy, location_name: "retryPolicy"))
|
628
|
+
GrpcRoute.add_member(:timeout, Shapes::ShapeRef.new(shape: GrpcTimeout, location_name: "timeout"))
|
442
629
|
GrpcRoute.struct_class = Types::GrpcRoute
|
443
630
|
|
444
631
|
GrpcRouteAction.add_member(:weighted_targets, Shapes::ShapeRef.new(shape: WeightedTargets, required: true, location_name: "weightedTargets"))
|
@@ -463,6 +650,10 @@ module Aws::AppMesh
|
|
463
650
|
GrpcRouteMetadataMatchMethod.add_member(:suffix, Shapes::ShapeRef.new(shape: HeaderMatch, location_name: "suffix"))
|
464
651
|
GrpcRouteMetadataMatchMethod.struct_class = Types::GrpcRouteMetadataMatchMethod
|
465
652
|
|
653
|
+
GrpcTimeout.add_member(:idle, Shapes::ShapeRef.new(shape: Duration, location_name: "idle"))
|
654
|
+
GrpcTimeout.add_member(:per_request, Shapes::ShapeRef.new(shape: Duration, location_name: "perRequest"))
|
655
|
+
GrpcTimeout.struct_class = Types::GrpcTimeout
|
656
|
+
|
466
657
|
HeaderMatchMethod.add_member(:exact, Shapes::ShapeRef.new(shape: HeaderMatch, location_name: "exact"))
|
467
658
|
HeaderMatchMethod.add_member(:prefix, Shapes::ShapeRef.new(shape: HeaderMatch, location_name: "prefix"))
|
468
659
|
HeaderMatchMethod.add_member(:range, Shapes::ShapeRef.new(shape: MatchRange, location_name: "range"))
|
@@ -479,6 +670,16 @@ module Aws::AppMesh
|
|
479
670
|
HealthCheckPolicy.add_member(:unhealthy_threshold, Shapes::ShapeRef.new(shape: HealthCheckThreshold, required: true, location_name: "unhealthyThreshold"))
|
480
671
|
HealthCheckPolicy.struct_class = Types::HealthCheckPolicy
|
481
672
|
|
673
|
+
HttpGatewayRoute.add_member(:action, Shapes::ShapeRef.new(shape: HttpGatewayRouteAction, required: true, location_name: "action"))
|
674
|
+
HttpGatewayRoute.add_member(:match, Shapes::ShapeRef.new(shape: HttpGatewayRouteMatch, required: true, location_name: "match"))
|
675
|
+
HttpGatewayRoute.struct_class = Types::HttpGatewayRoute
|
676
|
+
|
677
|
+
HttpGatewayRouteAction.add_member(:target, Shapes::ShapeRef.new(shape: GatewayRouteTarget, required: true, location_name: "target"))
|
678
|
+
HttpGatewayRouteAction.struct_class = Types::HttpGatewayRouteAction
|
679
|
+
|
680
|
+
HttpGatewayRouteMatch.add_member(:prefix, Shapes::ShapeRef.new(shape: String, required: true, location_name: "prefix"))
|
681
|
+
HttpGatewayRouteMatch.struct_class = Types::HttpGatewayRouteMatch
|
682
|
+
|
482
683
|
HttpRetryPolicy.add_member(:http_retry_events, Shapes::ShapeRef.new(shape: HttpRetryPolicyEvents, location_name: "httpRetryEvents"))
|
483
684
|
HttpRetryPolicy.add_member(:max_retries, Shapes::ShapeRef.new(shape: MaxRetries, required: true, location_name: "maxRetries"))
|
484
685
|
HttpRetryPolicy.add_member(:per_retry_timeout, Shapes::ShapeRef.new(shape: Duration, required: true, location_name: "perRetryTimeout"))
|
@@ -490,6 +691,7 @@ module Aws::AppMesh
|
|
490
691
|
HttpRoute.add_member(:action, Shapes::ShapeRef.new(shape: HttpRouteAction, required: true, location_name: "action"))
|
491
692
|
HttpRoute.add_member(:match, Shapes::ShapeRef.new(shape: HttpRouteMatch, required: true, location_name: "match"))
|
492
693
|
HttpRoute.add_member(:retry_policy, Shapes::ShapeRef.new(shape: HttpRetryPolicy, location_name: "retryPolicy"))
|
694
|
+
HttpRoute.add_member(:timeout, Shapes::ShapeRef.new(shape: HttpTimeout, location_name: "timeout"))
|
493
695
|
HttpRoute.struct_class = Types::HttpRoute
|
494
696
|
|
495
697
|
HttpRouteAction.add_member(:weighted_targets, Shapes::ShapeRef.new(shape: WeightedTargets, required: true, location_name: "weightedTargets"))
|
@@ -508,12 +710,27 @@ module Aws::AppMesh
|
|
508
710
|
HttpRouteMatch.add_member(:scheme, Shapes::ShapeRef.new(shape: HttpScheme, location_name: "scheme"))
|
509
711
|
HttpRouteMatch.struct_class = Types::HttpRouteMatch
|
510
712
|
|
713
|
+
HttpTimeout.add_member(:idle, Shapes::ShapeRef.new(shape: Duration, location_name: "idle"))
|
714
|
+
HttpTimeout.add_member(:per_request, Shapes::ShapeRef.new(shape: Duration, location_name: "perRequest"))
|
715
|
+
HttpTimeout.struct_class = Types::HttpTimeout
|
716
|
+
|
511
717
|
InternalServerErrorException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
512
718
|
InternalServerErrorException.struct_class = Types::InternalServerErrorException
|
513
719
|
|
514
720
|
LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
515
721
|
LimitExceededException.struct_class = Types::LimitExceededException
|
516
722
|
|
723
|
+
ListGatewayRoutesInput.add_member(:limit, Shapes::ShapeRef.new(shape: ListGatewayRoutesLimit, location: "querystring", location_name: "limit"))
|
724
|
+
ListGatewayRoutesInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
725
|
+
ListGatewayRoutesInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
726
|
+
ListGatewayRoutesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
|
727
|
+
ListGatewayRoutesInput.add_member(:virtual_gateway_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "virtualGatewayName"))
|
728
|
+
ListGatewayRoutesInput.struct_class = Types::ListGatewayRoutesInput
|
729
|
+
|
730
|
+
ListGatewayRoutesOutput.add_member(:gateway_routes, Shapes::ShapeRef.new(shape: GatewayRouteList, required: true, location_name: "gatewayRoutes"))
|
731
|
+
ListGatewayRoutesOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
732
|
+
ListGatewayRoutesOutput.struct_class = Types::ListGatewayRoutesOutput
|
733
|
+
|
517
734
|
ListMeshesInput.add_member(:limit, Shapes::ShapeRef.new(shape: ListMeshesLimit, location: "querystring", location_name: "limit"))
|
518
735
|
ListMeshesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
|
519
736
|
ListMeshesInput.struct_class = Types::ListMeshesInput
|
@@ -542,6 +759,16 @@ module Aws::AppMesh
|
|
542
759
|
ListTagsForResourceOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, required: true, location_name: "tags"))
|
543
760
|
ListTagsForResourceOutput.struct_class = Types::ListTagsForResourceOutput
|
544
761
|
|
762
|
+
ListVirtualGatewaysInput.add_member(:limit, Shapes::ShapeRef.new(shape: ListVirtualGatewaysLimit, location: "querystring", location_name: "limit"))
|
763
|
+
ListVirtualGatewaysInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
764
|
+
ListVirtualGatewaysInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
765
|
+
ListVirtualGatewaysInput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
|
766
|
+
ListVirtualGatewaysInput.struct_class = Types::ListVirtualGatewaysInput
|
767
|
+
|
768
|
+
ListVirtualGatewaysOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
769
|
+
ListVirtualGatewaysOutput.add_member(:virtual_gateways, Shapes::ShapeRef.new(shape: VirtualGatewayList, required: true, location_name: "virtualGateways"))
|
770
|
+
ListVirtualGatewaysOutput.struct_class = Types::ListVirtualGatewaysOutput
|
771
|
+
|
545
772
|
ListVirtualNodesInput.add_member(:limit, Shapes::ShapeRef.new(shape: ListVirtualNodesLimit, location: "querystring", location_name: "limit"))
|
546
773
|
ListVirtualNodesInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
547
774
|
ListVirtualNodesInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
@@ -574,9 +801,16 @@ module Aws::AppMesh
|
|
574
801
|
|
575
802
|
Listener.add_member(:health_check, Shapes::ShapeRef.new(shape: HealthCheckPolicy, location_name: "healthCheck"))
|
576
803
|
Listener.add_member(:port_mapping, Shapes::ShapeRef.new(shape: PortMapping, required: true, location_name: "portMapping"))
|
804
|
+
Listener.add_member(:timeout, Shapes::ShapeRef.new(shape: ListenerTimeout, location_name: "timeout"))
|
577
805
|
Listener.add_member(:tls, Shapes::ShapeRef.new(shape: ListenerTls, location_name: "tls"))
|
578
806
|
Listener.struct_class = Types::Listener
|
579
807
|
|
808
|
+
ListenerTimeout.add_member(:grpc, Shapes::ShapeRef.new(shape: GrpcTimeout, location_name: "grpc"))
|
809
|
+
ListenerTimeout.add_member(:http, Shapes::ShapeRef.new(shape: HttpTimeout, location_name: "http"))
|
810
|
+
ListenerTimeout.add_member(:http2, Shapes::ShapeRef.new(shape: HttpTimeout, location_name: "http2"))
|
811
|
+
ListenerTimeout.add_member(:tcp, Shapes::ShapeRef.new(shape: TcpTimeout, location_name: "tcp"))
|
812
|
+
ListenerTimeout.struct_class = Types::ListenerTimeout
|
813
|
+
|
580
814
|
ListenerTls.add_member(:certificate, Shapes::ShapeRef.new(shape: ListenerTlsCertificate, required: true, location_name: "certificate"))
|
581
815
|
ListenerTls.add_member(:mode, Shapes::ShapeRef.new(shape: ListenerTlsMode, required: true, location_name: "mode"))
|
582
816
|
ListenerTls.struct_class = Types::ListenerTls
|
@@ -700,11 +934,15 @@ module Aws::AppMesh
|
|
700
934
|
TcpRetryPolicyEvents.member = Shapes::ShapeRef.new(shape: TcpRetryPolicyEvent)
|
701
935
|
|
702
936
|
TcpRoute.add_member(:action, Shapes::ShapeRef.new(shape: TcpRouteAction, required: true, location_name: "action"))
|
937
|
+
TcpRoute.add_member(:timeout, Shapes::ShapeRef.new(shape: TcpTimeout, location_name: "timeout"))
|
703
938
|
TcpRoute.struct_class = Types::TcpRoute
|
704
939
|
|
705
940
|
TcpRouteAction.add_member(:weighted_targets, Shapes::ShapeRef.new(shape: WeightedTargets, required: true, location_name: "weightedTargets"))
|
706
941
|
TcpRouteAction.struct_class = Types::TcpRouteAction
|
707
942
|
|
943
|
+
TcpTimeout.add_member(:idle, Shapes::ShapeRef.new(shape: Duration, location_name: "idle"))
|
944
|
+
TcpTimeout.struct_class = Types::TcpTimeout
|
945
|
+
|
708
946
|
TlsValidationContext.add_member(:trust, Shapes::ShapeRef.new(shape: TlsValidationContextTrust, required: true, location_name: "trust"))
|
709
947
|
TlsValidationContext.struct_class = Types::TlsValidationContext
|
710
948
|
|
@@ -730,6 +968,19 @@ module Aws::AppMesh
|
|
730
968
|
|
731
969
|
UntagResourceOutput.struct_class = Types::UntagResourceOutput
|
732
970
|
|
971
|
+
UpdateGatewayRouteInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
972
|
+
UpdateGatewayRouteInput.add_member(:gateway_route_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "gatewayRouteName"))
|
973
|
+
UpdateGatewayRouteInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
974
|
+
UpdateGatewayRouteInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
975
|
+
UpdateGatewayRouteInput.add_member(:spec, Shapes::ShapeRef.new(shape: GatewayRouteSpec, required: true, location_name: "spec"))
|
976
|
+
UpdateGatewayRouteInput.add_member(:virtual_gateway_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "virtualGatewayName"))
|
977
|
+
UpdateGatewayRouteInput.struct_class = Types::UpdateGatewayRouteInput
|
978
|
+
|
979
|
+
UpdateGatewayRouteOutput.add_member(:gateway_route, Shapes::ShapeRef.new(shape: GatewayRouteData, required: true, location_name: "gatewayRoute"))
|
980
|
+
UpdateGatewayRouteOutput.struct_class = Types::UpdateGatewayRouteOutput
|
981
|
+
UpdateGatewayRouteOutput[:payload] = :gateway_route
|
982
|
+
UpdateGatewayRouteOutput[:payload_member] = UpdateGatewayRouteOutput.member(:gateway_route)
|
983
|
+
|
733
984
|
UpdateMeshInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
734
985
|
UpdateMeshInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
735
986
|
UpdateMeshInput.add_member(:spec, Shapes::ShapeRef.new(shape: MeshSpec, location_name: "spec"))
|
@@ -753,6 +1004,18 @@ module Aws::AppMesh
|
|
753
1004
|
UpdateRouteOutput[:payload] = :route
|
754
1005
|
UpdateRouteOutput[:payload_member] = UpdateRouteOutput.member(:route)
|
755
1006
|
|
1007
|
+
UpdateVirtualGatewayInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
1008
|
+
UpdateVirtualGatewayInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
1009
|
+
UpdateVirtualGatewayInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
1010
|
+
UpdateVirtualGatewayInput.add_member(:spec, Shapes::ShapeRef.new(shape: VirtualGatewaySpec, required: true, location_name: "spec"))
|
1011
|
+
UpdateVirtualGatewayInput.add_member(:virtual_gateway_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "virtualGatewayName"))
|
1012
|
+
UpdateVirtualGatewayInput.struct_class = Types::UpdateVirtualGatewayInput
|
1013
|
+
|
1014
|
+
UpdateVirtualGatewayOutput.add_member(:virtual_gateway, Shapes::ShapeRef.new(shape: VirtualGatewayData, required: true, location_name: "virtualGateway"))
|
1015
|
+
UpdateVirtualGatewayOutput.struct_class = Types::UpdateVirtualGatewayOutput
|
1016
|
+
UpdateVirtualGatewayOutput[:payload] = :virtual_gateway
|
1017
|
+
UpdateVirtualGatewayOutput[:payload_member] = UpdateVirtualGatewayOutput.member(:virtual_gateway)
|
1018
|
+
|
756
1019
|
UpdateVirtualNodeInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
757
1020
|
UpdateVirtualNodeInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
|
758
1021
|
UpdateVirtualNodeInput.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "meshOwner"))
|
@@ -789,6 +1052,103 @@ module Aws::AppMesh
|
|
789
1052
|
UpdateVirtualServiceOutput[:payload] = :virtual_service
|
790
1053
|
UpdateVirtualServiceOutput[:payload_member] = UpdateVirtualServiceOutput.member(:virtual_service)
|
791
1054
|
|
1055
|
+
VirtualGatewayAccessLog.add_member(:file, Shapes::ShapeRef.new(shape: VirtualGatewayFileAccessLog, location_name: "file"))
|
1056
|
+
VirtualGatewayAccessLog.struct_class = Types::VirtualGatewayAccessLog
|
1057
|
+
|
1058
|
+
VirtualGatewayBackendDefaults.add_member(:client_policy, Shapes::ShapeRef.new(shape: VirtualGatewayClientPolicy, location_name: "clientPolicy"))
|
1059
|
+
VirtualGatewayBackendDefaults.struct_class = Types::VirtualGatewayBackendDefaults
|
1060
|
+
|
1061
|
+
VirtualGatewayCertificateAuthorityArns.member = Shapes::ShapeRef.new(shape: Arn)
|
1062
|
+
|
1063
|
+
VirtualGatewayClientPolicy.add_member(:tls, Shapes::ShapeRef.new(shape: VirtualGatewayClientPolicyTls, location_name: "tls"))
|
1064
|
+
VirtualGatewayClientPolicy.struct_class = Types::VirtualGatewayClientPolicy
|
1065
|
+
|
1066
|
+
VirtualGatewayClientPolicyTls.add_member(:enforce, Shapes::ShapeRef.new(shape: Boolean, location_name: "enforce", metadata: {"box"=>true}))
|
1067
|
+
VirtualGatewayClientPolicyTls.add_member(:ports, Shapes::ShapeRef.new(shape: PortSet, location_name: "ports"))
|
1068
|
+
VirtualGatewayClientPolicyTls.add_member(:validation, Shapes::ShapeRef.new(shape: VirtualGatewayTlsValidationContext, required: true, location_name: "validation"))
|
1069
|
+
VirtualGatewayClientPolicyTls.struct_class = Types::VirtualGatewayClientPolicyTls
|
1070
|
+
|
1071
|
+
VirtualGatewayData.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
1072
|
+
VirtualGatewayData.add_member(:metadata, Shapes::ShapeRef.new(shape: ResourceMetadata, required: true, location_name: "metadata"))
|
1073
|
+
VirtualGatewayData.add_member(:spec, Shapes::ShapeRef.new(shape: VirtualGatewaySpec, required: true, location_name: "spec"))
|
1074
|
+
VirtualGatewayData.add_member(:status, Shapes::ShapeRef.new(shape: VirtualGatewayStatus, required: true, location_name: "status"))
|
1075
|
+
VirtualGatewayData.add_member(:virtual_gateway_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualGatewayName"))
|
1076
|
+
VirtualGatewayData.struct_class = Types::VirtualGatewayData
|
1077
|
+
|
1078
|
+
VirtualGatewayFileAccessLog.add_member(:path, Shapes::ShapeRef.new(shape: FilePath, required: true, location_name: "path"))
|
1079
|
+
VirtualGatewayFileAccessLog.struct_class = Types::VirtualGatewayFileAccessLog
|
1080
|
+
|
1081
|
+
VirtualGatewayHealthCheckPolicy.add_member(:healthy_threshold, Shapes::ShapeRef.new(shape: VirtualGatewayHealthCheckThreshold, required: true, location_name: "healthyThreshold"))
|
1082
|
+
VirtualGatewayHealthCheckPolicy.add_member(:interval_millis, Shapes::ShapeRef.new(shape: VirtualGatewayHealthCheckIntervalMillis, required: true, location_name: "intervalMillis"))
|
1083
|
+
VirtualGatewayHealthCheckPolicy.add_member(:path, Shapes::ShapeRef.new(shape: String, location_name: "path"))
|
1084
|
+
VirtualGatewayHealthCheckPolicy.add_member(:port, Shapes::ShapeRef.new(shape: PortNumber, location_name: "port"))
|
1085
|
+
VirtualGatewayHealthCheckPolicy.add_member(:protocol, Shapes::ShapeRef.new(shape: VirtualGatewayPortProtocol, required: true, location_name: "protocol"))
|
1086
|
+
VirtualGatewayHealthCheckPolicy.add_member(:timeout_millis, Shapes::ShapeRef.new(shape: VirtualGatewayHealthCheckTimeoutMillis, required: true, location_name: "timeoutMillis"))
|
1087
|
+
VirtualGatewayHealthCheckPolicy.add_member(:unhealthy_threshold, Shapes::ShapeRef.new(shape: VirtualGatewayHealthCheckThreshold, required: true, location_name: "unhealthyThreshold"))
|
1088
|
+
VirtualGatewayHealthCheckPolicy.struct_class = Types::VirtualGatewayHealthCheckPolicy
|
1089
|
+
|
1090
|
+
VirtualGatewayList.member = Shapes::ShapeRef.new(shape: VirtualGatewayRef)
|
1091
|
+
|
1092
|
+
VirtualGatewayListener.add_member(:health_check, Shapes::ShapeRef.new(shape: VirtualGatewayHealthCheckPolicy, location_name: "healthCheck"))
|
1093
|
+
VirtualGatewayListener.add_member(:port_mapping, Shapes::ShapeRef.new(shape: VirtualGatewayPortMapping, required: true, location_name: "portMapping"))
|
1094
|
+
VirtualGatewayListener.add_member(:tls, Shapes::ShapeRef.new(shape: VirtualGatewayListenerTls, location_name: "tls"))
|
1095
|
+
VirtualGatewayListener.struct_class = Types::VirtualGatewayListener
|
1096
|
+
|
1097
|
+
VirtualGatewayListenerTls.add_member(:certificate, Shapes::ShapeRef.new(shape: VirtualGatewayListenerTlsCertificate, required: true, location_name: "certificate"))
|
1098
|
+
VirtualGatewayListenerTls.add_member(:mode, Shapes::ShapeRef.new(shape: VirtualGatewayListenerTlsMode, required: true, location_name: "mode"))
|
1099
|
+
VirtualGatewayListenerTls.struct_class = Types::VirtualGatewayListenerTls
|
1100
|
+
|
1101
|
+
VirtualGatewayListenerTlsAcmCertificate.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "certificateArn"))
|
1102
|
+
VirtualGatewayListenerTlsAcmCertificate.struct_class = Types::VirtualGatewayListenerTlsAcmCertificate
|
1103
|
+
|
1104
|
+
VirtualGatewayListenerTlsCertificate.add_member(:acm, Shapes::ShapeRef.new(shape: VirtualGatewayListenerTlsAcmCertificate, location_name: "acm"))
|
1105
|
+
VirtualGatewayListenerTlsCertificate.add_member(:file, Shapes::ShapeRef.new(shape: VirtualGatewayListenerTlsFileCertificate, location_name: "file"))
|
1106
|
+
VirtualGatewayListenerTlsCertificate.struct_class = Types::VirtualGatewayListenerTlsCertificate
|
1107
|
+
|
1108
|
+
VirtualGatewayListenerTlsFileCertificate.add_member(:certificate_chain, Shapes::ShapeRef.new(shape: FilePath, required: true, location_name: "certificateChain"))
|
1109
|
+
VirtualGatewayListenerTlsFileCertificate.add_member(:private_key, Shapes::ShapeRef.new(shape: FilePath, required: true, location_name: "privateKey"))
|
1110
|
+
VirtualGatewayListenerTlsFileCertificate.struct_class = Types::VirtualGatewayListenerTlsFileCertificate
|
1111
|
+
|
1112
|
+
VirtualGatewayListeners.member = Shapes::ShapeRef.new(shape: VirtualGatewayListener)
|
1113
|
+
|
1114
|
+
VirtualGatewayLogging.add_member(:access_log, Shapes::ShapeRef.new(shape: VirtualGatewayAccessLog, location_name: "accessLog"))
|
1115
|
+
VirtualGatewayLogging.struct_class = Types::VirtualGatewayLogging
|
1116
|
+
|
1117
|
+
VirtualGatewayPortMapping.add_member(:port, Shapes::ShapeRef.new(shape: PortNumber, required: true, location_name: "port"))
|
1118
|
+
VirtualGatewayPortMapping.add_member(:protocol, Shapes::ShapeRef.new(shape: VirtualGatewayPortProtocol, required: true, location_name: "protocol"))
|
1119
|
+
VirtualGatewayPortMapping.struct_class = Types::VirtualGatewayPortMapping
|
1120
|
+
|
1121
|
+
VirtualGatewayRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
1122
|
+
VirtualGatewayRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
1123
|
+
VirtualGatewayRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
1124
|
+
VirtualGatewayRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
1125
|
+
VirtualGatewayRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
1126
|
+
VirtualGatewayRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
1127
|
+
VirtualGatewayRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
1128
|
+
VirtualGatewayRef.add_member(:virtual_gateway_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualGatewayName"))
|
1129
|
+
VirtualGatewayRef.struct_class = Types::VirtualGatewayRef
|
1130
|
+
|
1131
|
+
VirtualGatewaySpec.add_member(:backend_defaults, Shapes::ShapeRef.new(shape: VirtualGatewayBackendDefaults, location_name: "backendDefaults"))
|
1132
|
+
VirtualGatewaySpec.add_member(:listeners, Shapes::ShapeRef.new(shape: VirtualGatewayListeners, required: true, location_name: "listeners"))
|
1133
|
+
VirtualGatewaySpec.add_member(:logging, Shapes::ShapeRef.new(shape: VirtualGatewayLogging, location_name: "logging"))
|
1134
|
+
VirtualGatewaySpec.struct_class = Types::VirtualGatewaySpec
|
1135
|
+
|
1136
|
+
VirtualGatewayStatus.add_member(:status, Shapes::ShapeRef.new(shape: VirtualGatewayStatusCode, required: true, location_name: "status"))
|
1137
|
+
VirtualGatewayStatus.struct_class = Types::VirtualGatewayStatus
|
1138
|
+
|
1139
|
+
VirtualGatewayTlsValidationContext.add_member(:trust, Shapes::ShapeRef.new(shape: VirtualGatewayTlsValidationContextTrust, required: true, location_name: "trust"))
|
1140
|
+
VirtualGatewayTlsValidationContext.struct_class = Types::VirtualGatewayTlsValidationContext
|
1141
|
+
|
1142
|
+
VirtualGatewayTlsValidationContextAcmTrust.add_member(:certificate_authority_arns, Shapes::ShapeRef.new(shape: VirtualGatewayCertificateAuthorityArns, required: true, location_name: "certificateAuthorityArns"))
|
1143
|
+
VirtualGatewayTlsValidationContextAcmTrust.struct_class = Types::VirtualGatewayTlsValidationContextAcmTrust
|
1144
|
+
|
1145
|
+
VirtualGatewayTlsValidationContextFileTrust.add_member(:certificate_chain, Shapes::ShapeRef.new(shape: FilePath, required: true, location_name: "certificateChain"))
|
1146
|
+
VirtualGatewayTlsValidationContextFileTrust.struct_class = Types::VirtualGatewayTlsValidationContextFileTrust
|
1147
|
+
|
1148
|
+
VirtualGatewayTlsValidationContextTrust.add_member(:acm, Shapes::ShapeRef.new(shape: VirtualGatewayTlsValidationContextAcmTrust, location_name: "acm"))
|
1149
|
+
VirtualGatewayTlsValidationContextTrust.add_member(:file, Shapes::ShapeRef.new(shape: VirtualGatewayTlsValidationContextFileTrust, location_name: "file"))
|
1150
|
+
VirtualGatewayTlsValidationContextTrust.struct_class = Types::VirtualGatewayTlsValidationContextTrust
|
1151
|
+
|
792
1152
|
VirtualNodeData.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
793
1153
|
VirtualNodeData.add_member(:metadata, Shapes::ShapeRef.new(shape: ResourceMetadata, required: true, location_name: "metadata"))
|
794
1154
|
VirtualNodeData.add_member(:spec, Shapes::ShapeRef.new(shape: VirtualNodeSpec, required: true, location_name: "spec"))
|
@@ -911,6 +1271,22 @@ module Aws::AppMesh
|
|
911
1271
|
"uid" => "appmesh-2019-01-25",
|
912
1272
|
}
|
913
1273
|
|
1274
|
+
api.add_operation(:create_gateway_route, Seahorse::Model::Operation.new.tap do |o|
|
1275
|
+
o.name = "CreateGatewayRoute"
|
1276
|
+
o.http_method = "PUT"
|
1277
|
+
o.http_request_uri = "/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes"
|
1278
|
+
o.input = Shapes::ShapeRef.new(shape: CreateGatewayRouteInput)
|
1279
|
+
o.output = Shapes::ShapeRef.new(shape: CreateGatewayRouteOutput)
|
1280
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1281
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1282
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1283
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1284
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1285
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1286
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1287
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1288
|
+
end)
|
1289
|
+
|
914
1290
|
api.add_operation(:create_mesh, Seahorse::Model::Operation.new.tap do |o|
|
915
1291
|
o.name = "CreateMesh"
|
916
1292
|
o.http_method = "PUT"
|
@@ -943,6 +1319,22 @@ module Aws::AppMesh
|
|
943
1319
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
944
1320
|
end)
|
945
1321
|
|
1322
|
+
api.add_operation(:create_virtual_gateway, Seahorse::Model::Operation.new.tap do |o|
|
1323
|
+
o.name = "CreateVirtualGateway"
|
1324
|
+
o.http_method = "PUT"
|
1325
|
+
o.http_request_uri = "/v20190125/meshes/{meshName}/virtualGateways"
|
1326
|
+
o.input = Shapes::ShapeRef.new(shape: CreateVirtualGatewayInput)
|
1327
|
+
o.output = Shapes::ShapeRef.new(shape: CreateVirtualGatewayOutput)
|
1328
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1329
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1330
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1331
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1332
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1333
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1334
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1335
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1336
|
+
end)
|
1337
|
+
|
946
1338
|
api.add_operation(:create_virtual_node, Seahorse::Model::Operation.new.tap do |o|
|
947
1339
|
o.name = "CreateVirtualNode"
|
948
1340
|
o.http_method = "PUT"
|
@@ -991,6 +1383,21 @@ module Aws::AppMesh
|
|
991
1383
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
992
1384
|
end)
|
993
1385
|
|
1386
|
+
api.add_operation(:delete_gateway_route, Seahorse::Model::Operation.new.tap do |o|
|
1387
|
+
o.name = "DeleteGatewayRoute"
|
1388
|
+
o.http_method = "DELETE"
|
1389
|
+
o.http_request_uri = "/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes/{gatewayRouteName}"
|
1390
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteGatewayRouteInput)
|
1391
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteGatewayRouteOutput)
|
1392
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1393
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1394
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1395
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1396
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1397
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1398
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1399
|
+
end)
|
1400
|
+
|
994
1401
|
api.add_operation(:delete_mesh, Seahorse::Model::Operation.new.tap do |o|
|
995
1402
|
o.name = "DeleteMesh"
|
996
1403
|
o.http_method = "DELETE"
|
@@ -1021,6 +1428,21 @@ module Aws::AppMesh
|
|
1021
1428
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1022
1429
|
end)
|
1023
1430
|
|
1431
|
+
api.add_operation(:delete_virtual_gateway, Seahorse::Model::Operation.new.tap do |o|
|
1432
|
+
o.name = "DeleteVirtualGateway"
|
1433
|
+
o.http_method = "DELETE"
|
1434
|
+
o.http_request_uri = "/v20190125/meshes/{meshName}/virtualGateways/{virtualGatewayName}"
|
1435
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteVirtualGatewayInput)
|
1436
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteVirtualGatewayOutput)
|
1437
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1438
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1439
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1440
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1441
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1442
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1443
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1444
|
+
end)
|
1445
|
+
|
1024
1446
|
api.add_operation(:delete_virtual_node, Seahorse::Model::Operation.new.tap do |o|
|
1025
1447
|
o.name = "DeleteVirtualNode"
|
1026
1448
|
o.http_method = "DELETE"
|
@@ -1066,6 +1488,20 @@ module Aws::AppMesh
|
|
1066
1488
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1067
1489
|
end)
|
1068
1490
|
|
1491
|
+
api.add_operation(:describe_gateway_route, Seahorse::Model::Operation.new.tap do |o|
|
1492
|
+
o.name = "DescribeGatewayRoute"
|
1493
|
+
o.http_method = "GET"
|
1494
|
+
o.http_request_uri = "/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes/{gatewayRouteName}"
|
1495
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeGatewayRouteInput)
|
1496
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeGatewayRouteOutput)
|
1497
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1498
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1499
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1500
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1501
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1502
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1503
|
+
end)
|
1504
|
+
|
1069
1505
|
api.add_operation(:describe_mesh, Seahorse::Model::Operation.new.tap do |o|
|
1070
1506
|
o.name = "DescribeMesh"
|
1071
1507
|
o.http_method = "GET"
|
@@ -1094,6 +1530,20 @@ module Aws::AppMesh
|
|
1094
1530
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1095
1531
|
end)
|
1096
1532
|
|
1533
|
+
api.add_operation(:describe_virtual_gateway, Seahorse::Model::Operation.new.tap do |o|
|
1534
|
+
o.name = "DescribeVirtualGateway"
|
1535
|
+
o.http_method = "GET"
|
1536
|
+
o.http_request_uri = "/v20190125/meshes/{meshName}/virtualGateways/{virtualGatewayName}"
|
1537
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeVirtualGatewayInput)
|
1538
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeVirtualGatewayOutput)
|
1539
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1540
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1541
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1542
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1543
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1544
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1545
|
+
end)
|
1546
|
+
|
1097
1547
|
api.add_operation(:describe_virtual_node, Seahorse::Model::Operation.new.tap do |o|
|
1098
1548
|
o.name = "DescribeVirtualNode"
|
1099
1549
|
o.http_method = "GET"
|
@@ -1136,6 +1586,26 @@ module Aws::AppMesh
|
|
1136
1586
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1137
1587
|
end)
|
1138
1588
|
|
1589
|
+
api.add_operation(:list_gateway_routes, Seahorse::Model::Operation.new.tap do |o|
|
1590
|
+
o.name = "ListGatewayRoutes"
|
1591
|
+
o.http_method = "GET"
|
1592
|
+
o.http_request_uri = "/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes"
|
1593
|
+
o.input = Shapes::ShapeRef.new(shape: ListGatewayRoutesInput)
|
1594
|
+
o.output = Shapes::ShapeRef.new(shape: ListGatewayRoutesOutput)
|
1595
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1596
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1597
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1598
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1599
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1600
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1601
|
+
o[:pager] = Aws::Pager.new(
|
1602
|
+
limit_key: "limit",
|
1603
|
+
tokens: {
|
1604
|
+
"next_token" => "next_token"
|
1605
|
+
}
|
1606
|
+
)
|
1607
|
+
end)
|
1608
|
+
|
1139
1609
|
api.add_operation(:list_meshes, Seahorse::Model::Operation.new.tap do |o|
|
1140
1610
|
o.name = "ListMeshes"
|
1141
1611
|
o.http_method = "GET"
|
@@ -1196,6 +1666,26 @@ module Aws::AppMesh
|
|
1196
1666
|
)
|
1197
1667
|
end)
|
1198
1668
|
|
1669
|
+
api.add_operation(:list_virtual_gateways, Seahorse::Model::Operation.new.tap do |o|
|
1670
|
+
o.name = "ListVirtualGateways"
|
1671
|
+
o.http_method = "GET"
|
1672
|
+
o.http_request_uri = "/v20190125/meshes/{meshName}/virtualGateways"
|
1673
|
+
o.input = Shapes::ShapeRef.new(shape: ListVirtualGatewaysInput)
|
1674
|
+
o.output = Shapes::ShapeRef.new(shape: ListVirtualGatewaysOutput)
|
1675
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1676
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1677
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1678
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1679
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1680
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1681
|
+
o[:pager] = Aws::Pager.new(
|
1682
|
+
limit_key: "limit",
|
1683
|
+
tokens: {
|
1684
|
+
"next_token" => "next_token"
|
1685
|
+
}
|
1686
|
+
)
|
1687
|
+
end)
|
1688
|
+
|
1199
1689
|
api.add_operation(:list_virtual_nodes, Seahorse::Model::Operation.new.tap do |o|
|
1200
1690
|
o.name = "ListVirtualNodes"
|
1201
1691
|
o.http_method = "GET"
|
@@ -1285,6 +1775,22 @@ module Aws::AppMesh
|
|
1285
1775
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1286
1776
|
end)
|
1287
1777
|
|
1778
|
+
api.add_operation(:update_gateway_route, Seahorse::Model::Operation.new.tap do |o|
|
1779
|
+
o.name = "UpdateGatewayRoute"
|
1780
|
+
o.http_method = "PUT"
|
1781
|
+
o.http_request_uri = "/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes/{gatewayRouteName}"
|
1782
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateGatewayRouteInput)
|
1783
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateGatewayRouteOutput)
|
1784
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1785
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1786
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1787
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1788
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1789
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1790
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1791
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1792
|
+
end)
|
1793
|
+
|
1288
1794
|
api.add_operation(:update_mesh, Seahorse::Model::Operation.new.tap do |o|
|
1289
1795
|
o.name = "UpdateMesh"
|
1290
1796
|
o.http_method = "PUT"
|
@@ -1316,6 +1822,22 @@ module Aws::AppMesh
|
|
1316
1822
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1317
1823
|
end)
|
1318
1824
|
|
1825
|
+
api.add_operation(:update_virtual_gateway, Seahorse::Model::Operation.new.tap do |o|
|
1826
|
+
o.name = "UpdateVirtualGateway"
|
1827
|
+
o.http_method = "PUT"
|
1828
|
+
o.http_request_uri = "/v20190125/meshes/{meshName}/virtualGateways/{virtualGatewayName}"
|
1829
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateVirtualGatewayInput)
|
1830
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateVirtualGatewayOutput)
|
1831
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1832
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1833
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1834
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1835
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1836
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1837
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1838
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1839
|
+
end)
|
1840
|
+
|
1319
1841
|
api.add_operation(:update_virtual_node, Seahorse::Model::Operation.new.tap do |o|
|
1320
1842
|
o.name = "UpdateVirtualNode"
|
1321
1843
|
o.http_method = "PUT"
|