aws-sdk-appmesh 1.28.0 → 1.33.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6635dee1c7aa14de4ed9815088245d560ae89c15bc303e4596d390468c11c13d
4
- data.tar.gz: 6e03e3f92f8086cbec7de2bd994cd0b35f1d80110b1cde84bb45c96b49cce398
3
+ metadata.gz: 5bc974496fa11f0cc63f4dc244520de8ce39c1369b15ab66fb2141c0067ddad7
4
+ data.tar.gz: d9d4c27319a172ea9c6b5f41166a774293ec383b594b591aebf8c1bec0eef681
5
5
  SHA512:
6
- metadata.gz: bce15d4cecc8652f4f814d79c46e0a16250a33ce18f94fdb6aa25ad4b31c603009cec6cfeb6d1438741639df89570f621d117245acfa939ff66a16a577dfda30
7
- data.tar.gz: 0ef73719e2cb9b81021b7c37d7702150e585eab2bc39d1fc3172626617eb8a68b39b100c8cc1f3d2a81b332729b72bcbd0334b6ecb49aeca7437a67583c01241
6
+ metadata.gz: 97080b92fae29df6e7f2c791d6b27bbe32d6d12e6e8e83b0d7de874f90552ce7bff383ac24500111b45f3bcd3be71e27ad90ca7fb5805e9d7896f8fadc878377
7
+ data.tar.gz: 6f600bd398a7e6651a016f3ff9cf45c9d3ea6bed37c1f4824dc19cb85c9cc299245a9839df44f05f325cd1b9c97be374dec22d74487ec68d3ffec1f4b2e7dd28
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-appmesh/customizations'
44
45
  #
45
46
  # See {Errors} for more information.
46
47
  #
47
- # @service
48
+ # @!group service
48
49
  module Aws::AppMesh
49
50
 
50
- GEM_VERSION = '1.28.0'
51
+ GEM_VERSION = '1.33.0'
51
52
 
52
53
  end
@@ -85,13 +85,28 @@ module Aws::AppMesh
85
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
86
86
  # credentials.
87
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
88
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
89
103
  # from an EC2 IMDS on an EC2 instance.
90
104
  #
91
- # * `Aws::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
95
110
  #
96
111
  # When `:credentials` are not configured directly, the following
97
112
  # locations will be searched for credentials:
@@ -101,10 +116,10 @@ module Aws::AppMesh
101
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
102
117
  # * `~/.aws/credentials`
103
118
  # * `~/.aws/config`
104
- # * EC2 IMDS instance profile - When used by default, the timeouts are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
107
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
108
123
  #
109
124
  # @option options [required, String] :region
110
125
  # The AWS region to connect to. The configured `:region` is
@@ -416,7 +431,7 @@ module Aws::AppMesh
416
431
  # tags: [
417
432
  # {
418
433
  # key: "TagKey", # required
419
- # value: "TagValue",
434
+ # value: "TagValue", # required
420
435
  # },
421
436
  # ],
422
437
  # virtual_gateway_name: "ResourceName", # required
@@ -439,7 +454,7 @@ module Aws::AppMesh
439
454
  # resp.gateway_route.spec.http2_route.match.prefix #=> String
440
455
  # resp.gateway_route.spec.http_route.action.target.virtual_service.virtual_service_name #=> String
441
456
  # resp.gateway_route.spec.http_route.match.prefix #=> String
442
- # resp.gateway_route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
457
+ # resp.gateway_route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
443
458
  # resp.gateway_route.virtual_gateway_name #=> String
444
459
  #
445
460
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateGatewayRoute AWS API Documentation
@@ -503,7 +518,7 @@ module Aws::AppMesh
503
518
  # tags: [
504
519
  # {
505
520
  # key: "TagKey", # required
506
- # value: "TagValue",
521
+ # value: "TagValue", # required
507
522
  # },
508
523
  # ],
509
524
  # })
@@ -519,7 +534,7 @@ module Aws::AppMesh
519
534
  # resp.mesh.metadata.uid #=> String
520
535
  # resp.mesh.metadata.version #=> Integer
521
536
  # resp.mesh.spec.egress_filter.type #=> String, one of "ALLOW_ALL", "DROP_ALL"
522
- # resp.mesh.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
537
+ # resp.mesh.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
523
538
  #
524
539
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateMesh AWS API Documentation
525
540
  #
@@ -627,18 +642,18 @@ module Aws::AppMesh
627
642
  # http_retry_events: ["HttpRetryPolicyEvent"],
628
643
  # max_retries: 1, # required
629
644
  # per_retry_timeout: { # required
630
- # unit: "ms", # accepts ms, s
645
+ # unit: "s", # accepts s, ms
631
646
  # value: 1,
632
647
  # },
633
648
  # tcp_retry_events: ["connection-error"], # accepts connection-error
634
649
  # },
635
650
  # timeout: {
636
651
  # idle: {
637
- # unit: "ms", # accepts ms, s
652
+ # unit: "s", # accepts s, ms
638
653
  # value: 1,
639
654
  # },
640
655
  # per_request: {
641
- # unit: "ms", # accepts ms, s
656
+ # unit: "s", # accepts s, ms
642
657
  # value: 1,
643
658
  # },
644
659
  # },
@@ -669,7 +684,7 @@ module Aws::AppMesh
669
684
  # name: "HeaderName", # required
670
685
  # },
671
686
  # ],
672
- # method: "CONNECT", # accepts CONNECT, DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT, TRACE
687
+ # method: "GET", # accepts GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH
673
688
  # prefix: "String", # required
674
689
  # scheme: "http", # accepts http, https
675
690
  # },
@@ -677,18 +692,18 @@ module Aws::AppMesh
677
692
  # http_retry_events: ["HttpRetryPolicyEvent"],
678
693
  # max_retries: 1, # required
679
694
  # per_retry_timeout: { # required
680
- # unit: "ms", # accepts ms, s
695
+ # unit: "s", # accepts s, ms
681
696
  # value: 1,
682
697
  # },
683
698
  # tcp_retry_events: ["connection-error"], # accepts connection-error
684
699
  # },
685
700
  # timeout: {
686
701
  # idle: {
687
- # unit: "ms", # accepts ms, s
702
+ # unit: "s", # accepts s, ms
688
703
  # value: 1,
689
704
  # },
690
705
  # per_request: {
691
- # unit: "ms", # accepts ms, s
706
+ # unit: "s", # accepts s, ms
692
707
  # value: 1,
693
708
  # },
694
709
  # },
@@ -719,7 +734,7 @@ module Aws::AppMesh
719
734
  # name: "HeaderName", # required
720
735
  # },
721
736
  # ],
722
- # method: "CONNECT", # accepts CONNECT, DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT, TRACE
737
+ # method: "GET", # accepts GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH
723
738
  # prefix: "String", # required
724
739
  # scheme: "http", # accepts http, https
725
740
  # },
@@ -727,18 +742,18 @@ module Aws::AppMesh
727
742
  # http_retry_events: ["HttpRetryPolicyEvent"],
728
743
  # max_retries: 1, # required
729
744
  # per_retry_timeout: { # required
730
- # unit: "ms", # accepts ms, s
745
+ # unit: "s", # accepts s, ms
731
746
  # value: 1,
732
747
  # },
733
748
  # tcp_retry_events: ["connection-error"], # accepts connection-error
734
749
  # },
735
750
  # timeout: {
736
751
  # idle: {
737
- # unit: "ms", # accepts ms, s
752
+ # unit: "s", # accepts s, ms
738
753
  # value: 1,
739
754
  # },
740
755
  # per_request: {
741
- # unit: "ms", # accepts ms, s
756
+ # unit: "s", # accepts s, ms
742
757
  # value: 1,
743
758
  # },
744
759
  # },
@@ -755,7 +770,7 @@ module Aws::AppMesh
755
770
  # },
756
771
  # timeout: {
757
772
  # idle: {
758
- # unit: "ms", # accepts ms, s
773
+ # unit: "s", # accepts s, ms
759
774
  # value: 1,
760
775
  # },
761
776
  # },
@@ -764,7 +779,7 @@ module Aws::AppMesh
764
779
  # tags: [
765
780
  # {
766
781
  # key: "TagKey", # required
767
- # value: "TagValue",
782
+ # value: "TagValue", # required
768
783
  # },
769
784
  # ],
770
785
  # virtual_router_name: "ResourceName", # required
@@ -800,13 +815,13 @@ module Aws::AppMesh
800
815
  # resp.route.spec.grpc_route.retry_policy.http_retry_events #=> Array
801
816
  # resp.route.spec.grpc_route.retry_policy.http_retry_events[0] #=> String
802
817
  # resp.route.spec.grpc_route.retry_policy.max_retries #=> Integer
803
- # resp.route.spec.grpc_route.retry_policy.per_retry_timeout.unit #=> String, one of "ms", "s"
818
+ # resp.route.spec.grpc_route.retry_policy.per_retry_timeout.unit #=> String, one of "s", "ms"
804
819
  # resp.route.spec.grpc_route.retry_policy.per_retry_timeout.value #=> Integer
805
820
  # resp.route.spec.grpc_route.retry_policy.tcp_retry_events #=> Array
806
821
  # resp.route.spec.grpc_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
807
- # resp.route.spec.grpc_route.timeout.idle.unit #=> String, one of "ms", "s"
822
+ # resp.route.spec.grpc_route.timeout.idle.unit #=> String, one of "s", "ms"
808
823
  # resp.route.spec.grpc_route.timeout.idle.value #=> Integer
809
- # resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "ms", "s"
824
+ # resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "s", "ms"
810
825
  # resp.route.spec.grpc_route.timeout.per_request.value #=> Integer
811
826
  # resp.route.spec.http2_route.action.weighted_targets #=> Array
812
827
  # resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
@@ -820,19 +835,19 @@ module Aws::AppMesh
820
835
  # resp.route.spec.http2_route.match.headers[0].match.regex #=> String
821
836
  # resp.route.spec.http2_route.match.headers[0].match.suffix #=> String
822
837
  # resp.route.spec.http2_route.match.headers[0].name #=> String
823
- # resp.route.spec.http2_route.match.method #=> String, one of "CONNECT", "DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT", "TRACE"
838
+ # resp.route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
824
839
  # resp.route.spec.http2_route.match.prefix #=> String
825
840
  # resp.route.spec.http2_route.match.scheme #=> String, one of "http", "https"
826
841
  # resp.route.spec.http2_route.retry_policy.http_retry_events #=> Array
827
842
  # resp.route.spec.http2_route.retry_policy.http_retry_events[0] #=> String
828
843
  # resp.route.spec.http2_route.retry_policy.max_retries #=> Integer
829
- # resp.route.spec.http2_route.retry_policy.per_retry_timeout.unit #=> String, one of "ms", "s"
844
+ # resp.route.spec.http2_route.retry_policy.per_retry_timeout.unit #=> String, one of "s", "ms"
830
845
  # resp.route.spec.http2_route.retry_policy.per_retry_timeout.value #=> Integer
831
846
  # resp.route.spec.http2_route.retry_policy.tcp_retry_events #=> Array
832
847
  # resp.route.spec.http2_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
833
- # resp.route.spec.http2_route.timeout.idle.unit #=> String, one of "ms", "s"
848
+ # resp.route.spec.http2_route.timeout.idle.unit #=> String, one of "s", "ms"
834
849
  # resp.route.spec.http2_route.timeout.idle.value #=> Integer
835
- # resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "ms", "s"
850
+ # resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "s", "ms"
836
851
  # resp.route.spec.http2_route.timeout.per_request.value #=> Integer
837
852
  # resp.route.spec.http_route.action.weighted_targets #=> Array
838
853
  # resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
@@ -846,27 +861,27 @@ module Aws::AppMesh
846
861
  # resp.route.spec.http_route.match.headers[0].match.regex #=> String
847
862
  # resp.route.spec.http_route.match.headers[0].match.suffix #=> String
848
863
  # resp.route.spec.http_route.match.headers[0].name #=> String
