aws-sdk-acmpca 1.88.0 → 1.89.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: c4a3e552a184e56a1b5c444fe9f38ad18e6c6a2d6a19e3fae9302b1570a0e9e0
4
- data.tar.gz: 897980aca30d6ca76c84b15419e07a495404e21bf69420d77e6efa24c7681b59
3
+ metadata.gz: f368003be33ec2bb21e1c16460b5dd6689e9a0c791125948cb134d1ac5097b0f
4
+ data.tar.gz: 9d8e2524582f1262fee591b8c5c283090f6eb1a915cff35d7bbfbc421ebcf13d
5
5
  SHA512:
6
- metadata.gz: 9b796d157901f2fb3cd5c8877d041ad1b539f94c4e0ea29ca74acd42fc35bc8ada146466a3ede33725df3619f8ce5d954b2aea0ee091914e6f6d0039318c52e8
7
- data.tar.gz: 8fd78efd9f98a6276e2de7ae560e68e1740dbdc1d9f8de049b78f19351c3b21321e5bf4d065aab32e620b0e3f7a5e37e70f4996a81a90a558fc6fac257a09e50
6
+ metadata.gz: '09d6833875421410d4ef1d88677798fc6af3d33716cbc51c19047402b666bc1ac6d21e1803f9065c5f608b25822865768f29fc97e9952ec5cdb27ed39e777ae0'
7
+ data.tar.gz: 57d3840b2810673c752cb35745b79fbd1a30339d85e181fc6e3fae0a725f7fb66ccf690a8dba48dda58334e9c293c2c70c43144e34b0afc6b6b702d668959bcf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.89.0 (2025-02-13)
5
+ ------------------
6
+
7
+ * Feature - Private Certificate Authority (PCA) documentation updates
8
+
4
9
  1.88.0 (2025-02-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.88.0
1
+ 1.89.0
@@ -2697,7 +2697,7 @@ module Aws::ACMPCA
2697
2697
  tracer: tracer
2698
2698
  )
2699
2699
  context[:gem_name] = 'aws-sdk-acmpca'
2700
- context[:gem_version] = '1.88.0'
2700
+ context[:gem_version] = '1.89.0'
2701
2701
  Seahorse::Client::Request.new(handlers, context)
2702
2702
  end
2703
2703
 
@@ -805,41 +805,37 @@ module Aws::ACMPCA
805
805
  # @return [Types::CrlDistributionPointExtensionConfiguration]
806
806
  #
807
807
  # @!attribute [rw] crl_type
808
- # Choose whether to use a partitioned or complete CRL. Your choice
809
- # determines the maximum number of certificates that the certificate
810
- # authority can issue and revoke, as described in the [Amazon Web
811
- # Services Private CA quotas][1].
808
+ # Specifies whether to create a complete or partitioned CRL. This
809
+ # setting determines the maximum number of certificates that the
810
+ # certificate authority can issue and revoke. For more information,
811
+ # see [Amazon Web Services Private CA
812
+ # quotas](privateca/latest/userguide/pca.html#limits_pca).
812
813
  #
813
- # * `PARTITIONED` - The default setting. Partitioned CRLs are an
814
- # especially good option for devices that have limited processing
815
- # power or storage capacity, such as certain IoT devices. Compared
816
- # to complete CRLs, partitioned CRLs dramatically increase the
817
- # number of certificates your private CA can issue. Each certificate
818
- # that Amazon Web Services Private CA issues is bound to a specific
819
- # CRL partition through the CRL distribution point (CDP) defined in
820
- # [RFC 5280][2].
814
+ # * `COMPLETE` - The default setting. Amazon Web Services Private CA
815
+ # maintains a single CRL file for all unexpired certificates issued by
816
+ # a CA that have been revoked for any reason. Each certificate that
817
+ # Amazon Web Services Private CA issues is bound to a specific CRL
818
+ # through its CRL distribution point (CDP) extension, defined in [
819
+ # RFC 5280][1].
821
820
  #
822
- # To make sure that your client fetches the CRL from a valid
823
- # endpoint, we recommend that you programmatically validate that the
824
- # CRL's issuing distribution point (IDP) URI matches the
825
- # certificate's CDP URI. Amazon Web Services Private CA marks the
826
- # IDP extension as critical, which your client must be able to
827
- # process.
821
+ # * `PARTITIONED` - Compared to complete CRLs, partitioned CRLs
822
+ # dramatically increase the number of certificates your private CA
823
+ # can issue.
828
824
  #
829
- # * `COMPLETE` - Amazon Web Services Private CA maintains a single CRL
830
- # file for all unexpired certificates issued by a CA that have been
831
- # revoked for any reason.
825
+ # When using partitioned CRLs, you must validate that the CRL's
826
+ # associated issuing distribution point (IDP) URI matches the
827
+ # certificate's CDP URI to ensure the right CRL has been fetched.
828
+ # Amazon Web Services Private CA marks the IDP extension as
829
+ # critical, which your client must be able to process.
832
830
  #
833
831
  #
834
832
  #
835
- # [1]: https://docs.aws.amazon.com/general/latest/gr/pca.html#limits_pca-connector-ad
836
- # [2]: https://datatracker.ietf.org/doc/html/rfc5280
833
+ # [1]: https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.9
837
834
  # @return [String]
838
835
  #
839
836
  # @!attribute [rw] custom_path
840
- # Designates a custom file path in S3 for CRL(s). For example,
841
- # `http://<CustomName>/<CustomPath>/<CrlPartition_GUID>.crl`. You can
842
- # change the custom path up to five times.
837
+ # Designates a custom file path in S3 for CRL(s). For example,
838
+ # `http://<CustomName>/ <CustomPath>/<CrlPartition_GUID>.crl`.
843
839
  # @return [String]
844
840
  #
845
841
  # @see http://docs.aws.amazon.com/goto/WebAPI/acm-pca-2017-08-22/CrlConfiguration AWS API Documentation
@@ -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.88.0'
58
+ GEM_VERSION = '1.89.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-acmpca
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.88.0
4
+ version: 1.89.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: 2025-02-11 00:00:00.000000000 Z
11
+ date: 2025-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core