aws-sdk-appmesh 1.35.0 → 1.36.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: 5941177fadb0bd615f1f33bdd32e555a9017227224aea3abd3f3132ad4b82601
4
- data.tar.gz: 818bf7f0aefab447536de7d6552da1c3cb327acfe2379dee119ccd699176c446
3
+ metadata.gz: 3e117632a953b2d47016b9a79f238ab18c1e2be91458db38546a03a6d230e334
4
+ data.tar.gz: f0210dd1eb9a5969e2d61081607c68754422da9a648d139074fb65859eae4a49
5
5
  SHA512:
6
- metadata.gz: 5ed2ddad9c7e65b00c8a3a204edea44a490fd722c457505f7fd0f9f579b51b839df3fd2b164a0db4e904827086cec746aadc0a59ea1ee6e8f6ea4b56afb647d6
7
- data.tar.gz: a1f76bc308699d2764218dee29789264bf933b54cfc7f8a6f6a0465f96cd18f18e33151ce543db132837f60e772fb50c85593a8ee0c95bbba21cbd588c279450
6
+ metadata.gz: 946b0c63739d4448cd3f80bb9a480f2866e125c81dadde58b86fce46bfee3969951fc2918701655d460f241c9bda4246681cfffdea5a036281dfa3906c8a935c
7
+ data.tar.gz: 48bf8239924d9da9424aff2692a365dad9e43dc217d3bdde8ed10527da738ef2a2eed44aa3ab44d1d07e8b469c22a8b5d295be0d7d65b7432b5e6174e62e69d3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.36.0 (2021-06-10)
5
+ ------------------
6
+
7
+ * Feature - AppMesh now supports additional routing capabilities in match and rewrites for Gateway Routes and Routes. Additionally, App Mesh also supports specifying DNS Response Types in Virtual Nodes.
8
+
4
9
  1.35.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.35.0
1
+ 1.36.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-appmesh/customizations'
48
48
  # @!group service
49
49
  module Aws::AppMesh
50
50
 
51
- GEM_VERSION = '1.35.0'
51
+ GEM_VERSION = '1.36.0'
52
52
 
53
53
  end
@@ -393,6 +393,11 @@ module Aws::AppMesh
393
393
  # spec: { # required
394
394
  # grpc_route: {
395
395
  # action: { # required
396
+ # rewrite: {
397
+ # hostname: {
398
+ # default_target_hostname: "ENABLED", # accepts ENABLED, DISABLED
399
+ # },
400
+ # },
396
401
  # target: { # required
397
402
  # virtual_service: { # required
398
403
  # virtual_service_name: "ResourceName", # required
@@ -400,11 +405,43 @@ module Aws::AppMesh
400
405
  # },
401
406
  # },
402
407
  # match: { # required
408
+ # hostname: {
409
+ # exact: "ExactHostName",
410
+ # suffix: "SuffixHostname",
411
+ # },
412
+ # metadata: [
413
+ # {
414
+ # invert: false,
415
+ # match: {
416
+ # exact: "HeaderMatch",
417
+ # prefix: "HeaderMatch",
418
+ # range: {
419
+ # end: 1, # required
420
+ # start: 1, # required
421
+ # },
422
+ # regex: "HeaderMatch",
423
+ # suffix: "HeaderMatch",
424
+ # },
425
+ # name: "HeaderName", # required
426
+ # },
427
+ # ],
403
428
  # service_name: "ServiceName",
404
429
  # },
405
430
  # },
406
431
  # http2_route: {
407
432
  # action: { # required
433
+ # rewrite: {
434
+ # hostname: {
435
+ # default_target_hostname: "ENABLED", # accepts ENABLED, DISABLED
436
+ # },
437
+ # path: {
438
+ # exact: "HttpPathExact",
439
+ # },
440
+ # prefix: {
441
+ # default_prefix: "ENABLED", # accepts ENABLED, DISABLED
442
+ # value: "HttpGatewayRoutePrefix",
443
+ # },
444
+ # },
408
445
  # target: { # required
409
446
  # virtual_service: { # required
410
447
  # virtual_service_name: "ResourceName", # required
@@ -412,11 +449,56 @@ module Aws::AppMesh
412
449
  # },
413
450
  # },
414
451
  # match: { # required
415
- # prefix: "String", # required
452
+ # headers: [
453
+ # {
454
+ # invert: false,
455
+ # match: {
456
+ # exact: "HeaderMatch",
457
+ # prefix: "HeaderMatch",
458
+ # range: {
459
+ # end: 1, # required
460
+ # start: 1, # required
461
+ # },
462
+ # regex: "HeaderMatch",
463
+ # suffix: "HeaderMatch",
464
+ # },
465
+ # name: "HeaderName", # required
466
+ # },
467
+ # ],
468
+ # hostname: {
469
+ # exact: "ExactHostName",
470
+ # suffix: "SuffixHostname",
471
+ # },
472
+ # method: "GET", # accepts GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH
473
+ # path: {
474
+ # exact: "HttpPathExact",
475
+ # regex: "HttpPathRegex",
476
+ # },
477
+ # prefix: "String",
478
+ # query_parameters: [
479
+ # {
480
+ # match: {
481
+ # exact: "String",
482
+ # },
483
+ # name: "QueryParameterName", # required
484
+ # },
485
+ # ],
416
486
  # },
417
487
  # },
418
488
  # http_route: {
419
489
  # action: { # required
490
+ # rewrite: {
491
+ # hostname: {
492
+ # default_target_hostname: "ENABLED", # accepts ENABLED, DISABLED
493
+ # },
494
+ # path: {
495
+ # exact: "HttpPathExact",
496
+ # },
497
+ # prefix: {
498
+ # default_prefix: "ENABLED", # accepts ENABLED, DISABLED
499
+ # value: "HttpGatewayRoutePrefix",
500
+ # },
501
+ # },
420
502
  # target: { # required
421
503
  # virtual_service: { # required
422
504
  # virtual_service_name: "ResourceName", # required
@@ -424,9 +506,43 @@ module Aws::AppMesh
424
506
  # },
425
507
  # },
