aws-sdk-appmesh 1.90.0 → 1.92.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appmesh/client.rb +1 -1
- data/lib/aws-sdk-appmesh.rb +1 -1
- data/sig/client.rbs +22 -1460
- data/sig/params.rbs +681 -0
- metadata +4 -3
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,681 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module AppMesh
|
|
10
|
+
module Params
|
|
11
|
+
type grpc_gateway_route_action = {
|
|
12
|
+
rewrite: {
|
|
13
|
+
hostname: {
|
|
14
|
+
default_target_hostname: ("ENABLED" | "DISABLED")?
|
|
15
|
+
}?
|
|
16
|
+
}?,
|
|
17
|
+
target: {
|
|
18
|
+
port: ::Integer?,
|
|
19
|
+
virtual_service: {
|
|
20
|
+
virtual_service_name: ::String
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
type grpc_gateway_route_match = {
|
|
26
|
+
hostname: {
|
|
27
|
+
exact: ::String?,
|
|
28
|
+
suffix: ::String?
|
|
29
|
+
}?,
|
|
30
|
+
metadata: Array[
|
|
31
|
+
Params::grpc_gateway_route_metadata
|
|
32
|
+
]?,
|
|
33
|
+
port: ::Integer?,
|
|
34
|
+
service_name: ::String?
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
type grpc_gateway_route = {
|
|
38
|
+
action: Params::grpc_gateway_route_action,
|
|
39
|
+
match: Params::grpc_gateway_route_match
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
type http_gateway_route_rewrite = {
|
|
43
|
+
hostname: {
|
|
44
|
+
default_target_hostname: ("ENABLED" | "DISABLED")?
|
|
45
|
+
}?,
|
|
46
|
+
path: {
|
|
47
|
+
exact: ::String?
|
|
48
|
+
}?,
|
|
49
|
+
prefix: {
|
|
50
|
+
default_prefix: ("ENABLED" | "DISABLED")?,
|
|
51
|
+
value: ::String?
|
|
52
|
+
}?
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
type http_gateway_route_action = {
|
|
56
|
+
rewrite: Params::http_gateway_route_rewrite?,
|
|
57
|
+
target: {
|
|
58
|
+
port: ::Integer?,
|
|
59
|
+
virtual_service: {
|
|
60
|
+
virtual_service_name: ::String
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
type http_gateway_route_match = {
|
|
66
|
+
headers: Array[
|
|
67
|
+
Params::http_gateway_route_header
|
|
68
|
+
]?,
|
|
69
|
+
hostname: {
|
|
70
|
+
exact: ::String?,
|
|
71
|
+
suffix: ::String?
|
|
72
|
+
}?,
|
|
73
|
+
method: ("GET" | "HEAD" | "POST" | "PUT" | "DELETE" | "CONNECT" | "OPTIONS" | "TRACE" | "PATCH")?,
|
|
74
|
+
path: {
|
|
75
|
+
exact: ::String?,
|
|
76
|
+
regex: ::String?
|
|
77
|
+
}?,
|
|
78
|
+
port: ::Integer?,
|
|
79
|
+
prefix: ::String?,
|
|
80
|
+
query_parameters: Array[
|
|
81
|
+
{
|
|
82
|
+
match: {
|
|
83
|
+
exact: ::String?
|
|
84
|
+
}?,
|
|
85
|
+
name: ::String
|
|
86
|
+
}
|
|
87
|
+
]?
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
type http_gateway_route = {
|
|
91
|
+
action: Params::http_gateway_route_action,
|
|
92
|
+
match: Params::http_gateway_route_match
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
type gateway_route_spec = {
|
|
96
|
+
grpc_route: Params::grpc_gateway_route?,
|
|
97
|
+
http2_route: Params::http_gateway_route?,
|
|
98
|
+
http_route: Params::http_gateway_route?,
|
|
99
|
+
priority: ::Integer?
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
type grpc_metadata_match_method = {
|
|
103
|
+
exact: ::String?,
|
|
104
|
+
prefix: ::String?,
|
|
105
|
+
range: {
|
|
106
|
+
end: ::Integer,
|
|
107
|
+
start: ::Integer
|
|
108
|
+
}?,
|
|
109
|
+
regex: ::String?,
|
|
110
|
+
suffix: ::String?
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
type grpc_gateway_route_metadata = {
|
|
114
|
+
invert: bool?,
|
|
115
|
+
match: Params::grpc_metadata_match_method?,
|
|
116
|
+
name: ::String
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
type header_match_method = {
|
|
120
|
+
exact: ::String?,
|
|
121
|
+
prefix: ::String?,
|
|
122
|
+
range: {
|
|
123
|
+
end: ::Integer,
|
|
124
|
+
start: ::Integer
|
|
125
|
+
}?,
|
|
126
|
+
regex: ::String?,
|
|
127
|
+
suffix: ::String?
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
type http_gateway_route_header = {
|
|
131
|
+
invert: bool?,
|
|
132
|
+
match: Params::header_match_method?,
|
|
133
|
+
name: ::String
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
type mesh_spec = {
|
|
137
|
+
egress_filter: {
|
|
138
|
+
type: ("ALLOW_ALL" | "DROP_ALL")
|
|
139
|
+
}?,
|
|
140
|
+
service_discovery: {
|
|
141
|
+
ip_preference: ("IPv6_PREFERRED" | "IPv4_PREFERRED" | "IPv4_ONLY" | "IPv6_ONLY")?
|
|
142
|
+
}?
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
type grpc_route_match = {
|
|
146
|
+
metadata: Array[
|
|
147
|
+
Params::grpc_route_metadata
|
|
148
|
+
]?,
|
|
149
|
+
method_name: ::String?,
|
|
150
|
+
port: ::Integer?,
|
|
151
|
+
service_name: ::String?
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
type grpc_retry_policy = {
|
|
155
|
+
grpc_retry_events: Array[("cancelled" | "deadline-exceeded" | "internal" | "resource-exhausted" | "unavailable")]?,
|
|
156
|
+
http_retry_events: Array[::String]?,
|
|
157
|
+
max_retries: ::Integer,
|
|
158
|
+
per_retry_timeout: {
|
|
159
|
+
unit: ("s" | "ms")?,
|
|
160
|
+
value: ::Integer?
|
|
161
|
+
},
|
|
162
|
+
tcp_retry_events: Array[("connection-error")]?
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
type grpc_timeout = {
|
|
166
|
+
idle: {
|
|
167
|
+
unit: ("s" | "ms")?,
|
|
168
|
+
value: ::Integer?
|
|
169
|
+
}?,
|
|
170
|
+
per_request: {
|
|
171
|
+
unit: ("s" | "ms")?,
|
|
172
|
+
value: ::Integer?
|
|
173
|
+
}?
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
type grpc_route = {
|
|
177
|
+
action: {
|
|
178
|
+
weighted_targets: Array[
|
|
179
|
+
{
|
|
180
|
+
port: ::Integer?,
|
|
181
|
+
virtual_node: ::String,
|
|
182
|
+
weight: ::Integer
|
|
183
|
+
}
|
|
184
|
+
]
|
|
185
|
+
},
|
|
186
|
+
match: Params::grpc_route_match,
|
|
187
|
+
retry_policy: Params::grpc_retry_policy?,
|
|
188
|
+
timeout: Params::grpc_timeout?
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
type http_route_match = {
|
|
192
|
+
headers: Array[
|
|
193
|
+
Params::http_route_header
|
|
194
|
+
]?,
|
|
195
|
+
method: ("GET" | "HEAD" | "POST" | "PUT" | "DELETE" | "CONNECT" | "OPTIONS" | "TRACE" | "PATCH")?,
|
|
196
|
+
path: {
|
|
197
|
+
exact: ::String?,
|
|
198
|
+
regex: ::String?
|
|
199
|
+
}?,
|
|
200
|
+
port: ::Integer?,
|
|
201
|
+
prefix: ::String?,
|
|
202
|
+
query_parameters: Array[
|
|
203
|
+
{
|
|
204
|
+
match: {
|
|
205
|
+
exact: ::String?
|
|
206
|
+
}?,
|
|
207
|
+
name: ::String
|
|
208
|
+
}
|
|
209
|
+
]?,
|
|
210
|
+
scheme: ("http" | "https")?
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
type http_retry_policy = {
|
|
214
|
+
http_retry_events: Array[::String]?,
|
|
215
|
+
max_retries: ::Integer,
|
|
216
|
+
per_retry_timeout: {
|
|
217
|
+
unit: ("s" | "ms")?,
|
|
218
|
+
value: ::Integer?
|
|
219
|
+
},
|
|
220
|
+
tcp_retry_events: Array[("connection-error")]?
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
type http_timeout = {
|
|
224
|
+
idle: {
|
|
225
|
+
unit: ("s" | "ms")?,
|
|
226
|
+
value: ::Integer?
|
|
227
|
+
}?,
|
|
228
|
+
per_request: {
|
|
229
|
+
unit: ("s" | "ms")?,
|
|
230
|
+
value: ::Integer?
|
|
231
|
+
}?
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
type http_route = {
|
|
235
|
+
action: {
|
|
236
|
+
weighted_targets: Array[
|
|
237
|
+
{
|
|
238
|
+
port: ::Integer?,
|
|
239
|
+
virtual_node: ::String,
|
|
240
|
+
weight: ::Integer
|
|
241
|
+
}
|
|
242
|
+
]
|
|
243
|
+
},
|
|
244
|
+
match: Params::http_route_match,
|
|
245
|
+
retry_policy: Params::http_retry_policy?,
|
|
246
|
+
timeout: Params::http_timeout?
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
type tcp_route = {
|
|
250
|
+
action: {
|
|
251
|
+
weighted_targets: Array[
|
|
252
|
+
{
|
|
253
|
+
port: ::Integer?,
|
|
254
|
+
virtual_node: ::String,
|
|
255
|
+
weight: ::Integer
|
|
256
|
+
}
|
|
257
|
+
]
|
|
258
|
+
},
|
|
259
|
+
match: {
|
|
260
|
+
port: ::Integer?
|
|
261
|
+
}?,
|
|
262
|
+
timeout: {
|
|
263
|
+
idle: {
|
|
264
|
+
unit: ("s" | "ms")?,
|
|
265
|
+
value: ::Integer?
|
|
266
|
+
}?
|
|
267
|
+
}?
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
type route_spec = {
|
|
271
|
+
grpc_route: Params::grpc_route?,
|
|
272
|
+
http2_route: Params::http_route?,
|
|
273
|
+
http_route: Params::http_route?,
|
|
274
|
+
priority: ::Integer?,
|
|
275
|
+
tcp_route: Params::tcp_route?
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
type grpc_route_metadata_match_method = {
|
|
279
|
+
exact: ::String?,
|
|
280
|
+
prefix: ::String?,
|
|
281
|
+
range: {
|
|
282
|
+
end: ::Integer,
|
|
283
|
+
start: ::Integer
|
|
284
|
+
}?,
|
|
285
|
+
regex: ::String?,
|
|
286
|
+
suffix: ::String?
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
type grpc_route_metadata = {
|
|
290
|
+
invert: bool?,
|
|
291
|
+
match: Params::grpc_route_metadata_match_method?,
|
|
292
|
+
name: ::String
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
type http_route_header = {
|
|
296
|
+
invert: bool?,
|
|
297
|
+
match: Params::header_match_method?,
|
|
298
|
+
name: ::String
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
type virtual_gateway_client_tls_certificate = {
|
|
302
|
+
file: {
|
|
303
|
+
certificate_chain: ::String,
|
|
304
|
+
private_key: ::String
|
|
305
|
+
}?,
|
|
306
|
+
sds: {
|
|
307
|
+
secret_name: ::String
|
|
308
|
+
}?
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
type virtual_gateway_tls_validation_context_trust = {
|
|
312
|
+
acm: {
|
|
313
|
+
certificate_authority_arns: Array[::String]
|
|
314
|
+
}?,
|
|
315
|
+
file: {
|
|
316
|
+
certificate_chain: ::String
|
|
317
|
+
}?,
|
|
318
|
+
sds: {
|
|
319
|
+
secret_name: ::String
|
|
320
|
+
}?
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
type virtual_gateway_tls_validation_context = {
|
|
324
|
+
subject_alternative_names: {
|
|
325
|
+
match: {
|
|
326
|
+
exact: Array[::String]
|
|
327
|
+
}
|
|
328
|
+
}?,
|
|
329
|
+
trust: Params::virtual_gateway_tls_validation_context_trust
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
type virtual_gateway_client_policy_tls = {
|
|
333
|
+
certificate: Params::virtual_gateway_client_tls_certificate?,
|
|
334
|
+
enforce: bool?,
|
|
335
|
+
ports: Array[::Integer]?,
|
|
336
|
+
validation: Params::virtual_gateway_tls_validation_context
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
type virtual_gateway_client_policy = {
|
|
340
|
+
tls: Params::virtual_gateway_client_policy_tls?
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
type virtual_gateway_backend_defaults = {
|
|
344
|
+
client_policy: Params::virtual_gateway_client_policy?
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
type virtual_gateway_file_access_log = {
|
|
348
|
+
format: {
|
|
349
|
+
json: Array[
|
|
350
|
+
{
|
|
351
|
+
key: ::String,
|
|
352
|
+
value: ::String
|
|
353
|
+
}
|
|
354
|
+
]?,
|
|
355
|
+
text: ::String?
|
|
356
|
+
}?,
|
|
357
|
+
path: ::String
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
type virtual_gateway_access_log = {
|
|
361
|
+
file: Params::virtual_gateway_file_access_log?
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
type virtual_gateway_logging = {
|
|
365
|
+
access_log: Params::virtual_gateway_access_log?
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
type virtual_gateway_spec = {
|
|
369
|
+
backend_defaults: Params::virtual_gateway_backend_defaults?,
|
|
370
|
+
listeners: Array[
|
|
371
|
+
Params::virtual_gateway_listener
|
|
372
|
+
],
|
|
373
|
+
logging: Params::virtual_gateway_logging?
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
type virtual_gateway_connection_pool = {
|
|
377
|
+
grpc: {
|
|
378
|
+
max_requests: ::Integer
|
|
379
|
+
}?,
|
|
380
|
+
http: {
|
|
381
|
+
max_connections: ::Integer,
|
|
382
|
+
max_pending_requests: ::Integer?
|
|
383
|
+
}?,
|
|
384
|
+
http2: {
|
|
385
|
+
max_requests: ::Integer
|
|
386
|
+
}?
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
type virtual_gateway_health_check_policy = {
|
|
390
|
+
healthy_threshold: ::Integer,
|
|
391
|
+
interval_millis: ::Integer,
|
|
392
|
+
path: ::String?,
|
|
393
|
+
port: ::Integer?,
|
|
394
|
+
protocol: ("http" | "http2" | "grpc"),
|
|
395
|
+
timeout_millis: ::Integer,
|
|
396
|
+
unhealthy_threshold: ::Integer
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
type virtual_gateway_listener_tls_certificate = {
|
|
400
|
+
acm: {
|
|
401
|
+
certificate_arn: ::String
|
|
402
|
+
}?,
|
|
403
|
+
file: {
|
|
404
|
+
certificate_chain: ::String,
|
|
405
|
+
private_key: ::String
|
|
406
|
+
}?,
|
|
407
|
+
sds: {
|
|
408
|
+
secret_name: ::String
|
|
409
|
+
}?
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
type virtual_gateway_listener_tls_validation_context_trust = {
|
|
413
|
+
file: {
|
|
414
|
+
certificate_chain: ::String
|
|
415
|
+
}?,
|
|
416
|
+
sds: {
|
|
417
|
+
secret_name: ::String
|
|
418
|
+
}?
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
type virtual_gateway_listener_tls_validation_context = {
|
|
422
|
+
subject_alternative_names: {
|
|
423
|
+
match: {
|
|
424
|
+
exact: Array[::String]
|
|
425
|
+
}
|
|
426
|
+
}?,
|
|
427
|
+
trust: Params::virtual_gateway_listener_tls_validation_context_trust
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
type virtual_gateway_listener_tls = {
|
|
431
|
+
certificate: Params::virtual_gateway_listener_tls_certificate,
|
|
432
|
+
mode: ("STRICT" | "PERMISSIVE" | "DISABLED"),
|
|
433
|
+
validation: Params::virtual_gateway_listener_tls_validation_context?
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
type virtual_gateway_listener = {
|
|
437
|
+
connection_pool: Params::virtual_gateway_connection_pool?,
|
|
438
|
+
health_check: Params::virtual_gateway_health_check_policy?,
|
|
439
|
+
port_mapping: {
|
|
440
|
+
port: ::Integer,
|
|
441
|
+
protocol: ("http" | "http2" | "grpc")
|
|
442
|
+
},
|
|
443
|
+
tls: Params::virtual_gateway_listener_tls?
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
type client_tls_certificate = {
|
|
447
|
+
file: {
|
|
448
|
+
certificate_chain: ::String,
|
|
449
|
+
private_key: ::String
|
|
450
|
+
}?,
|
|
451
|
+
sds: {
|
|
452
|
+
secret_name: ::String
|
|
453
|
+
}?
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
type tls_validation_context_trust = {
|
|
457
|
+
acm: {
|
|
458
|
+
certificate_authority_arns: Array[::String]
|
|
459
|
+
}?,
|
|
460
|
+
file: {
|
|
461
|
+
certificate_chain: ::String
|
|
462
|
+
}?,
|
|
463
|
+
sds: {
|
|
464
|
+
secret_name: ::String
|
|
465
|
+
}?
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
type tls_validation_context = {
|
|
469
|
+
subject_alternative_names: {
|
|
470
|
+
match: {
|
|
471
|
+
exact: Array[::String]
|
|
472
|
+
}
|
|
473
|
+
}?,
|
|
474
|
+
trust: Params::tls_validation_context_trust
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
type client_policy_tls = {
|
|
478
|
+
certificate: Params::client_tls_certificate?,
|
|
479
|
+
enforce: bool?,
|
|
480
|
+
ports: Array[::Integer]?,
|
|
481
|
+
validation: Params::tls_validation_context
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
type client_policy = {
|
|
485
|
+
tls: Params::client_policy_tls?
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
type backend_defaults = {
|
|
489
|
+
client_policy: Params::client_policy?
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
type file_access_log = {
|
|
493
|
+
format: {
|
|
494
|
+
json: Array[
|
|
495
|
+
{
|
|
496
|
+
key: ::String,
|
|
497
|
+
value: ::String
|
|
498
|
+
}
|
|
499
|
+
]?,
|
|
500
|
+
text: ::String?
|
|
501
|
+
}?,
|
|
502
|
+
path: ::String
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
type access_log = {
|
|
506
|
+
file: Params::file_access_log?
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
type logging = {
|
|
510
|
+
access_log: Params::access_log?
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
type aws_cloud_map_service_discovery = {
|
|
514
|
+
attributes: Array[
|
|
515
|
+
{
|
|
516
|
+
key: ::String,
|
|
517
|
+
value: ::String
|
|
518
|
+
}
|
|
519
|
+
]?,
|
|
520
|
+
ip_preference: ("IPv6_PREFERRED" | "IPv4_PREFERRED" | "IPv4_ONLY" | "IPv6_ONLY")?,
|
|
521
|
+
namespace_name: ::String,
|
|
522
|
+
service_name: ::String
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
type service_discovery = {
|
|
526
|
+
aws_cloud_map: Params::aws_cloud_map_service_discovery?,
|
|
527
|
+
dns: {
|
|
528
|
+
hostname: ::String,
|
|
529
|
+
ip_preference: ("IPv6_PREFERRED" | "IPv4_PREFERRED" | "IPv4_ONLY" | "IPv6_ONLY")?,
|
|
530
|
+
response_type: ("LOADBALANCER" | "ENDPOINTS")?
|
|
531
|
+
}?
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
type virtual_node_spec = {
|
|
535
|
+
backend_defaults: Params::backend_defaults?,
|
|
536
|
+
backends: Array[
|
|
537
|
+
Params::backend
|
|
538
|
+
]?,
|
|
539
|
+
listeners: Array[
|
|
540
|
+
Params::listener
|
|
541
|
+
]?,
|
|
542
|
+
logging: Params::logging?,
|
|
543
|
+
service_discovery: Params::service_discovery?
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
type virtual_service_backend = {
|
|
547
|
+
client_policy: Params::client_policy?,
|
|
548
|
+
virtual_service_name: ::String
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
type backend = {
|
|
552
|
+
virtual_service: Params::virtual_service_backend?
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
type virtual_node_connection_pool = {
|
|
556
|
+
grpc: {
|
|
557
|
+
max_requests: ::Integer
|
|
558
|
+
}?,
|
|
559
|
+
http: {
|
|
560
|
+
max_connections: ::Integer,
|
|
561
|
+
max_pending_requests: ::Integer?
|
|
562
|
+
}?,
|
|
563
|
+
http2: {
|
|
564
|
+
max_requests: ::Integer
|
|
565
|
+
}?,
|
|
566
|
+
tcp: {
|
|
567
|
+
max_connections: ::Integer
|
|
568
|
+
}?
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
type health_check_policy = {
|
|
572
|
+
healthy_threshold: ::Integer,
|
|
573
|
+
interval_millis: ::Integer,
|
|
574
|
+
path: ::String?,
|
|
575
|
+
port: ::Integer?,
|
|
576
|
+
protocol: ("http" | "tcp" | "http2" | "grpc"),
|
|
577
|
+
timeout_millis: ::Integer,
|
|
578
|
+
unhealthy_threshold: ::Integer
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
type outlier_detection = {
|
|
582
|
+
base_ejection_duration: {
|
|
583
|
+
unit: ("s" | "ms")?,
|
|
584
|
+
value: ::Integer?
|
|
585
|
+
},
|
|
586
|
+
interval: {
|
|
587
|
+
unit: ("s" | "ms")?,
|
|
588
|
+
value: ::Integer?
|
|
589
|
+
},
|
|
590
|
+
max_ejection_percent: ::Integer,
|
|
591
|
+
max_server_errors: ::Integer
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
type listener_timeout = {
|
|
595
|
+
grpc: Params::grpc_timeout?,
|
|
596
|
+
http: Params::http_timeout?,
|
|
597
|
+
http2: Params::http_timeout?,
|
|
598
|
+
tcp: {
|
|
599
|
+
idle: {
|
|
600
|
+
unit: ("s" | "ms")?,
|
|
601
|
+
value: ::Integer?
|
|
602
|
+
}?
|
|
603
|
+
}?
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
type listener_tls_certificate = {
|
|
607
|
+
acm: {
|
|
608
|
+
certificate_arn: ::String
|
|
609
|
+
}?,
|
|
610
|
+
file: {
|
|
611
|
+
certificate_chain: ::String,
|
|
612
|
+
private_key: ::String
|
|
613
|
+
}?,
|
|
614
|
+
sds: {
|
|
615
|
+
secret_name: ::String
|
|
616
|
+
}?
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
type listener_tls_validation_context_trust = {
|
|
620
|
+
file: {
|
|
621
|
+
certificate_chain: ::String
|
|
622
|
+
}?,
|
|
623
|
+
sds: {
|
|
624
|
+
secret_name: ::String
|
|
625
|
+
}?
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
type listener_tls_validation_context = {
|
|
629
|
+
subject_alternative_names: {
|
|
630
|
+
match: {
|
|
631
|
+
exact: Array[::String]
|
|
632
|
+
}
|
|
633
|
+
}?,
|
|
634
|
+
trust: Params::listener_tls_validation_context_trust
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
type listener_tls = {
|
|
638
|
+
certificate: Params::listener_tls_certificate,
|
|
639
|
+
mode: ("STRICT" | "PERMISSIVE" | "DISABLED"),
|
|
640
|
+
validation: Params::listener_tls_validation_context?
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
type listener = {
|
|
644
|
+
connection_pool: Params::virtual_node_connection_pool?,
|
|
645
|
+
health_check: Params::health_check_policy?,
|
|
646
|
+
outlier_detection: Params::outlier_detection?,
|
|
647
|
+
port_mapping: {
|
|
648
|
+
port: ::Integer,
|
|
649
|
+
protocol: ("http" | "tcp" | "http2" | "grpc")
|
|
650
|
+
},
|
|
651
|
+
timeout: Params::listener_timeout?,
|
|
652
|
+
tls: Params::listener_tls?
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
type virtual_router_spec = {
|
|
656
|
+
listeners: Array[
|
|
657
|
+
{
|
|
658
|
+
port_mapping: {
|
|
659
|
+
port: ::Integer,
|
|
660
|
+
protocol: ("http" | "tcp" | "http2" | "grpc")
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
]?
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
type virtual_service_provider = {
|
|
667
|
+
virtual_node: {
|
|
668
|
+
virtual_node_name: ::String
|
|
669
|
+
}?,
|
|
670
|
+
virtual_router: {
|
|
671
|
+
virtual_router_name: ::String
|
|
672
|
+
}?
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
type virtual_service_spec = {
|
|
676
|
+
provider: Params::virtual_service_provider?
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
end
|
|
680
|
+
end
|
|
681
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-appmesh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.92.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.247.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.247.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -67,6 +67,7 @@ files:
|
|
|
67
67
|
- lib/aws-sdk-appmesh/types.rb
|
|
68
68
|
- sig/client.rbs
|
|
69
69
|
- sig/errors.rbs
|
|
70
|
+
- sig/params.rbs
|
|
70
71
|
- sig/resource.rbs
|
|
71
72
|
- sig/types.rbs
|
|
72
73
|
- sig/waiters.rbs
|