849
- # resp.route.spec.http_route.match.method #=> String, one of "CONNECT", "DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT", "TRACE"
864
+ # resp.route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
850
865
  # resp.route.spec.http_route.match.prefix #=> String
851
866
  # resp.route.spec.http_route.match.scheme #=> String, one of "http", "https"
852
867
  # resp.route.spec.http_route.retry_policy.http_retry_events #=> Array
853
868
  # resp.route.spec.http_route.retry_policy.http_retry_events[0] #=> String
854
869
  # resp.route.spec.http_route.retry_policy.max_retries #=> Integer
855
- # resp.route.spec.http_route.retry_policy.per_retry_timeout.unit #=> String, one of "ms", "s"
870
+ # resp.route.spec.http_route.retry_policy.per_retry_timeout.unit #=> String, one of "s", "ms"
856
871
  # resp.route.spec.http_route.retry_policy.per_retry_timeout.value #=> Integer
857
872
  # resp.route.spec.http_route.retry_policy.tcp_retry_events #=> Array
858
873
  # resp.route.spec.http_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
859
- # resp.route.spec.http_route.timeout.idle.unit #=> String, one of "ms", "s"
874
+ # resp.route.spec.http_route.timeout.idle.unit #=> String, one of "s", "ms"
860
875
  # resp.route.spec.http_route.timeout.idle.value #=> Integer
861
- # resp.route.spec.http_route.timeout.per_request.unit #=> String, one of "ms", "s"
876
+ # resp.route.spec.http_route.timeout.per_request.unit #=> String, one of "s", "ms"
862
877
  # resp.route.spec.http_route.timeout.per_request.value #=> Integer
863
878
  # resp.route.spec.priority #=> Integer
864
879
  # resp.route.spec.tcp_route.action.weighted_targets #=> Array
865
880
  # resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
866
881
  # resp.route.spec.tcp_route.action.weighted_targets[0].weight #=> Integer
867
- # resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "ms", "s"
882
+ # resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "s", "ms"
868
883
  # resp.route.spec.tcp_route.timeout.idle.value #=> Integer
869
- # resp.route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
884
+ # resp.route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
870
885
  # resp.route.virtual_router_name #=> String
871
886
  #
872
887
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateRoute AWS API Documentation
@@ -960,18 +975,30 @@ module Aws::AppMesh
960
975
  # },
961
976
  # listeners: [ # required
962
977
  # {
978
+ # connection_pool: {
979
+ # grpc: {
980
+ # max_requests: 1, # required
981
+ # },
982
+ # http: {
983
+ # max_connections: 1, # required
984
+ # max_pending_requests: 1,
985
+ # },
986
+ # http2: {
987
+ # max_requests: 1, # required
988
+ # },
989
+ # },
963
990
  # health_check: {
964
991
  # healthy_threshold: 1, # required
965
992
  # interval_millis: 1, # required
966
993
  # path: "String",
967
994
  # port: 1,
968
- # protocol: "grpc", # required, accepts grpc, http, http2
995
+ # protocol: "http", # required, accepts http, http2, grpc
969
996
  # timeout_millis: 1, # required
970
997
  # unhealthy_threshold: 1, # required
971
998
  # },
972
999
  # port_mapping: { # required
973
1000
  # port: 1, # required
974
- # protocol: "grpc", # required, accepts grpc, http, http2
1001
+ # protocol: "http", # required, accepts http, http2, grpc
975
1002
  # },
976
1003
  # tls: {
977
1004
  # certificate: { # required
@@ -983,7 +1010,7 @@ module Aws::AppMesh
983
1010
  # private_key: "FilePath", # required
984
1011
  # },
985
1012
  # },
986
- # mode: "DISABLED", # required, accepts DISABLED, PERMISSIVE, STRICT
1013
+ # mode: "STRICT", # required, accepts STRICT, PERMISSIVE, DISABLED
987
1014
  # },
988
1015
  # },
989
1016
  # ],
@@ -998,7 +1025,7 @@ module Aws::AppMesh
998
1025
  # tags: [
999
1026
  # {
1000
1027
  # key: "TagKey", # required
1001
- # value: "TagValue",
1028
+ # value: "TagValue", # required
1002
1029
  # },
1003
1030
  # ],
1004
1031
  # virtual_gateway_name: "ResourceName", # required
@@ -1021,21 +1048,25 @@ module Aws::AppMesh
1021
1048
  # resp.virtual_gateway.spec.backend_defaults.client_policy.tls.validation.trust.acm.certificate_authority_arns[0] #=> String
1022
1049
  # resp.virtual_gateway.spec.backend_defaults.client_policy.tls.validation.trust.file.certificate_chain #=> String
1023
1050
  # resp.virtual_gateway.spec.listeners #=> Array
1051
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.grpc.max_requests #=> Integer
1052
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.http.max_connections #=> Integer
1053
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.http.max_pending_requests #=> Integer
1054
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.http2.max_requests #=> Integer
1024
1055
  # resp.virtual_gateway.spec.listeners[0].health_check.healthy_threshold #=> Integer
1025
1056
  # resp.virtual_gateway.spec.listeners[0].health_check.interval_millis #=> Integer
1026
1057
  # resp.virtual_gateway.spec.listeners[0].health_check.path #=> String
1027
1058
  # resp.virtual_gateway.spec.listeners[0].health_check.port #=> Integer
1028
- # resp.virtual_gateway.spec.listeners[0].health_check.protocol #=> String, one of "grpc", "http", "http2"
1059
+ # resp.virtual_gateway.spec.listeners[0].health_check.protocol #=> String, one of "http", "http2", "grpc"
1029
1060
  # resp.virtual_gateway.spec.listeners[0].health_check.timeout_millis #=> Integer
1030
1061
  # resp.virtual_gateway.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
1031
1062
  # resp.virtual_gateway.spec.listeners[0].port_mapping.port #=> Integer
1032
- # resp.virtual_gateway.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2"
1063
+ # resp.virtual_gateway.spec.listeners[0].port_mapping.protocol #=> String, one of "http", "http2", "grpc"
1033
1064
  # resp.virtual_gateway.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
1034
1065
  # resp.virtual_gateway.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
1035
1066
  # resp.virtual_gateway.spec.listeners[0].tls.certificate.file.private_key #=> String
1036
- # resp.virtual_gateway.spec.listeners[0].tls.mode #=> String, one of "DISABLED", "PERMISSIVE", "STRICT"
1067
+ # resp.virtual_gateway.spec.listeners[0].tls.mode #=> String, one of "STRICT", "PERMISSIVE", "DISABLED"
1037
1068
  # resp.virtual_gateway.spec.logging.access_log.file.path #=> String
1038
- # resp.virtual_gateway.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
1069
+ # resp.virtual_gateway.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
1039
1070
  # resp.virtual_gateway.virtual_gateway_name #=> String
1040
1071
  #
1041
1072
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateVirtualGateway AWS API Documentation
@@ -1061,26 +1092,32 @@ module Aws::AppMesh
1061
1092
  # communicate to is specified as a `backend`.
1062
1093
  #
1063
1094
  # The response metadata for your new virtual node contains the `arn`
1064
- # that is associated with the virtual node. Set this value (either the
1065
- # full ARN or the truncated resource name: for example,
1066
- # `mesh/default/virtualNode/simpleapp`) as the
1067
- # `APPMESH_VIRTUAL_NODE_NAME` environment variable for your task
1095
+ # that is associated with the virtual node. Set this value to the full
1096
+ # ARN; for example,
1097
+ # `arn:aws:appmesh:us-west-2:123456789012:myMesh/default/virtualNode/myApp`)
1098
+ # as the `APPMESH_RESOURCE_ARN` environment variable for your task
1068
1099
  # group's Envoy proxy container in your task definition or pod spec.
1069
1100
  # This is then mapped to the `node.id` and `node.cluster` Envoy
1070
1101
  # parameters.
1071
1102
  #
1072
- # <note markdown="1"> If you require your Envoy stats or tracing to use a different name,
1073
- # you can override the `node.cluster` value that is set by
1074
- # `APPMESH_VIRTUAL_NODE_NAME` with the `APPMESH_VIRTUAL_NODE_CLUSTER`
1075
- # environment variable.
1103
+ # <note markdown="1"> By default, App Mesh uses the name of the resource you specified in
1104
+ # `APPMESH_RESOURCE_ARN` when Envoy is referring to itself in metrics
1105
+ # and traces. You can override this behavior by setting the
1106
+ # `APPMESH_RESOURCE_CLUSTER` environment variable with your own name.
1107
+ #
1108
+ # AWS Cloud Map is not available in the eu-south-1 Region.
1076
1109
  #
1077
1110
  # </note>
1078
1111
  #
1079
- # For more information about virtual nodes, see [Virtual nodes][1].
1112
+ # For more information about virtual nodes, see [Virtual nodes][1]. You
1113
+ # must be using `1.15.0` or later of the Envoy image when setting these
1114
+ # variables. For more information about App Mesh Envoy variables, see
1115
+ # [Envoy image][2] in the AWS App Mesh User Guide.
1080
1116
  #
1081
1117
  #
1082
1118
  #
1083
1119
  # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/virtual_nodes.html
1120
+ # [2]: https://docs.aws.amazon.com/app-mesh/latest/userguide/envoy.html
1084
1121
  #
1085
1122
  # @option params [String] :client_token
1086
1123
  # Unique, case-sensitive identifier that you provide to ensure the
@@ -1171,53 +1208,80 @@ module Aws::AppMesh
1171
1208
  # ],
1172
1209
  # listeners: [
1173
1210
  # {
1211
+ # connection_pool: {
1212
+ # grpc: {
1213
+ # max_requests: 1, # required
1214
+ # },
1215
+ # http: {
1216
+ # max_connections: 1, # required
1217
+ # max_pending_requests: 1,
1218
+ # },
1219
+ # http2: {
1220
+ # max_requests: 1, # required
1221
+ # },
1222
+ # tcp: {
1223
+ # max_connections: 1, # required
1224
+ # },
1225
+ # },
1174
1226
  # health_check: {
1175
1227
  # healthy_threshold: 1, # required
1176
1228
  # interval_millis: 1, # required
1177
1229
  # path: "String",
1178
1230
  # port: 1,
1179
- # protocol: "grpc", # required, accepts grpc, http, http2, tcp
1231
+ # protocol: "http", # required, accepts http, tcp, http2, grpc
1180
1232
  # timeout_millis: 1, # required
1181
1233
  # unhealthy_threshold: 1, # required
1182
1234
  # },
1235
+ # outlier_detection: {
1236
+ # base_ejection_duration: { # required
1237
+ # unit: "s", # accepts s, ms
1238
+ # value: 1,
1239
+ # },
1240
+ # interval: { # required
1241
+ # unit: "s", # accepts s, ms
1242
+ # value: 1,
1243
+ # },
1244
+ # max_ejection_percent: 1, # required
1245
+ # max_server_errors: 1, # required
1246
+ # },
1183
1247
  # port_mapping: { # required
1184
1248
  # port: 1, # required
1185
- # protocol: "grpc", # required, accepts grpc, http, http2, tcp
1249
+ # protocol: "http", # required, accepts http, tcp, http2, grpc
1186
1250
  # },
1187
1251
  # timeout: {
1188
1252
  # grpc: {
1189
1253
  # idle: {
1190
- # unit: "ms", # accepts ms, s
1254
+ # unit: "s", # accepts s, ms
1191
1255
  # value: 1,
1192
1256
  # },
1193
1257
  # per_request: {
1194
- # unit: "ms", # accepts ms, s
1258
+ # unit: "s", # accepts s, ms
1195
1259
  # value: 1,
1196
1260
  # },
1197
1261
  # },
1198
1262
  # http: {
1199
1263
  # idle: {
1200
- # unit: "ms", # accepts ms, s
1264
+ # unit: "s", # accepts s, ms
1201
1265
  # value: 1,
1202
1266
  # },
1203
1267
  # per_request: {
1204
- # unit: "ms", # accepts ms, s
1268
+ # unit: "s", # accepts s, ms
1205
1269
  # value: 1,