426
508
  # match: { # required
427
- # prefix: "String", # required
509
+ # headers: [
510
+ # {
511
+ # invert: false,
512
+ # match: {
513
+ # exact: "HeaderMatch",
514
+ # prefix: "HeaderMatch",
515
+ # range: {
516
+ # end: 1, # required
517
+ # start: 1, # required
518
+ # },
519
+ # regex: "HeaderMatch",
520
+ # suffix: "HeaderMatch",
521
+ # },
522
+ # name: "HeaderName", # required
523
+ # },
524
+ # ],
525
+ # hostname: {
526
+ # exact: "ExactHostName",
527
+ # suffix: "SuffixHostname",
528
+ # },
529
+ # method: "GET", # accepts GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH
530
+ # path: {
531
+ # exact: "HttpPathExact",
532
+ # regex: "HttpPathRegex",
533
+ # },
534
+ # prefix: "String",
535
+ # query_parameters: [
536
+ # {
537
+ # match: {
538
+ # exact: "String",
539
+ # },
540
+ # name: "QueryParameterName", # required
541
+ # },
542
+ # ],
428
543
  # },
429
544
  # },
545
+ # priority: 1,
430
546
  # },
431
547
  # tags: [
432
548
  # {
@@ -448,12 +564,67 @@ module Aws::AppMesh
448
564
  # resp.gateway_route.metadata.resource_owner #=> String
449
565
  # resp.gateway_route.metadata.uid #=> String
450
566
  # resp.gateway_route.metadata.version #=> Integer
567
+ # resp.gateway_route.spec.grpc_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
451
568
  # resp.gateway_route.spec.grpc_route.action.target.virtual_service.virtual_service_name #=> String
569
+ # resp.gateway_route.spec.grpc_route.match.hostname.exact #=> String
570
+ # resp.gateway_route.spec.grpc_route.match.hostname.suffix #=> String
571
+ # resp.gateway_route.spec.grpc_route.match.metadata #=> Array
572
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].invert #=> Boolean
573
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.exact #=> String
574
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.prefix #=> String
575
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.range.end #=> Integer
576
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.range.start #=> Integer
577
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.regex #=> String
578
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.suffix #=> String
579
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].name #=> String
452
580
  # resp.gateway_route.spec.grpc_route.match.service_name #=> String
581
+ # resp.gateway_route.spec.http2_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
582
+ # resp.gateway_route.spec.http2_route.action.rewrite.path.exact #=> String
583
+ # resp.gateway_route.spec.http2_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
584
+ # resp.gateway_route.spec.http2_route.action.rewrite.prefix.value #=> String
453
585
  # resp.gateway_route.spec.http2_route.action.target.virtual_service.virtual_service_name #=> String
586
+ # resp.gateway_route.spec.http2_route.match.headers #=> Array
587
+ # resp.gateway_route.spec.http2_route.match.headers[0].invert #=> Boolean
588
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.exact #=> String
589
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.prefix #=> String
590
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.range.end #=> Integer
591
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.range.start #=> Integer
592
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.regex #=> String
593
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.suffix #=> String
594
+ # resp.gateway_route.spec.http2_route.match.headers[0].name #=> String
595
+ # resp.gateway_route.spec.http2_route.match.hostname.exact #=> String
596
+ # resp.gateway_route.spec.http2_route.match.hostname.suffix #=> String
597
+ # resp.gateway_route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
598
+ # resp.gateway_route.spec.http2_route.match.path.exact #=> String
599
+ # resp.gateway_route.spec.http2_route.match.path.regex #=> String
454
600
  # resp.gateway_route.spec.http2_route.match.prefix #=> String
601
+ # resp.gateway_route.spec.http2_route.match.query_parameters #=> Array
602
+ # resp.gateway_route.spec.http2_route.match.query_parameters[0].match.exact #=> String
603
+ # resp.gateway_route.spec.http2_route.match.query_parameters[0].name #=> String
604
+ # resp.gateway_route.spec.http_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
605
+ # resp.gateway_route.spec.http_route.action.rewrite.path.exact #=> String
606
+ # resp.gateway_route.spec.http_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
607
+ # resp.gateway_route.spec.http_route.action.rewrite.prefix.value #=> String
455
608
  # resp.gateway_route.spec.http_route.action.target.virtual_service.virtual_service_name #=> String
609
+ # resp.gateway_route.spec.http_route.match.headers #=> Array
610
+ # resp.gateway_route.spec.http_route.match.headers[0].invert #=> Boolean
611
+ # resp.gateway_route.spec.http_route.match.headers[0].match.exact #=> String
612
+ # resp.gateway_route.spec.http_route.match.headers[0].match.prefix #=> String
613
+ # resp.gateway_route.spec.http_route.match.headers[0].match.range.end #=> Integer
614
+ # resp.gateway_route.spec.http_route.match.headers[0].match.range.start #=> Integer
615
+ # resp.gateway_route.spec.http_route.match.headers[0].match.regex #=> String
616
+ # resp.gateway_route.spec.http_route.match.headers[0].match.suffix #=> String
617
+ # resp.gateway_route.spec.http_route.match.headers[0].name #=> String
618
+ # resp.gateway_route.spec.http_route.match.hostname.exact #=> String
619
+ # resp.gateway_route.spec.http_route.match.hostname.suffix #=> String
620
+ # resp.gateway_route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
621
+ # resp.gateway_route.spec.http_route.match.path.exact #=> String
622
+ # resp.gateway_route.spec.http_route.match.path.regex #=> String
456
623
  # resp.gateway_route.spec.http_route.match.prefix #=> String
624
+ # resp.gateway_route.spec.http_route.match.query_parameters #=> Array
625
+ # resp.gateway_route.spec.http_route.match.query_parameters[0].match.exact #=> String
626
+ # resp.gateway_route.spec.http_route.match.query_parameters[0].name #=> String
627
+ # resp.gateway_route.spec.priority #=> Integer
457
628
  # resp.gateway_route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
458
629
  # resp.gateway_route.virtual_gateway_name #=> String
459
630
  #
@@ -685,7 +856,19 @@ module Aws::AppMesh
685
856
  # },
