aws-sdk-appmesh 1.22.0 → 1.27.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 +3 -1
- data/lib/aws-sdk-appmesh/client.rb +332 -50
- 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 +2 -0
- data/lib/aws-sdk-appmesh/types.rb +721 -47
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c697bf2d1b5df9d6ea020b7e11e96355a3929057befec084f3bbd998780f92bc
|
4
|
+
data.tar.gz: 3bd361104f2ff0bea7258f33672999eb4bfa61888a953f8daa8371cf03ea15f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea02a293a267b49b08366813485abec60933c073fa11ccbdceca1f41c631460e182cf902dbddacb51b1b0de42b9dd1e6f0bd2c6d91b05012b749e28576219a90
|
7
|
+
data.tar.gz: 33cbb8b8426c8195210a194621c3474210f5dd823390999b913f82eacd051778eb0df7bd779bdba25c0201881f0f0a3538061dfa1db71d6903bdb73b801b9fca
|
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.27.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
|
|
@@ -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
|
|
@@ -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 a valid HTTP(S) URI.
|
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.
|
@@ -308,12 +312,19 @@ module Aws::AppMesh
|
|
308
312
|
|
309
313
|
# @!group API Operations
|
310
314
|
|
311
|
-
# Creates a service mesh.
|
312
|
-
#
|
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.
|
322
|
+
#
|
323
|
+
# For more information about service meshes, see [Service meshes][1].
|
313
324
|
#
|
314
|
-
#
|
315
|
-
#
|
316
|
-
#
|
325
|
+
#
|
326
|
+
#
|
327
|
+
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/meshes.html
|
317
328
|
#
|
318
329
|
# @option params [String] :client_token
|
319
330
|
# Unique, case-sensitive identifier that you provide to ensure the
|
@@ -382,13 +393,8 @@ module Aws::AppMesh
|
|
382
393
|
|
383
394
|
# Creates a route that is associated with a virtual router.
|
384
395
|
#
|
385
|
-
# You can
|
386
|
-
#
|
387
|
-
# name is `my-service.local` and you want the route to match requests to
|
388
|
-
# `my-service.local/metrics`, your prefix should be `/metrics`.
|
389
|
-
#
|
390
|
-
# If your route matches a request, you can distribute traffic to one or
|
391
|
-
# 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.
|
392
398
|
#
|
393
399
|
# For more information about routes, see [Routes][1].
|
394
400
|
#
|
@@ -412,7 +418,7 @@ module Aws::AppMesh
|
|
412
418
|
# not your own, then the account that you specify must share the mesh
|
413
419
|
# with your account before you can create the resource in the service
|
414
420
|
# mesh. For more information about mesh sharing, see [Working with
|
415
|
-
#
|
421
|
+
# shared meshes][1].
|
416
422
|
#
|
417
423
|
#
|
418
424
|
#
|
@@ -487,6 +493,16 @@ module Aws::AppMesh
|
|
487
493
|
# },
|
488
494
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
489
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
|
+
# },
|
490
506
|
# },
|
491
507
|
# http2_route: {
|
492
508
|
# action: { # required
|
@@ -527,6 +543,16 @@ module Aws::AppMesh
|
|
527
543
|
# },
|
528
544
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
529
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
|
+
# },
|
530
556
|
# },
|
531
557
|
# http_route: {
|
532
558
|
# action: { # required
|
@@ -567,6 +593,16 @@ module Aws::AppMesh
|
|
567
593
|
# },
|
568
594
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
569
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
|
+
# },
|
570
606
|
# },
|
571
607
|
# priority: 1,
|
572
608
|
# tcp_route: {
|
@@ -578,6 +614,12 @@ module Aws::AppMesh
|
|
578
614
|
# },
|
579
615
|
# ],
|
580
616
|
# },
|
617
|
+
# timeout: {
|
618
|
+
# idle: {
|
619
|
+
# unit: "ms", # accepts ms, s
|
620
|
+
# value: 1,
|
621
|
+
# },
|
622
|
+
# },
|
581
623
|
# },
|
582
624
|
# },
|
583
625
|
# tags: [
|
@@ -623,6 +665,10 @@ module Aws::AppMesh
|
|
623
665
|
# resp.route.spec.grpc_route.retry_policy.per_retry_timeout.value #=> Integer
|
624
666
|
# resp.route.spec.grpc_route.retry_policy.tcp_retry_events #=> Array
|
625
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
|
626
672
|
# resp.route.spec.http2_route.action.weighted_targets #=> Array
|
627
673
|
# resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
|
628
674
|
# resp.route.spec.http2_route.action.weighted_targets[0].weight #=> Integer
|
@@ -645,6 +691,10 @@ module Aws::AppMesh
|
|
645
691
|
# resp.route.spec.http2_route.retry_policy.per_retry_timeout.value #=> Integer
|
646
692
|
# resp.route.spec.http2_route.retry_policy.tcp_retry_events #=> Array
|
647
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
|
648
698
|
# resp.route.spec.http_route.action.weighted_targets #=> Array
|
649
699
|
# resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
|
650
700
|
# resp.route.spec.http_route.action.weighted_targets[0].weight #=> Integer
|
@@ -667,10 +717,16 @@ module Aws::AppMesh
|
|
667
717
|
# resp.route.spec.http_route.retry_policy.per_retry_timeout.value #=> Integer
|
668
718
|
# resp.route.spec.http_route.retry_policy.tcp_retry_events #=> Array
|
669
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
|
670
724
|
# resp.route.spec.priority #=> Integer
|
671
725
|
# resp.route.spec.tcp_route.action.weighted_targets #=> Array
|
672
726
|
# resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
|
673
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
|
674
730
|
# resp.route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
|
675
731
|
# resp.route.virtual_router_name #=> String
|
676
732
|
#
|
@@ -688,11 +744,13 @@ module Aws::AppMesh
|
|
688
744
|
# A virtual node acts as a logical pointer to a particular task group,
|
689
745
|
# such as an Amazon ECS service or a Kubernetes deployment. When you
|
690
746
|
# create a virtual node, you can specify the service discovery
|
691
|
-
# 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).
|
692
750
|
#
|
693
|
-
#
|
694
|
-
#
|
695
|
-
# 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`.
|
696
754
|
#
|
697
755
|
# The response metadata for your new virtual node contains the `arn`
|
698
756
|
# that is associated with the virtual node. Set this value (either the
|
@@ -710,7 +768,7 @@ module Aws::AppMesh
|
|
710
768
|
#
|
711
769
|
# </note>
|
712
770
|
#
|
713
|
-
# For more information about virtual nodes, see [Virtual
|
771
|
+
# For more information about virtual nodes, see [Virtual nodes][1].
|
714
772
|
#
|
715
773
|
#
|
716
774
|
#
|
@@ -732,7 +790,7 @@ module Aws::AppMesh
|
|
732
790
|
# not your own, then the account that you specify must share the mesh
|
733
791
|
# with your account before you can create the resource in the service
|
734
792
|
# mesh. For more information about mesh sharing, see [Working with
|
735
|
-
#
|
793
|
+
# shared meshes][1].
|
736
794
|
#
|
737
795
|
#
|
738
796
|
#
|
@@ -818,6 +876,44 @@ module Aws::AppMesh
|
|
818
876
|
# port: 1, # required
|
819
877
|
# protocol: "grpc", # required, accepts grpc, http, http2, tcp
|
820
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
|
+
# },
|
821
917
|
# tls: {
|
822
918
|
# certificate: { # required
|
823
919
|
# acm: {
|
@@ -898,6 +994,20 @@ module Aws::AppMesh
|
|
898
994
|
# resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
|
899
995
|
# resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
|
900
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
|
901
1011
|
# resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
|
902
1012
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
|
903
1013
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
|
@@ -923,15 +1033,14 @@ module Aws::AppMesh
|
|
923
1033
|
|
924
1034
|
# Creates a virtual router within a service mesh.
|
925
1035
|
#
|
926
|
-
#
|
927
|
-
#
|
928
|
-
#
|
929
|
-
#
|
930
|
-
#
|
931
|
-
#
|
932
|
-
# 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.
|
933
1042
|
#
|
934
|
-
# For more information about virtual routers, see [Virtual
|
1043
|
+
# For more information about virtual routers, see [Virtual routers][1].
|
935
1044
|
#
|
936
1045
|
#
|
937
1046
|
#
|
@@ -953,7 +1062,7 @@ module Aws::AppMesh
|
|
953
1062
|
# not your own, then the account that you specify must share the mesh
|
954
1063
|
# with your account before you can create the resource in the service
|
955
1064
|
# mesh. For more information about mesh sharing, see [Working with
|
956
|
-
#
|
1065
|
+
# shared meshes][1].
|
957
1066
|
#
|
958
1067
|
#
|
959
1068
|
#
|
@@ -1036,7 +1145,7 @@ module Aws::AppMesh
|
|
1036
1145
|
# virtual service.
|
1037
1146
|
#
|
1038
1147
|
# For more information about virtual services, see [Virtual
|
1039
|
-
#
|
1148
|
+
# services][1].
|
1040
1149
|
#
|
1041
1150
|
#
|
1042
1151
|
#
|
@@ -1058,7 +1167,7 @@ module Aws::AppMesh
|
|
1058
1167
|
# not your own, then the account that you specify must share the mesh
|
1059
1168
|
# with your account before you can create the resource in the service
|
1060
1169
|
# mesh. For more information about mesh sharing, see [Working with
|
1061
|
-
#
|
1170
|
+
# shared meshes][1].
|
1062
1171
|
#
|
1063
1172
|
#
|
1064
1173
|
#
|
@@ -1180,7 +1289,7 @@ module Aws::AppMesh
|
|
1180
1289
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1181
1290
|
# not your own, then it's the ID of the account that shared the mesh
|
1182
1291
|
# with your account. For more information about mesh sharing, see
|
1183
|
-
# [Working with
|
1292
|
+
# [Working with shared meshes][1].
|
1184
1293
|
#
|
1185
1294
|
#
|
1186
1295
|
#
|
@@ -1239,6 +1348,10 @@ module Aws::AppMesh
|
|
1239
1348
|
# resp.route.spec.grpc_route.retry_policy.per_retry_timeout.value #=> Integer
|
1240
1349
|
# resp.route.spec.grpc_route.retry_policy.tcp_retry_events #=> Array
|
1241
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
|
1242
1355
|
# resp.route.spec.http2_route.action.weighted_targets #=> Array
|
1243
1356
|
# resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
|
1244
1357
|
# resp.route.spec.http2_route.action.weighted_targets[0].weight #=> Integer
|
@@ -1261,6 +1374,10 @@ module Aws::AppMesh
|
|
1261
1374
|
# resp.route.spec.http2_route.retry_policy.per_retry_timeout.value #=> Integer
|
1262
1375
|
# resp.route.spec.http2_route.retry_policy.tcp_retry_events #=> Array
|
1263
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
|
1264
1381
|
# resp.route.spec.http_route.action.weighted_targets #=> Array
|
1265
1382
|
# resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
|
1266
1383
|
# resp.route.spec.http_route.action.weighted_targets[0].weight #=> Integer
|
@@ -1283,10 +1400,16 @@ module Aws::AppMesh
|
|
1283
1400
|
# resp.route.spec.http_route.retry_policy.per_retry_timeout.value #=> Integer
|
1284
1401
|
# resp.route.spec.http_route.retry_policy.tcp_retry_events #=> Array
|
1285
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
|
1286
1407
|
# resp.route.spec.priority #=> Integer
|
1287
1408
|
# resp.route.spec.tcp_route.action.weighted_targets #=> Array
|
1288
1409
|
# resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
|
1289
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
|
1290
1413
|
# resp.route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
|
1291
1414
|
# resp.route.virtual_router_name #=> String
|
1292
1415
|
#
|
@@ -1311,7 +1434,7 @@ module Aws::AppMesh
|
|
1311
1434
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1312
1435
|
# not your own, then it's the ID of the account that shared the mesh
|
1313
1436
|
# with your account. For more information about mesh sharing, see
|
1314
|
-
# [Working with
|
1437
|
+
# [Working with shared meshes][1].
|
1315
1438
|
#
|
1316
1439
|
#
|
1317
1440
|
#
|
@@ -1366,6 +1489,20 @@ module Aws::AppMesh
|
|
1366
1489
|
# resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
|
1367
1490
|
# resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
|
1368
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
|
1369
1506
|
# resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
|
1370
1507
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
|
1371
1508
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
|
@@ -1401,7 +1538,7 @@ module Aws::AppMesh
|
|
1401
1538
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1402
1539
|
# not your own, then it's the ID of the account that shared the mesh
|
1403
1540
|
# with your account. For more information about mesh sharing, see
|
1404
|
-
# [Working with
|
1541
|
+
# [Working with shared meshes][1].
|
1405
1542
|
#
|
1406
1543
|
#
|
1407
1544
|
#
|
@@ -1456,7 +1593,7 @@ module Aws::AppMesh
|
|
1456
1593
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1457
1594
|
# not your own, then it's the ID of the account that shared the mesh
|
1458
1595
|
# with your account. For more information about mesh sharing, see
|
1459
|
-
# [Working with
|
1596
|
+
# [Working with shared meshes][1].
|
1460
1597
|
#
|
1461
1598
|
#
|
1462
1599
|
#
|
@@ -1510,7 +1647,7 @@ module Aws::AppMesh
|
|
1510
1647
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1511
1648
|
# not your own, then it's the ID of the account that shared the mesh
|
1512
1649
|
# with your account. For more information about mesh sharing, see
|
1513
|
-
# [Working with
|
1650
|
+
# [Working with shared meshes][1].
|
1514
1651
|
#
|
1515
1652
|
#
|
1516
1653
|
#
|
@@ -1558,7 +1695,7 @@ module Aws::AppMesh
|
|
1558
1695
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1559
1696
|
# not your own, then it's the ID of the account that shared the mesh
|
1560
1697
|
# with your account. For more information about mesh sharing, see
|
1561
|
-
# [Working with
|
1698
|
+
# [Working with shared meshes][1].
|
1562
1699
|
#
|
1563
1700
|
#
|
1564
1701
|
#
|
@@ -1617,6 +1754,10 @@ module Aws::AppMesh
|
|
1617
1754
|
# resp.route.spec.grpc_route.retry_policy.per_retry_timeout.value #=> Integer
|
1618
1755
|
# resp.route.spec.grpc_route.retry_policy.tcp_retry_events #=> Array
|
1619
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
|
1620
1761
|
# resp.route.spec.http2_route.action.weighted_targets #=> Array
|
1621
1762
|
# resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
|
1622
1763
|
# resp.route.spec.http2_route.action.weighted_targets[0].weight #=> Integer
|
@@ -1639,6 +1780,10 @@ module Aws::AppMesh
|
|
1639
1780
|
# resp.route.spec.http2_route.retry_policy.per_retry_timeout.value #=> Integer
|
1640
1781
|
# resp.route.spec.http2_route.retry_policy.tcp_retry_events #=> Array
|
1641
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
|
1642
1787
|
# resp.route.spec.http_route.action.weighted_targets #=> Array
|
1643
1788
|
# resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
|
1644
1789
|
# resp.route.spec.http_route.action.weighted_targets[0].weight #=> Integer
|
@@ -1661,10 +1806,16 @@ module Aws::AppMesh
|
|
1661
1806
|
# resp.route.spec.http_route.retry_policy.per_retry_timeout.value #=> Integer
|
1662
1807
|
# resp.route.spec.http_route.retry_policy.tcp_retry_events #=> Array
|
1663
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
|
1664
1813
|
# resp.route.spec.priority #=> Integer
|
1665
1814
|
# resp.route.spec.tcp_route.action.weighted_targets #=> Array
|
1666
1815
|
# resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
|
1667
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
|
1668
1819
|
# resp.route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
|
1669
1820
|
# resp.route.virtual_router_name #=> String
|
1670
1821
|
#
|
@@ -1686,7 +1837,7 @@ module Aws::AppMesh
|
|
1686
1837
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1687
1838
|
# not your own, then it's the ID of the account that shared the mesh
|
1688
1839
|
# with your account. For more information about mesh sharing, see
|
1689
|
-
# [Working with
|
1840
|
+
# [Working with shared meshes][1].
|
1690
1841
|
#
|
1691
1842
|
#
|
1692
1843
|
#
|
@@ -1741,6 +1892,20 @@ module Aws::AppMesh
|
|
1741
1892
|
# resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
|
1742
1893
|
# resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
|
1743
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
|
1744
1909
|
# resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
|
1745
1910
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
|
1746
1911
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
|
@@ -1773,7 +1938,7 @@ module Aws::AppMesh
|
|
1773
1938
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1774
1939
|
# not your own, then it's the ID of the account that shared the mesh
|
1775
1940
|
# with your account. For more information about mesh sharing, see
|
1776
|
-
# [Working with
|
1941
|
+
# [Working with shared meshes][1].
|
1777
1942
|
#
|
1778
1943
|
#
|
1779
1944
|
#
|
@@ -1828,7 +1993,7 @@ module Aws::AppMesh
|
|
1828
1993
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1829
1994
|
# not your own, then it's the ID of the account that shared the mesh
|
1830
1995
|
# with your account. For more information about mesh sharing, see
|
1831
|
-
# [Working with
|
1996
|
+
# [Working with shared meshes][1].
|
1832
1997
|
#
|
1833
1998
|
#
|
1834
1999
|
#
|
@@ -1915,9 +2080,12 @@ module Aws::AppMesh
|
|
1915
2080
|
#
|
1916
2081
|
# resp.meshes #=> Array
|
1917
2082
|
# resp.meshes[0].arn #=> String
|
2083
|
+
# resp.meshes[0].created_at #=> Time
|
2084
|
+
# resp.meshes[0].last_updated_at #=> Time
|
1918
2085
|
# resp.meshes[0].mesh_name #=> String
|
1919
2086
|
# resp.meshes[0].mesh_owner #=> String
|
1920
2087
|
# resp.meshes[0].resource_owner #=> String
|
2088
|
+
# resp.meshes[0].version #=> Integer
|
1921
2089
|
# resp.next_token #=> String
|
1922
2090
|
#
|
1923
2091
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListMeshes AWS API Documentation
|
@@ -1948,7 +2116,7 @@ module Aws::AppMesh
|
|
1948
2116
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
1949
2117
|
# not your own, then it's the ID of the account that shared the mesh
|
1950
2118
|
# with your account. For more information about mesh sharing, see
|
1951
|
-
# [Working with
|
2119
|
+
# [Working with shared meshes][1].
|
1952
2120
|
#
|
1953
2121
|
#
|
1954
2122
|
#
|
@@ -1985,10 +2153,13 @@ module Aws::AppMesh
|
|
1985
2153
|
# resp.next_token #=> String
|
1986
2154
|
# resp.routes #=> Array
|
1987
2155
|
# resp.routes[0].arn #=> String
|
2156
|
+
# resp.routes[0].created_at #=> Time
|
2157
|
+
# resp.routes[0].last_updated_at #=> Time
|
1988
2158
|
# resp.routes[0].mesh_name #=> String
|
1989
2159
|
# resp.routes[0].mesh_owner #=> String
|
1990
2160
|
# resp.routes[0].resource_owner #=> String
|
1991
2161
|
# resp.routes[0].route_name #=> String
|
2162
|
+
# resp.routes[0].version #=> Integer
|
1992
2163
|
# resp.routes[0].virtual_router_name #=> String
|
1993
2164
|
#
|
1994
2165
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListRoutes AWS API Documentation
|
@@ -2072,7 +2243,7 @@ module Aws::AppMesh
|
|
2072
2243
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
2073
2244
|
# not your own, then it's the ID of the account that shared the mesh
|
2074
2245
|
# with your account. For more information about mesh sharing, see
|
2075
|
-
# [Working with
|
2246
|
+
# [Working with shared meshes][1].
|
2076
2247
|
#
|
2077
2248
|
#
|
2078
2249
|
#
|
@@ -2105,9 +2276,12 @@ module Aws::AppMesh
|
|
2105
2276
|
# resp.next_token #=> String
|
2106
2277
|
# resp.virtual_nodes #=> Array
|
2107
2278
|
# resp.virtual_nodes[0].arn #=> String
|
2279
|
+
# resp.virtual_nodes[0].created_at #=> Time
|
2280
|
+
# resp.virtual_nodes[0].last_updated_at #=> Time
|
2108
2281
|
# resp.virtual_nodes[0].mesh_name #=> String
|
2109
2282
|
# resp.virtual_nodes[0].mesh_owner #=> String
|
2110
2283
|
# resp.virtual_nodes[0].resource_owner #=> String
|
2284
|
+
# resp.virtual_nodes[0].version #=> Integer
|
2111
2285
|
# resp.virtual_nodes[0].virtual_node_name #=> String
|
2112
2286
|
#
|
2113
2287
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualNodes AWS API Documentation
|
@@ -2138,7 +2312,7 @@ module Aws::AppMesh
|
|
2138
2312
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
2139
2313
|
# not your own, then it's the ID of the account that shared the mesh
|
2140
2314
|
# with your account. For more information about mesh sharing, see
|
2141
|
-
# [Working with
|
2315
|
+
# [Working with shared meshes][1].
|
2142
2316
|
#
|
2143
2317
|
#
|
2144
2318
|
#
|
@@ -2171,9 +2345,12 @@ module Aws::AppMesh
|
|
2171
2345
|
# resp.next_token #=> String
|
2172
2346
|
# resp.virtual_routers #=> Array
|
2173
2347
|
# resp.virtual_routers[0].arn #=> String
|
2348
|
+
# resp.virtual_routers[0].created_at #=> Time
|
2349
|
+
# resp.virtual_routers[0].last_updated_at #=> Time
|
2174
2350
|
# resp.virtual_routers[0].mesh_name #=> String
|
2175
2351
|
# resp.virtual_routers[0].mesh_owner #=> String
|
2176
2352
|
# resp.virtual_routers[0].resource_owner #=> String
|
2353
|
+
# resp.virtual_routers[0].version #=> Integer
|
2177
2354
|
# resp.virtual_routers[0].virtual_router_name #=> String
|
2178
2355
|
#
|
2179
2356
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualRouters AWS API Documentation
|
@@ -2204,7 +2381,7 @@ module Aws::AppMesh
|
|
2204
2381
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
2205
2382
|
# not your own, then it's the ID of the account that shared the mesh
|
2206
2383
|
# with your account. For more information about mesh sharing, see
|
2207
|
-
# [Working with
|
2384
|
+
# [Working with shared meshes][1].
|
2208
2385
|
#
|
2209
2386
|
#
|
2210
2387
|
#
|
@@ -2237,9 +2414,12 @@ module Aws::AppMesh
|
|
2237
2414
|
# resp.next_token #=> String
|
2238
2415
|
# resp.virtual_services #=> Array
|
2239
2416
|
# resp.virtual_services[0].arn #=> String
|
2417
|
+
# resp.virtual_services[0].created_at #=> Time
|
2418
|
+
# resp.virtual_services[0].last_updated_at #=> Time
|
2240
2419
|
# resp.virtual_services[0].mesh_name #=> String
|
2241
2420
|
# resp.virtual_services[0].mesh_owner #=> String
|
2242
2421
|
# resp.virtual_services[0].resource_owner #=> String
|
2422
|
+
# resp.virtual_services[0].version #=> Integer
|
2243
2423
|
# resp.virtual_services[0].virtual_service_name #=> String
|
2244
2424
|
#
|
2245
2425
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualServices AWS API Documentation
|
@@ -2385,7 +2565,7 @@ module Aws::AppMesh
|
|
2385
2565
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
2386
2566
|
# not your own, then it's the ID of the account that shared the mesh
|
2387
2567
|
# with your account. For more information about mesh sharing, see
|
2388
|
-
# [Working with
|
2568
|
+
# [Working with shared meshes][1].
|
2389
2569
|
#
|
2390
2570
|
#
|
2391
2571
|
#
|
@@ -2452,6 +2632,16 @@ module Aws::AppMesh
|
|
2452
2632
|
# },
|
2453
2633
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
2454
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
|
+
# },
|
2455
2645
|
# },
|
2456
2646
|
# http2_route: {
|
2457
2647
|
# action: { # required
|
@@ -2492,6 +2682,16 @@ module Aws::AppMesh
|
|
2492
2682
|
# },
|
2493
2683
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
2494
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
|
+
# },
|
2495
2695
|
# },
|
2496
2696
|
# http_route: {
|
2497
2697
|
# action: { # required
|
@@ -2532,6 +2732,16 @@ module Aws::AppMesh
|
|
2532
2732
|
# },
|
2533
2733
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
2534
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
|
+
# },
|
2535
2745
|
# },
|
2536
2746
|
# priority: 1,
|
2537
2747
|
# tcp_route: {
|
@@ -2543,6 +2753,12 @@ module Aws::AppMesh
|
|
2543
2753
|
# },
|
2544
2754
|
# ],
|
2545
2755
|
# },
|
2756
|
+
# timeout: {
|
2757
|
+
# idle: {
|
2758
|
+
# unit: "ms", # accepts ms, s
|
2759
|
+
# value: 1,
|
2760
|
+
# },
|
2761
|
+
# },
|
2546
2762
|
# },
|
2547
2763
|
# },
|
2548
2764
|
# virtual_router_name: "ResourceName", # required
|
@@ -2582,6 +2798,10 @@ module Aws::AppMesh
|
|
2582
2798
|
# resp.route.spec.grpc_route.retry_policy.per_retry_timeout.value #=> Integer
|
2583
2799
|
# resp.route.spec.grpc_route.retry_policy.tcp_retry_events #=> Array
|
2584
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
|
2585
2805
|
# resp.route.spec.http2_route.action.weighted_targets #=> Array
|
2586
2806
|
# resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
|
2587
2807
|
# resp.route.spec.http2_route.action.weighted_targets[0].weight #=> Integer
|
@@ -2604,6 +2824,10 @@ module Aws::AppMesh
|
|
2604
2824
|
# resp.route.spec.http2_route.retry_policy.per_retry_timeout.value #=> Integer
|
2605
2825
|
# resp.route.spec.http2_route.retry_policy.tcp_retry_events #=> Array
|
2606
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
|
2607
2831
|
# resp.route.spec.http_route.action.weighted_targets #=> Array
|
2608
2832
|
# resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
|
2609
2833
|
# resp.route.spec.http_route.action.weighted_targets[0].weight #=> Integer
|
@@ -2626,10 +2850,16 @@ module Aws::AppMesh
|
|
2626
2850
|
# resp.route.spec.http_route.retry_policy.per_retry_timeout.value #=> Integer
|
2627
2851
|
# resp.route.spec.http_route.retry_policy.tcp_retry_events #=> Array
|
2628
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
|
2629
2857
|
# resp.route.spec.priority #=> Integer
|
2630
2858
|
# resp.route.spec.tcp_route.action.weighted_targets #=> Array
|
2631
2859
|
# resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
|
2632
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
|
2633
2863
|
# resp.route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
|
2634
2864
|
# resp.route.virtual_router_name #=> String
|
2635
2865
|
#
|
@@ -2659,7 +2889,7 @@ module Aws::AppMesh
|
|
2659
2889
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
2660
2890
|
# not your own, then it's the ID of the account that shared the mesh
|
2661
2891
|
# with your account. For more information about mesh sharing, see
|
2662
|
-
# [Working with
|
2892
|
+
# [Working with shared meshes][1].
|
2663
2893
|
#
|
2664
2894
|
#
|
2665
2895
|
#
|
@@ -2739,6 +2969,44 @@ module Aws::AppMesh
|
|
2739
2969
|
# port: 1, # required
|
2740
2970
|
# protocol: "grpc", # required, accepts grpc, http, http2, tcp
|
2741
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
|
+
# },
|
2742
3010
|
# tls: {
|
2743
3011
|
# certificate: { # required
|
2744
3012
|
# acm: {
|
@@ -2813,6 +3081,20 @@ module Aws::AppMesh
|
|
2813
3081
|
# resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
|
2814
3082
|
# resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
|
2815
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
|
2816
3098
|
# resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
|
2817
3099
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
|
2818
3100
|
# resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
|
@@ -2853,7 +3135,7 @@ module Aws::AppMesh
|
|
2853
3135
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
2854
3136
|
# not your own, then it's the ID of the account that shared the mesh
|
2855
3137
|
# with your account. For more information about mesh sharing, see
|
2856
|
-
# [Working with
|
3138
|
+
# [Working with shared meshes][1].
|
2857
3139
|
#
|
2858
3140
|
#
|
2859
3141
|
#
|
@@ -2931,7 +3213,7 @@ module Aws::AppMesh
|
|
2931
3213
|
# The AWS IAM account ID of the service mesh owner. If the account ID is
|
2932
3214
|
# not your own, then it's the ID of the account that shared the mesh
|
2933
3215
|
# with your account. For more information about mesh sharing, see
|
2934
|
-
# [Working with
|
3216
|
+
# [Working with shared meshes][1].
|
2935
3217
|
#
|
2936
3218
|
#
|
2937
3219
|
#
|
@@ -3004,7 +3286,7 @@ module Aws::AppMesh
|
|
3004
3286
|
params: params,
|
3005
3287
|
config: config)
|
3006
3288
|
context[:gem_name] = 'aws-sdk-appmesh'
|
3007
|
-
context[:gem_version] = '1.
|
3289
|
+
context[:gem_version] = '1.27.0'
|
3008
3290
|
Seahorse::Client::Request.new(handlers, context)
|
3009
3291
|
end
|
3010
3292
|
|