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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f14314cd6d437a23bd19f3e9b3aede52d619307e4d0b3b3546ce1f9338200e5b
4
- data.tar.gz: 73219f5476535d9baf21e11f08af21af0fa34d44393b9fc9bae801f30b35333f
3
+ metadata.gz: 88ff85c03adf6e737bb08f0bf24832f4edbcc5086ad95d08ab45376705d8503c
4
+ data.tar.gz: 56c8f63853e9bbaef0a541d7333daf484f74db0f71e3eb40914572cd12d6673a
5
5
  SHA512:
6
- metadata.gz: 2b10c1d171abfc9cf0fa500503764a7fc694c2e166a4c305497567522015ae8ac8204702020f35ae40b6d2b56bae0cf89a867bec8182d260bf7aca76496641b7
7
- data.tar.gz: 384712db5e22655e4c2be9804a2126d35ecf42be6c77b923be4a1b322f0ceb451c3c3464ac558c1ceba364aa9beb82af5b267dda052a7159455529b9a8df90f6
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.66.0
1
+ 1.68.0
@@ -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/<sdk_ua_app_id>. It should have a
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.66.0'
1457
+ context[:gem_version] = '1.68.0'
1457
1458
  Seahorse::Client::Request.new(handlers, context)
1458
1459
  end
1459
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.66.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.66.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-04-25 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