aws-sdk-acm 1.67.0 → 1.68.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: 5907dbc915bf51cc771d6b81395f1ed0ffbb5c8f3e3d666ffb5be75649d79348
4
- data.tar.gz: efe9812d2e3d72443b72aed4cac787f975bb651c22f07f3d115d7b81619ebb69
3
+ metadata.gz: 88ff85c03adf6e737bb08f0bf24832f4edbcc5086ad95d08ab45376705d8503c
4
+ data.tar.gz: 56c8f63853e9bbaef0a541d7333daf484f74db0f71e3eb40914572cd12d6673a
5
5
  SHA512:
6
- metadata.gz: 790f82d8b26bb48cfa975c9aa915802d4f23b7d69a1e2377631a860d8e7562e399eff8d6f88710b5d24753d10f8e6412c697a53989c2fde489a8a512f76c16f1
7
- data.tar.gz: d6762545a1d227e718fcd819e20e7a933691030fffe7e6fb88eb387be7529925f101453f450980d1172fe9c4bf8e17bca72d7b0bd5882ddeb20440c76baa7df1
6
+ metadata.gz: e0f3b46ece80ae437dac722188f141df068b5d2855d2cd2fd9078a209665d13ea3c0599ec3920c35f7947c4d4334cbc771b41b427f6befc8edc725079278430e
7
+ data.tar.gz: '09f6d35aabbd570c5510d27354f47ec60bdef2e8c16c566bd115c3db35ebe1a85025ec6da521ef5cc5f7e2d350f646804316e1b40b1995b0db489a9cbe86fb09'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.67.0 (2024-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.68.0
@@ -1454,7 +1454,7 @@ module Aws::ACM
1454
1454
  params: params,
1455
1455
  config: config)
1456
1456
  context[:gem_name] = 'aws-sdk-acm'
1457
- context[:gem_version] = '1.67.0'
1457
+ context[:gem_version] = '1.68.0'
1458
1458
  Seahorse::Client::Request.new(handlers, context)
1459
1459
  end
1460
1460
 
@@ -392,6 +392,7 @@ module Aws::ACM
392
392
  "endpointPrefix" => "acm",
393
393
  "jsonVersion" => "1.1",
394
394
  "protocol" => "json",
395
+ "protocols" => ["json"],
395
396
  "serviceAbbreviation" => "ACM",
396
397
  "serviceFullName" => "AWS Certificate Manager",
397
398
  "serviceId" => "ACM",
@@ -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?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
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
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-acm/customizations'
53
53
  # @!group service
54
54
  module Aws::ACM
55
55
 
56
- GEM_VERSION = '1.67.0'
56
+ GEM_VERSION = '1.68.0'
57
57
 
58
58
  end
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.67.0
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-05-13 00:00:00.000000000 Z
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