aws-sdk-codecatalyst 1.31.0 → 1.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 95edfaac3e727ba4ac4137a932c817c9fa0678bb9f03ba631e7a5f227f4c7ce4
4
- data.tar.gz: 1d95be010b2e26d9aafbbcb940928dc18e5140918b524b5ba898e1b66da49187
3
+ metadata.gz: ac6f28870f732e0c000148e8c4b75cb41f353721c1aa21a4ff56186c3e02812a
4
+ data.tar.gz: a1366bcea2d48031dae75637fa7ddaebe6a5c2a36c1644a67959ba8eb48b10de
5
5
  SHA512:
6
- metadata.gz: c8351152b064db441981f741ef3a31c94c8848f688581a90d0515440725a94f9a76c5496846254cb5d3e0289dad4508fdde47fed25af7caaa5f6dc359b9edf47
7
- data.tar.gz: 8fc01883f0d72686bc55b7f60fedbff7e6069091c6a3ec1f3f2322214ca6dbdbdf39fe0d9c7adfcae9af4e36443d955ea614b1d39f0f47a664e6d48a22d4a583
6
+ metadata.gz: 421ebdb561be319896da1229d4673d4227f1cdb8239ad3c815ee3215975d34c239d47ea85f9cd17025151304cc372a537d7b9ea749bda891f144888d37d64785
7
+ data.tar.gz: ad159f94c898994f7379d0ea30812354d06d419146296c475e9e47ab50fa8e77e978c12b3ff722d08d5b55882916ce0ba7f90748b7301eeca6efd1963325cf3d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.31.0 (2025-01-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.31.0
1
+ 1.32.0
@@ -2484,7 +2484,7 @@ module Aws::CodeCatalyst
2484
2484
  tracer: tracer
2485
2485
  )
2486
2486
  context[:gem_name] = 'aws-sdk-codecatalyst'
2487
- context[:gem_version] = '1.31.0'
2487
+ context[:gem_version] = '1.32.0'
2488
2488
  Seahorse::Client::Request.new(handlers, context)
2489
2489
  end
2490
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.31.0'
57
+ GEM_VERSION = '1.32.0'
58
58
 
59
59
  end
60
60
 
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.31.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: 2025-01-15 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