aws-sdk-codecatalyst 1.30.0 → 1.32.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: 4493ae385c4faa2781ae3e1d343944d75f53ad628aba0974f8c898f7049a2198
4
- data.tar.gz: 9f7a2e00356502b98acf96b917093a5ab5d25206483f6d19092db2e38c4b5c18
3
+ metadata.gz: ac6f28870f732e0c000148e8c4b75cb41f353721c1aa21a4ff56186c3e02812a
4
+ data.tar.gz: a1366bcea2d48031dae75637fa7ddaebe6a5c2a36c1644a67959ba8eb48b10de
5
5
  SHA512:
6
- metadata.gz: 25af70feaba9d798983a05d6cc9d22ce0084a91d1c6cf6afb6f60af18af4088ee92f8923b46e2693b44abcef1baef2ee69fb70ed301df0f678cdabdfb2b637bb
7
- data.tar.gz: 3e16b86881fa9e0466db5ee9c3de27e80f0c5220fea333ce8c901652ea42a16389f376ab7c30dd450e3efeab5c21826a0b00a8ef0746372d5998e73591e8037d
6
+ metadata.gz: 421ebdb561be319896da1229d4673d4227f1cdb8239ad3c815ee3215975d34c239d47ea85f9cd17025151304cc372a537d7b9ea749bda891f144888d37d64785
7
+ data.tar.gz: ad159f94c898994f7379d0ea30812354d06d419146296c475e9e47ab50fa8e77e978c12b3ff722d08d5b55882916ce0ba7f90748b7301eeca6efd1963325cf3d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.32.0 (2025-02-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.31.0 (2025-01-15)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.30.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
1
+ 1.32.0
@@ -257,11 +257,34 @@ module Aws::CodeCatalyst
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -2461,7 +2484,7 @@ module Aws::CodeCatalyst
2461
2484
  tracer: tracer
2462
2485
  )
2463
2486
  context[:gem_name] = 'aws-sdk-codecatalyst'
2464
- context[:gem_version] = '1.30.0'
2487
+ context[:gem_version] = '1.32.0'
2465
2488
  Seahorse::Client::Request.new(handlers, context)
2466
2489
  end
2467
2490
 
@@ -10,14 +10,11 @@
10
10
  module Aws::CodeCatalyst
11
11
  class EndpointProvider
12
12
  def resolve_endpoint(parameters)
13
- use_fips = parameters.use_fips
14
- region = parameters.region
15
- endpoint = parameters.endpoint
16
- if Aws::Endpoints::Matchers.set?(endpoint)
17
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
13
+ if Aws::Endpoints::Matchers.set?(parameters.endpoint)
14
+ return Aws::Endpoints::Endpoint.new(url: parameters.endpoint, headers: {}, properties: {})
18
15
  end
19
- if Aws::Endpoints::Matchers.not(Aws::Endpoints::Matchers.set?(region)) && (partition_result = Aws::Endpoints::Matchers.aws_partition("us-west-2"))
20
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
16
+ if Aws::Endpoints::Matchers.not(Aws::Endpoints::Matchers.set?(parameters.region)) && (partition_result = Aws::Endpoints::Matchers.aws_partition("us-west-2"))
17
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
21
18
  if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), false)
22
19
  raise ArgumentError, "Partition does not support FIPS."
23
20
  end
@@ -25,8 +22,8 @@ module Aws::CodeCatalyst
25
22
  end
26
23
  return Aws::Endpoints::Endpoint.new(url: "https://codecatalyst.global.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
27
24
  end
28
- if Aws::Endpoints::Matchers.set?(region) && (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
29
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
25
+ if Aws::Endpoints::Matchers.set?(parameters.region) && (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
26
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
30
27
  if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), false)
31
28
  raise ArgumentError, "Partition does not support FIPS."
32
29
  end
@@ -54,7 +54,7 @@ module Aws::CodeCatalyst
54
54
  autoload :EndpointProvider, 'aws-sdk-codecatalyst/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-codecatalyst/endpoints'
56
56
 
57
- GEM_VERSION = '1.30.0'
57
+ GEM_VERSION = '1.32.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codecatalyst
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.30.0
4
+ version: 1.32.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: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2025-02-06 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.210.0
22
+ version: 3.216.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.210.0
32
+ version: 3.216.0
33
33
  description: Official AWS Ruby gem for Amazon CodeCatalyst. This gem is part of the
34
34
  AWS SDK for Ruby.
35
35
  email: