aws-sdk-appmesh 1.18.0 → 1.19.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1bb5fa558795912985c6a37fef3bb376b6fdc301
4
- data.tar.gz: e5ace7697e8c4dc4c3dc41e94a1eb1884a9d3272
3
+ metadata.gz: 91e8cc5300f6d8387308b04870e5187acbeaebfa
4
+ data.tar.gz: 292b44b84ab6d0c9a5830588f33fb50bdef917a8
5
5
  SHA512:
6
- metadata.gz: 82f67811bc3484a3bfd597504ccfa2e8a441457c8dc8cf04f031b2caed9d7415a7c044935b6328cc59441e197c6fcbc17582188000d361506b74499dd18961e1
7
- data.tar.gz: f9b7aa719b1a98b35ee367a2790c412d2a518c10987952c5ff582d7756e0b144179c31926e1e3fe3694f22b759a3027363375884bad2dc82de76172d9e34a738
6
+ metadata.gz: 8b95c6a7c98f230fae48c2a7a1208de2628e98ac318456a490c0de3cc31d2ee5e25d3f36322c78b13c88ec8b046680e03d861dd81a71293affd7aae3e154c21b
7
+ data.tar.gz: f64d16da91da184b2d272554e88094b5d192c6ce3e2727c647197219d0ec5ade881e8b79f1c7235c90cc86832b9ba4006d3f7245b7669184e17115ff285b7441
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-appmesh/customizations'
42
42
  # @service
43
43
  module Aws::AppMesh
44
44
 
45
- GEM_VERSION = '1.18.0'
45
+ GEM_VERSION = '1.19.1'
46
46
 
47
47
  end
@@ -334,6 +334,12 @@ module Aws::AppMesh
334
334
  # If your route matches a request, you can distribute traffic to one or
335
335
  # more target virtual nodes with relative weighting.
336
336
  #
337
+ # For more information about routes, see [Routes][1].
338
+ #
339
+ #
340
+ #
341
+ # [1]: https://docs.aws.amazon.com//app-mesh/latest/userguide/routes.html
342
+ #
337
343
  # @option params [String] :client_token
338
344
  # Unique, case-sensitive identifier that you provide to ensure the
339
345
  # idempotency of the request. Up to 36 letters, numbers, hyphens, and
@@ -632,6 +638,12 @@ module Aws::AppMesh
632
638
  #
633
639
  # </note>
634
640
  #
641
+ # For more information about virtual nodes, see [Virtual Nodes][1].
642
+ #
643
+ #
644
+ #
645
+ # [1]: https://docs.aws.amazon.com//app-mesh/latest/userguide/virtual_nodes.html
646
+ #
635
647
  # @option params [String] :client_token
636
648
  # Unique, case-sensitive identifier that you provide to ensure the
637
649
  # idempotency of the request. Up to 36 letters, numbers, hyphens, and
@@ -666,9 +678,43 @@ module Aws::AppMesh
666
678
  # client_token: "String",
667
679
  # mesh_name: "ResourceName", # required
668
680
  # spec: { # required
681
+ # backend_defaults: {
682
+ # client_policy: {
683
+ # tls: {
684
+ # enforce: false,
685
+ # ports: [1],
686
+ # validation: { # required
687
+ # trust: { # required
688
+ # acm: {
689
+ # certificate_authority_arns: ["Arn"], # required
690
+ # },
691
+ # file: {
692
+ # certificate_chain: "FilePath", # required
693
+ # },
694
+ # },
695
+ # },
696
+ # },
697
+ # },
698
+ # },
669
699
  # backends: [
670
700
  # {
671
701
  # virtual_service: {
702
+ # client_policy: {
703
+ # tls: {
704
+ # enforce: false,
705
+ # ports: [1],
706
+ # validation: { # required
707
+ # trust: { # required
708
+ # acm: {
709
+ # certificate_authority_arns: ["Arn"], # required
710
+ # },
711
+ # file: {
712
+ # certificate_chain: "FilePath", # required
713
+ # },
714
+ # },
715
+ # },
716
+ # },
717
+ # },
672
718
  # virtual_service_name: "ServiceName", # required