686
857
  # ],
687
858
  # method: "GET", # accepts GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH
688
- # prefix: "String", # required
859
+ # path: {
860
+ # exact: "HttpPathExact",
861
+ # regex: "HttpPathRegex",
862
+ # },
863
+ # prefix: "String",
864
+ # query_parameters: [
865
+ # {
866
+ # match: {
867
+ # exact: "String",
868
+ # },
869
+ # name: "QueryParameterName", # required
870
+ # },
871
+ # ],
689
872
  # scheme: "http", # accepts http, https
690
873
  # },
691
874
  # retry_policy: {
@@ -735,7 +918,19 @@ module Aws::AppMesh
735
918
  # },
736
919
  # ],
737
920
  # method: "GET", # accepts GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH
738
- # prefix: "String", # required
921
+ # path: {
922
+ # exact: "HttpPathExact",
923
+ # regex: "HttpPathRegex",
924
+ # },
925
+ # prefix: "String",
926
+ # query_parameters: [
927
+ # {
928
+ # match: {
929
+ # exact: "String",
930
+ # },
931
+ # name: "QueryParameterName", # required
932
+ # },
933
+ # ],
739
934
  # scheme: "http", # accepts http, https
740
935
  # },
741
936
  # retry_policy: {
@@ -836,7 +1031,12 @@ module Aws::AppMesh
836
1031
  # resp.route.spec.http2_route.match.headers[0].match.suffix #=> String
837
1032
  # resp.route.spec.http2_route.match.headers[0].name #=> String
838
1033
  # resp.route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
1034
+ # resp.route.spec.http2_route.match.path.exact #=> String
1035
+ # resp.route.spec.http2_route.match.path.regex #=> String
839
1036
  # resp.route.spec.http2_route.match.prefix #=> String
1037
+ # resp.route.spec.http2_route.match.query_parameters #=> Array
1038
+ # resp.route.spec.http2_route.match.query_parameters[0].match.exact #=> String
1039
+ # resp.route.spec.http2_route.match.query_parameters[0].name #=> String
840
1040
  # resp.route.spec.http2_route.match.scheme #=> String, one of "http", "https"
841
1041
  # resp.route.spec.http2_route.retry_policy.http_retry_events #=> Array
842
1042
  # resp.route.spec.http2_route.retry_policy.http_retry_events[0] #=> String
@@ -862,7 +1062,12 @@ module Aws::AppMesh
862
1062
  # resp.route.spec.http_route.match.headers[0].match.suffix #=> String
863
1063
  # resp.route.spec.http_route.match.headers[0].name #=> String
864
1064
  # resp.route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
1065
+ # resp.route.spec.http_route.match.path.exact #=> String
1066
+ # resp.route.spec.http_route.match.path.regex #=> String
865
1067
  # resp.route.spec.http_route.match.prefix #=> String
1068
+ # resp.route.spec.http_route.match.query_parameters #=> Array
1069
+ # resp.route.spec.http_route.match.query_parameters[0].match.exact #=> String
1070
+ # resp.route.spec.http_route.match.query_parameters[0].name #=> String
866
1071
  # resp.route.spec.http_route.match.scheme #=> String, one of "http", "https"
867
1072
  # resp.route.spec.http_route.retry_policy.http_retry_events #=> Array
868
1073
  # resp.route.spec.http_route.retry_policy.http_retry_events[0] #=> String
@@ -1151,13 +1356,11 @@ module Aws::AppMesh
1151
1356
  # and traces. You can override this behavior by setting the
1152
1357
  # `APPMESH_RESOURCE_CLUSTER` environment variable with your own name.
1153
1358
  #
1154
- # AWS Cloud Map is not available in the eu-south-1 Region.
1155
- #
1156
1359
  # </note>
1157
1360
  #
1158
1361
  # For more information about virtual nodes, see [Virtual nodes][1]. You
1159
1362
  # must be using `1.15.0` or later of the Envoy image when setting these
1160
- # variables. For more information about App Mesh Envoy variables, see
1363
+ # variables. For more information aboutApp Mesh Envoy variables, see
1161
1364
  # [Envoy image][2] in the AWS App Mesh User Guide.
1162
1365
  #
1163
1366
  #
@@ -1418,6 +1621,7 @@ module Aws::AppMesh
1418
1621
  # },
1419
1622
  # dns: {
1420
1623
  # hostname: "Hostname", # required
1624
+ # response_type: "LOADBALANCER", # accepts LOADBALANCER, ENDPOINTS
1421
1625
  # },
1422
1626
  # },
1423
1627
  # },
@@ -1517,6 +1721,7 @@ module Aws::AppMesh
1517
1721
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.namespace_name #=> String
1518
1722
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.service_name #=> String
1519
1723
  # resp.virtual_node.spec.service_discovery.dns.hostname #=> String
1724
+ # resp.virtual_node.spec.service_discovery.dns.response_type #=> String, one of "LOADBALANCER", "ENDPOINTS"
1520
1725
  # resp.virtual_node.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
1521
1726
  # resp.virtual_node.virtual_node_name #=> String
1522
1727
  #
@@ -1782,12 +1987,67 @@ module Aws::AppMesh
1782
1987
  # resp.gateway_route.metadata.resource_owner #=> String
1783
1988
  # resp.gateway_route.metadata.uid #=> String
1784
1989
  # resp.gateway_route.metadata.version #=> Integer
1990
+ # resp.gateway_route.spec.grpc_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
1785
1991
  # resp.gateway_route.spec.grpc_route.action.target.virtual_service.virtual_service_name #=> String
1992
+ # resp.gateway_route.spec.grpc_route.match.hostname.exact #=> String
1993
+ # resp.gateway_route.spec.grpc_route.match.hostname.suffix #=> String
1994
+ # resp.gateway_route.spec.grpc_route.match.metadata #=> Array
1995
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].invert #=> Boolean
1996
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.exact #=> String
1997
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.prefix #=> String
1998
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.range.end #=> Integer
1999
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.range.start #=> Integer
2000
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.regex #=> String
2001
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.suffix #=> String
2002
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].name #=> String
1786
2003
  # resp.gateway_route.spec.grpc_route.match.service_name #=> String
