aws-sdk-acm 1.73.0 → 1.75.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 +64 -23
- data/lib/aws-sdk-acm/types.rb +40 -25
- data/lib/aws-sdk-acm.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 831e9e39ef0dd0af848b1d8e81f9d2dd37700f6729a7f2ebcca705f9b4f75189
|
4
|
+
data.tar.gz: 39b449e400c34266e4b35d6e6d88c72db4cab8277fbbbb89aeba7f1eaa3560db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c754961b472f6e427916b07d3a50778d80e31f4a705a2e527ed2e792feac218e8c10bbd67afa4267ab2d70e260e2a83dddc0a20e67f057b7bbb1b18b81ca7cc
|
7
|
+
data.tar.gz: f94f2d6b95343d0773bb2ceaacb27b9b5b741ef34ddab6f93cb11446eca57a7ffd7e0263dd1a87489cff003344dc13ff6fc400fe5a59c5da2c8e6493107136e2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.75.0 (2024-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.74.0 (2024-07-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation updates, including fixes for xml formatting, broken links, and ListCertificates description.
|
13
|
+
|
4
14
|
1.73.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.75.0
|
data/lib/aws-sdk-acm/client.rb
CHANGED
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
36
37
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
37
38
|
|
@@ -83,6 +84,7 @@ module Aws::ACM
|
|
83
84
|
add_plugin(Aws::Plugins::RequestCompression)
|
84
85
|
add_plugin(Aws::Plugins::DefaultsMode)
|
85
86
|
add_plugin(Aws::Plugins::RecursionDetection)
|
87
|
+
add_plugin(Aws::Plugins::Telemetry)
|
86
88
|
add_plugin(Aws::Plugins::Sign)
|
87
89
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
88
90
|
add_plugin(Aws::ACM::Plugins::Endpoints)
|
@@ -337,6 +339,16 @@ module Aws::ACM
|
|
337
339
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
338
340
|
# requests are made, and retries are disabled.
|
339
341
|
#
|
342
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
343
|
+
# Allows you to provide a telemetry provider, which is used to
|
344
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
345
|
+
# will not record or emit any telemetry data. The SDK supports the
|
346
|
+
# following telemetry providers:
|
347
|
+
#
|
348
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
349
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
350
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
351
|
+
#
|
340
352
|
# @option options [Aws::TokenProvider] :token_provider
|
341
353
|
# A Bearer Token Provider. This can be an instance of any one of the
|
342
354
|
# following classes:
|
@@ -718,11 +730,14 @@ module Aws::ACM
|
|
718
730
|
req.send_request(options)
|
719
731
|
end
|
720
732
|
|
721
|
-
# Retrieves
|
722
|
-
#
|
723
|
-
#
|
724
|
-
#
|
725
|
-
# the
|
733
|
+
# Retrieves a certificate and its certificate chain. The certificate may
|
734
|
+
# be either a public or private certificate issued using the ACM
|
735
|
+
# `RequestCertificate` action, or a certificate imported into ACM using
|
736
|
+
# the `ImportCertificate` action. The chain consists of the certificate
|
737
|
+
# of the issuing CA and the intermediate certificates of any other
|
738
|
+
# subordinate CAs. All of the certificates are base64 encoded. You can
|
739
|
+
# use [OpenSSL][1] to decode the certificates and inspect individual
|
740
|
+
# fields.
|
726
741
|
#
|
727
742
|
#
|
728
743
|
#
|
@@ -789,12 +804,6 @@ module Aws::ACM
|
|
789
804
|
#
|
790
805
|
# * The private key must be no larger than 5 KB (5,120 bytes).
|
791
806
|
#
|
792
|
-
# * If the certificate you are importing is not self-signed, you must
|
793
|
-
# enter its certificate chain.
|
794
|
-
#
|
795
|
-
# * If a certificate chain is included, the issuer must be the subject
|
796
|
-
# of one of the certificates in the chain.
|
797
|
-
#
|
798
807
|
# * The certificate, private key, and certificate chain must be
|
799
808
|
# PEM-encoded.
|
800
809
|
#
|
@@ -888,11 +897,15 @@ module Aws::ACM
|
|
888
897
|
req.send_request(options)
|
889
898
|
end
|
890
899
|
|
891
|
-
# Retrieves a list of certificate ARNs and domain names.
|
892
|
-
#
|
893
|
-
#
|
894
|
-
#
|
895
|
-
#
|
900
|
+
# Retrieves a list of certificate ARNs and domain names. By default, the
|
901
|
+
# API returns RSA\_2048 certificates. To return all certificates in the
|
902
|
+
# account, include the `keyType` filter with the values `[RSA_1024,
|
903
|
+
# RSA_2048, RSA_3072, RSA_4096, EC_prime256v1, EC_secp384r1,
|
904
|
+
# EC_secp521r1]`.
|
905
|
+
#
|
906
|
+
# In addition to `keyType`, you can also filter by the
|
907
|
+
# `CertificateStatuses`, `keyUsage`, and `extendedKeyUsage` attributes
|
908
|
+
# on the certificate. For more information, see Filters.
|
896
909
|
#
|
897
910
|
# @option params [Array<String>] :certificate_statuses
|
898
911
|
# Filter the certificate list by status value.
|
@@ -1287,14 +1300,37 @@ module Aws::ACM
|
|
1287
1300
|
# ACM certificates. Elliptic Curve Digital Signature Algorithm (ECDSA)
|
1288
1301
|
# keys are smaller, offering security comparable to RSA keys but with
|
1289
1302
|
# greater computing efficiency. However, ECDSA is not supported by all
|
1290
|
-
# network clients. Some
|
1291
|
-
# support ECDSA keys of a particular size, while others
|
1292
|
-
# either RSA and ECDSA keys to ensure that
|
1293
|
-
# Check the requirements for the
|
1294
|
-
# your certificate.
|
1303
|
+
# network clients. Some Amazon Web Services services may require RSA
|
1304
|
+
# keys, or only support ECDSA keys of a particular size, while others
|
1305
|
+
# allow the use of either RSA and ECDSA keys to ensure that
|
1306
|
+
# compatibility is not broken. Check the requirements for the Amazon Web
|
1307
|
+
# Services service where you plan to deploy your certificate. For more
|
1308
|
+
# information about selecting an algorithm, see [Key algorithms][1].
|
1309
|
+
#
|
1310
|
+
# <note markdown="1"> Algorithms supported for an ACM certificate request include:
|
1311
|
+
#
|
1312
|
+
# * `RSA_2048`
|
1313
|
+
#
|
1314
|
+
# * `EC_prime256v1`
|
1315
|
+
#
|
1316
|
+
# * `EC_secp384r1`
|
1317
|
+
#
|
1318
|
+
# Other listed algorithms are for imported certificates only.
|
1319
|
+
#
|
1320
|
+
# </note>
|
1321
|
+
#
|
1322
|
+
# <note markdown="1"> When you request a private PKI certificate signed by a CA from Amazon
|
1323
|
+
# Web Services Private CA, the specified signing algorithm family (RSA
|
1324
|
+
# or ECDSA) must match the algorithm family of the CA's secret key.
|
1325
|
+
#
|
1326
|
+
# </note>
|
1295
1327
|
#
|
1296
1328
|
# Default: RSA\_2048
|
1297
1329
|
#
|
1330
|
+
#
|
1331
|
+
#
|
1332
|
+
# [1]: https://docs.aws.amazon.com/acm/latest/userguide/acm-certificate.html#algorithms
|
1333
|
+
#
|
1298
1334
|
# @return [Types::RequestCertificateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1299
1335
|
#
|
1300
1336
|
# * {Types::RequestCertificateResponse#certificate_arn #certificate_arn} => String
|
@@ -1456,14 +1492,19 @@ module Aws::ACM
|
|
1456
1492
|
# @api private
|
1457
1493
|
def build_request(operation_name, params = {})
|
1458
1494
|
handlers = @handlers.for(operation_name)
|
1495
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
1496
|
+
Aws::Telemetry.module_to_tracer_name('Aws::ACM')
|
1497
|
+
)
|
1459
1498
|
context = Seahorse::Client::RequestContext.new(
|
1460
1499
|
operation_name: operation_name,
|
1461
1500
|
operation: config.api.operation(operation_name),
|
1462
1501
|
client: self,
|
1463
1502
|
params: params,
|
1464
|
-
config: config
|
1503
|
+
config: config,
|
1504
|
+
tracer: tracer
|
1505
|
+
)
|
1465
1506
|
context[:gem_name] = 'aws-sdk-acm'
|
1466
|
-
context[:gem_version] = '1.
|
1507
|
+
context[:gem_version] = '1.75.0'
|
1467
1508
|
Seahorse::Client::Request.new(handlers, context)
|
1468
1509
|
end
|
1469
1510
|
|
data/lib/aws-sdk-acm/types.rb
CHANGED
@@ -321,30 +321,20 @@ module Aws::ACM
|
|
321
321
|
# certificate and additional domain names that can be used to connect
|
322
322
|
# to the website.
|
323
323
|
#
|
324
|
-
# When called by
|
325
|
-
#
|
326
|
-
#
|
327
|
-
#
|
328
|
-
#
|
329
|
-
#
|
330
|
-
#
|
331
|
-
# [1]: https://docs.aws.amazon.com/acm/latestAPIReference/API_ListCertificates.html
|
332
|
-
# [2]: https://docs.aws.amazon.com/acm/latestAPIReference/API_DescribeCertificate.html
|
324
|
+
# When called by ListCertificates, this parameter will only return the
|
325
|
+
# first 100 subject alternative names included in the certificate. To
|
326
|
+
# display the full list of subject alternative names, use
|
327
|
+
# DescribeCertificate.
|
333
328
|
# @return [Array<String>]
|
334
329
|
#
|
335
330
|
# @!attribute [rw] has_additional_subject_alternative_names
|
336
|
-
# When called by
|
337
|
-
#
|
338
|
-
#
|
331
|
+
# When called by ListCertificates, indicates whether the full list of
|
332
|
+
# subject alternative names has been included in the response. If
|
333
|
+
# false, the response includes all of the subject alternative names
|
339
334
|
# included in the certificate. If true, the response only includes the
|
340
335
|
# first 100 subject alternative names included in the certificate. To
|
341
336
|
# display the full list of subject alternative names, use
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
# [1]: https://docs.aws.amazon.com/acm/latestAPIReference/API_ListCertificates.html
|
347
|
-
# [2]: https://docs.aws.amazon.com/acm/latestAPIReference/API_DescribeCertificate.html
|
337
|
+
# DescribeCertificate.
|
348
338
|
# @return [Boolean]
|
349
339
|
#
|
350
340
|
# @!attribute [rw] status
|
@@ -560,9 +550,9 @@ module Aws::ACM
|
|
560
550
|
#
|
561
551
|
# * `PENDING_VALIDATION`
|
562
552
|
#
|
563
|
-
# *
|
553
|
+
# * `SUCCESS`
|
564
554
|
#
|
565
|
-
# *
|
555
|
+
# * `FAILED`
|
566
556
|
# @return [String]
|
567
557
|
#
|
568
558
|
# @!attribute [rw] resource_record
|
@@ -1337,13 +1327,38 @@ module Aws::ACM
|
|
1337
1327
|
# for ACM certificates. Elliptic Curve Digital Signature Algorithm
|
1338
1328
|
# (ECDSA) keys are smaller, offering security comparable to RSA keys
|
1339
1329
|
# but with greater computing efficiency. However, ECDSA is not
|
1340
|
-
# supported by all network clients. Some
|
1341
|
-
# keys, or only support ECDSA keys of a particular
|
1342
|
-
# allow the use of either RSA and ECDSA keys to
|
1343
|
-
# compatibility is not broken. Check the requirements for
|
1344
|
-
# service where you plan to deploy your
|
1330
|
+
# supported by all network clients. Some Amazon Web Services services
|
1331
|
+
# may require RSA keys, or only support ECDSA keys of a particular
|
1332
|
+
# size, while others allow the use of either RSA and ECDSA keys to
|
1333
|
+
# ensure that compatibility is not broken. Check the requirements for
|
1334
|
+
# the Amazon Web Services service where you plan to deploy your
|
1335
|
+
# certificate. For more information about selecting an algorithm, see
|
1336
|
+
# [Key algorithms][1].
|
1337
|
+
#
|
1338
|
+
# <note markdown="1"> Algorithms supported for an ACM certificate request include:
|
1339
|
+
#
|
1340
|
+
# * `RSA_2048`
|
1341
|
+
#
|
1342
|
+
# * `EC_prime256v1`
|
1343
|
+
#
|
1344
|
+
# * `EC_secp384r1`
|
1345
|
+
#
|
1346
|
+
# Other listed algorithms are for imported certificates only.
|
1347
|
+
#
|
1348
|
+
# </note>
|
1349
|
+
#
|
1350
|
+
# <note markdown="1"> When you request a private PKI certificate signed by a CA from
|
1351
|
+
# Amazon Web Services Private CA, the specified signing algorithm
|
1352
|
+
# family (RSA or ECDSA) must match the algorithm family of the CA's
|
1353
|
+
# secret key.
|
1354
|
+
#
|
1355
|
+
# </note>
|
1345
1356
|
#
|
1346
1357
|
# Default: RSA\_2048
|
1358
|
+
#
|
1359
|
+
#
|
1360
|
+
#
|
1361
|
+
# [1]: https://docs.aws.amazon.com/acm/latest/userguide/acm-certificate.html#algorithms
|
1347
1362
|
# @return [String]
|
1348
1363
|
#
|
1349
1364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/RequestCertificateRequest AWS API Documentation
|
data/lib/aws-sdk-acm.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -51,6 +51,7 @@ module Aws
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?simple_json: bool,
|
53
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
55
|
?token_provider: untyped,
|
55
56
|
?use_dualstack_endpoint: bool,
|
56
57
|
?use_fips_endpoint: bool,
|
data/sig/resource.rbs
CHANGED
@@ -51,6 +51,7 @@ module Aws
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?simple_json: bool,
|
53
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
55
|
?token_provider: untyped,
|
55
56
|
?use_dualstack_endpoint: bool,
|
56
57
|
?use_fips_endpoint: bool,
|
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.75.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-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.203.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|