673
719
  # },
674
720
  # },
@@ -688,6 +734,18 @@ module Aws::AppMesh
688
734
  # port: 1, # required
689
735
  # protocol: "grpc", # required, accepts grpc, http, http2, tcp
690
736
  # },
737
+ # tls: {
738
+ # certificate: { # required
739
+ # acm: {
740
+ # certificate_arn: "Arn", # required
741
+ # },
742
+ # file: {
743
+ # certificate_chain: "FilePath", # required
744
+ # private_key: "FilePath", # required
745
+ # },
746
+ # },
747
+ # mode: "DISABLED", # required, accepts DISABLED, PERMISSIVE, STRICT
748
+ # },
691
749
  # },
692
750
  # ],
693
751
  # logging: {
@@ -730,7 +788,19 @@ module Aws::AppMesh
730
788
  # resp.virtual_node.metadata.last_updated_at #=> Time
731
789
  # resp.virtual_node.metadata.uid #=> String
732
790
  # resp.virtual_node.metadata.version #=> Integer
791
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.enforce #=> Boolean
792
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.ports #=> Array
793
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.ports[0] #=> Integer
794
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.validation.trust.acm.certificate_authority_arns #=> Array
795
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.validation.trust.acm.certificate_authority_arns[0] #=> String
796
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.validation.trust.file.certificate_chain #=> String
733
797
  # resp.virtual_node.spec.backends #=> Array
798
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.enforce #=> Boolean
799
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.ports #=> Array
800
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.ports[0] #=> Integer
801
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.acm.certificate_authority_arns #=> Array
802
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.acm.certificate_authority_arns[0] #=> String
803
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.file.certificate_chain #=> String
734
804
  # resp.virtual_node.spec.backends[0].virtual_service.virtual_service_name #=> String
735
805
  # resp.virtual_node.spec.listeners #=> Array
736
806
  # resp.virtual_node.spec.listeners[0].health_check.healthy_threshold #=> Integer
@@ -742,6 +812,10 @@ module Aws::AppMesh
742
812
  # resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
743
813
  # resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
744
814
  # resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
815
+ # resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
816
+ # resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
817
+ # resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
818
+ # resp.virtual_node.spec.listeners[0].tls.mode #=> String, one of "DISABLED", "PERMISSIVE", "STRICT"
745
819
  # resp.virtual_node.spec.logging.access_log.file.path #=> String
746
820
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
747
821
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
@@ -771,6 +845,12 @@ module Aws::AppMesh
771
845
  # routes for your virtual router that direct incoming requests to
772
846
  # different virtual nodes.
773
847
  #
848
+ # For more information about virtual routers, see [Virtual Routers][1].
849
+ #
850
+ #
851
+ #
852
+ # [1]: https://docs.aws.amazon.com//app-mesh/latest/userguide/virtual_routers.html
853
+ #
774
854
  # @option params [String] :client_token
775
855
  # Unique, case-sensitive identifier that you provide to ensure the
776
856
  # idempotency of the request. Up to 36 letters, numbers, hyphens, and
@@ -855,6 +935,13 @@ module Aws::AppMesh
855
935
  # node or virtual router that is specified as the provider for the
856
936
  # virtual service.
857
937
  #
938
+ # For more information about virtual services, see [Virtual
939
+ # Services][1].
940
+ #
941
+ #
942
+ #
943
+ # [1]: https://docs.aws.amazon.com//app-mesh/latest/userguide/virtual_services.html
944
+ #
858
945
  # @option params [String] :client_token
859
946
  # Unique, case-sensitive identifier that you provide to ensure the
860
947
  # idempotency of the request. Up to 36 letters, numbers, hyphens, and
@@ -1113,7 +1200,19 @@ module Aws::AppMesh
1113
1200
  # resp.virtual_node.metadata.last_updated_at #=> Time