2004
+ # resp.gateway_route.spec.http2_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
2005
+ # resp.gateway_route.spec.http2_route.action.rewrite.path.exact #=> String
2006
+ # resp.gateway_route.spec.http2_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
2007
+ # resp.gateway_route.spec.http2_route.action.rewrite.prefix.value #=> String
1787
2008
  # resp.gateway_route.spec.http2_route.action.target.virtual_service.virtual_service_name #=> String
2009
+ # resp.gateway_route.spec.http2_route.match.headers #=> Array
2010
+ # resp.gateway_route.spec.http2_route.match.headers[0].invert #=> Boolean
2011
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.exact #=> String
2012
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.prefix #=> String
2013
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.range.end #=> Integer
2014
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.range.start #=> Integer
2015
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.regex #=> String
2016
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.suffix #=> String
2017
+ # resp.gateway_route.spec.http2_route.match.headers[0].name #=> String
2018
+ # resp.gateway_route.spec.http2_route.match.hostname.exact #=> String
2019
+ # resp.gateway_route.spec.http2_route.match.hostname.suffix #=> String
2020
+ # resp.gateway_route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
2021
+ # resp.gateway_route.spec.http2_route.match.path.exact #=> String
2022
+ # resp.gateway_route.spec.http2_route.match.path.regex #=> String
1788
2023
  # resp.gateway_route.spec.http2_route.match.prefix #=> String
2024
+ # resp.gateway_route.spec.http2_route.match.query_parameters #=> Array
2025
+ # resp.gateway_route.spec.http2_route.match.query_parameters[0].match.exact #=> String
2026
+ # resp.gateway_route.spec.http2_route.match.query_parameters[0].name #=> String
2027
+ # resp.gateway_route.spec.http_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
2028
+ # resp.gateway_route.spec.http_route.action.rewrite.path.exact #=> String
2029
+ # resp.gateway_route.spec.http_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
2030
+ # resp.gateway_route.spec.http_route.action.rewrite.prefix.value #=> String
1789
2031
  # resp.gateway_route.spec.http_route.action.target.virtual_service.virtual_service_name #=> String
2032
+ # resp.gateway_route.spec.http_route.match.headers #=> Array
2033
+ # resp.gateway_route.spec.http_route.match.headers[0].invert #=> Boolean
2034
+ # resp.gateway_route.spec.http_route.match.headers[0].match.exact #=> String
2035
+ # resp.gateway_route.spec.http_route.match.headers[0].match.prefix #=> String
2036
+ # resp.gateway_route.spec.http_route.match.headers[0].match.range.end #=> Integer
2037
+ # resp.gateway_route.spec.http_route.match.headers[0].match.range.start #=> Integer
2038
+ # resp.gateway_route.spec.http_route.match.headers[0].match.regex #=> String
2039
+ # resp.gateway_route.spec.http_route.match.headers[0].match.suffix #=> String
2040
+ # resp.gateway_route.spec.http_route.match.headers[0].name #=> String
2041
+ # resp.gateway_route.spec.http_route.match.hostname.exact #=> String
2042
+ # resp.gateway_route.spec.http_route.match.hostname.suffix #=> String
2043
+ # resp.gateway_route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
2044
+ # resp.gateway_route.spec.http_route.match.path.exact #=> String
2045
+ # resp.gateway_route.spec.http_route.match.path.regex #=> String
1790
2046
  # resp.gateway_route.spec.http_route.match.prefix #=> String
2047
+ # resp.gateway_route.spec.http_route.match.query_parameters #=> Array
2048
+ # resp.gateway_route.spec.http_route.match.query_parameters[0].match.exact #=> String
2049
+ # resp.gateway_route.spec.http_route.match.query_parameters[0].name #=> String
2050
+ # resp.gateway_route.spec.priority #=> Integer
1791
2051
  # resp.gateway_route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
1792
2052
  # resp.gateway_route.virtual_gateway_name #=> String
1793
2053
  #
@@ -1926,7 +2186,12 @@ module Aws::AppMesh
1926
2186
  # resp.route.spec.http2_route.match.headers[0].match.suffix #=> String
1927
2187
  # resp.route.spec.http2_route.match.headers[0].name #=> String
1928
2188
  # resp.route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
2189
+ # resp.route.spec.http2_route.match.path.exact #=> String
2190
+ # resp.route.spec.http2_route.match.path.regex #=> String
1929
2191
  # resp.route.spec.http2_route.match.prefix #=> String
2192
+ # resp.route.spec.http2_route.match.query_parameters #=> Array
2193
+ # resp.route.spec.http2_route.match.query_parameters[0].match.exact #=> String
2194
+ # resp.route.spec.http2_route.match.query_parameters[0].name #=> String
1930
2195
  # resp.route.spec.http2_route.match.scheme #=> String, one of "http", "https"
1931
2196
  # resp.route.spec.http2_route.retry_policy.http_retry_events #=> Array
1932
2197
  # resp.route.spec.http2_route.retry_policy.http_retry_events[0] #=> String
@@ -1952,7 +2217,12 @@ module Aws::AppMesh
1952
2217
  # resp.route.spec.http_route.match.headers[0].match.suffix #=> String
1953
2218
  # resp.route.spec.http_route.match.headers[0].name #=> String
1954
2219
  # resp.route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
2220
+ # resp.route.spec.http_route.match.path.exact #=> String
2221
+ # resp.route.spec.http_route.match.path.regex #=> String
1955
2222
  # resp.route.spec.http_route.match.prefix #=> String
2223
+ # resp.route.spec.http_route.match.query_parameters #=> Array
2224
+ # resp.route.spec.http_route.match.query_parameters[0].match.exact #=> String
2225
+ # resp.route.spec.http_route.match.query_parameters[0].name #=> String
1956
2226
  # resp.route.spec.http_route.match.scheme #=> String, one of "http", "https"
1957
2227
  # resp.route.spec.http_route.retry_policy.http_retry_events #=> Array
1958
2228
  # resp.route.spec.http_route.retry_policy.http_retry_events[0] #=> String