1206
1270
  # },
1207
1271
  # },
1208
1272
  # http2: {
1209
1273
  # idle: {
1210
- # unit: "ms", # accepts ms, s
1274
+ # unit: "s", # accepts s, ms
1211
1275
  # value: 1,
1212
1276
  # },
1213
1277
  # per_request: {
1214
- # unit: "ms", # accepts ms, s
1278
+ # unit: "s", # accepts s, ms
1215
1279
  # value: 1,
1216
1280
  # },
1217
1281
  # },
1218
1282
  # tcp: {
1219
1283
  # idle: {
1220
- # unit: "ms", # accepts ms, s
1284
+ # unit: "s", # accepts s, ms
1221
1285
  # value: 1,
1222
1286
  # },
1223
1287
  # },
@@ -1232,7 +1296,7 @@ module Aws::AppMesh
1232
1296
  # private_key: "FilePath", # required
1233
1297
  # },
1234
1298
  # },
1235
- # mode: "DISABLED", # required, accepts DISABLED, PERMISSIVE, STRICT
1299
+ # mode: "STRICT", # required, accepts STRICT, PERMISSIVE, DISABLED
1236
1300
  # },
1237
1301
  # },
1238
1302
  # ],
@@ -1262,7 +1326,7 @@ module Aws::AppMesh
1262
1326
  # tags: [
1263
1327
  # {
1264
1328
  # key: "TagKey", # required
1265
- # value: "TagValue",
1329
+ # value: "TagValue", # required
1266
1330
  # },
1267
1331
  # ],
1268
1332
  # virtual_node_name: "ResourceName", # required
@@ -1293,33 +1357,44 @@ module Aws::AppMesh
1293
1357
  # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.file.certificate_chain #=> String
1294
1358
  # resp.virtual_node.spec.backends[0].virtual_service.virtual_service_name #=> String
1295
1359
  # resp.virtual_node.spec.listeners #=> Array
1360
+ # resp.virtual_node.spec.listeners[0].connection_pool.grpc.max_requests #=> Integer
1361
+ # resp.virtual_node.spec.listeners[0].connection_pool.http.max_connections #=> Integer
1362
+ # resp.virtual_node.spec.listeners[0].connection_pool.http.max_pending_requests #=> Integer
1363
+ # resp.virtual_node.spec.listeners[0].connection_pool.http2.max_requests #=> Integer
1364
+ # resp.virtual_node.spec.listeners[0].connection_pool.tcp.max_connections #=> Integer
1296
1365
  # resp.virtual_node.spec.listeners[0].health_check.healthy_threshold #=> Integer
1297
1366
  # resp.virtual_node.spec.listeners[0].health_check.interval_millis #=> Integer
1298
1367
  # resp.virtual_node.spec.listeners[0].health_check.path #=> String
1299
1368
  # resp.virtual_node.spec.listeners[0].health_check.port #=> Integer
1300
- # resp.virtual_node.spec.listeners[0].health_check.protocol #=> String, one of "grpc", "http", "http2", "tcp"
1369
+ # resp.virtual_node.spec.listeners[0].health_check.protocol #=> String, one of "http", "tcp", "http2", "grpc"
1301
1370
  # resp.virtual_node.spec.listeners[0].health_check.timeout_millis #=> Integer
1302
1371
  # resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
1372
+ # resp.virtual_node.spec.listeners[0].outlier_detection.base_ejection_duration.unit #=> String, one of "s", "ms"
1373
+ # resp.virtual_node.spec.listeners[0].outlier_detection.base_ejection_duration.value #=> Integer
1374
+ # resp.virtual_node.spec.listeners[0].outlier_detection.interval.unit #=> String, one of "s", "ms"
1375
+ # resp.virtual_node.spec.listeners[0].outlier_detection.interval.value #=> Integer
1376
+ # resp.virtual_node.spec.listeners[0].outlier_detection.max_ejection_percent #=> Integer
1377
+ # resp.virtual_node.spec.listeners[0].outlier_detection.max_server_errors #=> Integer
1303
1378
  # resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
1304
- # resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
1305
- # resp.virtual_node.spec.listeners[0].timeout.grpc.idle.unit #=> String, one of "ms", "s"
1379
+ # resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "http", "tcp", "http2", "grpc"
1380
+ # resp.virtual_node.spec.listeners[0].timeout.grpc.idle.unit #=> String, one of "s", "ms"
1306
1381
  # resp.virtual_node.spec.listeners[0].timeout.grpc.idle.value #=> Integer
1307
- # resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.unit #=> String, one of "ms", "s"
1382
+ # resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.unit #=> String, one of "s", "ms"
1308
1383
  # resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.value #=> Integer
1309
- # resp.virtual_node.spec.listeners[0].timeout.http.idle.unit #=> String, one of "ms", "s"
1384
+ # resp.virtual_node.spec.listeners[0].timeout.http.idle.unit #=> String, one of "s", "ms"
1310
1385
  # resp.virtual_node.spec.listeners[0].timeout.http.idle.value #=> Integer
1311
- # resp.virtual_node.spec.listeners[0].timeout.http.per_request.unit #=> String, one of "ms", "s"
1386
+ # resp.virtual_node.spec.listeners[0].timeout.http.per_request.unit #=> String, one of "s", "ms"
1312
1387
  # resp.virtual_node.spec.listeners[0].timeout.http.per_request.value #=> Integer
1313
- # resp.virtual_node.spec.listeners[0].timeout.http2.idle.unit #=> String, one of "ms", "s"
1388
+ # resp.virtual_node.spec.listeners[0].timeout.http2.idle.unit #=> String, one of "s", "ms"
1314
1389
  # resp.virtual_node.spec.listeners[0].timeout.http2.idle.value #=> Integer
1315
- # resp.virtual_node.spec.listeners[0].timeout.http2.per_request.unit #=> String, one of "ms", "s"
1390
+ # resp.virtual_node.spec.listeners[0].timeout.http2.per_request.unit #=> String, one of "s", "ms"
1316
1391
  # resp.virtual_node.spec.listeners[0].timeout.http2.per_request.value #=> Integer
1317
- # resp.virtual_node.spec.listeners[0].timeout.tcp.idle.unit #=> String, one of "ms", "s"
1392
+ # resp.virtual_node.spec.listeners[0].timeout.tcp.idle.unit #=> String, one of "s", "ms"
1318
1393
  # resp.virtual_node.spec.listeners[0].timeout.tcp.idle.value #=> Integer
1319
1394
  # resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
1320
1395
  # resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
1321
1396
  # resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
1322
- # resp.virtual_node.spec.listeners[0].tls.mode #=> String, one of "DISABLED", "PERMISSIVE", "STRICT"
1397
+ # resp.virtual_node.spec.listeners[0].tls.mode #=> String, one of "STRICT", "PERMISSIVE", "DISABLED"
1323
1398
  # resp.virtual_node.spec.logging.access_log.file.path #=> String
1324
1399
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
1325
1400
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
@@ -1327,7 +1402,7 @@ module Aws::AppMesh
1327
1402
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.namespace_name #=> String
1328
1403
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.service_name #=> String
1329
1404
  # resp.virtual_node.spec.service_discovery.dns.hostname #=> String
1330
- # resp.virtual_node.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
1405
+ # resp.virtual_node.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
1331
1406
  # resp.virtual_node.virtual_node_name #=> String
1332
1407
  #
1333
1408
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateVirtualNode AWS API Documentation
@@ -1404,7 +1479,7 @@ module Aws::AppMesh
1404
1479
  # {
1405
1480
  # port_mapping: { # required
1406
1481
  # port: 1, # required
1407
- # protocol: "grpc", # required, accepts grpc, http, http2, tcp
1482
+ # protocol: "http", # required, accepts http, tcp, http2, grpc
1408
1483
  # },
1409
1484
  # },
1410
1485
  # ],
@@ -1412,7 +1487,7 @@ module Aws::AppMesh
1412
1487
  # tags: [
1413
1488
  # {
1414
1489
  # key: "TagKey", # required
1415
- # value: "TagValue",
1490
+ # value: "TagValue", # required
1416
1491
  # },
1417
1492
  # ],
1418
1493
  # virtual_router_name: "ResourceName", # required
@@ -1430,8 +1505,8 @@ module Aws::AppMesh
1430
1505
  # resp.virtual_router.metadata.version #=> Integer
1431
1506
  # resp.virtual_router.spec.listeners #=> Array
1432
1507
  # resp.virtual_router.spec.listeners[0].port_mapping.port #=> Integer
1433
- # resp.virtual_router.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
1434
- # resp.virtual_router.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
1508
+ # resp.virtual_router.spec.listeners[0].port_mapping.protocol #=> String, one of "http", "tcp", "http2", "grpc"
1509
+ # resp.virtual_router.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
1435
1510
  # resp.virtual_router.virtual_router_name #=> String
1436
1511
  #
1437
1512
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateVirtualRouter AWS API Documentation
@@ -1517,7 +1592,7 @@ module Aws::AppMesh
1517
1592
  # tags: [
1518
1593
  # {
1519
1594
  # key: "TagKey", # required
1520
- # value: "TagValue",
1595
+ # value: "TagValue", # required
1521
1596
  # },
1522
1597
  # ],
1523
1598
  # virtual_service_name: "ServiceName", # required
@@ -1535,7 +1610,7 @@ module Aws::AppMesh
1535
1610
  # resp.virtual_service.metadata.version #=> Integer
1536
1611
  # resp.virtual_service.spec.provider.virtual_node.virtual_node_name #=> String
1537
1612
  # resp.virtual_service.spec.provider.virtual_router.virtual_router_name #=> String
1538
- # resp.virtual_service.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
1613
+ # resp.virtual_service.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
1539
1614
  # resp.virtual_service.virtual_service_name #=> String
1540
1615
  #
1541
1616
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateVirtualService AWS API Documentation
@@ -1598,7 +1673,7 @@ module Aws::AppMesh
1598
1673
  # resp.gateway_route.spec.http2_route.match.prefix #=> String
1599
1674
  # resp.gateway_route.spec.http_route.action.target.virtual_service.virtual_service_name #=> String
1600
1675
  # resp.gateway_route.spec.http_route.match.prefix #=> String
1601
- # resp.gateway_route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
1676
+ # resp.gateway_route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
1602
1677
  # resp.gateway_route.virtual_gateway_name #=> String
1603
1678
  #
1604
1679
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteGatewayRoute AWS API Documentation
@@ -1640,7 +1715,7 @@ module Aws::AppMesh
1640
1715
  # resp.mesh.metadata.uid #=> String
1641
1716
  # resp.mesh.metadata.version #=> Integer
1642
1717
  # resp.mesh.spec.egress_filter.type #=> String, one of "ALLOW_ALL", "DROP_ALL"
1643
- # resp.mesh.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
1718
+ # resp.mesh.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
1644
1719
  #
1645
1720
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteMesh AWS API Documentation
1646
1721
  #
@@ -1715,13 +1790,13 @@ module Aws::AppMesh
1715
1790
  # resp.route.spec.grpc_route.retry_policy.http_retry_events #=> Array
1716
1791
  # resp.route.spec.grpc_route.retry_policy.http_retry_events[0] #=> String
1717
1792
  # resp.route.spec.grpc_route.retry_policy.max_retries #=> Integer
1718
- # resp.route.spec.grpc_route.retry_policy.per_retry_timeout.unit #=> String, one of "ms", "s"
1793
+ # resp.route.spec.grpc_route.retry_policy.per_retry_timeout.unit #=> String, one of "s", "ms"
1719
1794
  # resp.route.spec.grpc_route.retry_policy.per_retry_timeout.value #=> Integer
1720
1795
  # resp.route.spec.grpc_route.retry_policy.tcp_retry_events #=> Array
1721
1796
  # resp.route.spec.grpc_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
1722
- # resp.route.spec.grpc_route.timeout.idle.unit #=> String, one of "ms", "s"
1797
+ # resp.route.spec.grpc_route.timeout.idle.unit #=> String, one of "s", "ms"
1723
1798
  # resp.route.spec.grpc_route.timeout.idle.value #=> Integer
