aws-sdk-codecatalyst 1.31.0 → 1.32.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codecatalyst/client.rb +1 -1
- data/lib/aws-sdk-codecatalyst/endpoint_provider.rb +6 -9
- data/lib/aws-sdk-codecatalyst.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac6f28870f732e0c000148e8c4b75cb41f353721c1aa21a4ff56186c3e02812a
|
4
|
+
data.tar.gz: a1366bcea2d48031dae75637fa7ddaebe6a5c2a36c1644a67959ba8eb48b10de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 421ebdb561be319896da1229d4673d4227f1cdb8239ad3c815ee3215975d34c239d47ea85f9cd17025151304cc372a537d7b9ea749bda891f144888d37d64785
|
7
|
+
data.tar.gz: ad159f94c898994f7379d0ea30812354d06d419146296c475e9e47ab50fa8e77e978c12b3ff722d08d5b55882916ce0ba7f90748b7301eeca6efd1963325cf3d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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.
|
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
|
-
|
14
|
-
|
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
|
data/lib/aws-sdk-codecatalyst.rb
CHANGED
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.
|
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-
|
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
|