@@ -2192,6 +2462,7 @@ module Aws::AppMesh
2192
2462
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.namespace_name #=> String
2193
2463
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.service_name #=> String
2194
2464
  # resp.virtual_node.spec.service_discovery.dns.hostname #=> String
2465
+ # resp.virtual_node.spec.service_discovery.dns.response_type #=> String, one of "LOADBALANCER", "ENDPOINTS"
2195
2466
  # resp.virtual_node.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
2196
2467
  # resp.virtual_node.virtual_node_name #=> String
2197
2468
  #
@@ -2362,12 +2633,67 @@ module Aws::AppMesh
2362
2633
  # resp.gateway_route.metadata.resource_owner #=> String
2363
2634
  # resp.gateway_route.metadata.uid #=> String
2364
2635
  # resp.gateway_route.metadata.version #=> Integer
2636
+ # resp.gateway_route.spec.grpc_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
2365
2637
  # resp.gateway_route.spec.grpc_route.action.target.virtual_service.virtual_service_name #=> String
2638
+ # resp.gateway_route.spec.grpc_route.match.hostname.exact #=> String
2639
+ # resp.gateway_route.spec.grpc_route.match.hostname.suffix #=> String
2640
+ # resp.gateway_route.spec.grpc_route.match.metadata #=> Array
2641
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].invert #=> Boolean
2642
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.exact #=> String
2643
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.prefix #=> String
2644
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.range.end #=> Integer
2645
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.range.start #=> Integer
2646
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.regex #=> String
2647
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.suffix #=> String
2648
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].name #=> String
2366
2649
  # resp.gateway_route.spec.grpc_route.match.service_name #=> String
2650
+ # resp.gateway_route.spec.http2_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
2651
+ # resp.gateway_route.spec.http2_route.action.rewrite.path.exact #=> String
2652
+ # resp.gateway_route.spec.http2_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
2653
+ # resp.gateway_route.spec.http2_route.action.rewrite.prefix.value #=> String
2367
2654
  # resp.gateway_route.spec.http2_route.action.target.virtual_service.virtual_service_name #=> String
2655
+ # resp.gateway_route.spec.http2_route.match.headers #=> Array
2656
+ # resp.gateway_route.spec.http2_route.match.headers[0].invert #=> Boolean
2657
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.exact #=> String
2658
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.prefix #=> String
2659
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.range.end #=> Integer
2660
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.range.start #=> Integer
2661
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.regex #=> String
2662
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.suffix #=> String
2663
+ # resp.gateway_route.spec.http2_route.match.headers[0].name #=> String
2664
+ # resp.gateway_route.spec.http2_route.match.hostname.exact #=> String
2665
+ # resp.gateway_route.spec.http2_route.match.hostname.suffix #=> String
2666
+ # resp.gateway_route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
2667
+ # resp.gateway_route.spec.http2_route.match.path.exact #=> String
2668
+ # resp.gateway_route.spec.http2_route.match.path.regex #=> String
2368
2669
  # resp.gateway_route.spec.http2_route.match.prefix #=> String
2670
+ # resp.gateway_route.spec.http2_route.match.query_parameters #=> Array
2671
+ # resp.gateway_route.spec.http2_route.match.query_parameters[0].match.exact #=> String
2672
+ # resp.gateway_route.spec.http2_route.match.query_parameters[0].name #=> String
2673
+ # resp.gateway_route.spec.http_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
2674
+ # resp.gateway_route.spec.http_route.action.rewrite.path.exact #=> String
2675
+ # resp.gateway_route.spec.http_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
2676
+ # resp.gateway_route.spec.http_route.action.rewrite.prefix.value #=> String
2369
2677
  # resp.gateway_route.spec.http_route.action.target.virtual_service.virtual_service_name #=> String
2678
+ # resp.gateway_route.spec.http_route.match.headers #=> Array
2679
+ # resp.gateway_route.spec.http_route.match.headers[0].invert #=> Boolean
2680
+ # resp.gateway_route.spec.http_route.match.headers[0].match.exact #=> String
2681
+ # resp.gateway_route.spec.http_route.match.headers[0].match.prefix #=> String
2682
+ # resp.gateway_route.spec.http_route.match.headers[0].match.range.end #=> Integer
2683
+ # resp.gateway_route.spec.http_route.match.headers[0].match.range.start #=> Integer
2684
+ # resp.gateway_route.spec.http_route.match.headers[0].match.regex #=> String
2685
+ # resp.gateway_route.spec.http_route.match.headers[0].match.suffix #=> String
2686
+ # resp.gateway_route.spec.http_route.match.headers[0].name #=> String
2687
+ # resp.gateway_route.spec.http_route.match.hostname.exact #=> String
2688
+ # resp.gateway_route.spec.http_route.match.hostname.suffix #=> String
2689
+ # resp.gateway_route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
2690
+ # resp.gateway_route.spec.http_route.match.path.exact #=> String
2691
+ # resp.gateway_route.spec.http_route.match.path.regex #=> String
2370
2692
  # resp.gateway_route.spec.http_route.match.prefix #=> String
2693
+ # resp.gateway_route.spec.http_route.match.query_parameters #=> Array
2694
+ # resp.gateway_route.spec.http_route.match.query_parameters[0].match.exact #=> String
2695
+ # resp.gateway_route.spec.http_route.match.query_parameters[0].name #=> String
2696
+ # resp.gateway_route.spec.priority #=> Integer
2371
2697
  # resp.gateway_route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
2372
2698
  # resp.gateway_route.virtual_gateway_name #=> String
2373
2699
  #
@@ -2513,7 +2839,12 @@ module Aws::AppMesh
2513
2839
  # resp.route.spec.http2_route.match.headers[0].match.suffix #=> String
2514
2840
  # resp.route.spec.http2_route.match.headers[0].name #=> String
2515
2841
  # resp.route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
2842
+ # resp.route.spec.http2_route.match.path.exact #=> String
2843
+ # resp.route.spec.http2_route.match.path.regex #=> String
2516
2844
  # resp.route.spec.http2_route.match.prefix #=> String