1724
- # resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "ms", "s"
1799
+ # resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "s", "ms"
1725
1800
  # resp.route.spec.grpc_route.timeout.per_request.value #=> Integer
1726
1801
  # resp.route.spec.http2_route.action.weighted_targets #=> Array
1727
1802
  # resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
@@ -1735,19 +1810,19 @@ module Aws::AppMesh
1735
1810
  # resp.route.spec.http2_route.match.headers[0].match.regex #=> String
1736
1811
  # resp.route.spec.http2_route.match.headers[0].match.suffix #=> String
1737
1812
  # resp.route.spec.http2_route.match.headers[0].name #=> String
1738
- # resp.route.spec.http2_route.match.method #=> String, one of "CONNECT", "DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT", "TRACE"
1813
+ # resp.route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
1739
1814
  # resp.route.spec.http2_route.match.prefix #=> String
1740
1815
  # resp.route.spec.http2_route.match.scheme #=> String, one of "http", "https"
1741
1816
  # resp.route.spec.http2_route.retry_policy.http_retry_events #=> Array
1742
1817
  # resp.route.spec.http2_route.retry_policy.http_retry_events[0] #=> String
1743
1818
  # resp.route.spec.http2_route.retry_policy.max_retries #=> Integer
1744
- # resp.route.spec.http2_route.retry_policy.per_retry_timeout.unit #=> String, one of "ms", "s"
1819
+ # resp.route.spec.http2_route.retry_policy.per_retry_timeout.unit #=> String, one of "s", "ms"
1745
1820
  # resp.route.spec.http2_route.retry_policy.per_retry_timeout.value #=> Integer
1746
1821
  # resp.route.spec.http2_route.retry_policy.tcp_retry_events #=> Array
1747
1822
  # resp.route.spec.http2_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
1748
- # resp.route.spec.http2_route.timeout.idle.unit #=> String, one of "ms", "s"
1823
+ # resp.route.spec.http2_route.timeout.idle.unit #=> String, one of "s", "ms"
1749
1824
  # resp.route.spec.http2_route.timeout.idle.value #=> Integer
1750
- # resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "ms", "s"
1825
+ # resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "s", "ms"
1751
1826
  # resp.route.spec.http2_route.timeout.per_request.value #=> Integer
1752
1827
  # resp.route.spec.http_route.action.weighted_targets #=> Array
1753
1828
  # resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
@@ -1761,27 +1836,27 @@ module Aws::AppMesh
1761
1836
  # resp.route.spec.http_route.match.headers[0].match.regex #=> String
1762
1837
  # resp.route.spec.http_route.match.headers[0].match.suffix #=> String
1763
1838
  # resp.route.spec.http_route.match.headers[0].name #=> String
1764
- # resp.route.spec.http_route.match.method #=> String, one of "CONNECT", "DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT", "TRACE"
1839
+ # resp.route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
1765
1840
  # resp.route.spec.http_route.match.prefix #=> String
1766
1841
  # resp.route.spec.http_route.match.scheme #=> String, one of "http", "https"
1767
1842
  # resp.route.spec.http_route.retry_policy.http_retry_events #=> Array
1768
1843
  # resp.route.spec.http_route.retry_policy.http_retry_events[0] #=> String
1769
1844
  # resp.route.spec.http_route.retry_policy.max_retries #=> Integer
1770
- # resp.route.spec.http_route.retry_policy.per_retry_timeout.unit #=> String, one of "ms", "s"
1845
+ # resp.route.spec.http_route.retry_policy.per_retry_timeout.unit #=> String, one of "s", "ms"
1771
1846
  # resp.route.spec.http_route.retry_policy.per_retry_timeout.value #=> Integer
1772
1847
  # resp.route.spec.http_route.retry_policy.tcp_retry_events #=> Array
1773
1848
  # resp.route.spec.http_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
1774
- # resp.route.spec.http_route.timeout.idle.unit #=> String, one of "ms", "s"
1849
+ # resp.route.spec.http_route.timeout.idle.unit #=> String, one of "s", "ms"
1775
1850
  # resp.route.spec.http_route.timeout.idle.value #=> Integer
1776
- # resp.route.spec.http_route.timeout.per_request.unit #=> String, one of "ms", "s"
1851
+ # resp.route.spec.http_route.timeout.per_request.unit #=> String, one of "s", "ms"
1777
1852
  # resp.route.spec.http_route.timeout.per_request.value #=> Integer
1778
1853
  # resp.route.spec.priority #=> Integer
1779
1854
  # resp.route.spec.tcp_route.action.weighted_targets #=> Array
1780
1855
  # resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
1781
1856
  # resp.route.spec.tcp_route.action.weighted_targets[0].weight #=> Integer
1782
- # resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "ms", "s"
1857
+ # resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "s", "ms"
1783
1858
  # resp.route.spec.tcp_route.timeout.idle.value #=> Integer
1784
- # resp.route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
1859
+ # resp.route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
1785
1860
  # resp.route.virtual_router_name #=> String
1786
1861
  #
1787
1862
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteRoute AWS API Documentation
@@ -1841,21 +1916,25 @@ module Aws::AppMesh
1841
1916
  # resp.virtual_gateway.spec.backend_defaults.client_policy.tls.validation.trust.acm.certificate_authority_arns[0] #=> String
1842
1917
  # resp.virtual_gateway.spec.backend_defaults.client_policy.tls.validation.trust.file.certificate_chain #=> String
1843
1918
  # resp.virtual_gateway.spec.listeners #=> Array
1919
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.grpc.max_requests #=> Integer
1920
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.http.max_connections #=> Integer
1921
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.http.max_pending_requests #=> Integer
1922
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.http2.max_requests #=> Integer
1844
1923
  # resp.virtual_gateway.spec.listeners[0].health_check.healthy_threshold #=> Integer
1845
1924
  # resp.virtual_gateway.spec.listeners[0].health_check.interval_millis #=> Integer
1846
1925
  # resp.virtual_gateway.spec.listeners[0].health_check.path #=> String
1847
1926
  # resp.virtual_gateway.spec.listeners[0].health_check.port #=> Integer
1848
- # resp.virtual_gateway.spec.listeners[0].health_check.protocol #=> String, one of "grpc", "http", "http2"
1927
+ # resp.virtual_gateway.spec.listeners[0].health_check.protocol #=> String, one of "http", "http2", "grpc"
1849
1928
  # resp.virtual_gateway.spec.listeners[0].health_check.timeout_millis #=> Integer
1850
1929
  # resp.virtual_gateway.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
1851
1930
  # resp.virtual_gateway.spec.listeners[0].port_mapping.port #=> Integer
1852
- # resp.virtual_gateway.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2"
1931
+ # resp.virtual_gateway.spec.listeners[0].port_mapping.protocol #=> String, one of "http", "http2", "grpc"
1853
1932
  # resp.virtual_gateway.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
1854
1933
  # resp.virtual_gateway.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
1855
1934
  # resp.virtual_gateway.spec.listeners[0].tls.certificate.file.private_key #=> String
1856
- # resp.virtual_gateway.spec.listeners[0].tls.mode #=> String, one of "DISABLED", "PERMISSIVE", "STRICT"
1935
+ # resp.virtual_gateway.spec.listeners[0].tls.mode #=> String, one of "STRICT", "PERMISSIVE", "DISABLED"
1857
1936
  # resp.virtual_gateway.spec.logging.access_log.file.path #=> String
1858
- # resp.virtual_gateway.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
1937
+ # resp.virtual_gateway.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
1859
1938
  # resp.virtual_gateway.virtual_gateway_name #=> String
1860
1939
  #
1861
1940
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteVirtualGateway AWS API Documentation
@@ -1925,33 +2004,44 @@ module Aws::AppMesh
1925
2004
  # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.file.certificate_chain #=> String
1926
2005
  # resp.virtual_node.spec.backends[0].virtual_service.virtual_service_name #=> String
1927
2006
  # resp.virtual_node.spec.listeners #=> Array
2007
+ # resp.virtual_node.spec.listeners[0].connection_pool.grpc.max_requests #=> Integer
2008
+ # resp.virtual_node.spec.listeners[0].connection_pool.http.max_connections #=> Integer
2009
+ # resp.virtual_node.spec.listeners[0].connection_pool.http.max_pending_requests #=> Integer
2010
+ # resp.virtual_node.spec.listeners[0].connection_pool.http2.max_requests #=> Integer
2011
+ # resp.virtual_node.spec.listeners[0].connection_pool.tcp.max_connections #=> Integer
1928
2012
  # resp.virtual_node.spec.listeners[0].health_check.healthy_threshold #=> Integer
1929
2013
  # resp.virtual_node.spec.listeners[0].health_check.interval_millis #=> Integer
1930
2014
  # resp.virtual_node.spec.listeners[0].health_check.path #=> String
1931
2015
  # resp.virtual_node.spec.listeners[0].health_check.port #=> Integer
1932
- # resp.virtual_node.spec.listeners[0].health_check.protocol #=> String, one of "grpc", "http", "http2", "tcp"
2016
+ # resp.virtual_node.spec.listeners[0].health_check.protocol #=> String, one of "http", "tcp", "http2", "grpc"
1933
2017
  # resp.virtual_node.spec.listeners[0].health_check.timeout_millis #=> Integer
1934
2018
  # resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
2019
+ # resp.virtual_node.spec.listeners[0].outlier_detection.base_ejection_duration.unit #=> String, one of "s", "ms"
2020
+ # resp.virtual_node.spec.listeners[0].outlier_detection.base_ejection_duration.value #=> Integer
2021
+ # resp.virtual_node.spec.listeners[0].outlier_detection.interval.unit #=> String, one of "s", "ms"
2022
+ # resp.virtual_node.spec.listeners[0].outlier_detection.interval.value #=> Integer
2023
+ # resp.virtual_node.spec.listeners[0].outlier_detection.max_ejection_percent #=> Integer
2024
+ # resp.virtual_node.spec.listeners[0].outlier_detection.max_server_errors #=> Integer
1935
2025
  # resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
1936
- # resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
1937
- # resp.virtual_node.spec.listeners[0].timeout.grpc.idle.unit #=> String, one of "ms", "s"
2026
+ # resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "http", "tcp", "http2", "grpc"
2027
+ # resp.virtual_node.spec.listeners[0].timeout.grpc.idle.unit #=> String, one of "s", "ms"
1938
2028
  # resp.virtual_node.spec.listeners[0].timeout.grpc.idle.value #=> Integer
1939
- # resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.unit #=> String, one of "ms", "s"
2029
+ # resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.unit #=> String, one of "s", "ms"
1940
2030
  # resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.value #=> Integer
1941
- # resp.virtual_node.spec.listeners[0].timeout.http.idle.unit #=> String, one of "ms", "s"
2031
+ # resp.virtual_node.spec.listeners[0].timeout.http.idle.unit #=> String, one of "s", "ms"
1942
2032
  # resp.virtual_node.spec.listeners[0].timeout.http.idle.value #=> Integer
1943
- # resp.virtual_node.spec.listeners[0].timeout.http.per_request.unit #=> String, one of "ms", "s"
2033
+ # resp.virtual_node.spec.listeners[0].timeout.http.per_request.unit #=> String, one of "s", "ms"
1944
2034
  # resp.virtual_node.spec.listeners[0].timeout.http.per_request.value #=> Integer
1945
- # resp.virtual_node.spec.listeners[0].timeout.http2.idle.unit #=> String, one of "ms", "s"
2035
+ # resp.virtual_node.spec.listeners[0].timeout.http2.idle.unit #=> String, one of "s", "ms"
1946
2036
  # resp.virtual_node.spec.listeners[0].timeout.http2.idle.value #=> Integer
1947
- # resp.virtual_node.spec.listeners[0].timeout.http2.per_request.unit #=> String, one of "ms", "s"
2037
+ # resp.virtual_node.spec.listeners[0].timeout.http2.per_request.unit #=> String, one of "s", "ms"
1948
2038
  # resp.virtual_node.spec.listeners[0].timeout.http2.per_request.value #=> Integer
