aws-sdk-appmesh 1.55.0 → 1.57.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: 753004e0c047d62c0e2423cfde8bb1da3304b7f88fd8a326e9a80f6622096a25
4
- data.tar.gz: e79e51bac61812e7b16704064bbce9f021f7e307fd1bca6cd6b475b2006707ea
3
+ metadata.gz: 3cbb896efa521ac42fbee41a01961250a97dfdb23677e71d24a1d1105122981f
4
+ data.tar.gz: 496a120e3066ff5202eb4597c0705fb8b0fc6d8900fedf06cebd6104a2c4157d
5
5
  SHA512:
6
- metadata.gz: a4d73e9dca955e6ef5e77189bd4a4306d99797349c2080ff26c61019dba5987ba70cc2f5dcaaa7357c207b8adbfc89bb8bf95c03da5167939037fd89691ca289
7
- data.tar.gz: 192ff945c7336f28451b824b68599326b8969580b078f765c2c488b4449894f89c30ec395404d94ed5ca5cad506d245e45c2ae0e1ddfdfa6bbc946f1554ab6b9
6
+ metadata.gz: 8b31278ac4a7246488e118ef3926e1fe02bfa51e346cd58b180fb87373a8837be96973aa8dab1f137847124d5a6c8bed88b1b56ad3ad73f67abd400eb39eeb09
7
+ data.tar.gz: c72f7b84c95e26b2129cd5e0b1ce22ae90e56afaaef646b13893949ea979ff369308a1f8d8d06aeb2d5e183db2941a295007c1451cf446d778ab8c8b4c105371
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.57.0 (2023-11-17)
5
+ ------------------
6
+
7
+ * Feature - Change the default value of these fields from 0 to null: MaxConnections, MaxPendingRequests, MaxRequests, HealthCheckThreshold, PortNumber, and HealthCheckPolicy -> port. Users are not expected to perceive the change, except that badRequestException is thrown when required fields missing configured.
8
+
9
+ 1.56.0 (2023-09-27)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.55.0 (2023-09-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.55.0
1
+ 1.57.0
@@ -5498,7 +5498,7 @@ module Aws::AppMesh
5498
5498
  params: params,
5499
5499
  config: config)
5500
5500
  context[:gem_name] = 'aws-sdk-appmesh'
5501
- context[:gem_version] = '1.55.0'
5501
+ context[:gem_version] = '1.57.0'
5502
5502
  Seahorse::Client::Request.new(handlers, context)
5503
5503
  end
5504
5504
 
@@ -385,7 +385,7 @@ module Aws::AppMesh
385
385
  ClientPolicy.struct_class = Types::ClientPolicy
386
386
 
387
387
  ClientPolicyTls.add_member(:certificate, Shapes::ShapeRef.new(shape: ClientTlsCertificate, location_name: "certificate"))
388
- ClientPolicyTls.add_member(:enforce, Shapes::ShapeRef.new(shape: Boolean, location_name: "enforce", metadata: {"box"=>true}))
388
+ ClientPolicyTls.add_member(:enforce, Shapes::ShapeRef.new(shape: Boolean, location_name: "enforce"))
389
389
  ClientPolicyTls.add_member(:ports, Shapes::ShapeRef.new(shape: PortSet, location_name: "ports"))
390
390
  ClientPolicyTls.add_member(:validation, Shapes::ShapeRef.new(shape: TlsValidationContext, required: true, location_name: "validation"))
391
391
  ClientPolicyTls.struct_class = Types::ClientPolicyTls
@@ -1325,7 +1325,7 @@ module Aws::AppMesh
1325
1325
  VirtualGatewayClientPolicy.struct_class = Types::VirtualGatewayClientPolicy
1326
1326
 
1327
1327
  VirtualGatewayClientPolicyTls.add_member(:certificate, Shapes::ShapeRef.new(shape: VirtualGatewayClientTlsCertificate, location_name: "certificate"))
1328
- VirtualGatewayClientPolicyTls.add_member(:enforce, Shapes::ShapeRef.new(shape: Boolean, location_name: "enforce", metadata: {"box"=>true}))
1328
+ VirtualGatewayClientPolicyTls.add_member(:enforce, Shapes::ShapeRef.new(shape: Boolean, location_name: "enforce"))
1329
1329
  VirtualGatewayClientPolicyTls.add_member(:ports, Shapes::ShapeRef.new(shape: PortSet, location_name: "ports"))
