aws-sdk-acmpca 1.112.0 → 1.113.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: 2c5aa72cda84abccd1d14ff29f4f588297d8f462b284188cb9b3280013b64bf1
4
- data.tar.gz: 71027b03a0f13476385d93590b62f46e505dace70a941d24e256f05129cc9ab4
3
+ metadata.gz: 341c470f74f6cab2197f4a4faf39afe3a379ab407ebe45b63cd1efc444a65408
4
+ data.tar.gz: 9873ddb0d04fdd99828ae636154a9f13bdd8ad4de72256c21700935dd44e471c
5
5
  SHA512:
6
- metadata.gz: ffa13f7130d2f94007d313c9cb86a78d174115c2079f2152335838b17f54abdeaabaca3a55c8e1ab3ec3903a03eafcad7a7a12ca09b7f8607d93cff1ec5d5837
7
- data.tar.gz: 14c04b947fb98006776b2263e68f1718ebe58bddce0912091ad60cebe2cd47a7a52e9b0ec30df1b3d4f72804bb48dbd98724c711fad448e19313546407441cf4
6
+ metadata.gz: 6e09bc01bad7a0abc12c51c1608702ba367f04330f999d4700ee68f6d98bccb8f6af4536fdba5ab22c640febbaa063b724bcbc45765c0f95912268da7e3a6bd2
7
+ data.tar.gz: 4ec3ac0a259a5e32a2d8ee64c218d3543b9c56bb95d305d390f1186cbd06042e1dcde8e6a2b337368c252a09e8503bcf033c019466eda06dfb812de3a526d477
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.113.0 (2026-08-05)
5
+ ------------------
6
+
7
+ * Feature - Private Certificate Authority service now supports RSASSA-PSS signing algorithm.
8
+
4
9
  1.112.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.112.0
1
+ 1.113.0
@@ -614,7 +614,7 @@ module Aws::ACMPCA
614
614
  # resp = client.create_certificate_authority({
615
615
  # certificate_authority_configuration: { # required
616
616
  # key_algorithm: "RSA_2048", # required, accepts RSA_2048, RSA_3072, RSA_4096, EC_prime256v1, EC_secp384r1, EC_secp521r1, ML_DSA_44, ML_DSA_65, ML_DSA_87, SM2
617
- # signing_algorithm: "SHA256WITHECDSA", # required, accepts SHA256WITHECDSA, SHA384WITHECDSA, SHA512WITHECDSA, SHA256WITHRSA, SHA384WITHRSA, SHA512WITHRSA, SM3WITHSM2, ML_DSA_44, ML_DSA_65, ML_DSA_87
617
+ # signing_algorithm: "SHA256WITHECDSA", # required, accepts SHA256WITHECDSA, SHA384WITHECDSA, SHA512WITHECDSA, SHA256WITHRSA, SHA384WITHRSA, SHA512WITHRSA, SHA256WITHRSA_PSS, SHA384WITHRSA_PSS, SHA512WITHRSA_PSS, SM3WITHSM2, ML_DSA_44, ML_DSA_65, ML_DSA_87
618
618
  # subject: { # required
619
619
  # country: "CountryCodeString",
620
620
  # organization: "String64",
@@ -1169,7 +1169,7 @@ module Aws::ACMPCA
1169
1169
  # resp.certificate_authority.not_after #=> Time
1170
1170
  # resp.certificate_authority.failure_reason #=> String, one of "REQUEST_TIMED_OUT", "UNSUPPORTED_ALGORITHM", "OTHER"
1171
1171
  # resp.certificate_authority.certificate_authority_configuration.key_algorithm #=> String, one of "RSA_2048", "RSA_3072", "RSA_4096", "EC_prime256v1", "EC_secp384r1", "EC_secp521r1", "ML_DSA_44", "ML_DSA_65", "ML_DSA_87", "SM2"