2845
+ # resp.route.spec.http2_route.match.query_parameters #=> Array
2846
+ # resp.route.spec.http2_route.match.query_parameters[0].match.exact #=> String
2847
+ # resp.route.spec.http2_route.match.query_parameters[0].name #=> String
2517
2848
  # resp.route.spec.http2_route.match.scheme #=> String, one of "http", "https"
2518
2849
  # resp.route.spec.http2_route.retry_policy.http_retry_events #=> Array
2519
2850
  # resp.route.spec.http2_route.retry_policy.http_retry_events[0] #=> String
@@ -2539,7 +2870,12 @@ module Aws::AppMesh
2539
2870
  # resp.route.spec.http_route.match.headers[0].match.suffix #=> String
2540
2871
  # resp.route.spec.http_route.match.headers[0].name #=> String
2541
2872
  # resp.route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
2873
+ # resp.route.spec.http_route.match.path.exact #=> String
2874
+ # resp.route.spec.http_route.match.path.regex #=> String
2542
2875
  # resp.route.spec.http_route.match.prefix #=> String
2876
+ # resp.route.spec.http_route.match.query_parameters #=> Array
2877
+ # resp.route.spec.http_route.match.query_parameters[0].match.exact #=> String
2878
+ # resp.route.spec.http_route.match.query_parameters[0].name #=> String
2543
2879
  # resp.route.spec.http_route.match.scheme #=> String, one of "http", "https"
2544
2880
  # resp.route.spec.http_route.retry_policy.http_retry_events #=> Array
2545
2881
  # resp.route.spec.http_route.retry_policy.http_retry_events[0] #=> String
@@ -2775,6 +3111,7 @@ module Aws::AppMesh
2775
3111
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.namespace_name #=> String
2776
3112
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.service_name #=> String
2777
3113
  # resp.virtual_node.spec.service_discovery.dns.hostname #=> String
3114
+ # resp.virtual_node.spec.service_discovery.dns.response_type #=> String, one of "LOADBALANCER", "ENDPOINTS"
2778
3115
  # resp.virtual_node.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
2779
3116
  # resp.virtual_node.virtual_node_name #=> String
2780
3117
  #
@@ -3544,6 +3881,11 @@ module Aws::AppMesh
3544
3881
  # spec: { # required
3545
3882
  # grpc_route: {
3546
3883
  # action: { # required
3884
+ # rewrite: {
3885
+ # hostname: {
3886
+ # default_target_hostname: "ENABLED", # accepts ENABLED, DISABLED
3887
+ # },
3888
+ # },
3547
3889
  # target: { # required
3548
3890
  # virtual_service: { # required
3549
3891
  # virtual_service_name: "ResourceName", # required
@@ -3551,11 +3893,43 @@ module Aws::AppMesh
3551
3893
  # },
3552
3894
  # },
3553
3895
  # match: { # required
3896
+ # hostname: {
3897
+ # exact: "ExactHostName",
3898
+ # suffix: "SuffixHostname",
3899
+ # },
3900
+ # metadata: [
3901
+ # {
3902
+ # invert: false,
3903
+ # match: {
3904
+ # exact: "HeaderMatch",
3905
+ # prefix: "HeaderMatch",
3906
+ # range: {
3907
+ # end: 1, # required
3908
+ # start: 1, # required
3909
+ # },
3910
+ # regex: "HeaderMatch",
3911
+ # suffix: "HeaderMatch",
3912
+ # },
3913
+ # name: "HeaderName", # required
3914
+ # },
3915
+ # ],
3554
3916
  # service_name: "ServiceName",
3555
3917
  # },
3556
3918
  # },
3557
3919
  # http2_route: {
3558
3920
  # action: { # required
3921
+ # rewrite: {
3922
+ # hostname: {
3923
+ # default_target_hostname: "ENABLED", # accepts ENABLED, DISABLED
3924
+ # },
3925
+ # path: {
3926
+ # exact: "HttpPathExact",
3927
+ # },
3928
+ # prefix: {
3929
+ # default_prefix: "ENABLED", # accepts ENABLED, DISABLED
3930
+ # value: "HttpGatewayRoutePrefix",
3931
+ # },
3932
+ # },
3559
3933
  # target: { # required
3560
3934
  # virtual_service: { # required
3561
3935
  # virtual_service_name: "ResourceName", # required
@@ -3563,11 +3937,56 @@ module Aws::AppMesh
3563
3937
  # },
3564
3938
  # },
3565
3939
  # match: { # required
3566
- # prefix: "String", # required
3940
+ # headers: [
3941
+ # {
3942
+ # invert: false,
3943
+ # match: {
3944
+ # exact: "HeaderMatch",
3945
+ # prefix: "HeaderMatch",
3946
+ # range: {
3947
+ # end: 1, # required
3948
+ # start: 1, # required
3949
+ # },
3950
+ # regex: "HeaderMatch",
3951
+ # suffix: "HeaderMatch",
3952
+ # },
3953
+ # name: "HeaderName", # required
3954
+ # },
3955
+ # ],
3956
+ # hostname: {
3957
+ # exact: "ExactHostName",
3958
+ # suffix: "SuffixHostname",
3959
+ # },
3960
+ # method: "GET", # accepts GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH
3961
+ # path: {
3962
+ # exact: "HttpPathExact",
3963
+ # regex: "HttpPathRegex",
3964
+ # },
3965
+ # prefix: "String",
3966
+ # query_parameters: [
3967
+ # {
3968
+ # match: {
3969
+ # exact: "String",
3970
+ # },
3971
+ # name: "QueryParameterName", # required
3972
+ # },
3973
+ # ],
3567
3974
  # },
3568
3975
  # },
3569
3976
  # http_route: {
3570
3977
  # action: { # required
3978
+ # rewrite: {
3979
+ # hostname: {
3980
+ # default_target_hostname: "ENABLED", # accepts ENABLED, DISABLED
3981
+ # },
3982
+ # path: {
3983
+ # exact: "HttpPathExact",
3984
+ # },
3985
+ # prefix: {
3986
+ # default_prefix: "ENABLED", # accepts ENABLED, DISABLED
3987
+ # value: "HttpGatewayRoutePrefix",
3988
+ # },
3989
+ # },
3571
3990
  # target: { # required
3572
3991
  # virtual_service: { # required
3573
3992
  # virtual_service_name: "ResourceName", # required
@@ -3575,9 +3994,43 @@ module Aws::AppMesh
3575
3994
  # },
3576
3995
  # },
3577
3996
  # match: { # required
3578
- # prefix: "String", # required
3997
+ # headers: [
3998
+ # {
3999
+ # invert: false,
4000
+ # match: {
4001
+ # exact: "HeaderMatch",
4002
+ # prefix: "HeaderMatch",
4003
+ # range: {
4004
+ # end: 1, # required
4005
+ # start: 1, # required
4006
+ # },
4007
+ # regex: "HeaderMatch",
4008
+ # suffix: "HeaderMatch",
4009
+ # },
4010
+ # name: "HeaderName", # required
4011
+ # },
4012
+ # ],
4013
+ # hostname: {
4014
+ # exact: "ExactHostName",
4015
+ # suffix: "SuffixHostname",
4016
+ # },
4017
+ # method: "GET", # accepts GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH
4018
+ # path: {
4019
+ # exact: "HttpPathExact",
4020
+ # regex: "HttpPathRegex",
4021
+ # },
4022
+ # prefix: "String",
4023
+ # query_parameters: [
4024
+ # {
4025
+ # match: {
4026
+ # exact: "String",
4027
+ # },
4028
+ # name: "QueryParameterName", # required
4029
+ # },
4030
+ # ],
3579
4031
  # },
3580
4032
  # },
4033
+ # priority: 1,
3581
4034
  # },
3582
4035
  # virtual_gateway_name: "ResourceName", # required
3583
4036
  # })
@@ -3593,12 +4046,67 @@ module Aws::AppMesh
3593
4046
  # resp.gateway_route.metadata.resource_owner #=> String
3594
4047
  # resp.gateway_route.metadata.uid #=> String
3595
4048
  # resp.gateway_route.metadata.version #=> Integer
4049
+ # resp.gateway_route.spec.grpc_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
3596
4050
  # resp.gateway_route.spec.grpc_route.action.target.virtual_service.virtual_service_name #=> String
4051
+ # resp.gateway_route.spec.grpc_route.match.hostname.exact #=> String
4052
+ # resp.gateway_route.spec.grpc_route.match.hostname.suffix #=> String
4053
+ # resp.gateway_route.spec.grpc_route.match.metadata #=> Array
4054
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].invert #=> Boolean
4055
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.exact #=> String
4056
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.prefix #=> String
4057
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.range.end #=> Integer
4058
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.range.start #=> Integer
4059
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.regex #=> String
4060
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].match.suffix #=> String
4061
+ # resp.gateway_route.spec.grpc_route.match.metadata[0].name #=> String
3597
4062
  # resp.gateway_route.spec.grpc_route.match.service_name #=> String
4063
+ # resp.gateway_route.spec.http2_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
4064
+ # resp.gateway_route.spec.http2_route.action.rewrite.path.exact #=> String
4065
+ # resp.gateway_route.spec.http2_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
4066
+ # resp.gateway_route.spec.http2_route.action.rewrite.prefix.value #=> String
3598
4067
  # resp.gateway_route.spec.http2_route.action.target.virtual_service.virtual_service_name #=> String
4068
+ # resp.gateway_route.spec.http2_route.match.headers #=> Array
4069
+ # resp.gateway_route.spec.http2_route.match.headers[0].invert #=> Boolean
4070
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.exact #=> String
4071
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.prefix #=> String
4072
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.range.end #=> Integer
4073
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.range.start #=> Integer
4074
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.regex #=> String
4075
+ # resp.gateway_route.spec.http2_route.match.headers[0].match.suffix #=> String
4076
+ # resp.gateway_route.spec.http2_route.match.headers[0].name #=> String
4077
+ # resp.gateway_route.spec.http2_route.match.hostname.exact #=> String
4078
+ # resp.gateway_route.spec.http2_route.match.hostname.suffix #=> String
4079
+ # resp.gateway_route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
4080
+ # resp.gateway_route.spec.http2_route.match.path.exact #=> String
4081
+ # resp.gateway_route.spec.http2_route.match.path.regex #=> String
3599
4082
  # resp.gateway_route.spec.http2_route.match.prefix #=> String
4083
+ # resp.gateway_route.spec.http2_route.match.query_parameters #=> Array
4084
+ # resp.gateway_route.spec.http2_route.match.query_parameters[0].match.exact #=> String
4085
+ # resp.gateway_route.spec.http2_route.match.query_parameters[0].name #=> String
4086
+ # resp.gateway_route.spec.http_route.action.rewrite.hostname.default_target_hostname #=> String, one of "ENABLED", "DISABLED"
4087
+ # resp.gateway_route.spec.http_route.action.rewrite.path.exact #=> String
4088
+ # resp.gateway_route.spec.http_route.action.rewrite.prefix.default_prefix #=> String, one of "ENABLED", "DISABLED"
4089
+ # resp.gateway_route.spec.http_route.action.rewrite.prefix.value #=> String
3600
4090
  # resp.gateway_route.spec.http_route.action.target.virtual_service.virtual_service_name #=> String
4091
+ # resp.gateway_route.spec.http_route.match.headers #=> Array
4092
+ # resp.gateway_route.spec.http_route.match.headers[0].invert #=> Boolean
4093
+ # resp.gateway_route.spec.http_route.match.headers[0].match.exact #=> String
4094
+ # resp.gateway_route.spec.http_route.match.headers[0].match.prefix #=> String
4095
+ # resp.gateway_route.spec.http_route.match.headers[0].match.range.end #=> Integer
4096
+ # resp.gateway_route.spec.http_route.match.headers[0].match.range.start #=> Integer
4097
+ # resp.gateway_route.spec.http_route.match.headers[0].match.regex #=> String
4098
+ # resp.gateway_route.spec.http_route.match.headers[0].match.suffix #=> String
4099
+ # resp.gateway_route.spec.http_route.match.headers[0].name #=> String
4100
+ # resp.gateway_route.spec.http_route.match.hostname.exact #=> String
4101
+ # resp.gateway_route.spec.http_route.match.hostname.suffix #=> String
4102
+ # resp.gateway_route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
4103
+ # resp.gateway_route.spec.http_route.match.path.exact #=> String
4104
+ # resp.gateway_route.spec.http_route.match.path.regex #=> String
3601
4105
  # resp.gateway_route.spec.http_route.match.prefix #=> String
