aws-sdk-acm 1.105.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-acm/client.rb +20 -19
- 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 +1 -1
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,11 @@
|
|
|
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
|
+
|
|
4
9
|
1.105.0 (2026-05-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.106.0
|
data/lib/aws-sdk-acm/client.rb
CHANGED
|
@@ -1331,14 +1331,12 @@ module Aws::ACM
|
|
|
1331
1331
|
# you can validate domain ownership.
|
|
1332
1332
|
#
|
|
1333
1333
|
# @option params [Types::CertificateOptions] :options
|
|
1334
|
-
# You can use this parameter to specify whether to
|
|
1335
|
-
#
|
|
1334
|
+
# You can use this parameter to specify whether to export your
|
|
1335
|
+
# certificate.
|
|
1336
1336
|
#
|
|
1337
|
-
# Certificate transparency
|
|
1338
|
-
# certificates
|
|
1339
|
-
#
|
|
1340
|
-
# message in a browser. For more information, see [Opting Out of
|
|
1341
|
-
# 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].
|
|
1342
1340
|
#
|
|
1343
1341
|
# You can export public ACM certificates to use with Amazon Web Services
|
|
1344
1342
|
# services as well as outside the Amazon Web Services Cloud. For more
|
|
@@ -1347,7 +1345,7 @@ module Aws::ACM
|
|
|
1347
1345
|
#
|
|
1348
1346
|
#
|
|
1349
1347
|
#
|
|
1350
|
-
# [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
|
|
1351
1349
|
# [2]: https://docs.aws.amazon.com/acm/latest/userguide/acm-exportable-certificates.html
|
|
1352
1350
|
#
|
|
1353
1351
|
# @option params [String] :certificate_authority_arn
|
|
@@ -1764,14 +1762,14 @@ module Aws::ACM
|
|
|
1764
1762
|
end
|
|
1765
1763
|
|
|
1766
1764
|
# Updates a certificate. You can use this function to specify whether to
|
|
1767
|
-
#
|
|
1768
|
-
#
|
|
1769
|
-
#
|
|
1770
|
-
#
|
|
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].
|
|
1771
1769
|
#
|
|
1772
1770
|
#
|
|
1773
1771
|
#
|
|
1774
|
-
# [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
|
|
1775
1773
|
# [2]: https://docs.aws.amazon.com/acm/latest/userguide/acm-exportable-certificates.html
|
|
1776
1774
|
#
|
|
1777
1775
|
# @option params [required, String] :certificate_arn
|
|
@@ -1782,11 +1780,14 @@ module Aws::ACM
|
|
|
1782
1780
|
#
|
|
1783
1781
|
# @option params [required, Types::CertificateOptions] :options
|
|
1784
1782
|
# Use to update the options for your certificate. Currently, you can
|
|
1785
|
-
# specify whether to
|
|
1786
|
-
#
|
|
1787
|
-
#
|
|
1788
|
-
#
|
|
1789
|
-
#
|
|
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
|
|
1790
1791
|
#
|
|
1791
1792
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1792
1793
|
#
|
|
@@ -1827,7 +1828,7 @@ module Aws::ACM
|
|
|
1827
1828
|
tracer: tracer
|
|
1828
1829
|
)
|
|
1829
1830
|
context[:gem_name] = 'aws-sdk-acm'
|
|
1830
|
-
context[:gem_version] = '1.
|
|
1831
|
+
context[:gem_version] = '1.106.0'
|
|
1831
1832
|
Seahorse::Client::Request.new(handlers, context)
|
|
1832
1833
|
end
|
|
1833
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