1172
- # resp.certificate_authority.certificate_authority_configuration.signing_algorithm #=> String, one of "SHA256WITHECDSA", "SHA384WITHECDSA", "SHA512WITHECDSA", "SHA256WITHRSA", "SHA384WITHRSA", "SHA512WITHRSA", "SM3WITHSM2", "ML_DSA_44", "ML_DSA_65", "ML_DSA_87"
1172
+ # resp.certificate_authority.certificate_authority_configuration.signing_algorithm #=> String, one of "SHA256WITHECDSA", "SHA384WITHECDSA", "SHA512WITHECDSA", "SHA256WITHRSA", "SHA384WITHRSA", "SHA512WITHRSA", "SHA256WITHRSA_PSS", "SHA384WITHRSA_PSS", "SHA512WITHRSA_PSS", "SM3WITHSM2", "ML_DSA_44", "ML_DSA_65", "ML_DSA_87"
1173
1173
  # resp.certificate_authority.certificate_authority_configuration.subject.country #=> String
1174
1174
  # resp.certificate_authority.certificate_authority_configuration.subject.organization #=> String
1175
1175
  # resp.certificate_authority.certificate_authority_configuration.subject.organizational_unit #=> String
@@ -1937,7 +1937,7 @@ module Aws::ACMPCA
1937
1937
  # },
1938
1938
  # certificate_authority_arn: "Arn", # required
1939
1939
  # csr: "data", # required
1940
- # signing_algorithm: "SHA256WITHECDSA", # required, accepts SHA256WITHECDSA, SHA384WITHECDSA, SHA512WITHECDSA, SHA256WITHRSA, SHA384WITHRSA, SHA512WITHRSA, SM3WITHSM2, ML_DSA_44, ML_DSA_65, ML_DSA_87
1940
+ # signing_algorithm: "SHA256WITHECDSA", # required, accepts SHA256WITHECDSA, SHA384WITHECDSA, SHA512WITHECDSA, SHA256WITHRSA, SHA384WITHRSA, SHA512WITHRSA, SHA256WITHRSA_PSS, SHA384WITHRSA_PSS, SHA512WITHRSA_PSS, SM3WITHSM2, ML_DSA_44, ML_DSA_65, ML_DSA_87
1941
1941
  # template_arn: "Arn",
1942
1942
  # validity: { # required
1943
1943
  # value: 1, # required
@@ -2020,7 +2020,7 @@ module Aws::ACMPCA
2020
2020
  # resp.certificate_authorities[0].not_after #=> Time
2021
2021
  # resp.certificate_authorities[0].failure_reason #=> String, one of "REQUEST_TIMED_OUT", "UNSUPPORTED_ALGORITHM", "OTHER"
2022
2022
  # resp.certificate_authorities[0].certificate_authority_configuration.key_algorithm #=> String, one of "RSA_2048", "RSA_3072", "RSA_4096", "EC_prime256v1", "EC_secp384r1", "EC_secp521r1", "ML_DSA_44", "ML_DSA_65", "ML_DSA_87", "SM2"
2023
- # resp.certificate_authorities[0].certificate_authority_configuration.signing_algorithm #=> String, one of "SHA256WITHECDSA", "SHA384WITHECDSA", "SHA512WITHECDSA", "SHA256WITHRSA", "SHA384WITHRSA", "SHA512WITHRSA", "SM3WITHSM2", "ML_DSA_44", "ML_DSA_65", "ML_DSA_87"
2023
+ # resp.certificate_authorities[0].certificate_authority_configuration.signing_algorithm #=> String, one of "SHA256WITHECDSA", "SHA384WITHECDSA", "SHA512WITHECDSA", "SHA256WITHRSA", "SHA384WITHRSA", "SHA512WITHRSA", "SHA256WITHRSA_PSS", "SHA384WITHRSA_PSS", "SHA512WITHRSA_PSS", "SM3WITHSM2", "ML_DSA_44", "ML_DSA_65", "ML_DSA_87"
2024
2024
  # resp.certificate_authorities[0].certificate_authority_configuration.subject.country #=> String
2025
2025
  # resp.certificate_authorities[0].certificate_authority_configuration.subject.organization #=> String
2026
2026
  # resp.certificate_authorities[0].certificate_authority_configuration.subject.organizational_unit #=> String
@@ -2711,7 +2711,7 @@ module Aws::ACMPCA
2711
2711
  tracer: tracer
2712
2712
  )
2713
2713
  context[:gem_name] = 'aws-sdk-acmpca'
2714
- context[:gem_version] = '1.112.0'
2714
+ context[:gem_version] = '1.113.0'
2715
2715
  Seahorse::Client::Request.new(handlers, context)
2716
2716
  end
2717
2717
 
@@ -743,8 +743,8 @@ module Aws::ACMPCA
743
743
  o.output = Shapes::ShapeRef.new(shape: IssueCertificateResponse)
744
744
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
745
745
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
746
- o.errors << Shapes::ShapeRef.new(shape: InvalidArgsException)
747
746
  o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
747
+ o.errors << Shapes::ShapeRef.new(shape: InvalidArgsException)
748
748
  o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
749
749
  o.errors << Shapes::ShapeRef.new(shape: MalformedCSRException)
750
750
  end)
@@ -371,7 +371,8 @@ module Aws::ACMPCA
371
371
  # requests.
372
372
  #
373
373
  # This parameter should not be confused with the `SigningAlgorithm`
374
- # parameter used to sign certificates when they are issued.
374
+ # parameter of the `IssueCertificate` API action, which is used to
375
+ # sign certificates when they are issued.
375
376
  # @return [String]
376
377
  #
377
378
  # @!attribute [rw] subject
@@ -774,7 +775,7 @@ module Aws::ACMPCA
774
775
  #
775
776
  #
776
777
  # [1]: https://docs.aws.amazon.com/privateca/latest/APIReference/API_UpdateCertificateAuthority.html
777
- # [2]: https://docs.aws.amazon.com/privateca/latest/userguide/PcaCreateCa.html#s3-policies
778
+ # [2]: https://docs.aws.amazon.com/privateca/latest/userguide/crl-planning.html#s3-policies
778
779
  # [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html
779
780
  # @return [String]
780
781
  #
@@ -801,7 +802,7 @@ module Aws::ACMPCA
801
802
  #
802
803
  #
803
804
  #
804
- # [1]: https://docs.aws.amazon.com/privateca/latest/userguide/PcaCreateCa.html#s3-bpa
805
+ # [1]: https://docs.aws.amazon.com/privateca/latest/userguide/crl-planning.html#s3-bpa
805
806
  # @return [String]
806
807
  #
807
808
  # @!attribute [rw] crl_distribution_point_extension_configuration
@@ -815,15 +816,14 @@ module Aws::ACMPCA
815
816
  # Specifies whether to create a complete or partitioned CRL. This
816
817
  # setting determines the maximum number of certificates that the
817
818
  # certificate authority can issue and revoke. For more information,
818
- # see [Amazon Web Services Private CA
819
- # quotas](privateca/latest/userguide/pca.html#limits_pca).
819
+ # see [Amazon Web Services Private CA quotas][1].
820
820
  #
821
821
  # * `COMPLETE` - The default setting. Amazon Web Services Private CA
822
822
  # maintains a single CRL file for all unexpired certificates issued by
823
823
  # a CA that have been revoked for any reason. Each certificate that
824
824
  # Amazon Web Services Private CA issues is bound to a specific CRL
825
825
  # through its CRL distribution point (CDP) extension, defined in [
826
- # RFC 5280][1].
826
+ # RFC 5280][2].
827
827
  #
828
828
  # * `PARTITIONED` - Compared to complete CRLs, partitioned CRLs