1949
- # resp.virtual_node.spec.listeners[0].timeout.tcp.idle.unit #=> String, one of "ms", "s"
2039
+ # resp.virtual_node.spec.listeners[0].timeout.tcp.idle.unit #=> String, one of "s", "ms"
1950
2040
  # resp.virtual_node.spec.listeners[0].timeout.tcp.idle.value #=> Integer
1951
2041
  # resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
1952
2042
  # resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
1953
2043
  # resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
1954
- # resp.virtual_node.spec.listeners[0].tls.mode #=> String, one of "DISABLED", "PERMISSIVE", "STRICT"
2044
+ # resp.virtual_node.spec.listeners[0].tls.mode #=> String, one of "STRICT", "PERMISSIVE", "DISABLED"
1955
2045
  # resp.virtual_node.spec.logging.access_log.file.path #=> String
1956
2046
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
1957
2047
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
@@ -1959,7 +2049,7 @@ module Aws::AppMesh
1959
2049
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.namespace_name #=> String
1960
2050
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.service_name #=> String
1961
2051
  # resp.virtual_node.spec.service_discovery.dns.hostname #=> String
1962
- # resp.virtual_node.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
2052
+ # resp.virtual_node.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
1963
2053
  # resp.virtual_node.virtual_node_name #=> String
1964
2054
  #
1965
2055
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteVirtualNode AWS API Documentation
@@ -2016,8 +2106,8 @@ module Aws::AppMesh
2016
2106
  # resp.virtual_router.metadata.version #=> Integer
2017
2107
  # resp.virtual_router.spec.listeners #=> Array
2018
2108
  # resp.virtual_router.spec.listeners[0].port_mapping.port #=> Integer
2019
- # resp.virtual_router.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
2020
- # resp.virtual_router.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
2109
+ # resp.virtual_router.spec.listeners[0].port_mapping.protocol #=> String, one of "http", "tcp", "http2", "grpc"
2110
+ # resp.virtual_router.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
2021
2111
  # resp.virtual_router.virtual_router_name #=> String
2022
2112
  #
2023
2113
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteVirtualRouter AWS API Documentation
@@ -2071,7 +2161,7 @@ module Aws::AppMesh
2071
2161
  # resp.virtual_service.metadata.version #=> Integer
2072
2162
  # resp.virtual_service.spec.provider.virtual_node.virtual_node_name #=> String
2073
2163
  # resp.virtual_service.spec.provider.virtual_router.virtual_router_name #=> String
2074
- # resp.virtual_service.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
2164
+ # resp.virtual_service.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
2075
2165
  # resp.virtual_service.virtual_service_name #=> String
2076
2166
  #
2077
2167
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteVirtualService AWS API Documentation
@@ -2135,7 +2225,7 @@ module Aws::AppMesh
2135
2225
  # resp.gateway_route.spec.http2_route.match.prefix #=> String
2136
2226
  # resp.gateway_route.spec.http_route.action.target.virtual_service.virtual_service_name #=> String
2137
2227
  # resp.gateway_route.spec.http_route.match.prefix #=> String
2138
- # resp.gateway_route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
2228
+ # resp.gateway_route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
2139
2229
  # resp.gateway_route.virtual_gateway_name #=> String
2140
2230
  #
2141
2231
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeGatewayRoute AWS API Documentation
@@ -2184,7 +2274,7 @@ module Aws::AppMesh
2184
2274
  # resp.mesh.metadata.uid #=> String
2185
2275
  # resp.mesh.metadata.version #=> Integer
2186
2276
  # resp.mesh.spec.egress_filter.type #=> String, one of "ALLOW_ALL", "DROP_ALL"
2187
- # resp.mesh.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
2277
+ # resp.mesh.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
2188
2278
  #
2189
2279
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeMesh AWS API Documentation
2190
2280
  #
@@ -2259,13 +2349,13 @@ module Aws::AppMesh
2259
2349
  # resp.route.spec.grpc_route.retry_policy.http_retry_events #=> Array
2260
2350
  # resp.route.spec.grpc_route.retry_policy.http_retry_events[0] #=> String
2261
2351
  # resp.route.spec.grpc_route.retry_policy.max_retries #=> Integer
2262
- # resp.route.spec.grpc_route.retry_policy.per_retry_timeout.unit #=> String, one of "ms", "s"
2352
+ # resp.route.spec.grpc_route.retry_policy.per_retry_timeout.unit #=> String, one of "s", "ms"
2263
2353
  # resp.route.spec.grpc_route.retry_policy.per_retry_timeout.value #=> Integer
2264
2354
  # resp.route.spec.grpc_route.retry_policy.tcp_retry_events #=> Array
2265
2355
  # resp.route.spec.grpc_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
2266
- # resp.route.spec.grpc_route.timeout.idle.unit #=> String, one of "ms", "s"
2356
+ # resp.route.spec.grpc_route.timeout.idle.unit #=> String, one of "s", "ms"
2267
2357
  # resp.route.spec.grpc_route.timeout.idle.value #=> Integer
2268
- # resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "ms", "s"
2358
+ # resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "s", "ms"
2269
2359
  # resp.route.spec.grpc_route.timeout.per_request.value #=> Integer
2270
2360
  # resp.route.spec.http2_route.action.weighted_targets #=> Array
2271
2361
  # resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
@@ -2279,19 +2369,19 @@ module Aws::AppMesh
2279
2369
  # resp.route.spec.http2_route.match.headers[0].match.regex #=> String
2280
2370
  # resp.route.spec.http2_route.match.headers[0].match.suffix #=> String
2281
2371
  # resp.route.spec.http2_route.match.headers[0].name #=> String
2282
- # resp.route.spec.http2_route.match.method #=> String, one of "CONNECT", "DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT", "TRACE"
2372
+ # resp.route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
2283
2373
  # resp.route.spec.http2_route.match.prefix #=> String
2284
2374
  # resp.route.spec.http2_route.match.scheme #=> String, one of "http", "https"
2285
2375
  # resp.route.spec.http2_route.retry_policy.http_retry_events #=> Array
2286
2376
  # resp.route.spec.http2_route.retry_policy.http_retry_events[0] #=> String
2287
2377
  # resp.route.spec.http2_route.retry_policy.max_retries #=> Integer
2288
- # resp.route.spec.http2_route.retry_policy.per_retry_timeout.unit #=> String, one of "ms", "s"
2378
+ # resp.route.spec.http2_route.retry_policy.per_retry_timeout.unit #=> String, one of "s", "ms"
2289
2379
  # resp.route.spec.http2_route.retry_policy.per_retry_timeout.value #=> Integer
2290
2380
  # resp.route.spec.http2_route.retry_policy.tcp_retry_events #=> Array
2291
2381
  # resp.route.spec.http2_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
2292
- # resp.route.spec.http2_route.timeout.idle.unit #=> String, one of "ms", "s"
2382
+ # resp.route.spec.http2_route.timeout.idle.unit #=> String, one of "s", "ms"
2293
2383
  # resp.route.spec.http2_route.timeout.idle.value #=> Integer
2294
- # resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "ms", "s"
2384
+ # resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "s", "ms"
2295
2385
  # resp.route.spec.http2_route.timeout.per_request.value #=> Integer
2296
2386
  # resp.route.spec.http_route.action.weighted_targets #=> Array
2297
2387
  # resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
@@ -2305,27 +2395,27 @@ module Aws::AppMesh
2305
2395
  # resp.route.spec.http_route.match.headers[0].match.regex #=> String
2306
2396
  # resp.route.spec.http_route.match.headers[0].match.suffix #=> String
2307
2397
  # resp.route.spec.http_route.match.headers[0].name #=> String
2308
- # resp.route.spec.http_route.match.method #=> String, one of "CONNECT", "DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT", "TRACE"
2398
+ # resp.route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
2309
2399
  # resp.route.spec.http_route.match.prefix #=> String
2310
2400
  # resp.route.spec.http_route.match.scheme #=> String, one of "http", "https"
2311
2401
  # resp.route.spec.http_route.retry_policy.http_retry_events #=> Array
2312
2402
  # resp.route.spec.http_route.retry_policy.http_retry_events[0] #=> String
2313
2403
  # resp.route.spec.http_route.retry_policy.max_retries #=> Integer
2314
- # resp.route.spec.http_route.retry_policy.per_retry_timeout.unit #=> String, one of "ms", "s"
2404
+ # resp.route.spec.http_route.retry_policy.per_retry_timeout.unit #=> String, one of "s", "ms"
2315
2405
  # resp.route.spec.http_route.retry_policy.per_retry_timeout.value #=> Integer
2316
2406
  # resp.route.spec.http_route.retry_policy.tcp_retry_events #=> Array
2317
2407
  # resp.route.spec.http_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
2318
- # resp.route.spec.http_route.timeout.idle.unit #=> String, one of "ms", "s"
2408
+ # resp.route.spec.http_route.timeout.idle.unit #=> String, one of "s", "ms"
2319
2409
  # resp.route.spec.http_route.timeout.idle.value #=> Integer
2320
- # resp.route.spec.http_route.timeout.per_request.unit #=> String, one of "ms", "s"
2410
+ # resp.route.spec.http_route.timeout.per_request.unit #=> String, one of "s", "ms"
2321
2411
  # resp.route.spec.http_route.timeout.per_request.value #=> Integer
2322
2412
  # resp.route.spec.priority #=> Integer
2323
2413
  # resp.route.spec.tcp_route.action.weighted_targets #=> Array
2324
2414
  # resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
2325
2415
  # resp.route.spec.tcp_route.action.weighted_targets[0].weight #=> Integer
2326
- # resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "ms", "s"
2416
+ # resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "s", "ms"
2327
2417
  # resp.route.spec.tcp_route.timeout.idle.value #=> Integer
2328
- # resp.route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
2418
+ # resp.route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
2329
2419
  # resp.route.virtual_router_name #=> String
2330
2420
  #
2331
2421
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeRoute AWS API Documentation
@@ -2384,21 +2474,25 @@ module Aws::AppMesh
2384
2474
  # resp.virtual_gateway.spec.backend_defaults.client_policy.tls.validation.trust.acm.certificate_authority_arns[0] #=> String
2385
2475
  # resp.virtual_gateway.spec.backend_defaults.client_policy.tls.validation.trust.file.certificate_chain #=> String
2386
2476
  # resp.virtual_gateway.spec.listeners #=> Array
2477
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.grpc.max_requests #=> Integer
2478
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.http.max_connections #=> Integer
2479
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.http.max_pending_requests #=> Integer
2480
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.http2.max_requests #=> Integer
2387
2481
  # resp.virtual_gateway.spec.listeners[0].health_check.healthy_threshold #=> Integer
2388
2482
  # resp.virtual_gateway.spec.listeners[0].health_check.interval_millis #=> Integer
2389
2483
  # resp.virtual_gateway.spec.listeners[0].health_check.path #=> String
2390
2484
  # resp.virtual_gateway.spec.listeners[0].health_check.port #=> Integer
2391
- # resp.virtual_gateway.spec.listeners[0].health_check.protocol #=> String, one of "grpc", "http", "http2"
2485
+ # resp.virtual_gateway.spec.listeners[0].health_check.protocol #=> String, one of "http", "http2", "grpc"
2392
2486
  # resp.virtual_gateway.spec.listeners[0].health_check.timeout_millis #=> Integer
2393
2487
  # resp.virtual_gateway.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
2394
2488
  # resp.virtual_gateway.spec.listeners[0].port_mapping.port #=> Integer
2395
- # resp.virtual_gateway.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2"
2489
+ # resp.virtual_gateway.spec.listeners[0].port_mapping.protocol #=> String, one of "http", "http2", "grpc"
2396
2490
  # resp.virtual_gateway.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
2397
2491
  # resp.virtual_gateway.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
2398
2492
  # resp.virtual_gateway.spec.listeners[0].tls.certificate.file.private_key #=> String