1330
1330
  VirtualGatewayClientPolicyTls.add_member(:validation, Shapes::ShapeRef.new(shape: VirtualGatewayTlsValidationContext, required: true, location_name: "validation"))
1331
1331
  VirtualGatewayClientPolicyTls.struct_class = Types::VirtualGatewayClientPolicyTls
@@ -1375,7 +1375,7 @@ module Aws::AppMesh
1375
1375
  VirtualGatewayHttp2ConnectionPool.struct_class = Types::VirtualGatewayHttp2ConnectionPool
1376
1376
 
1377
1377
  VirtualGatewayHttpConnectionPool.add_member(:max_connections, Shapes::ShapeRef.new(shape: MaxConnections, required: true, location_name: "maxConnections"))
1378
- VirtualGatewayHttpConnectionPool.add_member(:max_pending_requests, Shapes::ShapeRef.new(shape: MaxPendingRequests, location_name: "maxPendingRequests", metadata: {"box"=>true}))
1378
+ VirtualGatewayHttpConnectionPool.add_member(:max_pending_requests, Shapes::ShapeRef.new(shape: MaxPendingRequests, location_name: "maxPendingRequests"))
1379
1379
  VirtualGatewayHttpConnectionPool.struct_class = Types::VirtualGatewayHttpConnectionPool
1380
1380
 
1381
1381
  VirtualGatewayList.member = Shapes::ShapeRef.new(shape: VirtualGatewayRef)
@@ -1499,7 +1499,7 @@ module Aws::AppMesh
1499
1499
  VirtualNodeHttp2ConnectionPool.struct_class = Types::VirtualNodeHttp2ConnectionPool
1500
1500
 
1501
1501
  VirtualNodeHttpConnectionPool.add_member(:max_connections, Shapes::ShapeRef.new(shape: MaxConnections, required: true, location_name: "maxConnections"))
1502
- VirtualNodeHttpConnectionPool.add_member(:max_pending_requests, Shapes::ShapeRef.new(shape: MaxPendingRequests, location_name: "maxPendingRequests", metadata: {"box"=>true}))
1502
+ VirtualNodeHttpConnectionPool.add_member(:max_pending_requests, Shapes::ShapeRef.new(shape: MaxPendingRequests, location_name: "maxPendingRequests"))
1503
1503
  VirtualNodeHttpConnectionPool.struct_class = Types::VirtualNodeHttpConnectionPool
1504
1504
 
1505
1505
  VirtualNodeList.member = Shapes::ShapeRef.new(shape: VirtualNodeRef)
@@ -32,7 +32,7 @@ module Aws::AppMesh
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://appmesh-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -1485,7 +1485,10 @@ module Aws::AppMesh
1485
1485
  # specify a path in the Envoy container's file system to write the
1486
1486
  # files to disk.
1487
1487
  #
1488
- # <note> <p>The Envoy process must have write permissions to the path that you specify here. Otherwise, Envoy fails to bootstrap properly.</p> </note>
1488
+ # <note markdown="1"> The Envoy process must have write permissions to the path that you
1489
+ # specify here. Otherwise, Envoy fails to bootstrap properly.
1490
+ #
1491
+ # </note>
1489
1492
  # @return [String]
1490
1493
  #
1491
1494
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/FileAccessLog AWS API Documentation
@@ -1788,7 +1791,7 @@ module Aws::AppMesh
1788
1791
  # @return [Array<Types::GrpcGatewayRouteMetadata>]
1789
1792
  #
1790
1793
  # @!attribute [rw] port
1791
- # The port number to match from the request.
1794
+ # The gateway route port to be matched on.
1792
1795
  # @return [Integer]
1793
1796
  #
1794
1797
  # @!attribute [rw] service_name
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-appmesh/customizations'
52
52
  # @!group service
53
53
  module Aws::AppMesh
54
54
 
55
- GEM_VERSION = '1.55.0'
55
+ GEM_VERSION = '1.57.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appmesh
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.55.0
4
+ version: 1.57.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-19 00:00:00.000000000 Z
11
+ date: 2023-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.177.0
22
+ version: 3.184.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement