aws-sdk-acm 1.66.0 → 1.68.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-acm/client.rb +4 -3
- data/lib/aws-sdk-acm/client_api.rb +1 -0
- data/lib/aws-sdk-acm/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-acm.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: 88ff85c03adf6e737bb08f0bf24832f4edbcc5086ad95d08ab45376705d8503c
|
4
|
+
data.tar.gz: 56c8f63853e9bbaef0a541d7333daf484f74db0f71e3eb40914572cd12d6673a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0f3b46ece80ae437dac722188f141df068b5d2855d2cd2fd9078a209665d13ea3c0599ec3920c35f7947c4d4334cbc771b41b427f6befc8edc725079278430e
|
7
|
+
data.tar.gz: '09f6d35aabbd570c5510d27354f47ec60bdef2e8c16c566bd115c3db35ebe1a85025ec6da521ef5cc5f7e2d350f646804316e1b40b1995b0db489a9cbe86fb09'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.68.0 (2024-05-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - add v2 smoke tests and smithy smokeTests trait for SDK testing.
|
8
|
+
|
9
|
+
1.67.0 (2024-05-13)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.66.0 (2024-04-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.68.0
|
data/lib/aws-sdk-acm/client.rb
CHANGED
@@ -301,8 +301,9 @@ module Aws::ACM
|
|
301
301
|
#
|
302
302
|
# @option options [String] :sdk_ua_app_id
|
303
303
|
# A unique and opaque application ID that is appended to the
|
304
|
-
# User-Agent header as app
|
305
|
-
# maximum length of 50.
|
304
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
305
|
+
# maximum length of 50. This variable is sourced from environment
|
306
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
306
307
|
#
|
307
308
|
# @option options [String] :secret_access_key
|
308
309
|
#
|
@@ -1453,7 +1454,7 @@ module Aws::ACM
|
|
1453
1454
|
params: params,
|
1454
1455
|
config: config)
|
1455
1456
|
context[:gem_name] = 'aws-sdk-acm'
|
1456
|
-
context[:gem_version] = '1.
|
1457
|
+
context[:gem_version] = '1.68.0'
|
1457
1458
|
Seahorse::Client::Request.new(handlers, context)
|
1458
1459
|
end
|
1459
1460
|
|
@@ -32,8 +32,8 @@ module Aws::ACM
|
|
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?(
|
36
|
-
if Aws::Endpoints::Matchers.string_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
|
37
37
|
return Aws::Endpoints::Endpoint.new(url: "https://acm.#{region}.amazonaws.com", headers: {}, properties: {})
|
38
38
|
end
|
39
39
|
return Aws::Endpoints::Endpoint.new(url: "https://acm-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
data/lib/aws-sdk-acm.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-acm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.68.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-
|
11
|
+
date: 2024-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|