829
829
  # dramatically increase the number of certificates your private CA
@@ -837,7 +837,8 @@ module Aws::ACMPCA
837
837
  #
838
838
  #
839
839
  #
840
- # [1]: https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.9
840
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/pca.html#limits_pca
841
+ # [2]: https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.9
841
842
  # @return [String]
842
843
  #
843
844
  # @!attribute [rw] custom_path
@@ -874,7 +875,7 @@ module Aws::ACMPCA
874
875
  # that CA unless otherwise specified through CSR or API passthrough.
875
876
  #
876
877
  # <note markdown="1"> Only set this if you have another way to distribute the CRL
877
- # Distribution Points ffor certificates issued by your CA, such as the
878
+ # Distribution Points for certificates issued by your CA, such as the
878
879
  # Matter Distributed Compliance Ledger
879
880
  #
880
881
  # This configuration cannot be enabled with a custom CNAME set.
@@ -55,7 +55,7 @@ module Aws::ACMPCA
55
55
  autoload :EndpointProvider, 'aws-sdk-acmpca/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-acmpca/endpoints'
57
57
 
58
- GEM_VERSION = '1.112.0'
58
+ GEM_VERSION = '1.113.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -87,7 +87,7 @@ module Aws
87
87
  def create_certificate_authority: (
88
88
  certificate_authority_configuration: {
89
89
  key_algorithm: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "EC_prime256v1" | "EC_secp384r1" | "EC_secp521r1" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87" | "SM2"),
90
- signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA" | "SM3WITHSM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87"),
90
+ signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA" | "SHA256WITHRSA_PSS" | "SHA384WITHRSA_PSS" | "SHA512WITHRSA_PSS" | "SM3WITHSM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87"),
91
91
  subject: Params::asn1_subject,
92
92
  csr_extensions: {
93
93
  key_usage: Params::key_usage?,
@@ -277,7 +277,7 @@ module Aws
277
277
  },
278
278
  certificate_authority_arn: ::String,
279
279
  csr: ::String,
280
- signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA" | "SM3WITHSM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87"),
280
+ signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA" | "SHA256WITHRSA_PSS" | "SHA384WITHRSA_PSS" | "SHA512WITHRSA_PSS" | "SM3WITHSM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87"),
281
281
  ?template_arn: ::String,
282
282
  validity: {
283
283
  value: ::Integer,
data/sig/types.rbs CHANGED
@@ -66,7 +66,7 @@ module Aws::ACMPCA
66
66
 
67
67
  class CertificateAuthorityConfiguration
68
68
  attr_accessor key_algorithm: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "EC_prime256v1" | "EC_secp384r1" | "EC_secp521r1" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87" | "SM2")
69
- attr_accessor signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA" | "SM3WITHSM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87")
69
+ attr_accessor signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA" | "SHA256WITHRSA_PSS" | "SHA384WITHRSA_PSS" | "SHA512WITHRSA_PSS" | "SM3WITHSM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87")
70
70
  attr_accessor subject: Types::ASN1Subject
71
71
  attr_accessor csr_extensions: Types::CsrExtensions
72
72
  SENSITIVE: []
@@ -319,7 +319,7 @@ module Aws::ACMPCA
319
319
  attr_accessor api_passthrough: Types::ApiPassthrough
320
320
  attr_accessor certificate_authority_arn: ::String
321
321
  attr_accessor csr: ::String
322
- attr_accessor signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA" | "SM3WITHSM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87")
322
+ attr_accessor signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA" | "SHA256WITHRSA_PSS" | "SHA384WITHRSA_PSS" | "SHA512WITHRSA_PSS" | "SM3WITHSM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87")
323
323
  attr_accessor template_arn: ::String
324
324
  attr_accessor validity: Types::Validity
325
325
  attr_accessor validity_not_before: Types::Validity
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-acmpca
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.112.0
4
+ version: 1.113.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services