aws-sdk-acm 1.104.0 → 1.106.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-acm/client.rb +25 -26
- data/lib/aws-sdk-acm/client_api.rb +1 -1
- data/lib/aws-sdk-acm/types.rb +24 -29
- data/lib/aws-sdk-acm.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 955a0d821c32185c3636da0feb8001ea2e89ddd34f518f95736f3580732cab96
|
|
4
|
+
data.tar.gz: 17fa99561f82d21efc4fc68ba858bb7b8745f7f4b07942ae6a8c8ee93ce75505
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f95f4b4fc5a2b2a5294618f5297a6ae1e30584cb71803990ae993232cd289a69853dd6119100208fd1a68f2ce450fbfd61cd986fe7541c02e7b945da77e1cf16
|
|
7
|
+
data.tar.gz: ba94778f305bc5cfba0e78a5a65170ac71baa95604d7a4b390d9c144e97f856df3e46e79c64e8d24b0482cc52f4e7e5aa755419d0614b44087f2e521ea13266f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.106.0 (2026-06-12)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Certificate transparency logging opt-out is no longer available. Per compliance requirements, all public ACM certificates are automatically recorded in certificate transparency logs. The CertificateTransparencyLoggingPreference option is deprecated.
|
|
8
|
+
|
|
9
|
+
1.105.0 (2026-05-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adding new BDD representation of endpoint ruleset
|
|
13
|
+
|
|
4
14
|
1.104.0 (2026-05-19)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.106.0
|
data/lib/aws-sdk-acm/client.rb
CHANGED
|
@@ -199,7 +199,7 @@ module Aws::ACM
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::ACM
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -1333,14 +1331,12 @@ module Aws::ACM
|
|
|
1333
1331
|
# you can validate domain ownership.
|
|
1334
1332
|
#
|
|
1335
1333
|
# @option params [Types::CertificateOptions] :options
|
|
1336
|
-
# You can use this parameter to specify whether to
|
|
1337
|
-
#
|
|
1334
|
+
# You can use this parameter to specify whether to export your
|
|
1335
|
+
# certificate.
|
|
1338
1336
|
#
|
|
1339
|
-
# Certificate transparency
|
|
1340
|
-
# certificates
|
|
1341
|
-
#
|
|
1342
|
-
# message in a browser. For more information, see [Opting Out of
|
|
1343
|
-
# Certificate Transparency Logging][1].
|
|
1337
|
+
# Certificate transparency logging opt-out is no longer available. All
|
|
1338
|
+
# public certificates are recorded in a certificate transparency log.
|
|
1339
|
+
# For more information, see [Certificate Transparency Logging][1].
|
|
1344
1340
|
#
|
|
1345
1341
|
# You can export public ACM certificates to use with Amazon Web Services
|
|
1346
1342
|
# services as well as outside the Amazon Web Services Cloud. For more
|
|
@@ -1349,7 +1345,7 @@ module Aws::ACM
|
|
|
1349
1345
|
#
|
|
1350
1346
|
#
|
|
1351
1347
|
#
|
|
1352
|
-
# [1]: https://docs.aws.amazon.com/acm/latest/userguide/acm-
|
|
1348
|
+
# [1]: https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency
|
|
1353
1349
|
# [2]: https://docs.aws.amazon.com/acm/latest/userguide/acm-exportable-certificates.html
|
|
1354
1350
|
#
|
|
1355
1351
|
# @option params [String] :certificate_authority_arn
|
|
@@ -1766,14 +1762,14 @@ module Aws::ACM
|
|
|
1766
1762
|
end
|
|
1767
1763
|
|
|
1768
1764
|
# Updates a certificate. You can use this function to specify whether to
|
|
1769
|
-
#
|
|
1770
|
-
#
|
|
1771
|
-
#
|
|
1772
|
-
#
|
|
1765
|
+
# export your certificate. Certificate transparency logging opt-out is
|
|
1766
|
+
# no longer available. For more information, see [Certificate
|
|
1767
|
+
# Transparency Logging][1] and [Certificate Manager Exportable Managed
|
|
1768
|
+
# Certificates][2].
|
|
1773
1769
|
#
|
|
1774
1770
|
#
|
|
1775
1771
|
#
|
|
1776
|
-
# [1]: https://docs.aws.amazon.com/acm/latest/userguide/acm-
|
|
1772
|
+
# [1]: https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency
|
|
1777
1773
|
# [2]: https://docs.aws.amazon.com/acm/latest/userguide/acm-exportable-certificates.html
|
|
1778
1774
|
#
|
|
1779
1775
|
# @option params [required, String] :certificate_arn
|
|
@@ -1784,11 +1780,14 @@ module Aws::ACM
|
|
|
1784
1780
|
#
|
|
1785
1781
|
# @option params [required, Types::CertificateOptions] :options
|
|
1786
1782
|
# Use to update the options for your certificate. Currently, you can
|
|
1787
|
-
# specify whether to
|
|
1788
|
-
#
|
|
1789
|
-
#
|
|
1790
|
-
#
|
|
1791
|
-
#
|
|
1783
|
+
# specify whether to export your certificate. Certificate transparency
|
|
1784
|
+
# logging opt-out is no longer available. All public certificates are
|
|
1785
|
+
# recorded in a certificate transparency log. For more information, see
|
|
1786
|
+
# [Certificate Transparency Logging][1].
|
|
1787
|
+
#
|
|
1788
|
+
#
|
|
1789
|
+
#
|
|
1790
|
+
# [1]: https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency
|
|
1792
1791
|
#
|
|
1793
1792
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1794
1793
|
#
|
|
@@ -1829,7 +1828,7 @@ module Aws::ACM
|
|
|
1829
1828
|
tracer: tracer
|
|
1830
1829
|
)
|
|
1831
1830
|
context[:gem_name] = 'aws-sdk-acm'
|
|
1832
|
-
context[:gem_version] = '1.
|
|
1831
|
+
context[:gem_version] = '1.106.0'
|
|
1833
1832
|
Seahorse::Client::Request.new(handlers, context)
|
|
1834
1833
|
end
|
|
1835
1834
|
|
|
@@ -257,7 +257,7 @@ module Aws::ACM
|
|
|
257
257
|
CertificateMetadata.add_member_subclass(:unknown, Types::CertificateMetadata::Unknown)
|
|
258
258
|
CertificateMetadata.struct_class = Types::CertificateMetadata
|
|
259
259
|
|
|
260
|
-
CertificateOptions.add_member(:certificate_transparency_logging_preference, Shapes::ShapeRef.new(shape: CertificateTransparencyLoggingPreference, location_name: "CertificateTransparencyLoggingPreference"))
|
|
260
|
+
CertificateOptions.add_member(:certificate_transparency_logging_preference, Shapes::ShapeRef.new(shape: CertificateTransparencyLoggingPreference, deprecated: true, location_name: "CertificateTransparencyLoggingPreference", metadata: {"deprecatedMessage" => "Certificate transparency logging opt-out is no longer available.", "deprecatedSince" => "12th June 2026"}))
|
|
261
261
|
CertificateOptions.add_member(:export, Shapes::ShapeRef.new(shape: CertificateExport, location_name: "Export"))
|
|
262
262
|
CertificateOptions.struct_class = Types::CertificateOptions
|
|
263
263
|
|
data/lib/aws-sdk-acm/types.rb
CHANGED
|
@@ -400,12 +400,9 @@ module Aws::ACM
|
|
|
400
400
|
# @return [String]
|
|
401
401
|
#
|
|
402
402
|
# @!attribute [rw] options
|
|
403
|
-
#
|
|
404
|
-
#
|
|
405
|
-
#
|
|
406
|
-
# issued. A browser might respond to certificate that has not been
|
|
407
|
-
# logged by showing an error message. The logs are cryptographically
|
|
408
|
-
# secure.
|
|
403
|
+
# Contains the certificate options. Certificate transparency logging
|
|
404
|
+
# opt-out is no longer available. All public certificates are recorded
|
|
405
|
+
# in a certificate transparency log.
|
|
409
406
|
# @return [Types::CertificateOptions]
|
|
410
407
|
#
|
|
411
408
|
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/CertificateDetail AWS API Documentation
|
|
@@ -539,15 +536,11 @@ module Aws::ACM
|
|
|
539
536
|
end
|
|
540
537
|
|
|
541
538
|
# Structure that contains options for your certificate. You can use this
|
|
542
|
-
# structure to specify whether to
|
|
543
|
-
# transparency logging and export your certificate.
|
|
539
|
+
# structure to specify whether to export your certificate.
|
|
544
540
|
#
|
|
545
|
-
#
|
|
546
|
-
#
|
|
547
|
-
#
|
|
548
|
-
# detect SSL/TLS certificates that have been mistakenly or maliciously
|
|
549
|
-
# issued for your domain. For general information, see [Certificate
|
|
550
|
-
# Transparency Logging][1].
|
|
541
|
+
# Certificate transparency logging opt-out is no longer available. All
|
|
542
|
+
# public certificates are recorded in a certificate transparency log.
|
|
543
|
+
# For general information, see [Certificate Transparency Logging][1].
|
|
551
544
|
#
|
|
552
545
|
# You can export public ACM certificates to use with Amazon Web Services
|
|
553
546
|
# services as well as outside Amazon Web Services Cloud. For more
|
|
@@ -560,8 +553,9 @@ module Aws::ACM
|
|
|
560
553
|
# [2]: https://docs.aws.amazon.com/acm/latest/userguide/acm-exportable-certificates.html
|
|
561
554
|
#
|
|
562
555
|
# @!attribute [rw] certificate_transparency_logging_preference
|
|
563
|
-
#
|
|
564
|
-
#
|
|
556
|
+
# This parameter has been deprecated. Certificate transparency logging
|
|
557
|
+
# opt-out is no longer available. All public certificates are recorded
|
|
558
|
+
# in a certificate transparency log.
|
|
565
559
|
# @return [String]
|
|
566
560
|
#
|
|
567
561
|
# @!attribute [rw] export
|
|
@@ -1916,14 +1910,12 @@ module Aws::ACM
|
|
|
1916
1910
|
# @return [Array<Types::DomainValidationOption>]
|
|
1917
1911
|
#
|
|
1918
1912
|
# @!attribute [rw] options
|
|
1919
|
-
# You can use this parameter to specify whether to
|
|
1920
|
-
#
|
|
1913
|
+
# You can use this parameter to specify whether to export your
|
|
1914
|
+
# certificate.
|
|
1921
1915
|
#
|
|
1922
|
-
# Certificate transparency
|
|
1923
|
-
# certificates
|
|
1924
|
-
#
|
|
1925
|
-
# message in a browser. For more information, see [Opting Out of
|
|
1926
|
-
# Certificate Transparency Logging][1].
|
|
1916
|
+
# Certificate transparency logging opt-out is no longer available. All
|
|
1917
|
+
# public certificates are recorded in a certificate transparency log.
|
|
1918
|
+
# For more information, see [Certificate Transparency Logging][1].
|
|
1927
1919
|
#
|
|
1928
1920
|
# You can export public ACM certificates to use with Amazon Web
|
|
1929
1921
|
# Services services as well as outside the Amazon Web Services Cloud.
|
|
@@ -1932,7 +1924,7 @@ module Aws::ACM
|
|
|
1932
1924
|
#
|
|
1933
1925
|
#
|
|
1934
1926
|
#
|
|
1935
|
-
# [1]: https://docs.aws.amazon.com/acm/latest/userguide/acm-
|
|
1927
|
+
# [1]: https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency
|
|
1936
1928
|
# [2]: https://docs.aws.amazon.com/acm/latest/userguide/acm-exportable-certificates.html
|
|
1937
1929
|
# @return [Types::CertificateOptions]
|
|
1938
1930
|
#
|
|
@@ -2398,11 +2390,14 @@ module Aws::ACM
|
|
|
2398
2390
|
#
|
|
2399
2391
|
# @!attribute [rw] options
|
|
2400
2392
|
# Use to update the options for your certificate. Currently, you can
|
|
2401
|
-
# specify whether to
|
|
2402
|
-
#
|
|
2403
|
-
#
|
|
2404
|
-
#
|
|
2405
|
-
#
|
|
2393
|
+
# specify whether to export your certificate. Certificate transparency
|
|
2394
|
+
# logging opt-out is no longer available. All public certificates are
|
|
2395
|
+
# recorded in a certificate transparency log. For more information,
|
|
2396
|
+
# see [Certificate Transparency Logging][1].
|
|
2397
|
+
#
|
|
2398
|
+
#
|
|
2399
|
+
#
|
|
2400
|
+
# [1]: https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency
|
|
2406
2401
|
# @return [Types::CertificateOptions]
|
|
2407
2402
|
#
|
|
2408
2403
|
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/UpdateCertificateOptionsRequest AWS API Documentation
|
data/lib/aws-sdk-acm.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.106.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.248.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|