4106
+ # resp.gateway_route.spec.http_route.match.query_parameters #=> Array
4107
+ # resp.gateway_route.spec.http_route.match.query_parameters[0].match.exact #=> String
4108
+ # resp.gateway_route.spec.http_route.match.query_parameters[0].name #=> String
4109
+ # resp.gateway_route.spec.priority #=> Integer
3602
4110
  # resp.gateway_route.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
3603
4111
  # resp.gateway_route.virtual_gateway_name #=> String
3604
4112
  #
@@ -3788,7 +4296,19 @@ module Aws::AppMesh
3788
4296
  # },
3789
4297
  # ],
3790
4298
  # method: "GET", # accepts GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH
3791
- # prefix: "String", # required
4299
+ # path: {
4300
+ # exact: "HttpPathExact",
4301
+ # regex: "HttpPathRegex",
4302
+ # },
4303
+ # prefix: "String",
4304
+ # query_parameters: [
4305
+ # {
4306
+ # match: {
4307
+ # exact: "String",
4308
+ # },
4309
+ # name: "QueryParameterName", # required
4310
+ # },
4311
+ # ],
3792
4312
  # scheme: "http", # accepts http, https
3793
4313
  # },
3794
4314
  # retry_policy: {
@@ -3838,7 +4358,19 @@ module Aws::AppMesh
3838
4358
  # },
3839
4359
  # ],
3840
4360
  # method: "GET", # accepts GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH
3841
- # prefix: "String", # required
4361
+ # path: {
4362
+ # exact: "HttpPathExact",
4363
+ # regex: "HttpPathRegex",
4364
+ # },
4365
+ # prefix: "String",
4366
+ # query_parameters: [
4367
+ # {
4368
+ # match: {
4369
+ # exact: "String",
4370
+ # },
4371
+ # name: "QueryParameterName", # required
4372
+ # },
4373
+ # ],
3842
4374
  # scheme: "http", # accepts http, https
3843
4375
  # },
3844
4376
  # retry_policy: {
@@ -3933,7 +4465,12 @@ module Aws::AppMesh
3933
4465
  # resp.route.spec.http2_route.match.headers[0].match.suffix #=> String
3934
4466
  # resp.route.spec.http2_route.match.headers[0].name #=> String
3935
4467
  # resp.route.spec.http2_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
4468
+ # resp.route.spec.http2_route.match.path.exact #=> String
4469
+ # resp.route.spec.http2_route.match.path.regex #=> String
3936
4470
  # resp.route.spec.http2_route.match.prefix #=> String
4471
+ # resp.route.spec.http2_route.match.query_parameters #=> Array
4472
+ # resp.route.spec.http2_route.match.query_parameters[0].match.exact #=> String
4473
+ # resp.route.spec.http2_route.match.query_parameters[0].name #=> String
3937
4474
  # resp.route.spec.http2_route.match.scheme #=> String, one of "http", "https"
3938
4475
  # resp.route.spec.http2_route.retry_policy.http_retry_events #=> Array
3939
4476
  # resp.route.spec.http2_route.retry_policy.http_retry_events[0] #=> String
@@ -3959,7 +4496,12 @@ module Aws::AppMesh
3959
4496
  # resp.route.spec.http_route.match.headers[0].match.suffix #=> String
3960
4497
  # resp.route.spec.http_route.match.headers[0].name #=> String
3961
4498
  # resp.route.spec.http_route.match.method #=> String, one of "GET", "HEAD", "POST", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH"
4499
+ # resp.route.spec.http_route.match.path.exact #=> String
4500
+ # resp.route.spec.http_route.match.path.regex #=> String
3962
4501
  # resp.route.spec.http_route.match.prefix #=> String
4502
+ # resp.route.spec.http_route.match.query_parameters #=> Array
4503
+ # resp.route.spec.http_route.match.query_parameters[0].match.exact #=> String
4504
+ # resp.route.spec.http_route.match.query_parameters[0].name #=> String
3963
4505
  # resp.route.spec.http_route.match.scheme #=> String, one of "http", "https"
3964
4506
  # resp.route.spec.http_route.retry_policy.http_retry_events #=> Array
3965
4507
  # resp.route.spec.http_route.retry_policy.http_retry_events[0] #=> String
@@ -4442,6 +4984,7 @@ module Aws::AppMesh
4442
4984
  # },
4443
4985
  # dns: {
4444
4986
  # hostname: "Hostname", # required
4987
+ # response_type: "LOADBALANCER", # accepts LOADBALANCER, ENDPOINTS
4445
4988
  # },
4446
4989
  # },
4447
4990
  # },
@@ -4535,6 +5078,7 @@ module Aws::AppMesh
4535
5078
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.namespace_name #=> String
4536
5079
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.service_name #=> String
4537
5080
  # resp.virtual_node.spec.service_discovery.dns.hostname #=> String
5081
+ # resp.virtual_node.spec.service_discovery.dns.response_type #=> String, one of "LOADBALANCER", "ENDPOINTS"
4538
5082
  # resp.virtual_node.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
4539
5083
  # resp.virtual_node.virtual_node_name #=> String
4540
5084
  #
@@ -4715,7 +5259,7 @@ module Aws::AppMesh
4715
5259
  params: params,
4716
5260
  config: config)
4717
5261
  context[:gem_name] = 'aws-sdk-appmesh'
4718
- context[:gem_version] = '1.35.0'
5262
+ context[:gem_version] = '1.36.0'
4719
5263
  Seahorse::Client::Request.new(handlers, context)
4720
5264
  end
4721
5265