1114
1201
  # resp.virtual_node.metadata.uid #=> String
1115
1202
  # resp.virtual_node.metadata.version #=> Integer
1203
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.enforce #=> Boolean
1204
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.ports #=> Array
1205
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.ports[0] #=> Integer
1206
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.validation.trust.acm.certificate_authority_arns #=> Array
1207
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.validation.trust.acm.certificate_authority_arns[0] #=> String
1208
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.validation.trust.file.certificate_chain #=> String
1116
1209
  # resp.virtual_node.spec.backends #=> Array
1210
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.enforce #=> Boolean
1211
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.ports #=> Array
1212
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.ports[0] #=> Integer
1213
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.acm.certificate_authority_arns #=> Array
1214
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.acm.certificate_authority_arns[0] #=> String
1215
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.file.certificate_chain #=> String
1117
1216
  # resp.virtual_node.spec.backends[0].virtual_service.virtual_service_name #=> String
1118
1217
  # resp.virtual_node.spec.listeners #=> Array
1119
1218
  # resp.virtual_node.spec.listeners[0].health_check.healthy_threshold #=> Integer
@@ -1125,6 +1224,10 @@ module Aws::AppMesh
1125
1224
  # resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
1126
1225
  # resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
1127
1226
  # resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
1227
+ # resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
1228
+ # resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
1229
+ # resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
1230
+ # resp.virtual_node.spec.listeners[0].tls.mode #=> String, one of "DISABLED", "PERMISSIVE", "STRICT"
1128
1231
  # resp.virtual_node.spec.logging.access_log.file.path #=> String
1129
1232
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
1130
1233
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
@@ -1407,7 +1510,19 @@ module Aws::AppMesh
1407
1510
  # resp.virtual_node.metadata.last_updated_at #=> Time
1408
1511
  # resp.virtual_node.metadata.uid #=> String
1409
1512
  # resp.virtual_node.metadata.version #=> Integer
1513
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.enforce #=> Boolean
1514
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.ports #=> Array
1515
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.ports[0] #=> Integer
1516
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.validation.trust.acm.certificate_authority_arns #=> Array
1517
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.validation.trust.acm.certificate_authority_arns[0] #=> String
1518
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.validation.trust.file.certificate_chain #=> String
1410
1519
  # resp.virtual_node.spec.backends #=> Array
1520
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.enforce #=> Boolean
1521
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.ports #=> Array
1522
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.ports[0] #=> Integer
1523
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.acm.certificate_authority_arns #=> Array
1524
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.acm.certificate_authority_arns[0] #=> String
1525
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.file.certificate_chain #=> String
1411
1526
  # resp.virtual_node.spec.backends[0].virtual_service.virtual_service_name #=> String
1412
1527
  # resp.virtual_node.spec.listeners #=> Array
1413
1528
  # resp.virtual_node.spec.listeners[0].health_check.healthy_threshold #=> Integer
@@ -1419,6 +1534,10 @@ module Aws::AppMesh
1419
1534
  # resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
1420
1535
  # resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
1421
1536
  # resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
1537
+ # resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
1538
+ # resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
1539
+ # resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
1540
+ # resp.virtual_node.spec.listeners[0].tls.mode #=> String, one of "DISABLED", "PERMISSIVE", "STRICT"
1422
1541
  # resp.virtual_node.spec.logging.access_log.file.path #=> String
1423
1542
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
1424
1543
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
@@ -2239,9 +2358,43 @@ module Aws::AppMesh
2239
2358
  # client_token: "String",
2240
2359
  # mesh_name: "ResourceName", # required
2241
2360
  # spec: { # required
2361
+ # backend_defaults: {
2362
+ # client_policy: {
2363
+ # tls: {
2364
+ # enforce: false,
2365
+ # ports: [1],
2366
+ # validation: { # required
2367
+ # trust: { # required
2368
+ # acm: {
2369
+ # certificate_authority_arns: ["Arn"], # required
2370
+ # },
2371
+ # file: {
2372
+ # certificate_chain: "FilePath", # required
2373
+ # },
2374
+ # },
2375
+ # },
2376
+ # },
2377
+ # },
2378
+ # },
2242
2379
  # backends: [
2243
2380
  # {
2244
2381
  # virtual_service: {
2382
+ # client_policy: {
2383
+ # tls: {
2384
+ # enforce: false,
2385
+ # ports: [1],
2386
+ # validation: { # required
2387
+ # trust: { # required
2388
+ # acm: {
2389
+ # certificate_authority_arns: ["Arn"], # required
2390
+ # },
2391
+ # file: {
2392
+ # certificate_chain: "FilePath", # required
2393
+ # },
2394
+ # },
2395
+ # },
2396
+ # },
2397
+ # },
2245
2398
  # virtual_service_name: "ServiceName", # required
2246
2399
  # },
2247
2400
  # },
@@ -2261,6 +2414,18 @@ module Aws::AppMesh
2261
2414
  # port: 1, # required
2262
2415
  # protocol: "grpc", # required, accepts grpc, http, http2, tcp
2263
2416
  # },
2417
+ # tls: {
2418
+ # certificate: { # required
2419
+ # acm: {
2420
+ # certificate_arn: "Arn", # required
2421
+ # },
2422
+ # file: {
2423
+ # certificate_chain: "FilePath", # required
2424
+ # private_key: "FilePath", # required
2425
+ # },
2426
+ # },
2427
+ # mode: "DISABLED", # required, accepts DISABLED, PERMISSIVE, STRICT
2428
+ # },
2264
2429
  # },
2265
2430
  # ],
2266
2431
  # logging: {
@@ -2297,7 +2462,19 @@ module Aws::AppMesh
2297
2462
  # resp.virtual_node.metadata.last_updated_at #=> Time
2298
2463
  # resp.virtual_node.metadata.uid #=> String
2299
2464
  # resp.virtual_node.metadata.version #=> Integer
2465
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.enforce #=> Boolean
2466
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.ports #=> Array
2467
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.ports[0] #=> Integer
2468
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.validation.trust.acm.certificate_authority_arns #=> Array
2469
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.validation.trust.acm.certificate_authority_arns[0] #=> String
2470
+ # resp.virtual_node.spec.backend_defaults.client_policy.tls.validation.trust.file.certificate_chain #=> String
2300
2471
  # resp.virtual_node.spec.backends #=> Array
2472
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.enforce #=> Boolean
2473
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.ports #=> Array
2474
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.ports[0] #=> Integer
2475
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.acm.certificate_authority_arns #=> Array
2476
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.acm.certificate_authority_arns[0] #=> String
2477
+ # resp.virtual_node.spec.backends[0].virtual_service.client_policy.tls.validation.trust.file.certificate_chain #=> String
2301
2478
  # resp.virtual_node.spec.backends[0].virtual_service.virtual_service_name #=> String
2302
2479
  # resp.virtual_node.spec.listeners #=> Array
2303
2480
  # resp.virtual_node.spec.listeners[0].health_check.healthy_threshold #=> Integer
@@ -2309,6 +2486,10 @@ module Aws::AppMesh
2309
2486
  # resp.virtual_node.spec.listeners[0].health_check.unhealthy_threshold #=> Integer
2310
2487
  # resp.virtual_node.spec.listeners[0].port_mapping.port #=> Integer
2311
2488
  # resp.virtual_node.spec.listeners[0].port_mapping.protocol #=> String, one of "grpc", "http", "http2", "tcp"
2489
+ # resp.virtual_node.spec.listeners[0].tls.certificate.acm.certificate_arn #=> String
2490
+ # resp.virtual_node.spec.listeners[0].tls.certificate.file.certificate_chain #=> String
2491
+ # resp.virtual_node.spec.listeners[0].tls.certificate.file.private_key #=> String
2492
+ # resp.virtual_node.spec.listeners[0].tls.mode #=> String, one of "DISABLED", "PERMISSIVE", "STRICT"
2312
2493
  # resp.virtual_node.spec.logging.access_log.file.path #=> String
2313
2494
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
2314
2495
  # resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
@@ -2470,7 +2651,7 @@ module Aws::AppMesh
2470
2651
  params: params,
2471
2652
  config: config)
2472
2653
  context[:gem_name] = 'aws-sdk-appmesh'
2473
- context[:gem_version] = '1.18.0'
2654
+ context[:gem_version] = '1.19.1'
2474
2655
  Seahorse::Client::Request.new(handlers, context)
2475
2656
  end
2476
2657
 
@@ -20,9 +20,13 @@ module Aws::AppMesh
20
20
  AwsCloudMapName = Shapes::StringShape.new(name: 'AwsCloudMapName')
21
21
  AwsCloudMapServiceDiscovery = Shapes::StructureShape.new(name: 'AwsCloudMapServiceDiscovery')
22
22
  Backend = Shapes::StructureShape.new(name: 'Backend')
23
+ BackendDefaults = Shapes::StructureShape.new(name: 'BackendDefaults')
23
24
  Backends = Shapes::ListShape.new(name: 'Backends')
24
25
  BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
25
26
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
27
+ CertificateAuthorityArns = Shapes::ListShape.new(name: 'CertificateAuthorityArns')
28
+ ClientPolicy = Shapes::StructureShape.new(name: 'ClientPolicy')
29
+ ClientPolicyTls = Shapes::StructureShape.new(name: 'ClientPolicyTls')
26
30
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
27
31
  CreateMeshInput = Shapes::StructureShape.new(name: 'CreateMeshInput')
28
32
  CreateMeshOutput = Shapes::StructureShape.new(name: 'CreateMeshOutput')
@@ -110,6 +114,11 @@ module Aws::AppMesh
110
114
  ListVirtualServicesLimit = Shapes::IntegerShape.new(name: 'ListVirtualServicesLimit')
111
115
  ListVirtualServicesOutput = Shapes::StructureShape.new(name: 'ListVirtualServicesOutput')
112
116
  Listener = Shapes::StructureShape.new(name: 'Listener')
117
+ ListenerTls = Shapes::StructureShape.new(name: 'ListenerTls')
118
+ ListenerTlsAcmCertificate = Shapes::StructureShape.new(name: 'ListenerTlsAcmCertificate')
119
+ ListenerTlsCertificate = Shapes::StructureShape.new(name: 'ListenerTlsCertificate')
120
+ ListenerTlsFileCertificate = Shapes::StructureShape.new(name: 'ListenerTlsFileCertificate')
121
+ ListenerTlsMode = Shapes::StringShape.new(name: 'ListenerTlsMode')
113
122
  Listeners = Shapes::ListShape.new(name: 'Listeners')
114
123
  Logging = Shapes::StructureShape.new(name: 'Logging')
115
124
  Long = Shapes::IntegerShape.new(name: 'Long')
@@ -127,6 +136,7 @@ module Aws::AppMesh
127
136
  PortMapping = Shapes::StructureShape.new(name: 'PortMapping')
128
137
  PortNumber = Shapes::IntegerShape.new(name: 'PortNumber')
129
138
  PortProtocol = Shapes::StringShape.new(name: 'PortProtocol')
139
+ PortSet = Shapes::ListShape.new(name: 'PortSet')
130
140
  ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException')
131
141
  ResourceMetadata = Shapes::StructureShape.new(name: 'ResourceMetadata')
132
142
  ResourceName = Shapes::StringShape.new(name: 'ResourceName')
@@ -154,6 +164,10 @@ module Aws::AppMesh
154
164
  TcpRoute = Shapes::StructureShape.new(name: 'TcpRoute')
155
165
  TcpRouteAction = Shapes::StructureShape.new(name: 'TcpRouteAction')
156
166
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
167
+ TlsValidationContext = Shapes::StructureShape.new(name: 'TlsValidationContext')
168
+ TlsValidationContextAcmTrust = Shapes::StructureShape.new(name: 'TlsValidationContextAcmTrust')
169
+ TlsValidationContextFileTrust = Shapes::StructureShape.new(name: 'TlsValidationContextFileTrust')
170
+ TlsValidationContextTrust = Shapes::StructureShape.new(name: 'TlsValidationContextTrust')
157
171
  TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
158
172
  TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
159
173
  UntagResourceInput = Shapes::StructureShape.new(name: 'UntagResourceInput')
@@ -212,18 +226,31 @@ module Aws::AppMesh
212
226
  Backend.add_member(:virtual_service, Shapes::ShapeRef.new(shape: VirtualServiceBackend, location_name: "virtualService"))
213
227
  Backend.struct_class = Types::Backend
214
228
 
229
+ BackendDefaults.add_member(:client_policy, Shapes::ShapeRef.new(shape: ClientPolicy, location_name: "clientPolicy"))
230
+ BackendDefaults.struct_class = Types::BackendDefaults
231
+
215
232
  Backends.member = Shapes::ShapeRef.new(shape: Backend)
216
233
 
217
234
  BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
218
235
  BadRequestException.struct_class = Types::BadRequestException
219
236
 
237
+ CertificateAuthorityArns.member = Shapes::ShapeRef.new(shape: Arn)
238
+
239
+ ClientPolicy.add_member(:tls, Shapes::ShapeRef.new(shape: ClientPolicyTls, location_name: "tls"))
240
+ ClientPolicy.struct_class = Types::ClientPolicy
241
+
242
+ ClientPolicyTls.add_member(:enforce, Shapes::ShapeRef.new(shape: Boolean, location_name: "enforce", metadata: {"box"=>true}))
243
+ ClientPolicyTls.add_member(:ports, Shapes::ShapeRef.new(shape: PortSet, location_name: "ports"))
244
+ ClientPolicyTls.add_member(:validation, Shapes::ShapeRef.new(shape: TlsValidationContext, required: true, location_name: "validation"))
245
+ ClientPolicyTls.struct_class = Types::ClientPolicyTls
246
+
220
247
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
221
248
  ConflictException.struct_class = Types::ConflictException
222
249
 
223
250
  CreateMeshInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
224
251
  CreateMeshInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
225
252
  CreateMeshInput.add_member(:spec, Shapes::ShapeRef.new(shape: MeshSpec, location_name: "spec"))
226
- CreateMeshInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
253
+ CreateMeshInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags", metadata: {"tags"=>["not-preview"]}))
227
254
  CreateMeshInput.struct_class = Types::CreateMeshInput
228
255
 
229
256
  CreateMeshOutput.add_member(:mesh, Shapes::ShapeRef.new(shape: MeshData, required: true, location_name: "mesh"))
@@ -235,7 +262,7 @@ module Aws::AppMesh
235
262
  CreateRouteInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
236
263
  CreateRouteInput.add_member(:route_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "routeName"))
237
264
  CreateRouteInput.add_member(:spec, Shapes::ShapeRef.new(shape: RouteSpec, required: true, location_name: "spec"))
238
- CreateRouteInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
265
+ CreateRouteInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags", metadata: {"tags"=>["not-preview"]}))
239
266
  CreateRouteInput.add_member(:virtual_router_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "virtualRouterName"))
240
267
  CreateRouteInput.struct_class = Types::CreateRouteInput
241
268
 
@@ -247,7 +274,7 @@ module Aws::AppMesh
247
274
  CreateVirtualNodeInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
248
275
  CreateVirtualNodeInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
249
276
  CreateVirtualNodeInput.add_member(:spec, Shapes::ShapeRef.new(shape: VirtualNodeSpec, required: true, location_name: "spec"))
250
- CreateVirtualNodeInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
277
+ CreateVirtualNodeInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags", metadata: {"tags"=>["not-preview"]}))
251
278
  CreateVirtualNodeInput.add_member(:virtual_node_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualNodeName"))
252
279
  CreateVirtualNodeInput.struct_class = Types::CreateVirtualNodeInput
253
280
 
@@ -259,7 +286,7 @@ module Aws::AppMesh
259
286
  CreateVirtualRouterInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
260
287
  CreateVirtualRouterInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
261
288
  CreateVirtualRouterInput.add_member(:spec, Shapes::ShapeRef.new(shape: VirtualRouterSpec, required: true, location_name: "spec"))
262
- CreateVirtualRouterInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
289
+ CreateVirtualRouterInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags", metadata: {"tags"=>["not-preview"]}))
263
290
  CreateVirtualRouterInput.add_member(:virtual_router_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualRouterName"))
264
291
  CreateVirtualRouterInput.struct_class = Types::CreateVirtualRouterInput
265
292
 
@@ -271,7 +298,7 @@ module Aws::AppMesh
271
298
  CreateVirtualServiceInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
272
299
  CreateVirtualServiceInput.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "meshName"))
273
300
  CreateVirtualServiceInput.add_member(:spec, Shapes::ShapeRef.new(shape: VirtualServiceSpec, required: true, location_name: "spec"))
274
- CreateVirtualServiceInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
301
+ CreateVirtualServiceInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags", metadata: {"tags"=>["not-preview"]}))
275
302
  CreateVirtualServiceInput.add_member(:virtual_service_name, Shapes::ShapeRef.new(shape: ServiceName, required: true, location_name: "virtualServiceName"))
276
303
  CreateVirtualServiceInput.struct_class = Types::CreateVirtualServiceInput
277
304
 
@@ -529,8 +556,24 @@ module Aws::AppMesh
529
556
 
530
557
  Listener.add_member(:health_check, Shapes::ShapeRef.new(shape: HealthCheckPolicy, location_name: "healthCheck"))
531
558
  Listener.add_member(:port_mapping, Shapes::ShapeRef.new(shape: PortMapping, required: true, location_name: "portMapping"))
559
+ Listener.add_member(:tls, Shapes::ShapeRef.new(shape: ListenerTls, location_name: "tls"))
532
560
  Listener.struct_class = Types::Listener
533
561
 
562
+ ListenerTls.add_member(:certificate, Shapes::ShapeRef.new(shape: ListenerTlsCertificate, required: true, location_name: "certificate"))
563
+ ListenerTls.add_member(:mode, Shapes::ShapeRef.new(shape: ListenerTlsMode, required: true, location_name: "mode"))
564
+ ListenerTls.struct_class = Types::ListenerTls
565
+
566
+ ListenerTlsAcmCertificate.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "certificateArn"))
567
+ ListenerTlsAcmCertificate.struct_class = Types::ListenerTlsAcmCertificate
568
+
569
+ ListenerTlsCertificate.add_member(:acm, Shapes::ShapeRef.new(shape: ListenerTlsAcmCertificate, location_name: "acm"))
570
+ ListenerTlsCertificate.add_member(:file, Shapes::ShapeRef.new(shape: ListenerTlsFileCertificate, location_name: "file"))
571
+ ListenerTlsCertificate.struct_class = Types::ListenerTlsCertificate
572
+
573
+ ListenerTlsFileCertificate.add_member(:certificate_chain, Shapes::ShapeRef.new(shape: FilePath, required: true, location_name: "certificateChain"))
574
+ ListenerTlsFileCertificate.add_member(:private_key, Shapes::ShapeRef.new(shape: FilePath, required: true, location_name: "privateKey"))
575
+ ListenerTlsFileCertificate.struct_class = Types::ListenerTlsFileCertificate
576
+
534
577
  Listeners.member = Shapes::ShapeRef.new(shape: Listener)
535
578
 
536
579
  Logging.add_member(:access_log, Shapes::ShapeRef.new(shape: AccessLog, location_name: "accessLog"))
@@ -565,6 +608,8 @@ module Aws::AppMesh
565
608
  PortMapping.add_member(:protocol, Shapes::ShapeRef.new(shape: PortProtocol, required: true, location_name: "protocol"))
566
609
  PortMapping.struct_class = Types::PortMapping
567
610
 
611
+ PortSet.member = Shapes::ShapeRef.new(shape: PortNumber)
612
+
568
613
  ResourceInUseException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
569
614
  ResourceInUseException.struct_class = Types::ResourceInUseException
570
615
 
@@ -630,6 +675,19 @@ module Aws::AppMesh
630
675
  TcpRouteAction.add_member(:weighted_targets, Shapes::ShapeRef.new(shape: WeightedTargets, required: true, location_name: "weightedTargets"))
631
676
  TcpRouteAction.struct_class = Types::TcpRouteAction
632
677
 
678
+ TlsValidationContext.add_member(:trust, Shapes::ShapeRef.new(shape: TlsValidationContextTrust, required: true, location_name: "trust"))
679
+ TlsValidationContext.struct_class = Types::TlsValidationContext
680
+
681
+ TlsValidationContextAcmTrust.add_member(:certificate_authority_arns, Shapes::ShapeRef.new(shape: CertificateAuthorityArns, required: true, location_name: "certificateAuthorityArns"))
682
+ TlsValidationContextAcmTrust.struct_class = Types::TlsValidationContextAcmTrust
683
+
684
+ TlsValidationContextFileTrust.add_member(:certificate_chain, Shapes::ShapeRef.new(shape: FilePath, required: true, location_name: "certificateChain"))
685
+ TlsValidationContextFileTrust.struct_class = Types::TlsValidationContextFileTrust
686
+
687
+ TlsValidationContextTrust.add_member(:acm, Shapes::ShapeRef.new(shape: TlsValidationContextAcmTrust, location_name: "acm"))
688
+ TlsValidationContextTrust.add_member(:file, Shapes::ShapeRef.new(shape: TlsValidationContextFileTrust, location_name: "file"))
689
+ TlsValidationContextTrust.struct_class = Types::TlsValidationContextTrust
690
+
633
691
  TooManyRequestsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
634
692
  TooManyRequestsException.struct_class = Types::TooManyRequestsException
635
693
 
@@ -714,6 +772,7 @@ module Aws::AppMesh
714
772
  VirtualNodeServiceProvider.add_member(:virtual_node_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualNodeName"))
715
773
  VirtualNodeServiceProvider.struct_class = Types::VirtualNodeServiceProvider
716
774
 
775
+ VirtualNodeSpec.add_member(:backend_defaults, Shapes::ShapeRef.new(shape: BackendDefaults, location_name: "backendDefaults"))
717
776
  VirtualNodeSpec.add_member(:backends, Shapes::ShapeRef.new(shape: Backends, location_name: "backends"))
718
777
  VirtualNodeSpec.add_member(:listeners, Shapes::ShapeRef.new(shape: Listeners, location_name: "listeners"))
719
778
  VirtualNodeSpec.add_member(:logging, Shapes::ShapeRef.new(shape: Logging, location_name: "logging"))
@@ -751,6 +810,7 @@ module Aws::AppMesh
751
810
  VirtualRouterStatus.add_member(:status, Shapes::ShapeRef.new(shape: VirtualRouterStatusCode, required: true, location_name: "status"))
752
811
  VirtualRouterStatus.struct_class = Types::VirtualRouterStatus
753
812
 
813
+ VirtualServiceBackend.add_member(:client_policy, Shapes::ShapeRef.new(shape: ClientPolicy, location_name: "clientPolicy"))
754
814
  VirtualServiceBackend.add_member(:virtual_service_name, Shapes::ShapeRef.new(shape: ServiceName, required: true, location_name: "virtualServiceName"))
755
815
  VirtualServiceBackend.struct_class = Types::VirtualServiceBackend
756
816