aws-sdk-appmesh 1.21.0 → 1.26.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 +5 -5
- data/lib/aws-sdk-appmesh.rb +3 -1
- data/lib/aws-sdk-appmesh/client.rb +365 -68
- data/lib/aws-sdk-appmesh/client_api.rb +43 -0
- data/lib/aws-sdk-appmesh/errors.rb +2 -0
- data/lib/aws-sdk-appmesh/resource.rb +3 -7
- data/lib/aws-sdk-appmesh/types.rb +586 -47
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d577be94870bf48c4d00f6d70e3f277122f14cee4ac95e6d52c059a81f801979
|
4
|
+
data.tar.gz: 83f47e035832dad05d2ff0b363549dddfa08f0b3281587dc400fcb946c9a438e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6cf2980c797233498e42f9c48d6553a61d8c59fe9759d4cf390604c589d8887177cb68d40bf03bf44753cc72f08b4c717b7aed67f3c318e7d4310d7b2d6aa78e
|
7
|
+
data.tar.gz: c3c127b911d41df6df44f22809cf845d7bcc2ac24a0f95dc6ec9a48b26ce1ce768ebda91fe649393b23e7b3aca0d987b35f1a5efca901e1a5bd5a6963f6050d0
|
data/lib/aws-sdk-appmesh.rb
CHANGED
@@ -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:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-appmesh/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::AppMesh
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.26.0'
|
49
51
|
|
50
52
|
end
|
@@ -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:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:appmesh)
|
|
32
35
|
module Aws::AppMesh
|
33
36
|
# An API client for AppMesh. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::AppMesh::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::AppMesh
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::AppMesh
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::AppMesh
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::AppMesh
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -229,15 +233,19 @@ module Aws::AppMesh
|
|
229
233
|
#
|
230
234
|
# @option options [String] :retry_mode ("legacy")
|
231
235
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
241
249
|
#
|
242
250
|
# @option options [String] :secret_access_key
|
243
251
|
#
|
@@ -265,8 +273,7 @@ module Aws::AppMesh
|
|
265
273
|
#
|
266
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
275
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
270
277
|
#
|
271
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
279
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +285,7 @@ module Aws::AppMesh
|
|
278
285
|
# request body. This option has no effect unless the request has
|
279
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
287
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
288
|
+
# request on the session.
|
282
289
|
#
|
283
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -305,12 +312,19 @@ module Aws::AppMesh
|
|
305
312
|
|
306
313
|
# @!group API Operations
|
307
314
|
|
308
|
-
# Creates a service mesh.
|
309
|
-
#
|
315
|
+
# Creates a service mesh.
|
316
|
+
#
|
317
|
+
# A service mesh is a logical boundary for network traffic between
|
318
|
+
# services that are represented by resources within the mesh. After you
|
319
|
+
# create your service mesh, you can create virtual services, virtual
|
320
|
+
# nodes, virtual routers, and routes to distribute traffic between the
|
321
|
+
# applications in your mesh.
|
310
322
|
#
|
311
|
-
#
|
312
|
-
#
|
313
|
-
#
|
323
|
+
# For more information about service meshes, see [Service meshes][1].
|
324
|
+
#
|
325
|
+
#
|
326
|
+
#
|
327
|
+
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/meshes.html
|
314
328
|
#
|
315
329
|
# @option params [String] :client_token
|
316
330
|
# Unique, case-sensitive identifier that you provide to ensure the
|
@@ -379,13 +393,8 @@ module Aws::AppMesh
|
|
379
393
|
|
380
394
|
# Creates a route that is associated with a virtual router.
|
381
395
|
#
|
382
|
-
# You can
|
383
|
-
#
|
384
|
-
# name is `my-service.local` and you want the route to match requests to
|
385
|
-
# `my-service.local/metrics`, your prefix should be `/metrics`.
|
386
|
-
#
|
387
|
-
# If your route matches a request, you can distribute traffic to one or
|
388
|
-
# more target virtual nodes with relative weighting.
|
396
|
+
# You can route several different protocols and define a retry policy
|
397
|
+
# for a route. Traffic can be routed to one or more virtual nodes.
|
389
398
|
#
|
390
399
|
# For more information about routes, see [Routes][1].
|
391
400
|
#
|
@@ -409,7 +418,7 @@ module Aws::AppMesh
|
|
409
418
|
# not your own, then the account that you specify must share the mesh
|
410
419
|
# with your account before you can create the resource in the service
|
411
420
|
# mesh. For more information about mesh sharing, see [Working with
|
412
|
-
#
|
421
|
+
# shared meshes][1].
|
413
422
|
#
|
414
423
|
#
|
415
424
|
#
|
@@ -484,6 +493,16 @@ module Aws::AppMesh
|
|
484
493
|
# },
|
485
494
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
486
495
|
# },
|
496
|
+
# timeout: {
|
497
|
+
# idle: {
|
498
|
+
# unit: "ms", # accepts ms, s
|
499
|
+
# value: 1,
|
500
|
+
# },
|
501
|
+
# per_request: {
|
502
|
+
# unit: "ms", # accepts ms, s
|
503
|
+
# value: 1,
|
504
|
+
# },
|
505
|
+
# },
|
487
506
|
# },
|
488
507
|
# http2_route: {
|
489
508
|
# action: { # required
|
@@ -524,6 +543,16 @@ module Aws::AppMesh
|
|
524
543
|
# },
|
525
544
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
526
545
|
# },
|
546
|
+
# timeout: {
|
547
|
+
# idle: {
|
548
|
+
# unit: "ms", # accepts ms, s
|
549
|
+
# value: 1,
|
550
|
+
# },
|
551
|
+
# per_request: {
|
552
|
+
# unit: "ms", # accepts ms, s
|
553
|
+
# value: 1,
|
554
|
+
# },
|
555
|
+
# },
|
527
556
|
# },
|
528
557
|
# http_route: {
|
529
558
|
# action: { # required
|
@@ -564,6 +593,16 @@ module Aws::AppMesh
|
|
564
593
|
# },
|
565
594
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
566
595
|
# },
|
596
|
+
# timeout: {
|
597
|
+
# idle: {
|
598
|
+
# unit: "ms", # accepts ms, s
|
599
|
+
# value: 1,
|
600
|
+
# },
|
601
|
+
# per_request: {
|
602
|
+
# unit: "ms", # accepts ms, s
|
603
|
+
# value: 1,
|
604
|
+
# },
|
605
|
+
# },
|
567
606
|
# },
|
568
607
|
# priority: 1,
|
569
608
|
# tcp_route: {
|
@@ -575,6 +614,12 @@ module Aws::AppMesh
|
|
575
614
|
# },
|
576
615
|
# ],
|
577
616
|
# },
|
617
|
+
# timeout: {
|
618
|
+
# idle: {
|
619
|
+
# unit: "ms", # accepts ms, s
|
620
|
+
# value: 1,
|
621
|
+
# },
|
622
|
+
# },
|
578
623
|
# },
|
579
624
|
# },
|
580
625
|
# tags: [
|
@@ -620,6 +665,10 @@ module Aws::AppMesh
|
|
620
665
|
# resp.route.spec.grpc_route.retry_policy.per_retry_timeout.value #=> Integer
|
621
666
|
# resp.route.spec.grpc_route.retry_policy.tcp_retry_events #=> Array
|
622
667
|
# resp.route.spec.grpc_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
|
668
|
+
# resp.route.spec.grpc_route.timeout.idle.unit #=> String, one of "ms", "s"
|
669
|
+
# resp.route.spec.grpc_route.timeout.idle.value #=> Integer
|
670
|
+
# resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "ms", "s"
|
671
|
+
# resp.route.spec.grpc_route.timeout.per_request.value #=> Integer
|
623
672
|
# resp.route.spec.http2_route.action.weighted_targets #=> Array
|
624
673
|
# resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
|
625
674
|
# resp.route.spec.http2_route.action.weighted_targets[0].weight #=> Integer
|
@@ -642,6 +691,10 @@ module Aws::AppMesh
|
|
642
691
|
# resp.route.spec.http2_route.retry_policy.per_retry_timeout.value #=> Integer
|
643
692
|
# resp.route.spec.http2_route.retry_policy.tcp_retry_events #=> Array
|
644
693
|
# resp.route.spec.http2_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
|
694
|
+
# resp.route.spec.http2_route.timeout.idle.unit #=> String, one of "ms", "s"
|
695
|
+
# resp.route.spec.http2_route.timeout.idle.value #=> Integer
|
696
|
+
# resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "ms", "s"
|
697
|
+
# resp.route.spec.http2_route.timeout.per_request.value #=> Integer
|
645
698
|
# resp.route.spec.http_route.action.weighted_targets #=> Array
|
646
699
|
# resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
|
647
700
|
# resp.route.spec.http_route.action.weighted_targets[0].weight #=> Integer
|
@@ -664,10 +717,16 @@ module Aws::AppMesh
|
|
664
717
|
# resp.route.spec.http_route.retry_policy.per_retry_timeout.value #=> Integer
|
665
718
|
# resp.route.spec.http_route.retry_policy.tcp_retry_events #=> Array
|
666
719
|
# resp.route.spec.http_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
|
720
|
+
# resp.route.spec.http_route.timeout.idle.unit #=> String, one of "ms", "s"
|
721
|
+
# resp.route.spec.http_route.timeout.idle.value #=> Integer
|
722
|
+
# resp.route.spec.http_route.timeout.per_request.unit #=> String, one of "ms", "s"
|
723
|
+
# resp.route.spec.http_route.timeout.per_request.value #=> Integer
|
667
724
|
# resp.route.spec.priority #=> Integer
|
668
725
|
# resp.route.spec.tcp_route.action.weighted_targets #=> Array
|
669
726
|
# resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
|
670
727
|
# resp.route.spec.tcp_route.action.weighted_targets[0].weight #=> Integer
|
728
|
+
# resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "ms", "s"
|
729
|
+
# resp.route.spec.tcp_route.timeout.idle.value #=> Integer
|
671
730
|
# resp.route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
|
672
731
|
# resp.route.virtual_router_name #=> String
|
673
732
|
#
|
@@ -685,11 +744,13 @@ module Aws::AppMesh
|
|
685
744
|
# A virtual node acts as a logical pointer to a particular task group,
|
686
745
|
# such as an Amazon ECS service or a Kubernetes deployment. When you
|
687
746
|
# create a virtual node, you can specify the service discovery
|
688
|
-
# information for your task group
|
747
|
+
# information for your task group, and whether the proxy running in a
|
748
|
+
# task group will communicate with other proxies using Transport Layer
|
749
|
+
# Security (TLS).
|
689
750
|
#
|
690
|
-
#
|
691
|
-
#
|
692
|
-
# to
|
751
|
+
# You define a `listener` for any inbound traffic that your virtual node
|
752
|
+
# expects. Any virtual service that your virtual node expects to
|
753
|
+
# communicate to is specified as a `backend`.
|
693
754
|
#
|
694
755
|
# The response metadata for your new virtual node contains the `arn`
|
695
756
|
# that is associated with the virtual node. Set this value (either the
|
@@ -707,7 +768,7 @@ module Aws::AppMesh
|
|
707
768
|
#
|
708
769
|
# </note>
|
709
770
|
#
|
710
|
-
# For more information about virtual nodes, see [Virtual
|
771
|
+
# For more information about virtual nodes, see [Virtual nodes][1].
|
711
772
|
#
|
712
773
|
#
|
713
774
|
#
|
@@ -729,7 +790,7 @@ module Aws::AppMesh
|
|
729
790
|
# not your own, then the account that you specify must share the mesh
|
730
791
|
# with your account before you can create the resource in the service
|
731
792
|
# mesh. For more information about mesh sharing, see [Working with
|
732
|
-
#
|
793
|
+
# shared meshes][1].
|
733
794
|
#
|
734
795
|
#
|
735
796
|
#
|
@@ -815,6 +876,44 @@ module Aws::AppMesh
|
|
815
876
|
# port: 1, # required
|
816
877
|
# protocol: "grpc", # required, accepts grpc, http, http2, tcp
|
817
878
|
# },
|
879
|
+
# timeout: {
|
880
|
+
# grpc: {
|
881
|
+
# idle: {
|
882
|
+
# unit: "ms", # accepts ms, s
|
883
|
+
# value: 1,
|
884
|
+
# },
|
885
|
+
# per_request: {
|
886
|
+
# unit: "ms", # accepts ms, s
|
887
|
+
# value: 1,
|
888
|
+
# },
|
889
|
+
# },
|
890
|
+
# http: {
|
891
|
+
# idle: {
|
892
|
+
# unit: "ms", # accepts ms, s
|
893
|
+
# value: 1,
|
894
|
+
# },
|
895
|
+
# per_request: {
|
896
|
+
# unit: "ms", # accepts ms, s
|
897
|
+
# value: 1,
|
898
|
+
# },
|
899
|
+
# },
|
900
|
+
# http2: {
|
901
|
+
# idle: {
|
902
|
+
# unit: "ms", # accepts ms, s
|
903
|
+
# value: 1,
|
904
|
+
# },
|
905
|
+
# per_request: {
|
906
|
+
# unit: "ms", # accepts ms, s
|
907
|
+
# value: 1,
|
908
|
+
# },
|
909
|
+
# },
|
910
|
+
# tcp: {
|
911
|
+
# idle: {
|
912
|
+
# unit: "ms", # accepts ms, s
|
913
|
+
# value: 1,
|
914
|
+
# },
|
915
|
+
# },
|
916
|
+
# },
|
818
917
|
# tls: {
|
819
918
|
# certificate: { # required
|
820
919
|
# acm: {
|
@@ -895,6 +994,20 @@ module Aws::AppMesh
|
|
895
994
|
# resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
|
896
995
|
# resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
|
897
996
|
# resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
|
997
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.idle.unit #=> String, one of "ms", "s"
|
998
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.idle.value #=> Integer
|
999
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.unit #=> String, one of "ms", "s"
|
1000
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.value #=> Integer
|
1001
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.idle.unit #=> String, one of "ms", "s"
|
1002
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.idle.value #=> Integer
|
1003
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.per_request.unit #=> String, one of "ms", "s"
|
1004
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.per_request.value #=> Integer
|
1005
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.idle.unit #=> String, one of "ms", "s"
|
1006
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.idle.value #=> Integer
|
1007
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.per_request.unit #=> String, one of "ms", "s"
|
1008
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.per_request.value #=> Integer
|
1009
|
+
# resp.virtual_node.spec.listeners[0].timeout.tcp.idle.unit #=> String, one of "ms", "s"
|
1010
|
+
# resp.virtual_node.spec.listeners[0].timeout.tcp.idle.value #=> Integer
|
898
1011
|
# resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
|
899
1012
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
|
900
1013
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
|
@@ -920,15 +1033,14 @@ module Aws::AppMesh
|
|
920
1033
|
|
921
1034
|
# Creates a virtual router within a service mesh.
|
922
1035
|
#
|
923
|
-
#
|
924
|
-
#
|
925
|
-
#
|
926
|
-
#
|
927
|
-
#
|
928
|
-
#
|
929
|
-
# different virtual nodes.
|
1036
|
+
# Specify a `listener` for any inbound traffic that your virtual router
|
1037
|
+
# receives. Create a virtual router for each protocol and port that you
|
1038
|
+
# need to route. Virtual routers handle traffic for one or more virtual
|
1039
|
+
# services within your mesh. After you create your virtual router,
|
1040
|
+
# create and associate routes for your virtual router that direct
|
1041
|
+
# incoming requests to different virtual nodes.
|
930
1042
|
#
|
931
|
-
# For more information about virtual routers, see [Virtual
|
1043
|
+
# For more information about virtual routers, see [Virtual routers][1].
|
932
1044
|
#
|
933
1045
|
#
|
934
1046
|
#
|
@@ -950,7 +1062,7 @@ module Aws::AppMesh
|
|
950
1062
|
# not your own, then the account that you specify must share the mesh
|
951
1063
|
# with your account before you can create the resource in the service
|
952
1064
|
# mesh. For more information about mesh sharing, see [Working with
|
953
|
-
#
|
1065
|
+
# shared meshes][1].
|
954
1066
|
#
|
955
1067
|
#
|
956
1068
|
#
|
@@ -1033,7 +1145,7 @@ module Aws::AppMesh
|
|
1033
1145
|
# virtual service.
|
1034
1146
|
#
|
1035
1147
|
# For more information about virtual services, see [Virtual
|
1036
|
-
#
|
1148
|
+
# services][1].
|
1037
1149
|
#
|
1038
1150
|
#
|
1039
1151
|
#
|
@@ -1055,7 +1167,7 @@ module Aws::AppMesh
|
|
1055
1167
|
# not your own, then the account that you specify must share the mesh
|
1056
1168
|
# with your account before you can create the resource in the service
|
1057
1169
|
# mesh. For more information about mesh sharing, see [Working with
|
1058
|
-
#
|
1170
|
+
# shared meshes][1].
|
1059
1171
|
#
|
1060
1172
|
#
|
1061
1173
|
#
|
@@ -1177,7 +1289,7 @@ module Aws::AppMesh
|
|
1177
1289
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1178
1290
|
# not your own, then it's the ID of the account that shared the mesh
|
1179
1291
|
# with your account. For more information about mesh sharing, see
|
1180
|
-
# [Working with
|
1292
|
+
# [Working with shared meshes][1].
|
1181
1293
|
#
|
1182
1294
|
#
|
1183
1295
|
#
|
@@ -1236,6 +1348,10 @@ module Aws::AppMesh
|
|
1236
1348
|
# resp.route.spec.grpc_route.retry_policy.per_retry_timeout.value #=> Integer
|
1237
1349
|
# resp.route.spec.grpc_route.retry_policy.tcp_retry_events #=> Array
|
1238
1350
|
# resp.route.spec.grpc_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
|
1351
|
+
# resp.route.spec.grpc_route.timeout.idle.unit #=> String, one of "ms", "s"
|
1352
|
+
# resp.route.spec.grpc_route.timeout.idle.value #=> Integer
|
1353
|
+
# resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "ms", "s"
|
1354
|
+
# resp.route.spec.grpc_route.timeout.per_request.value #=> Integer
|
1239
1355
|
# resp.route.spec.http2_route.action.weighted_targets #=> Array
|
1240
1356
|
# resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
|
1241
1357
|
# resp.route.spec.http2_route.action.weighted_targets[0].weight #=> Integer
|
@@ -1258,6 +1374,10 @@ module Aws::AppMesh
|
|
1258
1374
|
# resp.route.spec.http2_route.retry_policy.per_retry_timeout.value #=> Integer
|
1259
1375
|
# resp.route.spec.http2_route.retry_policy.tcp_retry_events #=> Array
|
1260
1376
|
# resp.route.spec.http2_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
|
1377
|
+
# resp.route.spec.http2_route.timeout.idle.unit #=> String, one of "ms", "s"
|
1378
|
+
# resp.route.spec.http2_route.timeout.idle.value #=> Integer
|
1379
|
+
# resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "ms", "s"
|
1380
|
+
# resp.route.spec.http2_route.timeout.per_request.value #=> Integer
|
1261
1381
|
# resp.route.spec.http_route.action.weighted_targets #=> Array
|
1262
1382
|
# resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
|
1263
1383
|
# resp.route.spec.http_route.action.weighted_targets[0].weight #=> Integer
|
@@ -1280,10 +1400,16 @@ module Aws::AppMesh
|
|
1280
1400
|
# resp.route.spec.http_route.retry_policy.per_retry_timeout.value #=> Integer
|
1281
1401
|
# resp.route.spec.http_route.retry_policy.tcp_retry_events #=> Array
|
1282
1402
|
# resp.route.spec.http_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
|
1403
|
+
# resp.route.spec.http_route.timeout.idle.unit #=> String, one of "ms", "s"
|
1404
|
+
# resp.route.spec.http_route.timeout.idle.value #=> Integer
|
1405
|
+
# resp.route.spec.http_route.timeout.per_request.unit #=> String, one of "ms", "s"
|
1406
|
+
# resp.route.spec.http_route.timeout.per_request.value #=> Integer
|
1283
1407
|
# resp.route.spec.priority #=> Integer
|
1284
1408
|
# resp.route.spec.tcp_route.action.weighted_targets #=> Array
|
1285
1409
|
# resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
|
1286
1410
|
# resp.route.spec.tcp_route.action.weighted_targets[0].weight #=> Integer
|
1411
|
+
# resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "ms", "s"
|
1412
|
+
# resp.route.spec.tcp_route.timeout.idle.value #=> Integer
|
1287
1413
|
# resp.route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
|
1288
1414
|
# resp.route.virtual_router_name #=> String
|
1289
1415
|
#
|
@@ -1308,7 +1434,7 @@ module Aws::AppMesh
|
|
1308
1434
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1309
1435
|
# not your own, then it's the ID of the account that shared the mesh
|
1310
1436
|
# with your account. For more information about mesh sharing, see
|
1311
|
-
# [Working with
|
1437
|
+
# [Working with shared meshes][1].
|
1312
1438
|
#
|
1313
1439
|
#
|
1314
1440
|
#
|
@@ -1363,6 +1489,20 @@ module Aws::AppMesh
|
|
1363
1489
|
# resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
|
1364
1490
|
# resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
|
1365
1491
|
# resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
|
1492
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.idle.unit #=> String, one of "ms", "s"
|
1493
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.idle.value #=> Integer
|
1494
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.unit #=> String, one of "ms", "s"
|
1495
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.value #=> Integer
|
1496
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.idle.unit #=> String, one of "ms", "s"
|
1497
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.idle.value #=> Integer
|
1498
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.per_request.unit #=> String, one of "ms", "s"
|
1499
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.per_request.value #=> Integer
|
1500
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.idle.unit #=> String, one of "ms", "s"
|
1501
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.idle.value #=> Integer
|
1502
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.per_request.unit #=> String, one of "ms", "s"
|
1503
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.per_request.value #=> Integer
|
1504
|
+
# resp.virtual_node.spec.listeners[0].timeout.tcp.idle.unit #=> String, one of "ms", "s"
|
1505
|
+
# resp.virtual_node.spec.listeners[0].timeout.tcp.idle.value #=> Integer
|
1366
1506
|
# resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
|
1367
1507
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
|
1368
1508
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
|
@@ -1398,7 +1538,7 @@ module Aws::AppMesh
|
|
1398
1538
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1399
1539
|
# not your own, then it's the ID of the account that shared the mesh
|
1400
1540
|
# with your account. For more information about mesh sharing, see
|
1401
|
-
# [Working with
|
1541
|
+
# [Working with shared meshes][1].
|
1402
1542
|
#
|
1403
1543
|
#
|
1404
1544
|
#
|
@@ -1453,7 +1593,7 @@ module Aws::AppMesh
|
|
1453
1593
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1454
1594
|
# not your own, then it's the ID of the account that shared the mesh
|
1455
1595
|
# with your account. For more information about mesh sharing, see
|
1456
|
-
# [Working with
|
1596
|
+
# [Working with shared meshes][1].
|
1457
1597
|
#
|
1458
1598
|
#
|
1459
1599
|
#
|
@@ -1507,7 +1647,7 @@ module Aws::AppMesh
|
|
1507
1647
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1508
1648
|
# not your own, then it's the ID of the account that shared the mesh
|
1509
1649
|
# with your account. For more information about mesh sharing, see
|
1510
|
-
# [Working with
|
1650
|
+
# [Working with shared meshes][1].
|
1511
1651
|
#
|
1512
1652
|
#
|
1513
1653
|
#
|
@@ -1555,7 +1695,7 @@ module Aws::AppMesh
|
|
1555
1695
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1556
1696
|
# not your own, then it's the ID of the account that shared the mesh
|
1557
1697
|
# with your account. For more information about mesh sharing, see
|
1558
|
-
# [Working with
|
1698
|
+
# [Working with shared meshes][1].
|
1559
1699
|
#
|
1560
1700
|
#
|
1561
1701
|
#
|
@@ -1614,6 +1754,10 @@ module Aws::AppMesh
|
|
1614
1754
|
# resp.route.spec.grpc_route.retry_policy.per_retry_timeout.value #=> Integer
|
1615
1755
|
# resp.route.spec.grpc_route.retry_policy.tcp_retry_events #=> Array
|
1616
1756
|
# resp.route.spec.grpc_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
|
1757
|
+
# resp.route.spec.grpc_route.timeout.idle.unit #=> String, one of "ms", "s"
|
1758
|
+
# resp.route.spec.grpc_route.timeout.idle.value #=> Integer
|
1759
|
+
# resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "ms", "s"
|
1760
|
+
# resp.route.spec.grpc_route.timeout.per_request.value #=> Integer
|
1617
1761
|
# resp.route.spec.http2_route.action.weighted_targets #=> Array
|
1618
1762
|
# resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
|
1619
1763
|
# resp.route.spec.http2_route.action.weighted_targets[0].weight #=> Integer
|
@@ -1636,6 +1780,10 @@ module Aws::AppMesh
|
|
1636
1780
|
# resp.route.spec.http2_route.retry_policy.per_retry_timeout.value #=> Integer
|
1637
1781
|
# resp.route.spec.http2_route.retry_policy.tcp_retry_events #=> Array
|
1638
1782
|
# resp.route.spec.http2_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
|
1783
|
+
# resp.route.spec.http2_route.timeout.idle.unit #=> String, one of "ms", "s"
|
1784
|
+
# resp.route.spec.http2_route.timeout.idle.value #=> Integer
|
1785
|
+
# resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "ms", "s"
|
1786
|
+
# resp.route.spec.http2_route.timeout.per_request.value #=> Integer
|
1639
1787
|
# resp.route.spec.http_route.action.weighted_targets #=> Array
|
1640
1788
|
# resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
|
1641
1789
|
# resp.route.spec.http_route.action.weighted_targets[0].weight #=> Integer
|
@@ -1658,10 +1806,16 @@ module Aws::AppMesh
|
|
1658
1806
|
# resp.route.spec.http_route.retry_policy.per_retry_timeout.value #=> Integer
|
1659
1807
|
# resp.route.spec.http_route.retry_policy.tcp_retry_events #=> Array
|
1660
1808
|
# resp.route.spec.http_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
|
1809
|
+
# resp.route.spec.http_route.timeout.idle.unit #=> String, one of "ms", "s"
|
1810
|
+
# resp.route.spec.http_route.timeout.idle.value #=> Integer
|
1811
|
+
# resp.route.spec.http_route.timeout.per_request.unit #=> String, one of "ms", "s"
|
1812
|
+
# resp.route.spec.http_route.timeout.per_request.value #=> Integer
|
1661
1813
|
# resp.route.spec.priority #=> Integer
|
1662
1814
|
# resp.route.spec.tcp_route.action.weighted_targets #=> Array
|
1663
1815
|
# resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
|
1664
1816
|
# resp.route.spec.tcp_route.action.weighted_targets[0].weight #=> Integer
|
1817
|
+
# resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "ms", "s"
|
1818
|
+
# resp.route.spec.tcp_route.timeout.idle.value #=> Integer
|
1665
1819
|
# resp.route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
|
1666
1820
|
# resp.route.virtual_router_name #=> String
|
1667
1821
|
#
|
@@ -1683,7 +1837,7 @@ module Aws::AppMesh
|
|
1683
1837
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1684
1838
|
# not your own, then it's the ID of the account that shared the mesh
|
1685
1839
|
# with your account. For more information about mesh sharing, see
|
1686
|
-
# [Working with
|
1840
|
+
# [Working with shared meshes][1].
|
1687
1841
|
#
|
1688
1842
|
#
|
1689
1843
|
#
|
@@ -1738,6 +1892,20 @@ module Aws::AppMesh
|
|
1738
1892
|
# resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
|
1739
1893
|
# resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
|
1740
1894
|
# resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
|
1895
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.idle.unit #=> String, one of "ms", "s"
|
1896
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.idle.value #=> Integer
|
1897
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.unit #=> String, one of "ms", "s"
|
1898
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.value #=> Integer
|
1899
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.idle.unit #=> String, one of "ms", "s"
|
1900
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.idle.value #=> Integer
|
1901
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.per_request.unit #=> String, one of "ms", "s"
|
1902
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.per_request.value #=> Integer
|
1903
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.idle.unit #=> String, one of "ms", "s"
|
1904
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.idle.value #=> Integer
|
1905
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.per_request.unit #=> String, one of "ms", "s"
|
1906
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.per_request.value #=> Integer
|
1907
|
+
# resp.virtual_node.spec.listeners[0].timeout.tcp.idle.unit #=> String, one of "ms", "s"
|
1908
|
+
# resp.virtual_node.spec.listeners[0].timeout.tcp.idle.value #=> Integer
|
1741
1909
|
# resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
|
1742
1910
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
|
1743
1911
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
|
@@ -1770,7 +1938,7 @@ module Aws::AppMesh
|
|
1770
1938
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1771
1939
|
# not your own, then it's the ID of the account that shared the mesh
|
1772
1940
|
# with your account. For more information about mesh sharing, see
|
1773
|
-
# [Working with
|
1941
|
+
# [Working with shared meshes][1].
|
1774
1942
|
#
|
1775
1943
|
#
|
1776
1944
|
#
|
@@ -1825,7 +1993,7 @@ module Aws::AppMesh
|
|
1825
1993
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1826
1994
|
# not your own, then it's the ID of the account that shared the mesh
|
1827
1995
|
# with your account. For more information about mesh sharing, see
|
1828
|
-
# [Working with
|
1996
|
+
# [Working with shared meshes][1].
|
1829
1997
|
#
|
1830
1998
|
#
|
1831
1999
|
#
|
@@ -1899,6 +2067,8 @@ module Aws::AppMesh
|
|
1899
2067
|
# * {Types::ListMeshesOutput#meshes #meshes} => Array<Types::MeshRef>
|
1900
2068
|
# * {Types::ListMeshesOutput#next_token #next_token} => String
|
1901
2069
|
#
|
2070
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2071
|
+
#
|
1902
2072
|
# @example Request syntax with placeholder values
|
1903
2073
|
#
|
1904
2074
|
# resp = client.list_meshes({
|
@@ -1910,9 +2080,12 @@ module Aws::AppMesh
|
|
1910
2080
|
#
|
1911
2081
|
# resp.meshes #=> Array
|
1912
2082
|
# resp.meshes[0].arn #=> String
|
2083
|
+
# resp.meshes[0].created_at #=> Time
|
2084
|
+
# resp.meshes[0].last_updated_at #=> Time
|
1913
2085
|
# resp.meshes[0].mesh_name #=> String
|
1914
2086
|
# resp.meshes[0].mesh_owner #=> String
|
1915
2087
|
# resp.meshes[0].resource_owner #=> String
|
2088
|
+
# resp.meshes[0].version #=> Integer
|
1916
2089
|
# resp.next_token #=> String
|
1917
2090
|
#
|
1918
2091
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListMeshes AWS API Documentation
|
@@ -1943,7 +2116,7 @@ module Aws::AppMesh
|
|
1943
2116
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1944
2117
|
# not your own, then it's the ID of the account that shared the mesh
|
1945
2118
|
# with your account. For more information about mesh sharing, see
|
1946
|
-
# [Working with
|
2119
|
+
# [Working with shared meshes][1].
|
1947
2120
|
#
|
1948
2121
|
#
|
1949
2122
|
#
|
@@ -1963,6 +2136,8 @@ module Aws::AppMesh
|
|
1963
2136
|
# * {Types::ListRoutesOutput#next_token #next_token} => String
|
1964
2137
|
# * {Types::ListRoutesOutput#routes #routes} => Array<Types::RouteRef>
|
1965
2138
|
#
|
2139
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2140
|
+
#
|
1966
2141
|
# @example Request syntax with placeholder values
|
1967
2142
|
#
|
1968
2143
|
# resp = client.list_routes({
|
@@ -1978,10 +2153,13 @@ module Aws::AppMesh
|
|
1978
2153
|
# resp.next_token #=> String
|
1979
2154
|
# resp.routes #=> Array
|
1980
2155
|
# resp.routes[0].arn #=> String
|
2156
|
+
# resp.routes[0].created_at #=> Time
|
2157
|
+
# resp.routes[0].last_updated_at #=> Time
|
1981
2158
|
# resp.routes[0].mesh_name #=> String
|
1982
2159
|
# resp.routes[0].mesh_owner #=> String
|
1983
2160
|
# resp.routes[0].resource_owner #=> String
|
1984
2161
|
# resp.routes[0].route_name #=> String
|
2162
|
+
# resp.routes[0].version #=> Integer
|
1985
2163
|
# resp.routes[0].virtual_router_name #=> String
|
1986
2164
|
#
|
1987
2165
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListRoutes AWS API Documentation
|
@@ -2020,6 +2198,8 @@ module Aws::AppMesh
|
|
2020
2198
|
# * {Types::ListTagsForResourceOutput#next_token #next_token} => String
|
2021
2199
|
# * {Types::ListTagsForResourceOutput#tags #tags} => Array<Types::TagRef>
|
2022
2200
|
#
|
2201
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2202
|
+
#
|
2023
2203
|
# @example Request syntax with placeholder values
|
2024
2204
|
#
|
2025
2205
|
# resp = client.list_tags_for_resource({
|
@@ -2063,7 +2243,7 @@ module Aws::AppMesh
|
|
2063
2243
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
2064
2244
|
# not your own, then it's the ID of the account that shared the mesh
|
2065
2245
|
# with your account. For more information about mesh sharing, see
|
2066
|
-
# [Working with
|
2246
|
+
# [Working with shared meshes][1].
|
2067
2247
|
#
|
2068
2248
|
#
|
2069
2249
|
#
|
@@ -2080,6 +2260,8 @@ module Aws::AppMesh
|
|
2080
2260
|
# * {Types::ListVirtualNodesOutput#next_token #next_token} => String
|
2081
2261
|
# * {Types::ListVirtualNodesOutput#virtual_nodes #virtual_nodes} => Array<Types::VirtualNodeRef>
|
2082
2262
|
#
|
2263
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2264
|
+
#
|
2083
2265
|
# @example Request syntax with placeholder values
|
2084
2266
|
#
|
2085
2267
|
# resp = client.list_virtual_nodes({
|
@@ -2094,9 +2276,12 @@ module Aws::AppMesh
|
|
2094
2276
|
# resp.next_token #=> String
|
2095
2277
|
# resp.virtual_nodes #=> Array
|
2096
2278
|
# resp.virtual_nodes[0].arn #=> String
|
2279
|
+
# resp.virtual_nodes[0].created_at #=> Time
|
2280
|
+
# resp.virtual_nodes[0].last_updated_at #=> Time
|
2097
2281
|
# resp.virtual_nodes[0].mesh_name #=> String
|
2098
2282
|
# resp.virtual_nodes[0].mesh_owner #=> String
|
2099
2283
|
# resp.virtual_nodes[0].resource_owner #=> String
|
2284
|
+
# resp.virtual_nodes[0].version #=> Integer
|
2100
2285
|
# resp.virtual_nodes[0].virtual_node_name #=> String
|
2101
2286
|
#
|
2102
2287
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualNodes AWS API Documentation
|
@@ -2127,7 +2312,7 @@ module Aws::AppMesh
|
|
2127
2312
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
2128
2313
|
# not your own, then it's the ID of the account that shared the mesh
|
2129
2314
|
# with your account. For more information about mesh sharing, see
|
2130
|
-
# [Working with
|
2315
|
+
# [Working with shared meshes][1].
|
2131
2316
|
#
|
2132
2317
|
#
|
2133
2318
|
#
|
@@ -2144,6 +2329,8 @@ module Aws::AppMesh
|
|
2144
2329
|
# * {Types::ListVirtualRoutersOutput#next_token #next_token} => String
|
2145
2330
|
# * {Types::ListVirtualRoutersOutput#virtual_routers #virtual_routers} => Array<Types::VirtualRouterRef>
|
2146
2331
|
#
|
2332
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2333
|
+
#
|
2147
2334
|
# @example Request syntax with placeholder values
|
2148
2335
|
#
|
2149
2336
|
# resp = client.list_virtual_routers({
|
@@ -2158,9 +2345,12 @@ module Aws::AppMesh
|
|
2158
2345
|
# resp.next_token #=> String
|
2159
2346
|
# resp.virtual_routers #=> Array
|
2160
2347
|
# resp.virtual_routers[0].arn #=> String
|
2348
|
+
# resp.virtual_routers[0].created_at #=> Time
|
2349
|
+
# resp.virtual_routers[0].last_updated_at #=> Time
|
2161
2350
|
# resp.virtual_routers[0].mesh_name #=> String
|
2162
2351
|
# resp.virtual_routers[0].mesh_owner #=> String
|
2163
2352
|
# resp.virtual_routers[0].resource_owner #=> String
|
2353
|
+
# resp.virtual_routers[0].version #=> Integer
|
2164
2354
|
# resp.virtual_routers[0].virtual_router_name #=> String
|
2165
2355
|
#
|
2166
2356
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualRouters AWS API Documentation
|
@@ -2191,7 +2381,7 @@ module Aws::AppMesh
|
|
2191
2381
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
2192
2382
|
# not your own, then it's the ID of the account that shared the mesh
|
2193
2383
|
# with your account. For more information about mesh sharing, see
|
2194
|
-
# [Working with
|
2384
|
+
# [Working with shared meshes][1].
|
2195
2385
|
#
|
2196
2386
|
#
|
2197
2387
|
#
|
@@ -2208,6 +2398,8 @@ module Aws::AppMesh
|
|
2208
2398
|
# * {Types::ListVirtualServicesOutput#next_token #next_token} => String
|
2209
2399
|
# * {Types::ListVirtualServicesOutput#virtual_services #virtual_services} => Array<Types::VirtualServiceRef>
|
2210
2400
|
#
|
2401
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2402
|
+
#
|
2211
2403
|
# @example Request syntax with placeholder values
|
2212
2404
|
#
|
2213
2405
|
# resp = client.list_virtual_services({
|
@@ -2222,9 +2414,12 @@ module Aws::AppMesh
|
|
2222
2414
|
# resp.next_token #=> String
|
2223
2415
|
# resp.virtual_services #=> Array
|
2224
2416
|
# resp.virtual_services[0].arn #=> String
|
2417
|
+
# resp.virtual_services[0].created_at #=> Time
|
2418
|
+
# resp.virtual_services[0].last_updated_at #=> Time
|
2225
2419
|
# resp.virtual_services[0].mesh_name #=> String
|
2226
2420
|
# resp.virtual_services[0].mesh_owner #=> String
|
2227
2421
|
# resp.virtual_services[0].resource_owner #=> String
|
2422
|
+
# resp.virtual_services[0].version #=> Integer
|
2228
2423
|
# resp.virtual_services[0].virtual_service_name #=> String
|
2229
2424
|
#
|
2230
2425
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualServices AWS API Documentation
|
@@ -2370,7 +2565,7 @@ module Aws::AppMesh
|
|
2370
2565
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
2371
2566
|
# not your own, then it's the ID of the account that shared the mesh
|
2372
2567
|
# with your account. For more information about mesh sharing, see
|
2373
|
-
# [Working with
|
2568
|
+
# [Working with shared meshes][1].
|
2374
2569
|
#
|
2375
2570
|
#
|
2376
2571
|
#
|
@@ -2437,6 +2632,16 @@ module Aws::AppMesh
|
|
2437
2632
|
# },
|
2438
2633
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
2439
2634
|
# },
|
2635
|
+
# timeout: {
|
2636
|
+
# idle: {
|
2637
|
+
# unit: "ms", # accepts ms, s
|
2638
|
+
# value: 1,
|
2639
|
+
# },
|
2640
|
+
# per_request: {
|
2641
|
+
# unit: "ms", # accepts ms, s
|
2642
|
+
# value: 1,
|
2643
|
+
# },
|
2644
|
+
# },
|
2440
2645
|
# },
|
2441
2646
|
# http2_route: {
|
2442
2647
|
# action: { # required
|
@@ -2477,6 +2682,16 @@ module Aws::AppMesh
|
|
2477
2682
|
# },
|
2478
2683
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
2479
2684
|
# },
|
2685
|
+
# timeout: {
|
2686
|
+
# idle: {
|
2687
|
+
# unit: "ms", # accepts ms, s
|
2688
|
+
# value: 1,
|
2689
|
+
# },
|
2690
|
+
# per_request: {
|
2691
|
+
# unit: "ms", # accepts ms, s
|
2692
|
+
# value: 1,
|
2693
|
+
# },
|
2694
|
+
# },
|
2480
2695
|
# },
|
2481
2696
|
# http_route: {
|
2482
2697
|
# action: { # required
|
@@ -2517,6 +2732,16 @@ module Aws::AppMesh
|
|
2517
2732
|
# },
|
2518
2733
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
2519
2734
|
# },
|
2735
|
+
# timeout: {
|
2736
|
+
# idle: {
|
2737
|
+
# unit: "ms", # accepts ms, s
|
2738
|
+
# value: 1,
|
2739
|
+
# },
|
2740
|
+
# per_request: {
|
2741
|
+
# unit: "ms", # accepts ms, s
|
2742
|
+
# value: 1,
|
2743
|
+
# },
|
2744
|
+
# },
|
2520
2745
|
# },
|
2521
2746
|
# priority: 1,
|
2522
2747
|
# tcp_route: {
|
@@ -2528,6 +2753,12 @@ module Aws::AppMesh
|
|
2528
2753
|
# },
|
2529
2754
|
# ],
|
2530
2755
|
# },
|
2756
|
+
# timeout: {
|
2757
|
+
# idle: {
|
2758
|
+
# unit: "ms", # accepts ms, s
|
2759
|
+
# value: 1,
|
2760
|
+
# },
|
2761
|
+
# },
|
2531
2762
|
# },
|
2532
2763
|
# },
|
2533
2764
|
# virtual_router_name: "ResourceName", # required
|
@@ -2567,6 +2798,10 @@ module Aws::AppMesh
|
|
2567
2798
|
# resp.route.spec.grpc_route.retry_policy.per_retry_timeout.value #=> Integer
|
2568
2799
|
# resp.route.spec.grpc_route.retry_policy.tcp_retry_events #=> Array
|
2569
2800
|
# resp.route.spec.grpc_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
|
2801
|
+
# resp.route.spec.grpc_route.timeout.idle.unit #=> String, one of "ms", "s"
|
2802
|
+
# resp.route.spec.grpc_route.timeout.idle.value #=> Integer
|
2803
|
+
# resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "ms", "s"
|
2804
|
+
# resp.route.spec.grpc_route.timeout.per_request.value #=> Integer
|
2570
2805
|
# resp.route.spec.http2_route.action.weighted_targets #=> Array
|
2571
2806
|
# resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
|
2572
2807
|
# resp.route.spec.http2_route.action.weighted_targets[0].weight #=> Integer
|
@@ -2589,6 +2824,10 @@ module Aws::AppMesh
|
|
2589
2824
|
# resp.route.spec.http2_route.retry_policy.per_retry_timeout.value #=> Integer
|
2590
2825
|
# resp.route.spec.http2_route.retry_policy.tcp_retry_events #=> Array
|
2591
2826
|
# resp.route.spec.http2_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
|
2827
|
+
# resp.route.spec.http2_route.timeout.idle.unit #=> String, one of "ms", "s"
|
2828
|
+
# resp.route.spec.http2_route.timeout.idle.value #=> Integer
|
2829
|
+
# resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "ms", "s"
|
2830
|
+
# resp.route.spec.http2_route.timeout.per_request.value #=> Integer
|
2592
2831
|
# resp.route.spec.http_route.action.weighted_targets #=> Array
|
2593
2832
|
# resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
|
2594
2833
|
# resp.route.spec.http_route.action.weighted_targets[0].weight #=> Integer
|
@@ -2611,10 +2850,16 @@ module Aws::AppMesh
|
|
2611
2850
|
# resp.route.spec.http_route.retry_policy.per_retry_timeout.value #=> Integer
|
2612
2851
|
# resp.route.spec.http_route.retry_policy.tcp_retry_events #=> Array
|
2613
2852
|
# resp.route.spec.http_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
|
2853
|
+
# resp.route.spec.http_route.timeout.idle.unit #=> String, one of "ms", "s"
|
2854
|
+
# resp.route.spec.http_route.timeout.idle.value #=> Integer
|
2855
|
+
# resp.route.spec.http_route.timeout.per_request.unit #=> String, one of "ms", "s"
|
2856
|
+
# resp.route.spec.http_route.timeout.per_request.value #=> Integer
|
2614
2857
|
# resp.route.spec.priority #=> Integer
|
2615
2858
|
# resp.route.spec.tcp_route.action.weighted_targets #=> Array
|
2616
2859
|
# resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
|
2617
2860
|
# resp.route.spec.tcp_route.action.weighted_targets[0].weight #=> Integer
|
2861
|
+
# resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "ms", "s"
|
2862
|
+
# resp.route.spec.tcp_route.timeout.idle.value #=> Integer
|
2618
2863
|
# resp.route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
|
2619
2864
|
# resp.route.virtual_router_name #=> String
|
2620
2865
|
#
|
@@ -2644,7 +2889,7 @@ module Aws::AppMesh
|
|
2644
2889
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
2645
2890
|
# not your own, then it's the ID of the account that shared the mesh
|
2646
2891
|
# with your account. For more information about mesh sharing, see
|
2647
|
-
# [Working with
|
2892
|
+
# [Working with shared meshes][1].
|
2648
2893
|
#
|
2649
2894
|
#
|
2650
2895
|
#
|
@@ -2724,6 +2969,44 @@ module Aws::AppMesh
|
|
2724
2969
|
# port: 1, # required
|
2725
2970
|
# protocol: "grpc", # required, accepts grpc, http, http2, tcp
|
2726
2971
|
# },
|
2972
|
+
# timeout: {
|
2973
|
+
# grpc: {
|
2974
|
+
# idle: {
|
2975
|
+
# unit: "ms", # accepts ms, s
|
2976
|
+
# value: 1,
|
2977
|
+
# },
|
2978
|
+
# per_request: {
|
2979
|
+
# unit: "ms", # accepts ms, s
|
2980
|
+
# value: 1,
|
2981
|
+
# },
|
2982
|
+
# },
|
2983
|
+
# http: {
|
2984
|
+
# idle: {
|
2985
|
+
# unit: "ms", # accepts ms, s
|
2986
|
+
# value: 1,
|
2987
|
+
# },
|
2988
|
+
# per_request: {
|
2989
|
+
# unit: "ms", # accepts ms, s
|
2990
|
+
# value: 1,
|
2991
|
+
# },
|
2992
|
+
# },
|
2993
|
+
# http2: {
|
2994
|
+
# idle: {
|
2995
|
+
# unit: "ms", # accepts ms, s
|
2996
|
+
# value: 1,
|
2997
|
+
# },
|
2998
|
+
# per_request: {
|
2999
|
+
# unit: "ms", # accepts ms, s
|
3000
|
+
# value: 1,
|
3001
|
+
# },
|
3002
|
+
# },
|
3003
|
+
# tcp: {
|
3004
|
+
# idle: {
|
3005
|
+
# unit: "ms", # accepts ms, s
|
3006
|
+
# value: 1,
|
3007
|
+
# },
|
3008
|
+
# },
|
3009
|
+
# },
|
2727
3010
|
# tls: {
|
2728
3011
|
# certificate: { # required
|
2729
3012
|
# acm: {
|
@@ -2798,6 +3081,20 @@ module Aws::AppMesh
|
|
2798
3081
|
# resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
|
2799
3082
|
# resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
|
2800
3083
|
# resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
|
3084
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.idle.unit #=> String, one of "ms", "s"
|
3085
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.idle.value #=> Integer
|
3086
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.unit #=> String, one of "ms", "s"
|
3087
|
+
# resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.value #=> Integer
|
3088
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.idle.unit #=> String, one of "ms", "s"
|
3089
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.idle.value #=> Integer
|
3090
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.per_request.unit #=> String, one of "ms", "s"
|
3091
|
+
# resp.virtual_node.spec.listeners[0].timeout.http.per_request.value #=> Integer
|
3092
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.idle.unit #=> String, one of "ms", "s"
|
3093
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.idle.value #=> Integer
|
3094
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.per_request.unit #=> String, one of "ms", "s"
|
3095
|
+
# resp.virtual_node.spec.listeners[0].timeout.http2.per_request.value #=> Integer
|
3096
|
+
# resp.virtual_node.spec.listeners[0].timeout.tcp.idle.unit #=> String, one of "ms", "s"
|
3097
|
+
# resp.virtual_node.spec.listeners[0].timeout.tcp.idle.value #=> Integer
|
2801
3098
|
# resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
|
2802
3099
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
|
2803
3100
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
|
@@ -2838,7 +3135,7 @@ module Aws::AppMesh
|
|
2838
3135
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
2839
3136
|
# not your own, then it's the ID of the account that shared the mesh
|
2840
3137
|
# with your account. For more information about mesh sharing, see
|
2841
|
-
# [Working with
|
3138
|
+
# [Working with shared meshes][1].
|
2842
3139
|
#
|
2843
3140
|
#
|
2844
3141
|
#
|
@@ -2916,7 +3213,7 @@ module Aws::AppMesh
|
|
2916
3213
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
2917
3214
|
# not your own, then it's the ID of the account that shared the mesh
|
2918
3215
|
# with your account. For more information about mesh sharing, see
|
2919
|
-
# [Working with
|
3216
|
+
# [Working with shared meshes][1].
|
2920
3217
|
#
|
2921
3218
|
#
|
2922
3219
|
#
|
@@ -2989,7 +3286,7 @@ module Aws::AppMesh
|
|
2989
3286
|
params: params,
|
2990
3287
|
config: config)
|
2991
3288
|
context[:gem_name] = 'aws-sdk-appmesh'
|
2992
|
-
context[:gem_version] = '1.
|
3289
|
+
context[:gem_version] = '1.26.0'
|
2993
3290
|
Seahorse::Client::Request.new(handlers, context)
|
2994
3291
|
end
|
2995
3292
|
|