2399
- # resp.virtual_gateway.spec.listeners[0].tls.mode #=> String, one of "DISABLED", "PERMISSIVE", "STRICT"
2493
+ # resp.virtual_gateway.spec.listeners[0].tls.mode #=> String, one of "STRICT", "PERMISSIVE", "DISABLED"
2400
2494
  # resp.virtual_gateway.spec.logging.access_log.file.path #=> String
2401
- # resp.virtual_gateway.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
2495
+ # resp.virtual_gateway.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
2402
2496
  # resp.virtual_gateway.virtual_gateway_name #=> String
2403
2497
  #
2404
2498
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeVirtualGateway AWS API Documentation
@@ -2465,33 +2559,44 @@ module Aws::AppMesh
2465
2559
  # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.file.certificate_chain #=> String
2466
2560
  # resp.virtual_node.spec.backends[0].virtual_service.virtual_service_name #=> String
2467
2561
  # resp.virtual_node.spec.listeners #=> Array
2562
+ # resp.virtual_node.spec.listeners[0].connection_pool.grpc.max_requests #=> Integer
2563
+ # resp.virtual_node.spec.listeners[0].connection_pool.http.max_connections #=> Integer
2564
+ # resp.virtual_node.spec.listeners[0].connection_pool.http.max_pending_requests #=> Integer
2565
+ # resp.virtual_node.spec.listeners[0].connection_pool.http2.max_requests #=> Integer
2566
+ # resp.virtual_node.spec.listeners[0].connection_pool.tcp.max_connections #=> Integer
2468
2567
  # resp.virtual_node.spec.listeners[0].health_check.healthy_threshold #=> Integer
2469
2568
  # resp.virtual_node.spec.listeners[0].health_check.interval_millis #=> Integer
2470
2569
  # resp.virtual_node.spec.listeners[0].health_check.path #=> String
2471
2570
  # resp.virtual_node.spec.listeners[0].health_check.port #=> Integer
2472
- # resp.virtual_node.spec.listeners[0].health_check.protocol #=> String, one of "grpc", "http", "http2", "tcp"
2571
+ # resp.virtual_node.spec.listeners[0].health_check.protocol #=> String, one of "http", "tcp", "http2", "grpc"
2473
2572
  # resp.virtual_node.spec.listeners[0].health_check.timeout_millis #=> Integer
2474
2573
  # resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
2574
+ # resp.virtual_node.spec.listeners[0].outlier_detection.base_ejection_duration.unit #=> String, one of "s", "ms"
2575
+ # resp.virtual_node.spec.listeners[0].outlier_detection.base_ejection_duration.value #=> Integer
2576
+ # resp.virtual_node.spec.listeners[0].outlier_detection.interval.unit #=> String, one of "s", "ms"
2577
+ # resp.virtual_node.spec.listeners[0].outlier_detection.interval.value #=> Integer
2578
+ # resp.virtual_node.spec.listeners[0].outlier_detection.max_ejection_percent #=> Integer
2579
+ # resp.virtual_node.spec.listeners[0].outlier_detection.max_server_errors #=> Integer
2475
2580
  # resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
2476
- # resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
2477
- # resp.virtual_node.spec.listeners[0].timeout.grpc.idle.unit #=> String, one of "ms", "s"
2581
+ # resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "http", "tcp", "http2", "grpc"
2582
+ # resp.virtual_node.spec.listeners[0].timeout.grpc.idle.unit #=> String, one of "s", "ms"
2478
2583
  # resp.virtual_node.spec.listeners[0].timeout.grpc.idle.value #=> Integer
2479
- # resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.unit #=> String, one of "ms", "s"
2584
+ # resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.unit #=> String, one of "s", "ms"
2480
2585
  # resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.value #=> Integer
2481
- # resp.virtual_node.spec.listeners[0].timeout.http.idle.unit #=> String, one of "ms", "s"
2586
+ # resp.virtual_node.spec.listeners[0].timeout.http.idle.unit #=> String, one of "s", "ms"
2482
2587
  # resp.virtual_node.spec.listeners[0].timeout.http.idle.value #=> Integer
2483
- # resp.virtual_node.spec.listeners[0].timeout.http.per_request.unit #=> String, one of "ms", "s"
2588
+ # resp.virtual_node.spec.listeners[0].timeout.http.per_request.unit #=> String, one of "s", "ms"
2484
2589
  # resp.virtual_node.spec.listeners[0].timeout.http.per_request.value #=> Integer
2485
- # resp.virtual_node.spec.listeners[0].timeout.http2.idle.unit #=> String, one of "ms", "s"
2590
+ # resp.virtual_node.spec.listeners[0].timeout.http2.idle.unit #=> String, one of "s", "ms"
2486
2591
  # resp.virtual_node.spec.listeners[0].timeout.http2.idle.value #=> Integer
2487
- # resp.virtual_node.spec.listeners[0].timeout.http2.per_request.unit #=> String, one of "ms", "s"
2592
+ # resp.virtual_node.spec.listeners[0].timeout.http2.per_request.unit #=> String, one of "s", "ms"
2488
2593
  # resp.virtual_node.spec.listeners[0].timeout.http2.per_request.value #=> Integer
2489
- # resp.virtual_node.spec.listeners[0].timeout.tcp.idle.unit #=> String, one of "ms", "s"
2594
+ # resp.virtual_node.spec.listeners[0].timeout.tcp.idle.unit #=> String, one of "s", "ms"
2490
2595
  # resp.virtual_node.spec.listeners[0].timeout.tcp.idle.value #=> Integer
2491
2596
  # resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
2492
2597
  # resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
2493
2598
  # resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
2494
- # resp.virtual_node.spec.listeners[0].tls.mode #=> String, one of "DISABLED", "PERMISSIVE", "STRICT"
2599
+ # resp.virtual_node.spec.listeners[0].tls.mode #=> String, one of "STRICT", "PERMISSIVE", "DISABLED"
2495
2600
  # resp.virtual_node.spec.logging.access_log.file.path #=> String
2496
2601
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
2497
2602
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
@@ -2499,7 +2604,7 @@ module Aws::AppMesh
2499
2604
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.namespace_name #=> String
2500
2605
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.service_name #=> String
2501
2606
  # resp.virtual_node.spec.service_discovery.dns.hostname #=> String
2502
- # resp.virtual_node.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
2607
+ # resp.virtual_node.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
2503
2608
  # resp.virtual_node.virtual_node_name #=> String
2504
2609
  #
2505
2610
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeVirtualNode AWS API Documentation
@@ -2553,8 +2658,8 @@ module Aws::AppMesh
2553
2658
  # resp.virtual_router.metadata.version #=> Integer
2554
2659
  # resp.virtual_router.spec.listeners #=> Array
2555
2660
  # resp.virtual_router.spec.listeners[0].port_mapping.port #=> Integer
2556
- # resp.virtual_router.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
2557
- # resp.virtual_router.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
2661
+ # resp.virtual_router.spec.listeners[0].port_mapping.protocol #=> String, one of "http", "tcp", "http2", "grpc"
2662
+ # resp.virtual_router.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
2558
2663
  # resp.virtual_router.virtual_router_name #=> String
2559
2664
  #
2560
2665
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeVirtualRouter AWS API Documentation
@@ -2608,7 +2713,7 @@ module Aws::AppMesh
2608
2713
  # resp.virtual_service.metadata.version #=> Integer
2609
2714
  # resp.virtual_service.spec.provider.virtual_node.virtual_node_name #=> String
2610
2715
  # resp.virtual_service.spec.provider.virtual_router.virtual_router_name #=> String
2611
- # resp.virtual_service.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
2716
+ # resp.virtual_service.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
2612
2717
  # resp.virtual_service.virtual_service_name #=> String
2613
2718
  #
2614
2719
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeVirtualService AWS API Documentation
@@ -3179,7 +3284,7 @@ module Aws::AppMesh
3179
3284
  # tags: [ # required
3180
3285
  # {
3181
3286
  # key: "TagKey", # required
3182
- # value: "TagValue",
3287
+ # value: "TagValue", # required
3183
3288
  # },
3184
3289
  # ],
3185
3290
  # })
@@ -3323,7 +3428,7 @@ module Aws::AppMesh
3323
3428
  # resp.gateway_route.spec.http2_route.match.prefix #=> String
3324
3429
  # resp.gateway_route.spec.http_route.action.target.virtual_service.virtual_service_name #=> String
3325
3430
  # resp.gateway_route.spec.http_route.match.prefix #=> String
3326
- # resp.gateway_route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
3431
+ # resp.gateway_route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
3327
3432
  # resp.gateway_route.virtual_gateway_name #=> String
3328
3433
  #
3329
3434
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateGatewayRoute AWS API Documentation
@@ -3378,7 +3483,7 @@ module Aws::AppMesh
3378
3483
  # resp.mesh.metadata.uid #=> String
3379
3484
  # resp.mesh.metadata.version #=> Integer
3380
3485
  # resp.mesh.spec.egress_filter.type #=> String, one of "ALLOW_ALL", "DROP_ALL"
3381
- # resp.mesh.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
3486
+ # resp.mesh.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
3382
3487
  #
3383
3488
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateMesh AWS API Documentation
3384
3489
  #
@@ -3469,18 +3574,18 @@ module Aws::AppMesh
3469
3574
  # http_retry_events: ["HttpRetryPolicyEvent"],
3470
3575
  # max_retries: 1, # required
3471
3576
  # per_retry_timeout: { # required
3472
- # unit: "ms", # accepts ms, s
3577
+ # unit: "s", # accepts s, ms
3473
3578
  # value: 1,
3474
3579
  # },
3475
3580
  # tcp_retry_events: ["connection-error"], # accepts connection-error
3476
3581
  # },
3477
3582
  # timeout: {
3478
3583
  # idle: {
3479
- # unit: "ms", # accepts ms, s
3584
+ # unit: "s", # accepts s, ms
3480
3585
  # value: 1,
3481
3586
  # },
3482
3587
  # per_request: {
3483
- # unit: "ms", # accepts ms, s
3588
+ # unit: "s", # accepts s, ms
3484
3589
  # value: 1,
3485
3590
  # },
3486
3591
  # },
@@ -3511,7 +3616,7 @@ module Aws::AppMesh
3511
3616
  # name: "HeaderName", # required
3512
3617
  # },
3513
3618
  # ],
3514
- # method: "CONNECT", # accepts CONNECT, DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT, TRACE
3619
+ # method: "GET", # accepts GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH
3515
3620
  # prefix: "String", # required
3516
3621
  # scheme: "http", # accepts http, https
3517
3622
  # },
@@ -3519,18 +3624,18 @@ module Aws::AppMesh
3519
3624
  # http_retry_events: ["HttpRetryPolicyEvent"],
3520
3625
  # max_retries: 1, # required
3521
3626
  # per_retry_timeout: { # required
3522
- # unit: "ms", # accepts ms, s
3627
+ # unit: "s", # accepts s, ms
3523
3628
  # value: 1,
3524
3629
  # },
3525
3630
  # tcp_retry_events: ["connection-error"], # accepts connection-error
3526
3631
  # },
3527
3632
  # timeout: {
3528
3633
  # idle: {
3529
- # unit: "ms", # accepts ms, s
3634
+ # unit: "s", # accepts s, ms
3530
3635
  # value: 1,
3531
3636
  # },
3532
3637
  # per_request: {
3533
- # unit: "ms", # accepts ms, s
3638
+ # unit: "s", # accepts s, ms
3534
3639
  # value: 1,
3535
3640
  # },
3536
3641
  # },
@@ -3561,7 +3666,7 @@ module Aws::AppMesh
3561
3666
  # name: "HeaderName", # required
3562
3667
  # },
3563
3668
  # ],
3564
- # method: "CONNECT", # accepts CONNECT, DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT, TRACE
3669
+ # method: "GET", # accepts GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH
3565
3670
  # prefix: "String", # required
3566
3671
  # scheme: "http", # accepts http, https
3567
3672
  # },
