aws-sdk-appmesh 1.46.0 → 1.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appmesh/client.rb +176 -3
- data/lib/aws-sdk-appmesh/client_api.rb +34 -0
- data/lib/aws-sdk-appmesh/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-appmesh/endpoint_provider.rb +111 -0
- data/lib/aws-sdk-appmesh/endpoints.rb +547 -0
- data/lib/aws-sdk-appmesh/plugins/endpoints.rb +144 -0
- data/lib/aws-sdk-appmesh/types.rb +298 -3
- data/lib/aws-sdk-appmesh.rb +5 -1
- metadata +8 -4
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:appmesh)
|
@@ -79,8 +79,9 @@ module Aws::AppMesh
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
84
|
+
add_plugin(Aws::AppMesh::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -287,6 +288,19 @@ module Aws::AppMesh
|
|
287
288
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
288
289
|
# requests are made, and retries are disabled.
|
289
290
|
#
|
291
|
+
# @option options [Aws::TokenProvider] :token_provider
|
292
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
293
|
+
# following classes:
|
294
|
+
#
|
295
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
296
|
+
# tokens.
|
297
|
+
#
|
298
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
299
|
+
# access token generated from `aws login`.
|
300
|
+
#
|
301
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
302
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
303
|
+
#
|
290
304
|
# @option options [Boolean] :use_dualstack_endpoint
|
291
305
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
292
306
|
# will be used if available.
|
@@ -300,6 +314,9 @@ module Aws::AppMesh
|
|
300
314
|
# When `true`, request parameters are validated before
|
301
315
|
# sending the request.
|
302
316
|
#
|
317
|
+
# @option options [Aws::AppMesh::EndpointProvider] :endpoint_provider
|
318
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::AppMesh::EndpointParameters`
|
319
|
+
#
|
303
320
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
304
321
|
# requests through. Formatted like 'http://proxy.com:123'.
|
305
322
|
#
|
@@ -423,6 +440,7 @@ module Aws::AppMesh
|
|
423
440
|
# },
|
424
441
|
# },
|
425
442
|
# target: { # required
|
443
|
+
# port: 1,
|
426
444
|
# virtual_service: { # required
|
427
445
|
# virtual_service_name: "ResourceName", # required
|
428
446
|
# },
|
@@ -449,6 +467,7 @@ module Aws::AppMesh
|
|
449
467
|
# name: "HeaderName", # required
|
450
468
|
# },
|
451
469
|
# ],
|
470
|
+
# port: 1,
|
452
471
|
# service_name: "ServiceName",
|
453
472
|
# },
|
454
473
|
# },
|
@@ -467,6 +486,7 @@ module Aws::AppMesh
|
|
467
486
|
# },
|
468
487
|
# },
|
469
488
|
# target: { # required
|
489
|
+
# port: 1,
|
470
490
|
# virtual_service: { # required
|
471
491
|
# virtual_service_name: "ResourceName", # required
|
472
492
|
# },
|
@@ -498,6 +518,7 @@ module Aws::AppMesh
|
|
498
518
|
# exact: "HttpPathExact",
|
499
519
|
# regex: "HttpPathRegex",
|
500
520
|
# },
|
521
|
+
# port: 1,
|
501
522
|
# prefix: "String",
|
502
523
|
# query_parameters: [
|
503
524
|
# {
|
@@ -524,6 +545,7 @@ module Aws::AppMesh
|
|
524
545
|
# },
|
525
546
|
# },
|
526
547
|
# target: { # required
|
548
|
+
# port: 1,
|
527
549
|
# virtual_service: { # required
|
528
550
|
# virtual_service_name: "ResourceName", # required
|
529
551
|
# },
|
@@ -555,6 +577,7 @@ module Aws::AppMesh
|
|
555
577
|
# exact: "HttpPathExact",
|
556
578
|
# regex: "HttpPathRegex",
|
557
579
|
# },
|
580
|
+
# port: 1,
|
558
581
|
# prefix: "String",
|
559
582
|
# query_parameters: [
|
560
583
|
# {
|
@@ -589,6 +612,7 @@ module Aws::AppMesh
|
|
589
612
|
# resp.gateway_route.metadata.uid #=> String
|
590
613
|
# resp.gateway_route.metadata.version #=> Integer
|
591
614
|
# resp.gateway_route.spec.grpc_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
|
615
|
+
# resp.gateway_route.spec.grpc_route.action.target.port #=> Integer
|
592
616
|
# resp.gateway_route.spec.grpc_route.action.target.virtual_service.virtual_service_name #=> String
|
593
617
|
# resp.gateway_route.spec.grpc_route.match.hostname.exact #=> String
|
594
618
|
# resp.gateway_route.spec.grpc_route.match.hostname.suffix #=> String
|
@@ -601,11 +625,13 @@ module Aws::AppMesh
|
|
601
625
|
# resp.gateway_route.spec.grpc_route.match.metadata[0].match.regex #=> String
|
602
626
|
# resp.gateway_route.spec.grpc_route.match.metadata[0].match.suffix #=> String
|
603
627
|
# resp.gateway_route.spec.grpc_route.match.metadata[0].name #=> String
|
628
|
+
# resp.gateway_route.spec.grpc_route.match.port #=> Integer
|
604
629
|
# resp.gateway_route.spec.grpc_route.match.service_name #=> String
|
605
630
|
# resp.gateway_route.spec.http2_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
|
606
631
|
# resp.gateway_route.spec.http2_route.action.rewrite.path.exact #=> String
|
607
632
|
# resp.gateway_route.spec.http2_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
|
608
633
|
# resp.gateway_route.spec.http2_route.action.rewrite.prefix.value #=> String
|
634
|
+
# resp.gateway_route.spec.http2_route.action.target.port #=> Integer
|
609
635
|
# resp.gateway_route.spec.http2_route.action.target.virtual_service.virtual_service_name #=> String
|
610
636
|
# resp.gateway_route.spec.http2_route.match.headers #=> Array
|
611
637
|
# resp.gateway_route.spec.http2_route.match.headers[0].invert #=> Boolean
|
@@ -621,6 +647,7 @@ module Aws::AppMesh
|
|
621
647
|
# resp.gateway_route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
622
648
|
# resp.gateway_route.spec.http2_route.match.path.exact #=> String
|
623
649
|
# resp.gateway_route.spec.http2_route.match.path.regex #=> String
|
650
|
+
# resp.gateway_route.spec.http2_route.match.port #=> Integer
|
624
651
|
# resp.gateway_route.spec.http2_route.match.prefix #=> String
|
625
652
|
# resp.gateway_route.spec.http2_route.match.query_parameters #=> Array
|
626
653
|
# resp.gateway_route.spec.http2_route.match.query_parameters[0].match.exact #=> String
|
@@ -629,6 +656,7 @@ module Aws::AppMesh
|
|
629
656
|
# resp.gateway_route.spec.http_route.action.rewrite.path.exact #=> String
|
630
657
|
# resp.gateway_route.spec.http_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
|
631
658
|
# resp.gateway_route.spec.http_route.action.rewrite.prefix.value #=> String
|
659
|
+
# resp.gateway_route.spec.http_route.action.target.port #=> Integer
|
632
660
|
# resp.gateway_route.spec.http_route.action.target.virtual_service.virtual_service_name #=> String
|
633
661
|
# resp.gateway_route.spec.http_route.match.headers #=> Array
|
634
662
|
# resp.gateway_route.spec.http_route.match.headers[0].invert #=> Boolean
|
@@ -644,6 +672,7 @@ module Aws::AppMesh
|
|
644
672
|
# resp.gateway_route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
645
673
|
# resp.gateway_route.spec.http_route.match.path.exact #=> String
|
646
674
|
# resp.gateway_route.spec.http_route.match.path.regex #=> String
|
675
|
+
# resp.gateway_route.spec.http_route.match.port #=> Integer
|
647
676
|
# resp.gateway_route.spec.http_route.match.prefix #=> String
|
648
677
|
# resp.gateway_route.spec.http_route.match.query_parameters #=> Array
|
649
678
|
# resp.gateway_route.spec.http_route.match.query_parameters[0].match.exact #=> String
|
@@ -811,6 +840,7 @@ module Aws::AppMesh
|
|
811
840
|
# action: { # required
|
812
841
|
# weighted_targets: [ # required
|
813
842
|
# {
|
843
|
+
# port: 1,
|
814
844
|
# virtual_node: "ResourceName", # required
|
815
845
|
# weight: 1, # required
|
816
846
|
# },
|
@@ -834,6 +864,7 @@ module Aws::AppMesh
|
|
834
864
|
# },
|
835
865
|
# ],
|
836
866
|
# method_name: "MethodName",
|
867
|
+
# port: 1,
|
837
868
|
# service_name: "ServiceName",
|
838
869
|
# },
|
839
870
|
# retry_policy: {
|
@@ -861,6 +892,7 @@ module Aws::AppMesh
|
|
861
892
|
# action: { # required
|
862
893
|
# weighted_targets: [ # required
|
863
894
|
# {
|
895
|
+
# port: 1,
|
864
896
|
# virtual_node: "ResourceName", # required
|
865
897
|
# weight: 1, # required
|
866
898
|
# },
|
@@ -888,6 +920,7 @@ module Aws::AppMesh
|
|
888
920
|
# exact: "HttpPathExact",
|
889
921
|
# regex: "HttpPathRegex",
|
890
922
|
# },
|
923
|
+
# port: 1,
|
891
924
|
# prefix: "String",
|
892
925
|
# query_parameters: [
|
893
926
|
# {
|
@@ -923,6 +956,7 @@ module Aws::AppMesh
|
|
923
956
|
# action: { # required
|
924
957
|
# weighted_targets: [ # required
|
925
958
|
# {
|
959
|
+
# port: 1,
|
926
960
|
# virtual_node: "ResourceName", # required
|
927
961
|
# weight: 1, # required
|
928
962
|
# },
|
@@ -950,6 +984,7 @@ module Aws::AppMesh
|
|
950
984
|
# exact: "HttpPathExact",
|
951
985
|
# regex: "HttpPathRegex",
|
952
986
|
# },
|
987
|
+
# port: 1,
|
953
988
|
# prefix: "String",
|
954
989
|
# query_parameters: [
|
955
990
|
# {
|
@@ -986,11 +1021,15 @@ module Aws::AppMesh
|
|
986
1021
|
# action: { # required
|
987
1022
|
# weighted_targets: [ # required
|
988
1023
|
# {
|
1024
|
+
# port: 1,
|
989
1025
|
# virtual_node: "ResourceName", # required
|
990
1026
|
# weight: 1, # required
|
991
1027
|
# },
|
992
1028
|
# ],
|
993
1029
|
# },
|
1030
|
+
# match: {
|
1031
|
+
# port: 1,
|
1032
|
+
# },
|
994
1033
|
# timeout: {
|
995
1034
|
# idle: {
|
996
1035
|
# unit: "s", # accepts s, ms
|
@@ -1020,6 +1059,7 @@ module Aws::AppMesh
|
|
1020
1059
|
# resp.route.metadata.version #=> Integer
|
1021
1060
|
# resp.route.route_name #=> String
|
1022
1061
|
# resp.route.spec.grpc_route.action.weighted_targets #=> Array
|
1062
|
+
# resp.route.spec.grpc_route.action.weighted_targets[0].port #=> Integer
|
1023
1063
|
# resp.route.spec.grpc_route.action.weighted_targets[0].virtual_node #=> String
|
1024
1064
|
# resp.route.spec.grpc_route.action.weighted_targets[0].weight #=> Integer
|
1025
1065
|
# resp.route.spec.grpc_route.match.metadata #=> Array
|
@@ -1032,6 +1072,7 @@ module Aws::AppMesh
|
|
1032
1072
|
# resp.route.spec.grpc_route.match.metadata[0].match.suffix #=> String
|
1033
1073
|
# resp.route.spec.grpc_route.match.metadata[0].name #=> String
|
1034
1074
|
# resp.route.spec.grpc_route.match.method_name #=> String
|
1075
|
+
# resp.route.spec.grpc_route.match.port #=> Integer
|
1035
1076
|
# resp.route.spec.grpc_route.match.service_name #=> String
|
1036
1077
|
# resp.route.spec.grpc_route.retry_policy.grpc_retry_events #=> Array
|
1037
1078
|
# resp.route.spec.grpc_route.retry_policy.grpc_retry_events[0] #=> String, one of "cancelled", "deadline-exceeded", "internal", "resource-exhausted", "unavailable"
|
@@ -1047,6 +1088,7 @@ module Aws::AppMesh
|
|
1047
1088
|
# resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "s", "ms"
|
1048
1089
|
# resp.route.spec.grpc_route.timeout.per_request.value #=> Integer
|
1049
1090
|
# resp.route.spec.http2_route.action.weighted_targets #=> Array
|
1091
|
+
# resp.route.spec.http2_route.action.weighted_targets[0].port #=> Integer
|
1050
1092
|
# resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
|
1051
1093
|
# resp.route.spec.http2_route.action.weighted_targets[0].weight #=> Integer
|
1052
1094
|
# resp.route.spec.http2_route.match.headers #=> Array
|
@@ -1061,6 +1103,7 @@ module Aws::AppMesh
|
|
1061
1103
|
# resp.route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
1062
1104
|
# resp.route.spec.http2_route.match.path.exact #=> String
|
1063
1105
|
# resp.route.spec.http2_route.match.path.regex #=> String
|
1106
|
+
# resp.route.spec.http2_route.match.port #=> Integer
|
1064
1107
|
# resp.route.spec.http2_route.match.prefix #=> String
|
1065
1108
|
# resp.route.spec.http2_route.match.query_parameters #=> Array
|
1066
1109
|
# resp.route.spec.http2_route.match.query_parameters[0].match.exact #=> String
|
@@ -1078,6 +1121,7 @@ module Aws::AppMesh
|
|
1078
1121
|
# resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "s", "ms"
|
1079
1122
|
# resp.route.spec.http2_route.timeout.per_request.value #=> Integer
|
1080
1123
|
# resp.route.spec.http_route.action.weighted_targets #=> Array
|
1124
|
+
# resp.route.spec.http_route.action.weighted_targets[0].port #=> Integer
|
1081
1125
|
# resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
|
1082
1126
|
# resp.route.spec.http_route.action.weighted_targets[0].weight #=> Integer
|
1083
1127
|
# resp.route.spec.http_route.match.headers #=> Array
|
@@ -1092,6 +1136,7 @@ module Aws::AppMesh
|
|
1092
1136
|
# resp.route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
1093
1137
|
# resp.route.spec.http_route.match.path.exact #=> String
|
1094
1138
|
# resp.route.spec.http_route.match.path.regex #=> String
|
1139
|
+
# resp.route.spec.http_route.match.port #=> Integer
|
1095
1140
|
# resp.route.spec.http_route.match.prefix #=> String
|
1096
1141
|
# resp.route.spec.http_route.match.query_parameters #=> Array
|
1097
1142
|
# resp.route.spec.http_route.match.query_parameters[0].match.exact #=> String
|
@@ -1110,8 +1155,10 @@ module Aws::AppMesh
|
|
1110
1155
|
# resp.route.spec.http_route.timeout.per_request.value #=> Integer
|
1111
1156
|
# resp.route.spec.priority #=> Integer
|
1112
1157
|
# resp.route.spec.tcp_route.action.weighted_targets #=> Array
|
1158
|
+
# resp.route.spec.tcp_route.action.weighted_targets[0].port #=> Integer
|
1113
1159
|
# resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
|
1114
1160
|
# resp.route.spec.tcp_route.action.weighted_targets[0].weight #=> Integer
|
1161
|
+
# resp.route.spec.tcp_route.match.port #=> Integer
|
1115
1162
|
# resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "s", "ms"
|
1116
1163
|
# resp.route.spec.tcp_route.timeout.idle.value #=> Integer
|
1117
1164
|
# resp.route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
@@ -1285,6 +1332,15 @@ module Aws::AppMesh
|
|
1285
1332
|
# logging: {
|
1286
1333
|
# access_log: {
|
1287
1334
|
# file: {
|
1335
|
+
# format: {
|
1336
|
+
# json: [
|
1337
|
+
# {
|
1338
|
+
# key: "JsonKey", # required
|
1339
|
+
# value: "JsonValue", # required
|
1340
|
+
# },
|
1341
|
+
# ],
|
1342
|
+
# text: "TextFormat",
|
1343
|
+
# },
|
1288
1344
|
# path: "FilePath", # required
|
1289
1345
|
# },
|
1290
1346
|
# },
|
@@ -1344,6 +1400,10 @@ module Aws::AppMesh
|
|
1344
1400
|
# resp.virtual_gateway.spec.listeners[0].tls.validation.subject_alternative_names.match.exact[0] #=> String
|
1345
1401
|
# resp.virtual_gateway.spec.listeners[0].tls.validation.trust.file.certificate_chain #=> String
|
1346
1402
|
# resp.virtual_gateway.spec.listeners[0].tls.validation.trust.sds.secret_name #=> String
|
1403
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.json #=> Array
|
1404
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.json[0].key #=> String
|
1405
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.json[0].value #=> String
|
1406
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.text #=> String
|
1347
1407
|
# resp.virtual_gateway.spec.logging.access_log.file.path #=> String
|
1348
1408
|
# resp.virtual_gateway.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
1349
1409
|
# resp.virtual_gateway.virtual_gateway_name #=> String
|
@@ -1632,6 +1692,15 @@ module Aws::AppMesh
|
|
1632
1692
|
# logging: {
|
1633
1693
|
# access_log: {
|
1634
1694
|
# file: {
|
1695
|
+
# format: {
|
1696
|
+
# json: [
|
1697
|
+
# {
|
1698
|
+
# key: "JsonKey", # required
|
1699
|
+
# value: "JsonValue", # required
|
1700
|
+
# },
|
1701
|
+
# ],
|
1702
|
+
# text: "TextFormat",
|
1703
|
+
# },
|
1635
1704
|
# path: "FilePath", # required
|
1636
1705
|
# },
|
1637
1706
|
# },
|
@@ -1744,6 +1813,10 @@ module Aws::AppMesh
|
|
1744
1813
|
# resp.virtual_node.spec.listeners[0].tls.validation.subject_alternative_names.match.exact[0] #=> String
|
1745
1814
|
# resp.virtual_node.spec.listeners[0].tls.validation.trust.file.certificate_chain #=> String
|
1746
1815
|
# resp.virtual_node.spec.listeners[0].tls.validation.trust.sds.secret_name #=> String
|
1816
|
+
# resp.virtual_node.spec.logging.access_log.file.format.json #=> Array
|
1817
|
+
# resp.virtual_node.spec.logging.access_log.file.format.json[0].key #=> String
|
1818
|
+
# resp.virtual_node.spec.logging.access_log.file.format.json[0].value #=> String
|
1819
|
+
# resp.virtual_node.spec.logging.access_log.file.format.text #=> String
|
1747
1820
|
# resp.virtual_node.spec.logging.access_log.file.path #=> String
|
1748
1821
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
|
1749
1822
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
|
@@ -2020,6 +2093,7 @@ module Aws::AppMesh
|
|
2020
2093
|
# resp.gateway_route.metadata.uid #=> String
|
2021
2094
|
# resp.gateway_route.metadata.version #=> Integer
|
2022
2095
|
# resp.gateway_route.spec.grpc_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
|
2096
|
+
# resp.gateway_route.spec.grpc_route.action.target.port #=> Integer
|
2023
2097
|
# resp.gateway_route.spec.grpc_route.action.target.virtual_service.virtual_service_name #=> String
|
2024
2098
|
# resp.gateway_route.spec.grpc_route.match.hostname.exact #=> String
|
2025
2099
|
# resp.gateway_route.spec.grpc_route.match.hostname.suffix #=> String
|
@@ -2032,11 +2106,13 @@ module Aws::AppMesh
|
|
2032
2106
|
# resp.gateway_route.spec.grpc_route.match.metadata[0].match.regex #=> String
|
2033
2107
|
# resp.gateway_route.spec.grpc_route.match.metadata[0].match.suffix #=> String
|
2034
2108
|
# resp.gateway_route.spec.grpc_route.match.metadata[0].name #=> String
|
2109
|
+
# resp.gateway_route.spec.grpc_route.match.port #=> Integer
|
2035
2110
|
# resp.gateway_route.spec.grpc_route.match.service_name #=> String
|
2036
2111
|
# resp.gateway_route.spec.http2_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
|
2037
2112
|
# resp.gateway_route.spec.http2_route.action.rewrite.path.exact #=> String
|
2038
2113
|
# resp.gateway_route.spec.http2_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
|
2039
2114
|
# resp.gateway_route.spec.http2_route.action.rewrite.prefix.value #=> String
|
2115
|
+
# resp.gateway_route.spec.http2_route.action.target.port #=> Integer
|
2040
2116
|
# resp.gateway_route.spec.http2_route.action.target.virtual_service.virtual_service_name #=> String
|
2041
2117
|
# resp.gateway_route.spec.http2_route.match.headers #=> Array
|
2042
2118
|
# resp.gateway_route.spec.http2_route.match.headers[0].invert #=> Boolean
|
@@ -2052,6 +2128,7 @@ module Aws::AppMesh
|
|
2052
2128
|
# resp.gateway_route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
2053
2129
|
# resp.gateway_route.spec.http2_route.match.path.exact #=> String
|
2054
2130
|
# resp.gateway_route.spec.http2_route.match.path.regex #=> String
|
2131
|
+
# resp.gateway_route.spec.http2_route.match.port #=> Integer
|
2055
2132
|
# resp.gateway_route.spec.http2_route.match.prefix #=> String
|
2056
2133
|
# resp.gateway_route.spec.http2_route.match.query_parameters #=> Array
|
2057
2134
|
# resp.gateway_route.spec.http2_route.match.query_parameters[0].match.exact #=> String
|
@@ -2060,6 +2137,7 @@ module Aws::AppMesh
|
|
2060
2137
|
# resp.gateway_route.spec.http_route.action.rewrite.path.exact #=> String
|
2061
2138
|
# resp.gateway_route.spec.http_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
|
2062
2139
|
# resp.gateway_route.spec.http_route.action.rewrite.prefix.value #=> String
|
2140
|
+
# resp.gateway_route.spec.http_route.action.target.port #=> Integer
|
2063
2141
|
# resp.gateway_route.spec.http_route.action.target.virtual_service.virtual_service_name #=> String
|
2064
2142
|
# resp.gateway_route.spec.http_route.match.headers #=> Array
|
2065
2143
|
# resp.gateway_route.spec.http_route.match.headers[0].invert #=> Boolean
|
@@ -2075,6 +2153,7 @@ module Aws::AppMesh
|
|
2075
2153
|
# resp.gateway_route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
2076
2154
|
# resp.gateway_route.spec.http_route.match.path.exact #=> String
|
2077
2155
|
# resp.gateway_route.spec.http_route.match.path.regex #=> String
|
2156
|
+
# resp.gateway_route.spec.http_route.match.port #=> Integer
|
2078
2157
|
# resp.gateway_route.spec.http_route.match.prefix #=> String
|
2079
2158
|
# resp.gateway_route.spec.http_route.match.query_parameters #=> Array
|
2080
2159
|
# resp.gateway_route.spec.http_route.match.query_parameters[0].match.exact #=> String
|
@@ -2180,6 +2259,7 @@ module Aws::AppMesh
|
|
2180
2259
|
# resp.route.metadata.version #=> Integer
|
2181
2260
|
# resp.route.route_name #=> String
|
2182
2261
|
# resp.route.spec.grpc_route.action.weighted_targets #=> Array
|
2262
|
+
# resp.route.spec.grpc_route.action.weighted_targets[0].port #=> Integer
|
2183
2263
|
# resp.route.spec.grpc_route.action.weighted_targets[0].virtual_node #=> String
|
2184
2264
|
# resp.route.spec.grpc_route.action.weighted_targets[0].weight #=> Integer
|
2185
2265
|
# resp.route.spec.grpc_route.match.metadata #=> Array
|
@@ -2192,6 +2272,7 @@ module Aws::AppMesh
|
|
2192
2272
|
# resp.route.spec.grpc_route.match.metadata[0].match.suffix #=> String
|
2193
2273
|
# resp.route.spec.grpc_route.match.metadata[0].name #=> String
|
2194
2274
|
# resp.route.spec.grpc_route.match.method_name #=> String
|
2275
|
+
# resp.route.spec.grpc_route.match.port #=> Integer
|
2195
2276
|
# resp.route.spec.grpc_route.match.service_name #=> String
|
2196
2277
|
# resp.route.spec.grpc_route.retry_policy.grpc_retry_events #=> Array
|
2197
2278
|
# resp.route.spec.grpc_route.retry_policy.grpc_retry_events[0] #=> String, one of "cancelled", "deadline-exceeded", "internal", "resource-exhausted", "unavailable"
|
@@ -2207,6 +2288,7 @@ module Aws::AppMesh
|
|
2207
2288
|
# resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "s", "ms"
|
2208
2289
|
# resp.route.spec.grpc_route.timeout.per_request.value #=> Integer
|
2209
2290
|
# resp.route.spec.http2_route.action.weighted_targets #=> Array
|
2291
|
+
# resp.route.spec.http2_route.action.weighted_targets[0].port #=> Integer
|
2210
2292
|
# resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
|
2211
2293
|
# resp.route.spec.http2_route.action.weighted_targets[0].weight #=> Integer
|
2212
2294
|
# resp.route.spec.http2_route.match.headers #=> Array
|
@@ -2221,6 +2303,7 @@ module Aws::AppMesh
|
|
2221
2303
|
# resp.route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
2222
2304
|
# resp.route.spec.http2_route.match.path.exact #=> String
|
2223
2305
|
# resp.route.spec.http2_route.match.path.regex #=> String
|
2306
|
+
# resp.route.spec.http2_route.match.port #=> Integer
|
2224
2307
|
# resp.route.spec.http2_route.match.prefix #=> String
|
2225
2308
|
# resp.route.spec.http2_route.match.query_parameters #=> Array
|
2226
2309
|
# resp.route.spec.http2_route.match.query_parameters[0].match.exact #=> String
|
@@ -2238,6 +2321,7 @@ module Aws::AppMesh
|
|
2238
2321
|
# resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "s", "ms"
|
2239
2322
|
# resp.route.spec.http2_route.timeout.per_request.value #=> Integer
|
2240
2323
|
# resp.route.spec.http_route.action.weighted_targets #=> Array
|
2324
|
+
# resp.route.spec.http_route.action.weighted_targets[0].port #=> Integer
|
2241
2325
|
# resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
|
2242
2326
|
# resp.route.spec.http_route.action.weighted_targets[0].weight #=> Integer
|
2243
2327
|
# resp.route.spec.http_route.match.headers #=> Array
|
@@ -2252,6 +2336,7 @@ module Aws::AppMesh
|
|
2252
2336
|
# resp.route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
2253
2337
|
# resp.route.spec.http_route.match.path.exact #=> String
|
2254
2338
|
# resp.route.spec.http_route.match.path.regex #=> String
|
2339
|
+
# resp.route.spec.http_route.match.port #=> Integer
|
2255
2340
|
# resp.route.spec.http_route.match.prefix #=> String
|
2256
2341
|
# resp.route.spec.http_route.match.query_parameters #=> Array
|
2257
2342
|
# resp.route.spec.http_route.match.query_parameters[0].match.exact #=> String
|
@@ -2270,8 +2355,10 @@ module Aws::AppMesh
|
|
2270
2355
|
# resp.route.spec.http_route.timeout.per_request.value #=> Integer
|
2271
2356
|
# resp.route.spec.priority #=> Integer
|
2272
2357
|
# resp.route.spec.tcp_route.action.weighted_targets #=> Array
|
2358
|
+
# resp.route.spec.tcp_route.action.weighted_targets[0].port #=> Integer
|
2273
2359
|
# resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
|
2274
2360
|
# resp.route.spec.tcp_route.action.weighted_targets[0].weight #=> Integer
|
2361
|
+
# resp.route.spec.tcp_route.match.port #=> Integer
|
2275
2362
|
# resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "s", "ms"
|
2276
2363
|
# resp.route.spec.tcp_route.timeout.idle.value #=> Integer
|
2277
2364
|
# resp.route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
@@ -2362,6 +2449,10 @@ module Aws::AppMesh
|
|
2362
2449
|
# resp.virtual_gateway.spec.listeners[0].tls.validation.subject_alternative_names.match.exact[0] #=> String
|
2363
2450
|
# resp.virtual_gateway.spec.listeners[0].tls.validation.trust.file.certificate_chain #=> String
|
2364
2451
|
# resp.virtual_gateway.spec.listeners[0].tls.validation.trust.sds.secret_name #=> String
|
2452
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.json #=> Array
|
2453
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.json[0].key #=> String
|
2454
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.json[0].value #=> String
|
2455
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.text #=> String
|
2365
2456
|
# resp.virtual_gateway.spec.logging.access_log.file.path #=> String
|
2366
2457
|
# resp.virtual_gateway.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
2367
2458
|
# resp.virtual_gateway.virtual_gateway_name #=> String
|
@@ -2488,6 +2579,10 @@ module Aws::AppMesh
|
|
2488
2579
|
# resp.virtual_node.spec.listeners[0].tls.validation.subject_alternative_names.match.exact[0] #=> String
|
2489
2580
|
# resp.virtual_node.spec.listeners[0].tls.validation.trust.file.certificate_chain #=> String
|
2490
2581
|
# resp.virtual_node.spec.listeners[0].tls.validation.trust.sds.secret_name #=> String
|
2582
|
+
# resp.virtual_node.spec.logging.access_log.file.format.json #=> Array
|
2583
|
+
# resp.virtual_node.spec.logging.access_log.file.format.json[0].key #=> String
|
2584
|
+
# resp.virtual_node.spec.logging.access_log.file.format.json[0].value #=> String
|
2585
|
+
# resp.virtual_node.spec.logging.access_log.file.format.text #=> String
|
2491
2586
|
# resp.virtual_node.spec.logging.access_log.file.path #=> String
|
2492
2587
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
|
2493
2588
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
|
@@ -2669,6 +2764,7 @@ module Aws::AppMesh
|
|
2669
2764
|
# resp.gateway_route.metadata.uid #=> String
|
2670
2765
|
# resp.gateway_route.metadata.version #=> Integer
|
2671
2766
|
# resp.gateway_route.spec.grpc_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
|
2767
|
+
# resp.gateway_route.spec.grpc_route.action.target.port #=> Integer
|
2672
2768
|
# resp.gateway_route.spec.grpc_route.action.target.virtual_service.virtual_service_name #=> String
|
2673
2769
|
# resp.gateway_route.spec.grpc_route.match.hostname.exact #=> String
|
2674
2770
|
# resp.gateway_route.spec.grpc_route.match.hostname.suffix #=> String
|
@@ -2681,11 +2777,13 @@ module Aws::AppMesh
|
|
2681
2777
|
# resp.gateway_route.spec.grpc_route.match.metadata[0].match.regex #=> String
|
2682
2778
|
# resp.gateway_route.spec.grpc_route.match.metadata[0].match.suffix #=> String
|
2683
2779
|
# resp.gateway_route.spec.grpc_route.match.metadata[0].name #=> String
|
2780
|
+
# resp.gateway_route.spec.grpc_route.match.port #=> Integer
|
2684
2781
|
# resp.gateway_route.spec.grpc_route.match.service_name #=> String
|
2685
2782
|
# resp.gateway_route.spec.http2_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
|
2686
2783
|
# resp.gateway_route.spec.http2_route.action.rewrite.path.exact #=> String
|
2687
2784
|
# resp.gateway_route.spec.http2_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
|
2688
2785
|
# resp.gateway_route.spec.http2_route.action.rewrite.prefix.value #=> String
|
2786
|
+
# resp.gateway_route.spec.http2_route.action.target.port #=> Integer
|
2689
2787
|
# resp.gateway_route.spec.http2_route.action.target.virtual_service.virtual_service_name #=> String
|
2690
2788
|
# resp.gateway_route.spec.http2_route.match.headers #=> Array
|
2691
2789
|
# resp.gateway_route.spec.http2_route.match.headers[0].invert #=> Boolean
|
@@ -2701,6 +2799,7 @@ module Aws::AppMesh
|
|
2701
2799
|
# resp.gateway_route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
2702
2800
|
# resp.gateway_route.spec.http2_route.match.path.exact #=> String
|
2703
2801
|
# resp.gateway_route.spec.http2_route.match.path.regex #=> String
|
2802
|
+
# resp.gateway_route.spec.http2_route.match.port #=> Integer
|
2704
2803
|
# resp.gateway_route.spec.http2_route.match.prefix #=> String
|
2705
2804
|
# resp.gateway_route.spec.http2_route.match.query_parameters #=> Array
|
2706
2805
|
# resp.gateway_route.spec.http2_route.match.query_parameters[0].match.exact #=> String
|
@@ -2709,6 +2808,7 @@ module Aws::AppMesh
|
|
2709
2808
|
# resp.gateway_route.spec.http_route.action.rewrite.path.exact #=> String
|
2710
2809
|
# resp.gateway_route.spec.http_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
|
2711
2810
|
# resp.gateway_route.spec.http_route.action.rewrite.prefix.value #=> String
|
2811
|
+
# resp.gateway_route.spec.http_route.action.target.port #=> Integer
|
2712
2812
|
# resp.gateway_route.spec.http_route.action.target.virtual_service.virtual_service_name #=> String
|
2713
2813
|
# resp.gateway_route.spec.http_route.match.headers #=> Array
|
2714
2814
|
# resp.gateway_route.spec.http_route.match.headers[0].invert #=> Boolean
|
@@ -2724,6 +2824,7 @@ module Aws::AppMesh
|
|
2724
2824
|
# resp.gateway_route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
2725
2825
|
# resp.gateway_route.spec.http_route.match.path.exact #=> String
|
2726
2826
|
# resp.gateway_route.spec.http_route.match.path.regex #=> String
|
2827
|
+
# resp.gateway_route.spec.http_route.match.port #=> Integer
|
2727
2828
|
# resp.gateway_route.spec.http_route.match.prefix #=> String
|
2728
2829
|
# resp.gateway_route.spec.http_route.match.query_parameters #=> Array
|
2729
2830
|
# resp.gateway_route.spec.http_route.match.query_parameters[0].match.exact #=> String
|
@@ -2836,6 +2937,7 @@ module Aws::AppMesh
|
|
2836
2937
|
# resp.route.metadata.version #=> Integer
|
2837
2938
|
# resp.route.route_name #=> String
|
2838
2939
|
# resp.route.spec.grpc_route.action.weighted_targets #=> Array
|
2940
|
+
# resp.route.spec.grpc_route.action.weighted_targets[0].port #=> Integer
|
2839
2941
|
# resp.route.spec.grpc_route.action.weighted_targets[0].virtual_node #=> String
|
2840
2942
|
# resp.route.spec.grpc_route.action.weighted_targets[0].weight #=> Integer
|
2841
2943
|
# resp.route.spec.grpc_route.match.metadata #=> Array
|
@@ -2848,6 +2950,7 @@ module Aws::AppMesh
|
|
2848
2950
|
# resp.route.spec.grpc_route.match.metadata[0].match.suffix #=> String
|
2849
2951
|
# resp.route.spec.grpc_route.match.metadata[0].name #=> String
|
2850
2952
|
# resp.route.spec.grpc_route.match.method_name #=> String
|
2953
|
+
# resp.route.spec.grpc_route.match.port #=> Integer
|
2851
2954
|
# resp.route.spec.grpc_route.match.service_name #=> String
|
2852
2955
|
# resp.route.spec.grpc_route.retry_policy.grpc_retry_events #=> Array
|
2853
2956
|
# resp.route.spec.grpc_route.retry_policy.grpc_retry_events[0] #=> String, one of "cancelled", "deadline-exceeded", "internal", "resource-exhausted", "unavailable"
|
@@ -2863,6 +2966,7 @@ module Aws::AppMesh
|
|
2863
2966
|
# resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "s", "ms"
|
2864
2967
|
# resp.route.spec.grpc_route.timeout.per_request.value #=> Integer
|
2865
2968
|
# resp.route.spec.http2_route.action.weighted_targets #=> Array
|
2969
|
+
# resp.route.spec.http2_route.action.weighted_targets[0].port #=> Integer
|
2866
2970
|
# resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
|
2867
2971
|
# resp.route.spec.http2_route.action.weighted_targets[0].weight #=> Integer
|
2868
2972
|
# resp.route.spec.http2_route.match.headers #=> Array
|
@@ -2877,6 +2981,7 @@ module Aws::AppMesh
|
|
2877
2981
|
# resp.route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
2878
2982
|
# resp.route.spec.http2_route.match.path.exact #=> String
|
2879
2983
|
# resp.route.spec.http2_route.match.path.regex #=> String
|
2984
|
+
# resp.route.spec.http2_route.match.port #=> Integer
|
2880
2985
|
# resp.route.spec.http2_route.match.prefix #=> String
|
2881
2986
|
# resp.route.spec.http2_route.match.query_parameters #=> Array
|
2882
2987
|
# resp.route.spec.http2_route.match.query_parameters[0].match.exact #=> String
|
@@ -2894,6 +2999,7 @@ module Aws::AppMesh
|
|
2894
2999
|
# resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "s", "ms"
|
2895
3000
|
# resp.route.spec.http2_route.timeout.per_request.value #=> Integer
|
2896
3001
|
# resp.route.spec.http_route.action.weighted_targets #=> Array
|
3002
|
+
# resp.route.spec.http_route.action.weighted_targets[0].port #=> Integer
|
2897
3003
|
# resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
|
2898
3004
|
# resp.route.spec.http_route.action.weighted_targets[0].weight #=> Integer
|
2899
3005
|
# resp.route.spec.http_route.match.headers #=> Array
|
@@ -2908,6 +3014,7 @@ module Aws::AppMesh
|
|
2908
3014
|
# resp.route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
2909
3015
|
# resp.route.spec.http_route.match.path.exact #=> String
|
2910
3016
|
# resp.route.spec.http_route.match.path.regex #=> String
|
3017
|
+
# resp.route.spec.http_route.match.port #=> Integer
|
2911
3018
|
# resp.route.spec.http_route.match.prefix #=> String
|
2912
3019
|
# resp.route.spec.http_route.match.query_parameters #=> Array
|
2913
3020
|
# resp.route.spec.http_route.match.query_parameters[0].match.exact #=> String
|
@@ -2926,8 +3033,10 @@ module Aws::AppMesh
|
|
2926
3033
|
# resp.route.spec.http_route.timeout.per_request.value #=> Integer
|
2927
3034
|
# resp.route.spec.priority #=> Integer
|
2928
3035
|
# resp.route.spec.tcp_route.action.weighted_targets #=> Array
|
3036
|
+
# resp.route.spec.tcp_route.action.weighted_targets[0].port #=> Integer
|
2929
3037
|
# resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
|
2930
3038
|
# resp.route.spec.tcp_route.action.weighted_targets[0].weight #=> Integer
|
3039
|
+
# resp.route.spec.tcp_route.match.port #=> Integer
|
2931
3040
|
# resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "s", "ms"
|
2932
3041
|
# resp.route.spec.tcp_route.timeout.idle.value #=> Integer
|
2933
3042
|
# resp.route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
@@ -3017,6 +3126,10 @@ module Aws::AppMesh
|
|
3017
3126
|
# resp.virtual_gateway.spec.listeners[0].tls.validation.subject_alternative_names.match.exact[0] #=> String
|
3018
3127
|
# resp.virtual_gateway.spec.listeners[0].tls.validation.trust.file.certificate_chain #=> String
|
3019
3128
|
# resp.virtual_gateway.spec.listeners[0].tls.validation.trust.sds.secret_name #=> String
|
3129
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.json #=> Array
|
3130
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.json[0].key #=> String
|
3131
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.json[0].value #=> String
|
3132
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.text #=> String
|
3020
3133
|
# resp.virtual_gateway.spec.logging.access_log.file.path #=> String
|
3021
3134
|
# resp.virtual_gateway.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
3022
3135
|
# resp.virtual_gateway.virtual_gateway_name #=> String
|
@@ -3140,6 +3253,10 @@ module Aws::AppMesh
|
|
3140
3253
|
# resp.virtual_node.spec.listeners[0].tls.validation.subject_alternative_names.match.exact[0] #=> String
|
3141
3254
|
# resp.virtual_node.spec.listeners[0].tls.validation.trust.file.certificate_chain #=> String
|
3142
3255
|
# resp.virtual_node.spec.listeners[0].tls.validation.trust.sds.secret_name #=> String
|
3256
|
+
# resp.virtual_node.spec.logging.access_log.file.format.json #=> Array
|
3257
|
+
# resp.virtual_node.spec.logging.access_log.file.format.json[0].key #=> String
|
3258
|
+
# resp.virtual_node.spec.logging.access_log.file.format.json[0].value #=> String
|
3259
|
+
# resp.virtual_node.spec.logging.access_log.file.format.text #=> String
|
3143
3260
|
# resp.virtual_node.spec.logging.access_log.file.path #=> String
|
3144
3261
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
|
3145
3262
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
|
@@ -3925,6 +4042,7 @@ module Aws::AppMesh
|
|
3925
4042
|
# },
|
3926
4043
|
# },
|
3927
4044
|
# target: { # required
|
4045
|
+
# port: 1,
|
3928
4046
|
# virtual_service: { # required
|
3929
4047
|
# virtual_service_name: "ResourceName", # required
|
3930
4048
|
# },
|
@@ -3951,6 +4069,7 @@ module Aws::AppMesh
|
|
3951
4069
|
# name: "HeaderName", # required
|
3952
4070
|
# },
|
3953
4071
|
# ],
|
4072
|
+
# port: 1,
|
3954
4073
|
# service_name: "ServiceName",
|
3955
4074
|
# },
|
3956
4075
|
# },
|
@@ -3969,6 +4088,7 @@ module Aws::AppMesh
|
|
3969
4088
|
# },
|
3970
4089
|
# },
|
3971
4090
|
# target: { # required
|
4091
|
+
# port: 1,
|
3972
4092
|
# virtual_service: { # required
|
3973
4093
|
# virtual_service_name: "ResourceName", # required
|
3974
4094
|
# },
|
@@ -4000,6 +4120,7 @@ module Aws::AppMesh
|
|
4000
4120
|
# exact: "HttpPathExact",
|
4001
4121
|
# regex: "HttpPathRegex",
|
4002
4122
|
# },
|
4123
|
+
# port: 1,
|
4003
4124
|
# prefix: "String",
|
4004
4125
|
# query_parameters: [
|
4005
4126
|
# {
|
@@ -4026,6 +4147,7 @@ module Aws::AppMesh
|
|
4026
4147
|
# },
|
4027
4148
|
# },
|
4028
4149
|
# target: { # required
|
4150
|
+
# port: 1,
|
4029
4151
|
# virtual_service: { # required
|
4030
4152
|
# virtual_service_name: "ResourceName", # required
|
4031
4153
|
# },
|
@@ -4057,6 +4179,7 @@ module Aws::AppMesh
|
|
4057
4179
|
# exact: "HttpPathExact",
|
4058
4180
|
# regex: "HttpPathRegex",
|
4059
4181
|
# },
|
4182
|
+
# port: 1,
|
4060
4183
|
# prefix: "String",
|
4061
4184
|
# query_parameters: [
|
4062
4185
|
# {
|
@@ -4085,6 +4208,7 @@ module Aws::AppMesh
|
|
4085
4208
|
# resp.gateway_route.metadata.uid #=> String
|
4086
4209
|
# resp.gateway_route.metadata.version #=> Integer
|
4087
4210
|
# resp.gateway_route.spec.grpc_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
|
4211
|
+
# resp.gateway_route.spec.grpc_route.action.target.port #=> Integer
|
4088
4212
|
# resp.gateway_route.spec.grpc_route.action.target.virtual_service.virtual_service_name #=> String
|
4089
4213
|
# resp.gateway_route.spec.grpc_route.match.hostname.exact #=> String
|
4090
4214
|
# resp.gateway_route.spec.grpc_route.match.hostname.suffix #=> String
|
@@ -4097,11 +4221,13 @@ module Aws::AppMesh
|
|
4097
4221
|
# resp.gateway_route.spec.grpc_route.match.metadata[0].match.regex #=> String
|
4098
4222
|
# resp.gateway_route.spec.grpc_route.match.metadata[0].match.suffix #=> String
|
4099
4223
|
# resp.gateway_route.spec.grpc_route.match.metadata[0].name #=> String
|
4224
|
+
# resp.gateway_route.spec.grpc_route.match.port #=> Integer
|
4100
4225
|
# resp.gateway_route.spec.grpc_route.match.service_name #=> String
|
4101
4226
|
# resp.gateway_route.spec.http2_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
|
4102
4227
|
# resp.gateway_route.spec.http2_route.action.rewrite.path.exact #=> String
|
4103
4228
|
# resp.gateway_route.spec.http2_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
|
4104
4229
|
# resp.gateway_route.spec.http2_route.action.rewrite.prefix.value #=> String
|
4230
|
+
# resp.gateway_route.spec.http2_route.action.target.port #=> Integer
|
4105
4231
|
# resp.gateway_route.spec.http2_route.action.target.virtual_service.virtual_service_name #=> String
|
4106
4232
|
# resp.gateway_route.spec.http2_route.match.headers #=> Array
|
4107
4233
|
# resp.gateway_route.spec.http2_route.match.headers[0].invert #=> Boolean
|
@@ -4117,6 +4243,7 @@ module Aws::AppMesh
|
|
4117
4243
|
# resp.gateway_route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
4118
4244
|
# resp.gateway_route.spec.http2_route.match.path.exact #=> String
|
4119
4245
|
# resp.gateway_route.spec.http2_route.match.path.regex #=> String
|
4246
|
+
# resp.gateway_route.spec.http2_route.match.port #=> Integer
|
4120
4247
|
# resp.gateway_route.spec.http2_route.match.prefix #=> String
|
4121
4248
|
# resp.gateway_route.spec.http2_route.match.query_parameters #=> Array
|
4122
4249
|
# resp.gateway_route.spec.http2_route.match.query_parameters[0].match.exact #=> String
|
@@ -4125,6 +4252,7 @@ module Aws::AppMesh
|
|
4125
4252
|
# resp.gateway_route.spec.http_route.action.rewrite.path.exact #=> String
|
4126
4253
|
# resp.gateway_route.spec.http_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
|
4127
4254
|
# resp.gateway_route.spec.http_route.action.rewrite.prefix.value #=> String
|
4255
|
+
# resp.gateway_route.spec.http_route.action.target.port #=> Integer
|
4128
4256
|
# resp.gateway_route.spec.http_route.action.target.virtual_service.virtual_service_name #=> String
|
4129
4257
|
# resp.gateway_route.spec.http_route.match.headers #=> Array
|
4130
4258
|
# resp.gateway_route.spec.http_route.match.headers[0].invert #=> Boolean
|
@@ -4140,6 +4268,7 @@ module Aws::AppMesh
|
|
4140
4268
|
# resp.gateway_route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
4141
4269
|
# resp.gateway_route.spec.http_route.match.path.exact #=> String
|
4142
4270
|
# resp.gateway_route.spec.http_route.match.path.regex #=> String
|
4271
|
+
# resp.gateway_route.spec.http_route.match.port #=> Integer
|
4143
4272
|
# resp.gateway_route.spec.http_route.match.prefix #=> String
|
4144
4273
|
# resp.gateway_route.spec.http_route.match.query_parameters #=> Array
|
4145
4274
|
# resp.gateway_route.spec.http_route.match.query_parameters[0].match.exact #=> String
|
@@ -4265,6 +4394,7 @@ module Aws::AppMesh
|
|
4265
4394
|
# action: { # required
|
4266
4395
|
# weighted_targets: [ # required
|
4267
4396
|
# {
|
4397
|
+
# port: 1,
|
4268
4398
|
# virtual_node: "ResourceName", # required
|
4269
4399
|
# weight: 1, # required
|
4270
4400
|
# },
|
@@ -4288,6 +4418,7 @@ module Aws::AppMesh
|
|
4288
4418
|
# },
|
4289
4419
|
# ],
|
4290
4420
|
# method_name: "MethodName",
|
4421
|
+
# port: 1,
|
4291
4422
|
# service_name: "ServiceName",
|
4292
4423
|
# },
|
4293
4424
|
# retry_policy: {
|
@@ -4315,6 +4446,7 @@ module Aws::AppMesh
|
|
4315
4446
|
# action: { # required
|
4316
4447
|
# weighted_targets: [ # required
|
4317
4448
|
# {
|
4449
|
+
# port: 1,
|
4318
4450
|
# virtual_node: "ResourceName", # required
|
4319
4451
|
# weight: 1, # required
|
4320
4452
|
# },
|
@@ -4342,6 +4474,7 @@ module Aws::AppMesh
|
|
4342
4474
|
# exact: "HttpPathExact",
|
4343
4475
|
# regex: "HttpPathRegex",
|
4344
4476
|
# },
|
4477
|
+
# port: 1,
|
4345
4478
|
# prefix: "String",
|
4346
4479
|
# query_parameters: [
|
4347
4480
|
# {
|
@@ -4377,6 +4510,7 @@ module Aws::AppMesh
|
|
4377
4510
|
# action: { # required
|
4378
4511
|
# weighted_targets: [ # required
|
4379
4512
|
# {
|
4513
|
+
# port: 1,
|
4380
4514
|
# virtual_node: "ResourceName", # required
|
4381
4515
|
# weight: 1, # required
|
4382
4516
|
# },
|
@@ -4404,6 +4538,7 @@ module Aws::AppMesh
|
|
4404
4538
|
# exact: "HttpPathExact",
|
4405
4539
|
# regex: "HttpPathRegex",
|
4406
4540
|
# },
|
4541
|
+
# port: 1,
|
4407
4542
|
# prefix: "String",
|
4408
4543
|
# query_parameters: [
|
4409
4544
|
# {
|
@@ -4440,11 +4575,15 @@ module Aws::AppMesh
|
|
4440
4575
|
# action: { # required
|
4441
4576
|
# weighted_targets: [ # required
|
4442
4577
|
# {
|
4578
|
+
# port: 1,
|
4443
4579
|
# virtual_node: "ResourceName", # required
|
4444
4580
|
# weight: 1, # required
|
4445
4581
|
# },
|
4446
4582
|
# ],
|
4447
4583
|
# },
|
4584
|
+
# match: {
|
4585
|
+
# port: 1,
|
4586
|
+
# },
|
4448
4587
|
# timeout: {
|
4449
4588
|
# idle: {
|
4450
4589
|
# unit: "s", # accepts s, ms
|
@@ -4468,6 +4607,7 @@ module Aws::AppMesh
|
|
4468
4607
|
# resp.route.metadata.version #=> Integer
|
4469
4608
|
# resp.route.route_name #=> String
|
4470
4609
|
# resp.route.spec.grpc_route.action.weighted_targets #=> Array
|
4610
|
+
# resp.route.spec.grpc_route.action.weighted_targets[0].port #=> Integer
|
4471
4611
|
# resp.route.spec.grpc_route.action.weighted_targets[0].virtual_node #=> String
|
4472
4612
|
# resp.route.spec.grpc_route.action.weighted_targets[0].weight #=> Integer
|
4473
4613
|
# resp.route.spec.grpc_route.match.metadata #=> Array
|
@@ -4480,6 +4620,7 @@ module Aws::AppMesh
|
|
4480
4620
|
# resp.route.spec.grpc_route.match.metadata[0].match.suffix #=> String
|
4481
4621
|
# resp.route.spec.grpc_route.match.metadata[0].name #=> String
|
4482
4622
|
# resp.route.spec.grpc_route.match.method_name #=> String
|
4623
|
+
# resp.route.spec.grpc_route.match.port #=> Integer
|
4483
4624
|
# resp.route.spec.grpc_route.match.service_name #=> String
|
4484
4625
|
# resp.route.spec.grpc_route.retry_policy.grpc_retry_events #=> Array
|
4485
4626
|
# resp.route.spec.grpc_route.retry_policy.grpc_retry_events[0] #=> String, one of "cancelled", "deadline-exceeded", "internal", "resource-exhausted", "unavailable"
|
@@ -4495,6 +4636,7 @@ module Aws::AppMesh
|
|
4495
4636
|
# resp.route.spec.grpc_route.timeout.per_request.unit #=> String, one of "s", "ms"
|
4496
4637
|
# resp.route.spec.grpc_route.timeout.per_request.value #=> Integer
|
4497
4638
|
# resp.route.spec.http2_route.action.weighted_targets #=> Array
|
4639
|
+
# resp.route.spec.http2_route.action.weighted_targets[0].port #=> Integer
|
4498
4640
|
# resp.route.spec.http2_route.action.weighted_targets[0].virtual_node #=> String
|
4499
4641
|
# resp.route.spec.http2_route.action.weighted_targets[0].weight #=> Integer
|
4500
4642
|
# resp.route.spec.http2_route.match.headers #=> Array
|
@@ -4509,6 +4651,7 @@ module Aws::AppMesh
|
|
4509
4651
|
# resp.route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
4510
4652
|
# resp.route.spec.http2_route.match.path.exact #=> String
|
4511
4653
|
# resp.route.spec.http2_route.match.path.regex #=> String
|
4654
|
+
# resp.route.spec.http2_route.match.port #=> Integer
|
4512
4655
|
# resp.route.spec.http2_route.match.prefix #=> String
|
4513
4656
|
# resp.route.spec.http2_route.match.query_parameters #=> Array
|
4514
4657
|
# resp.route.spec.http2_route.match.query_parameters[0].match.exact #=> String
|
@@ -4526,6 +4669,7 @@ module Aws::AppMesh
|
|
4526
4669
|
# resp.route.spec.http2_route.timeout.per_request.unit #=> String, one of "s", "ms"
|
4527
4670
|
# resp.route.spec.http2_route.timeout.per_request.value #=> Integer
|
4528
4671
|
# resp.route.spec.http_route.action.weighted_targets #=> Array
|
4672
|
+
# resp.route.spec.http_route.action.weighted_targets[0].port #=> Integer
|
4529
4673
|
# resp.route.spec.http_route.action.weighted_targets[0].virtual_node #=> String
|
4530
4674
|
# resp.route.spec.http_route.action.weighted_targets[0].weight #=> Integer
|
4531
4675
|
# resp.route.spec.http_route.match.headers #=> Array
|
@@ -4540,6 +4684,7 @@ module Aws::AppMesh
|
|
4540
4684
|
# resp.route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
|
4541
4685
|
# resp.route.spec.http_route.match.path.exact #=> String
|
4542
4686
|
# resp.route.spec.http_route.match.path.regex #=> String
|
4687
|
+
# resp.route.spec.http_route.match.port #=> Integer
|
4543
4688
|
# resp.route.spec.http_route.match.prefix #=> String
|
4544
4689
|
# resp.route.spec.http_route.match.query_parameters #=> Array
|
4545
4690
|
# resp.route.spec.http_route.match.query_parameters[0].match.exact #=> String
|
@@ -4558,8 +4703,10 @@ module Aws::AppMesh
|
|
4558
4703
|
# resp.route.spec.http_route.timeout.per_request.value #=> Integer
|
4559
4704
|
# resp.route.spec.priority #=> Integer
|
4560
4705
|
# resp.route.spec.tcp_route.action.weighted_targets #=> Array
|
4706
|
+
# resp.route.spec.tcp_route.action.weighted_targets[0].port #=> Integer
|
4561
4707
|
# resp.route.spec.tcp_route.action.weighted_targets[0].virtual_node #=> String
|
4562
4708
|
# resp.route.spec.tcp_route.action.weighted_targets[0].weight #=> Integer
|
4709
|
+
# resp.route.spec.tcp_route.match.port #=> Integer
|
4563
4710
|
# resp.route.spec.tcp_route.timeout.idle.unit #=> String, one of "s", "ms"
|
4564
4711
|
# resp.route.spec.tcp_route.timeout.idle.value #=> Integer
|
4565
4712
|
# resp.route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
@@ -4712,6 +4859,15 @@ module Aws::AppMesh
|
|
4712
4859
|
# logging: {
|
4713
4860
|
# access_log: {
|
4714
4861
|
# file: {
|
4862
|
+
# format: {
|
4863
|
+
# json: [
|
4864
|
+
# {
|
4865
|
+
# key: "JsonKey", # required
|
4866
|
+
# value: "JsonValue", # required
|
4867
|
+
# },
|
4868
|
+
# ],
|
4869
|
+
# text: "TextFormat",
|
4870
|
+
# },
|
4715
4871
|
# path: "FilePath", # required
|
4716
4872
|
# },
|
4717
4873
|
# },
|
@@ -4765,6 +4921,10 @@ module Aws::AppMesh
|
|
4765
4921
|
# resp.virtual_gateway.spec.listeners[0].tls.validation.subject_alternative_names.match.exact[0] #=> String
|
4766
4922
|
# resp.virtual_gateway.spec.listeners[0].tls.validation.trust.file.certificate_chain #=> String
|
4767
4923
|
# resp.virtual_gateway.spec.listeners[0].tls.validation.trust.sds.secret_name #=> String
|
4924
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.json #=> Array
|
4925
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.json[0].key #=> String
|
4926
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.json[0].value #=> String
|
4927
|
+
# resp.virtual_gateway.spec.logging.access_log.file.format.text #=> String
|
4768
4928
|
# resp.virtual_gateway.spec.logging.access_log.file.path #=> String
|
4769
4929
|
# resp.virtual_gateway.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
4770
4930
|
# resp.virtual_gateway.virtual_gateway_name #=> String
|
@@ -5009,6 +5169,15 @@ module Aws::AppMesh
|
|
5009
5169
|
# logging: {
|
5010
5170
|
# access_log: {
|
5011
5171
|
# file: {
|
5172
|
+
# format: {
|
5173
|
+
# json: [
|
5174
|
+
# {
|
5175
|
+
# key: "JsonKey", # required
|
5176
|
+
# value: "JsonValue", # required
|
5177
|
+
# },
|
5178
|
+
# ],
|
5179
|
+
# text: "TextFormat",
|
5180
|
+
# },
|
5012
5181
|
# path: "FilePath", # required
|
5013
5182
|
# },
|
5014
5183
|
# },
|
@@ -5115,6 +5284,10 @@ module Aws::AppMesh
|
|
5115
5284
|
# resp.virtual_node.spec.listeners[0].tls.validation.subject_alternative_names.match.exact[0] #=> String
|
5116
5285
|
# resp.virtual_node.spec.listeners[0].tls.validation.trust.file.certificate_chain #=> String
|
5117
5286
|
# resp.virtual_node.spec.listeners[0].tls.validation.trust.sds.secret_name #=> String
|
5287
|
+
# resp.virtual_node.spec.logging.access_log.file.format.json #=> Array
|
5288
|
+
# resp.virtual_node.spec.logging.access_log.file.format.json[0].key #=> String
|
5289
|
+
# resp.virtual_node.spec.logging.access_log.file.format.json[0].value #=> String
|
5290
|
+
# resp.virtual_node.spec.logging.access_log.file.format.text #=> String
|
5118
5291
|
# resp.virtual_node.spec.logging.access_log.file.path #=> String
|
5119
5292
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
|
5120
5293
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
|
@@ -5305,7 +5478,7 @@ module Aws::AppMesh
|
|
5305
5478
|
params: params,
|
5306
5479
|
config: config)
|
5307
5480
|
context[:gem_name] = 'aws-sdk-appmesh'
|
5308
|
-
context[:gem_version] = '1.
|
5481
|
+
context[:gem_version] = '1.48.0'
|
5309
5482
|
Seahorse::Client::Request.new(handlers, context)
|
5310
5483
|
end
|
5311
5484
|
|