@@ -3569,18 +3674,18 @@ module Aws::AppMesh
3569
3674
  # http_retry_events: ["HttpRetryPolicyEvent"],
3570
3675
  # max_retries: 1, # required
3571
3676
  # per_retry_timeout: { # required
3572
- # unit: "ms", # accepts ms, s
3677
+ # unit: "s", # accepts s, ms
3573
3678
  # value: 1,
3574
3679
  # },
3575
3680
  # tcp_retry_events: ["connection-error"], # accepts connection-error
3576
3681
  # },
3577
3682
  # timeout: {
3578
3683
  # idle: {
3579
- # unit: "ms", # accepts ms, s
3684
+ # unit: "s", # accepts s, ms
3580
3685
  # value: 1,
3581
3686
  # },
3582
3687
  # per_request: {
3583
- # unit: "ms", # accepts ms, s
3688
+ # unit: "s", # accepts s, ms
3584
3689
  # value: 1,
3585
3690
  # },
3586
3691
  # },
@@ -3597,7 +3702,7 @@ module Aws::AppMesh
3597
3702
  # },
3598
3703
  # timeout: {
3599
3704
  # idle: {
3600
- # unit: "ms", # accepts ms, s
3705
+ # unit: "s", # accepts s, ms
3601
3706
  # value: 1,
3602
3707
  # },
3603
3708
  # },
@@ -3636,13 +3741,13 @@ module Aws::AppMesh
3636
3741
  # resp.route.spec.grpc_route.retry_policy.http_retry_events #=> Array
3637
3742
  # resp.route.spec.grpc_route.retry_policy.http_retry_events[0] #=> String
3638
3743
  # resp.route.spec.grpc_route.retry_policy.max_retries #=> Integer
3639
- # resp.route.spec.grpc_route.retry_policy.per_retry_timeout.unit #=> String, one of "ms", "s"
3744
+ # resp.route.spec.grpc_route.retry_policy.per_retry_timeout.unit #=> String, one of "s", "ms"
3640
3745
  # resp.route.spec.grpc_route.retry_policy.per_retry_timeout.value #=> Integer
3641
3746
  # resp.route.spec.grpc_route.retry_policy.tcp_retry_events #=> Array
3642
3747
  # resp.route.spec.grpc_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
3643
- # resp.route.spec.grpc_route.timeout.idle.unit #=> String, one of "ms", "s"
3748
+ # resp.route.spec.grpc_route.timeout.idle.unit #=> String, one of "s", "ms"
3644
3749
  # resp.route.spec.grpc_route.timeout.idle.value #=> Integer
3645
- # resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "ms", "s"
3750
+ # resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "s", "ms"
3646
3751
  # resp.route.spec.grpc_route.timeout.per_request.value #=> Integer
3647
3752
  # resp.route.spec.http2_route.action.weighted_targets #=> Array
3648
3753
  # resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
@@ -3656,19 +3761,19 @@ module Aws::AppMesh
3656
3761
  # resp.route.spec.http2_route.match.headers[0].match.regex #=> String
3657
3762
  # resp.route.spec.http2_route.match.headers[0].match.suffix #=> String
3658
3763
  # resp.route.spec.http2_route.match.headers[0].name #=> String
3659
- # resp.route.spec.http2_route.match.method #=> String, one of "CONNECT", "DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT", "TRACE"
3764
+ # resp.route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
3660
3765
  # resp.route.spec.http2_route.match.prefix #=> String
3661
3766
  # resp.route.spec.http2_route.match.scheme #=> String, one of "http", "https"
3662
3767
  # resp.route.spec.http2_route.retry_policy.http_retry_events #=> Array
3663
3768
  # resp.route.spec.http2_route.retry_policy.http_retry_events[0] #=> String
3664
3769
  # resp.route.spec.http2_route.retry_policy.max_retries #=> Integer
3665
- # resp.route.spec.http2_route.retry_policy.per_retry_timeout.unit #=> String, one of "ms", "s"
3770
+ # resp.route.spec.http2_route.retry_policy.per_retry_timeout.unit #=> String, one of "s", "ms"
3666
3771
  # resp.route.spec.http2_route.retry_policy.per_retry_timeout.value #=> Integer
3667
3772
  # resp.route.spec.http2_route.retry_policy.tcp_retry_events #=> Array
3668
3773
  # resp.route.spec.http2_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
3669
- # resp.route.spec.http2_route.timeout.idle.unit #=> String, one of "ms", "s"
3774
+ # resp.route.spec.http2_route.timeout.idle.unit #=> String, one of "s", "ms"
3670
3775
  # resp.route.spec.http2_route.timeout.idle.value #=> Integer
3671
- # resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "ms", "s"
3776
+ # resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "s", "ms"
3672
3777
  # resp.route.spec.http2_route.timeout.per_request.value #=> Integer
3673
3778
  # resp.route.spec.http_route.action.weighted_targets #=> Array
3674
3779
  # resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
@@ -3682,27 +3787,27 @@ module Aws::AppMesh
3682
3787
  # resp.route.spec.http_route.match.headers[0].match.regex #=> String
3683
3788
  # resp.route.spec.http_route.match.headers[0].match.suffix #=> String
3684
3789
  # resp.route.spec.http_route.match.headers[0].name #=> String
3685
- # resp.route.spec.http_route.match.method #=> String, one of "CONNECT", "DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT", "TRACE"
3790
+ # resp.route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
3686
3791
  # resp.route.spec.http_route.match.prefix #=> String
3687
3792
  # resp.route.spec.http_route.match.scheme #=> String, one of "http", "https"
3688
3793
  # resp.route.spec.http_route.retry_policy.http_retry_events #=> Array
3689
3794
  # resp.route.spec.http_route.retry_policy.http_retry_events[0] #=> String
3690
3795
  # resp.route.spec.http_route.retry_policy.max_retries #=> Integer
3691
- # resp.route.spec.http_route.retry_policy.per_retry_timeout.unit #=> String, one of "ms", "s"
3796
+ # resp.route.spec.http_route.retry_policy.per_retry_timeout.unit #=> String, one of "s", "ms"
3692
3797
  # resp.route.spec.http_route.retry_policy.per_retry_timeout.value #=> Integer
3693
3798
  # resp.route.spec.http_route.retry_policy.tcp_retry_events #=> Array
3694
3799
  # resp.route.spec.http_route.retry_policy.tcp_retry_events[0] #=> String, one of "connection-error"
3695
- # resp.route.spec.http_route.timeout.idle.unit #=> String, one of "ms", "s"
3800
+ # resp.route.spec.http_route.timeout.idle.unit #=> String, one of "s", "ms"
3696
3801
  # resp.route.spec.http_route.timeout.idle.value #=> Integer
3697
- # resp.route.spec.http_route.timeout.per_request.unit #=> String, one of "ms", "s"
3802
+ # resp.route.spec.http_route.timeout.per_request.unit #=> String, one of "s", "ms"
3698
3803
  # resp.route.spec.http_route.timeout.per_request.value #=> Integer
3699
3804
  # resp.route.spec.priority #=> Integer
3700
3805
  # resp.route.spec.tcp_route.action.weighted_targets #=> Array
3701
3806
  # resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
3702
3807
  # resp.route.spec.tcp_route.action.weighted_targets[0].weight #=> Integer
3703
- # resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "ms", "s"
3808
+ # resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "s", "ms"
3704
3809
  # resp.route.spec.tcp_route.timeout.idle.value #=> Integer
3705
- # resp.route.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
3810
+ # resp.route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
3706
3811
  # resp.route.virtual_router_name #=> String
3707
3812
  #
3708
3813
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateRoute AWS API Documentation
@@ -3775,18 +3880,30 @@ module Aws::AppMesh
3775
3880
  # },
3776
3881
  # listeners: [ # required
3777
3882
  # {
3883
+ # connection_pool: {
3884
+ # grpc: {
3885
+ # max_requests: 1, # required
3886
+ # },
3887
+ # http: {
3888
+ # max_connections: 1, # required
3889
+ # max_pending_requests: 1,
3890
+ # },
3891
+ # http2: {
3892
+ # max_requests: 1, # required
3893
+ # },
3894
+ # },
3778
3895
  # health_check: {
3779
3896
  # healthy_threshold: 1, # required
3780
3897
  # interval_millis: 1, # required
3781
3898
  # path: "String",
3782
3899
  # port: 1,
3783
- # protocol: "grpc", # required, accepts grpc, http, http2
3900
+ # protocol: "http", # required, accepts http, http2, grpc
3784
3901
  # timeout_millis: 1, # required
3785
3902
  # unhealthy_threshold: 1, # required
3786
3903
  # },
3787
3904
  # port_mapping: { # required
3788
3905
  # port: 1, # required
3789
- # protocol: "grpc", # required, accepts grpc, http, http2
3906
+ # protocol: "http", # required, accepts http, http2, grpc
3790
3907
  # },
3791
3908
  # tls: {
3792
3909
  # certificate: { # required
@@ -3798,7 +3915,7 @@ module Aws::AppMesh
3798
3915
  # private_key: "FilePath", # required
3799
3916
  # },
3800
3917
  # },
3801
- # mode: "DISABLED", # required, accepts DISABLED, PERMISSIVE, STRICT
3918
+ # mode: "STRICT", # required, accepts STRICT, PERMISSIVE, DISABLED
3802
3919
  # },
3803
3920
  # },
3804
3921
  # ],
@@ -3830,21 +3947,25 @@ module Aws::AppMesh
3830
3947
  # resp.virtual_gateway.spec.backend_defaults.client_policy.tls.validation.trust.acm.certificate_authority_arns[0] #=> String
3831
3948
  # resp.virtual_gateway.spec.backend_defaults.client_policy.tls.validation.trust.file.certificate_chain #=> String
3832
3949
  # resp.virtual_gateway.spec.listeners #=> Array
3950
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.grpc.max_requests #=> Integer
3951
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.http.max_connections #=> Integer
3952
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.http.max_pending_requests #=> Integer
3953
+ # resp.virtual_gateway.spec.listeners[0].connection_pool.http2.max_requests #=> Integer
3833
3954
  # resp.virtual_gateway.spec.listeners[0].health_check.healthy_threshold #=> Integer
3834
3955
  # resp.virtual_gateway.spec.listeners[0].health_check.interval_millis #=> Integer
3835
3956
  # resp.virtual_gateway.spec.listeners[0].health_check.path #=> String
3836
3957
  # resp.virtual_gateway.spec.listeners[0].health_check.port #=> Integer
3837
- # resp.virtual_gateway.spec.listeners[0].health_check.protocol #=> String, one of "grpc", "http", "http2"
3958
+ # resp.virtual_gateway.spec.listeners[0].health_check.protocol #=> String, one of "http", "http2", "grpc"
3838
3959
  # resp.virtual_gateway.spec.listeners[0].health_check.timeout_millis #=> Integer
3839
3960
  # resp.virtual_gateway.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
3840
3961
  # resp.virtual_gateway.spec.listeners[0].port_mapping.port #=> Integer
3841
- # resp.virtual_gateway.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2"
3962
+ # resp.virtual_gateway.spec.listeners[0].port_mapping.protocol #=> String, one of "http", "http2", "grpc"
3842
3963
  # resp.virtual_gateway.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
3843
3964
  # resp.virtual_gateway.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
3844
3965
  # resp.virtual_gateway.spec.listeners[0].tls.certificate.file.private_key #=> String
3845
- # resp.virtual_gateway.spec.listeners[0].tls.mode #=> String, one of "DISABLED", "PERMISSIVE", "STRICT"
3966
+ # resp.virtual_gateway.spec.listeners[0].tls.mode #=> String, one of "STRICT", "PERMISSIVE", "DISABLED"
3846
3967
  # resp.virtual_gateway.spec.logging.access_log.file.path #=> String
3847
- # resp.virtual_gateway.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
3968
+ # resp.virtual_gateway.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
3848
3969
  # resp.virtual_gateway.virtual_gateway_name #=> String
3849
3970
  #
3850
3971
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateVirtualGateway AWS API Documentation
@@ -3940,53 +4061,80 @@ module Aws::AppMesh
3940
4061
  # ],
3941
4062
  # listeners: [
3942
4063
  # {
4064
+ # connection_pool: {
4065
+ # grpc: {
4066
+ # max_requests: 1, # required
4067
+ # },
4068
+ # http: {
4069
+ # max_connections: 1, # required
4070
+ # max_pending_requests: 1,
4071
+ # },
4072
+ # http2: {
4073
+ # max_requests: 1, # required
4074
+ # },
4075
+ # tcp: {
4076
+ # max_connections: 1, # required
4077
+ # },
4078
+ # },
3943
4079
  # health_check: {
3944
4080
  # healthy_threshold: 1, # required
3945
4081
  # interval_millis: 1, # required
3946
4082
  # path: "String",
3947
4083
  # port: 1,
3948
- # protocol: "grpc", # required, accepts grpc, http, http2, tcp
4084
+ # protocol: "http", # required, accepts http, tcp, http2, grpc
3949
4085
  # timeout_millis: 1, # required
3950
4086
  # unhealthy_threshold: 1, # required
3951
4087
  # },
4088
+ # outlier_detection: {
4089
+ # base_ejection_duration: { # required
4090
+ # unit: "s", # accepts s, ms
4091
+ # value: 1,
4092
+ # },
4093
+ # interval: { # required
4094
+ # unit: "s", # accepts s, ms
4095
+ # value: 1,
4096
+ # },
4097
+ # max_ejection_percent: 1, # required
4098
+ # max_server_errors: 1, # required
4099
+ # },
3952
4100
  # port_mapping: { # required
3953
4101
  # port: 1, # required
3954
- # protocol: "grpc", # required, accepts grpc, http, http2, tcp
4102
+ # protocol: "http", # required, accepts http, tcp, http2, grpc
3955
4103
  # },
3956
4104
  # timeout: {
3957
4105
  # grpc: {
3958
4106
  # idle: {
3959
- # unit: "ms", # accepts ms, s
4107
+ # unit: "s", # accepts s, ms
3960
4108
  # value: 1,
3961
4109
  # },
3962
4110
  # per_request: {
3963
- # unit: "ms", # accepts ms, s
4111
+ # unit: "s", # accepts s, ms
3964
4112
  # value: 1,
3965
4113
  # },
3966
4114
  # },
3967
4115
  # http: {
3968
4116
  # idle: {
3969
- # unit: "ms", # accepts ms, s
4117
+ # unit: "s", # accepts s, ms
3970
4118
  # value: 1,
3971
4119
  # },
3972
4120
  # per_request: {
3973
- # unit: "ms", # accepts ms, s
4121
+ # unit: "s", # accepts s, ms
3974
4122
  # value: 1,
3975
4123
  # },
3976
4124
  # },
3977
4125
  # http2: {
3978
4126
  # idle: {
3979
- # unit: "ms", # accepts ms, s
4127
+ # unit: "s", # accepts s, ms
3980
4128
  # value: 1,
3981
4129
  # },
3982
4130
  # per_request: {
3983
- # unit: "ms", # accepts ms, s
4131
+ # unit: "s", # accepts s, ms
3984
4132
  # value: 1,
3985
4133
  # },
3986
4134
  # },
3987
4135
  # tcp: {
3988
4136
  # idle: {
3989
- # unit: "ms", # accepts ms, s
4137
+ # unit: "s", # accepts s, ms
3990
4138
  # value: 1,
3991
4139
  # },
3992
4140
  # },
@@ -4001,7 +4149,7 @@ module Aws::AppMesh
4001
4149
  # private_key: "FilePath", # required
4002
4150
  # },
4003
4151
  # },
4004
- # mode: "DISABLED", # required, accepts DISABLED, PERMISSIVE, STRICT
4152
+ # mode: "STRICT", # required, accepts STRICT, PERMISSIVE, DISABLED
4005
4153
  # },
4006
4154
  # },
4007
4155
  # ],
@@ -4056,33 +4204,44 @@ module Aws::AppMesh
4056
4204
  # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.file.certificate_chain #=> String
4057
4205
  # resp.virtual_node.spec.backends[0].virtual_service.virtual_service_name #=> String
4058
4206
  # resp.virtual_node.spec.listeners #=> Array
4207
+ # resp.virtual_node.spec.listeners[0].connection_pool.grpc.max_requests #=> Integer
4208
+ # resp.virtual_node.spec.listeners[0].connection_pool.http.max_connections #=> Integer
4209
+ # resp.virtual_node.spec.listeners[0].connection_pool.http.max_pending_requests #=> Integer
4210
+ # resp.virtual_node.spec.listeners[0].connection_pool.http2.max_requests #=> Integer
4211
+ # resp.virtual_node.spec.listeners[0].connection_pool.tcp.max_connections #=> Integer
4059
4212
  # resp.virtual_node.spec.listeners[0].health_check.healthy_threshold #=> Integer
4060
4213
  # resp.virtual_node.spec.listeners[0].health_check.interval_millis #=> Integer
4061
4214
  # resp.virtual_node.spec.listeners[0].health_check.path #=> String
4062
4215
  # resp.virtual_node.spec.listeners[0].health_check.port #=> Integer
4063
- # resp.virtual_node.spec.listeners[0].health_check.protocol #=> String, one of "grpc", "http", "http2", "tcp"
4216
+ # resp.virtual_node.spec.listeners[0].health_check.protocol #=> String, one of "http", "tcp", "http2", "grpc"
4064
4217
  # resp.virtual_node.spec.listeners[0].health_check.timeout_millis #=> Integer
4065
4218
  # resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
4219
+ # resp.virtual_node.spec.listeners[0].outlier_detection.base_ejection_duration.unit #=> String, one of "s", "ms"
4220
+ # resp.virtual_node.spec.listeners[0].outlier_detection.base_ejection_duration.value #=> Integer
4221
+ # resp.virtual_node.spec.listeners[0].outlier_detection.interval.unit #=> String, one of "s", "ms"
4222
+ # resp.virtual_node.spec.listeners[0].outlier_detection.interval.value #=> Integer
4223
+ # resp.virtual_node.spec.listeners[0].outlier_detection.max_ejection_percent #=> Integer
4224
+ # resp.virtual_node.spec.listeners[0].outlier_detection.max_server_errors #=> Integer
4066
4225
  # resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
4067
- # resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
4068
- # resp.virtual_node.spec.listeners[0].timeout.grpc.idle.unit #=> String, one of "ms", "s"
4226
+ # resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "http", "tcp", "http2", "grpc"
4227
+ # resp.virtual_node.spec.listeners[0].timeout.grpc.idle.unit #=> String, one of "s", "ms"
4069
4228
  # resp.virtual_node.spec.listeners[0].timeout.grpc.idle.value #=> Integer
4070
- # resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.unit #=> String, one of "ms", "s"
4229
+ # resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.unit #=> String, one of "s", "ms"
4071
4230
  # resp.virtual_node.spec.listeners[0].timeout.grpc.per_request.value #=> Integer
4072
- # resp.virtual_node.spec.listeners[0].timeout.http.idle.unit #=> String, one of "ms", "s"
4231
+ # resp.virtual_node.spec.listeners[0].timeout.http.idle.unit #=> String, one of "s", "ms"
4073
4232
  # resp.virtual_node.spec.listeners[0].timeout.http.idle.value #=> Integer
4074
- # resp.virtual_node.spec.listeners[0].timeout.http.per_request.unit #=> String, one of "ms", "s"
4233
+ # resp.virtual_node.spec.listeners[0].timeout.http.per_request.unit #=> String, one of "s", "ms"
4075
4234
  # resp.virtual_node.spec.listeners[0].timeout.http.per_request.value #=> Integer
4076
- # resp.virtual_node.spec.listeners[0].timeout.http2.idle.unit #=> String, one of "ms", "s"
4235
+ # resp.virtual_node.spec.listeners[0].timeout.http2.idle.unit #=> String, one of "s", "ms"
4077
4236
  # resp.virtual_node.spec.listeners[0].timeout.http2.idle.value #=> Integer
4078
- # resp.virtual_node.spec.listeners[0].timeout.http2.per_request.unit #=> String, one of "ms", "s"
4237
+ # resp.virtual_node.spec.listeners[0].timeout.http2.per_request.unit #=> String, one of "s", "ms"
4079
4238
  # resp.virtual_node.spec.listeners[0].timeout.http2.per_request.value #=> Integer
4080
- # resp.virtual_node.spec.listeners[0].timeout.tcp.idle.unit #=> String, one of "ms", "s"
4239
+ # resp.virtual_node.spec.listeners[0].timeout.tcp.idle.unit #=> String, one of "s", "ms"
4081
4240
  # resp.virtual_node.spec.listeners[0].timeout.tcp.idle.value #=> Integer
4082
4241
  # resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
4083
4242
  # resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
4084
4243
  # resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
4085
- # resp.virtual_node.spec.listeners[0].tls.mode #=> String, one of "DISABLED", "PERMISSIVE", "STRICT"
4244
+ # resp.virtual_node.spec.listeners[0].tls.mode #=> String, one of "STRICT", "PERMISSIVE", "DISABLED"
4086
4245
  # resp.virtual_node.spec.logging.access_log.file.path #=> String
4087
4246
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
4088
4247
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
@@ -4090,7 +4249,7 @@ module Aws::AppMesh
4090
4249
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.namespace_name #=> String
4091
4250
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.service_name #=> String
4092
4251
  # resp.virtual_node.spec.service_discovery.dns.hostname #=> String
4093
- # resp.virtual_node.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
4252
+ # resp.virtual_node.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
4094
4253
  # resp.virtual_node.virtual_node_name #=> String
4095
4254
  #
4096
4255
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateVirtualNode AWS API Documentation
@@ -4147,7 +4306,7 @@ module Aws::AppMesh
4147
4306
  # {
4148
4307
  # port_mapping: { # required
4149
4308
  # port: 1, # required
4150
- # protocol: "grpc", # required, accepts grpc, http, http2, tcp
4309
+ # protocol: "http", # required, accepts http, tcp, http2, grpc
4151
4310
  # },
4152
4311
  # },
4153
4312
  # ],
@@ -4167,8 +4326,8 @@ module Aws::AppMesh
4167
4326
  # resp.virtual_router.metadata.version #=> Integer
4168
4327
  # resp.virtual_router.spec.listeners #=> Array
4169
4328
  # resp.virtual_router.spec.listeners[0].port_mapping.port #=> Integer
4170
- # resp.virtual_router.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
4171
- # resp.virtual_router.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
4329
+ # resp.virtual_router.spec.listeners[0].port_mapping.protocol #=> String, one of "http", "tcp", "http2", "grpc"
4330
+ # resp.virtual_router.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
4172
4331
  # resp.virtual_router.virtual_router_name #=> String
4173
4332
  #
4174
4333
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateVirtualRouter AWS API Documentation
@@ -4245,7 +4404,7 @@ module Aws::AppMesh
4245
4404
  # resp.virtual_service.metadata.version #=> Integer
4246
4405
  # resp.virtual_service.spec.provider.virtual_node.virtual_node_name #=> String
4247
4406
  # resp.virtual_service.spec.provider.virtual_router.virtual_router_name #=> String
4248
- # resp.virtual_service.status.status #=> String, one of "ACTIVE", "DELETED", "INACTIVE"
4407
+ # resp.virtual_service.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
4249
4408
  # resp.virtual_service.virtual_service_name #=> String
4250
4409
  #
4251
4410
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateVirtualService AWS API Documentation
@@ -4270,7 +4429,7 @@ module Aws::AppMesh
4270
4429
  params: params,
4271
4430
  config: config)
4272
4431
  context[:gem_name] = 'aws-sdk-appmesh'
4273
- context[:gem_version] = '1.28.0'
4432
+ context[:gem_version] = '1.33.0'
4274
4433
  Seahorse::Client::Request.new(handlers, context)
4275
4434
  end
4276
4435