aws-sdk-acmpca 1.72.0 → 1.73.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-acmpca/client.rb +11 -11
- data/lib/aws-sdk-acmpca.rb +1 -1
- data/sig/client.rbs +4 -4
- data/sig/types.rbs +5 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b9af1ca2466c81f60780502d907c2b4c9b7aaf977039030fb5d03db877dbcf23
|
4
|
+
data.tar.gz: eeabf532f006cb91da299e3d9d04035d600b996dd25baf64f2ee3691db97cbc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f9ed17910900c9bc2058d88c085d78bff4b2226e532f20909fdccd4305133d6d625b54dd5b1a531c4c1fae36109eab51bf8054345da0761257c13cd45faa58b
|
7
|
+
data.tar.gz: 96f344a277fb628388e1a5c9df7dc22fd145cea078c27492fa3255fc815b5032d0f4fe95498f642f2a64cb2957ce357c4b6caf927bff3feadcf69a7f6778890d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.73.0 (2024-06-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added CCPC_LEVEL_1_OR_HIGHER KeyStorageSecurityStandard and SM2 KeyAlgorithm and SM3WITHSM2 SigningAlgorithm for China regions.
|
8
|
+
|
4
9
|
1.72.0 (2024-06-25)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.73.0
|
@@ -557,8 +557,8 @@ module Aws::ACMPCA
|
|
557
557
|
#
|
558
558
|
# resp = client.create_certificate_authority({
|
559
559
|
# certificate_authority_configuration: { # required
|
560
|
-
# key_algorithm: "RSA_2048", # required, accepts RSA_2048, RSA_4096, EC_prime256v1, EC_secp384r1
|
561
|
-
# signing_algorithm: "SHA256WITHECDSA", # required, accepts SHA256WITHECDSA, SHA384WITHECDSA, SHA512WITHECDSA, SHA256WITHRSA, SHA384WITHRSA, SHA512WITHRSA
|
560
|
+
# key_algorithm: "RSA_2048", # required, accepts RSA_2048, RSA_4096, EC_prime256v1, EC_secp384r1, SM2
|
561
|
+
# signing_algorithm: "SHA256WITHECDSA", # required, accepts SHA256WITHECDSA, SHA384WITHECDSA, SHA512WITHECDSA, SHA256WITHRSA, SHA384WITHRSA, SHA512WITHRSA, SM3WITHSM2
|
562
562
|
# subject: { # required
|
563
563
|
# country: "CountryCodeString",
|
564
564
|
# organization: "String64",
|
@@ -658,7 +658,7 @@ module Aws::ACMPCA
|
|
658
658
|
# },
|
659
659
|
# certificate_authority_type: "ROOT", # required, accepts ROOT, SUBORDINATE
|
660
660
|
# idempotency_token: "IdempotencyToken",
|
661
|
-
# key_storage_security_standard: "FIPS_140_2_LEVEL_2_OR_HIGHER", # accepts FIPS_140_2_LEVEL_2_OR_HIGHER, FIPS_140_2_LEVEL_3_OR_HIGHER
|
661
|
+
# key_storage_security_standard: "FIPS_140_2_LEVEL_2_OR_HIGHER", # accepts FIPS_140_2_LEVEL_2_OR_HIGHER, FIPS_140_2_LEVEL_3_OR_HIGHER, CCPC_LEVEL_1_OR_HIGHER
|
662
662
|
# tags: [
|
663
663
|
# {
|
664
664
|
# key: "TagKey", # required
|
@@ -1104,8 +1104,8 @@ module Aws::ACMPCA
|
|
1104
1104
|
# resp.certificate_authority.not_before #=> Time
|
1105
1105
|
# resp.certificate_authority.not_after #=> Time
|
1106
1106
|
# resp.certificate_authority.failure_reason #=> String, one of "REQUEST_TIMED_OUT", "UNSUPPORTED_ALGORITHM", "OTHER"
|
1107
|
-
# resp.certificate_authority.certificate_authority_configuration.key_algorithm #=> String, one of "RSA_2048", "RSA_4096", "EC_prime256v1", "EC_secp384r1"
|
1108
|
-
# resp.certificate_authority.certificate_authority_configuration.signing_algorithm #=> String, one of "SHA256WITHECDSA", "SHA384WITHECDSA", "SHA512WITHECDSA", "SHA256WITHRSA", "SHA384WITHRSA", "SHA512WITHRSA"
|
1107
|
+
# resp.certificate_authority.certificate_authority_configuration.key_algorithm #=> String, one of "RSA_2048", "RSA_4096", "EC_prime256v1", "EC_secp384r1", "SM2"
|
1108
|
+
# resp.certificate_authority.certificate_authority_configuration.signing_algorithm #=> String, one of "SHA256WITHECDSA", "SHA384WITHECDSA", "SHA512WITHECDSA", "SHA256WITHRSA", "SHA384WITHRSA", "SHA512WITHRSA", "SM3WITHSM2"
|
1109
1109
|
# resp.certificate_authority.certificate_authority_configuration.subject.country #=> String
|
1110
1110
|
# resp.certificate_authority.certificate_authority_configuration.subject.organization #=> String
|
1111
1111
|
# resp.certificate_authority.certificate_authority_configuration.subject.organizational_unit #=> String
|
@@ -1170,7 +1170,7 @@ module Aws::ACMPCA
|
|
1170
1170
|
# resp.certificate_authority.revocation_configuration.ocsp_configuration.enabled #=> Boolean
|
1171
1171
|
# resp.certificate_authority.revocation_configuration.ocsp_configuration.ocsp_custom_cname #=> String
|
1172
1172
|
# resp.certificate_authority.restorable_until #=> Time
|
1173
|
-
# resp.certificate_authority.key_storage_security_standard #=> String, one of "FIPS_140_2_LEVEL_2_OR_HIGHER", "FIPS_140_2_LEVEL_3_OR_HIGHER"
|
1173
|
+
# resp.certificate_authority.key_storage_security_standard #=> String, one of "FIPS_140_2_LEVEL_2_OR_HIGHER", "FIPS_140_2_LEVEL_3_OR_HIGHER", "CCPC_LEVEL_1_OR_HIGHER"
|
1174
1174
|
# resp.certificate_authority.usage_mode #=> String, one of "GENERAL_PURPOSE", "SHORT_LIVED_CERTIFICATE"
|
1175
1175
|
#
|
1176
1176
|
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-pca-2017-08-22/DescribeCertificateAuthority AWS API Documentation
|
@@ -1871,7 +1871,7 @@ module Aws::ACMPCA
|
|
1871
1871
|
# },
|
1872
1872
|
# certificate_authority_arn: "Arn", # required
|
1873
1873
|
# csr: "data", # required
|
1874
|
-
# signing_algorithm: "SHA256WITHECDSA", # required, accepts SHA256WITHECDSA, SHA384WITHECDSA, SHA512WITHECDSA, SHA256WITHRSA, SHA384WITHRSA, SHA512WITHRSA
|
1874
|
+
# signing_algorithm: "SHA256WITHECDSA", # required, accepts SHA256WITHECDSA, SHA384WITHECDSA, SHA512WITHECDSA, SHA256WITHRSA, SHA384WITHRSA, SHA512WITHRSA, SM3WITHSM2
|
1875
1875
|
# template_arn: "Arn",
|
1876
1876
|
# validity: { # required
|
1877
1877
|
# value: 1, # required
|
@@ -1952,8 +1952,8 @@ module Aws::ACMPCA
|
|
1952
1952
|
# resp.certificate_authorities[0].not_before #=> Time
|
1953
1953
|
# resp.certificate_authorities[0].not_after #=> Time
|
1954
1954
|
# resp.certificate_authorities[0].failure_reason #=> String, one of "REQUEST_TIMED_OUT", "UNSUPPORTED_ALGORITHM", "OTHER"
|
1955
|
-
# resp.certificate_authorities[0].certificate_authority_configuration.key_algorithm #=> String, one of "RSA_2048", "RSA_4096", "EC_prime256v1", "EC_secp384r1"
|
1956
|
-
# resp.certificate_authorities[0].certificate_authority_configuration.signing_algorithm #=> String, one of "SHA256WITHECDSA", "SHA384WITHECDSA", "SHA512WITHECDSA", "SHA256WITHRSA", "SHA384WITHRSA", "SHA512WITHRSA"
|
1955
|
+
# resp.certificate_authorities[0].certificate_authority_configuration.key_algorithm #=> String, one of "RSA_2048", "RSA_4096", "EC_prime256v1", "EC_secp384r1", "SM2"
|
1956
|
+
# resp.certificate_authorities[0].certificate_authority_configuration.signing_algorithm #=> String, one of "SHA256WITHECDSA", "SHA384WITHECDSA", "SHA512WITHECDSA", "SHA256WITHRSA", "SHA384WITHRSA", "SHA512WITHRSA", "SM3WITHSM2"
|
1957
1957
|
# resp.certificate_authorities[0].certificate_authority_configuration.subject.country #=> String
|
1958
1958
|
# resp.certificate_authorities[0].certificate_authority_configuration.subject.organization #=> String
|
1959
1959
|
# resp.certificate_authorities[0].certificate_authority_configuration.subject.organizational_unit #=> String
|
@@ -2018,7 +2018,7 @@ module Aws::ACMPCA
|
|
2018
2018
|
# resp.certificate_authorities[0].revocation_configuration.ocsp_configuration.enabled #=> Boolean
|
2019
2019
|
# resp.certificate_authorities[0].revocation_configuration.ocsp_configuration.ocsp_custom_cname #=> String
|
2020
2020
|
# resp.certificate_authorities[0].restorable_until #=> Time
|
2021
|
-
# resp.certificate_authorities[0].key_storage_security_standard #=> String, one of "FIPS_140_2_LEVEL_2_OR_HIGHER", "FIPS_140_2_LEVEL_3_OR_HIGHER"
|
2021
|
+
# resp.certificate_authorities[0].key_storage_security_standard #=> String, one of "FIPS_140_2_LEVEL_2_OR_HIGHER", "FIPS_140_2_LEVEL_3_OR_HIGHER", "CCPC_LEVEL_1_OR_HIGHER"
|
2022
2022
|
# resp.certificate_authorities[0].usage_mode #=> String, one of "GENERAL_PURPOSE", "SHORT_LIVED_CERTIFICATE"
|
2023
2023
|
# resp.next_token #=> String
|
2024
2024
|
#
|
@@ -2624,7 +2624,7 @@ module Aws::ACMPCA
|
|
2624
2624
|
params: params,
|
2625
2625
|
config: config)
|
2626
2626
|
context[:gem_name] = 'aws-sdk-acmpca'
|
2627
|
-
context[:gem_version] = '1.
|
2627
|
+
context[:gem_version] = '1.73.0'
|
2628
2628
|
Seahorse::Client::Request.new(handlers, context)
|
2629
2629
|
end
|
2630
2630
|
|
data/lib/aws-sdk-acmpca.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -80,8 +80,8 @@ module Aws
|
|
80
80
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ACMPCA/Client.html#create_certificate_authority-instance_method
|
81
81
|
def create_certificate_authority: (
|
82
82
|
certificate_authority_configuration: {
|
83
|
-
key_algorithm: ("RSA_2048" | "RSA_4096" | "EC_prime256v1" | "EC_secp384r1"),
|
84
|
-
signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA"),
|
83
|
+
key_algorithm: ("RSA_2048" | "RSA_4096" | "EC_prime256v1" | "EC_secp384r1" | "SM2"),
|
84
|
+
signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA" | "SM3WITHSM2"),
|
85
85
|
subject: {
|
86
86
|
country: ::String?,
|
87
87
|
organization: ::String?,
|
@@ -181,7 +181,7 @@ module Aws
|
|
181
181
|
},
|
182
182
|
certificate_authority_type: ("ROOT" | "SUBORDINATE"),
|
183
183
|
?idempotency_token: ::String,
|
184
|
-
?key_storage_security_standard: ("FIPS_140_2_LEVEL_2_OR_HIGHER" | "FIPS_140_2_LEVEL_3_OR_HIGHER"),
|
184
|
+
?key_storage_security_standard: ("FIPS_140_2_LEVEL_2_OR_HIGHER" | "FIPS_140_2_LEVEL_3_OR_HIGHER" | "CCPC_LEVEL_1_OR_HIGHER"),
|
185
185
|
?tags: Array[
|
186
186
|
{
|
187
187
|
key: ::String,
|
@@ -420,7 +420,7 @@ module Aws
|
|
420
420
|
},
|
421
421
|
certificate_authority_arn: ::String,
|
422
422
|
csr: ::String,
|
423
|
-
signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA"),
|
423
|
+
signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA" | "SM3WITHSM2"),
|
424
424
|
?template_arn: ::String,
|
425
425
|
validity: {
|
426
426
|
value: ::Integer,
|
data/sig/types.rbs
CHANGED
@@ -59,14 +59,14 @@ module Aws::ACMPCA
|
|
59
59
|
attr_accessor certificate_authority_configuration: Types::CertificateAuthorityConfiguration
|
60
60
|
attr_accessor revocation_configuration: Types::RevocationConfiguration
|
61
61
|
attr_accessor restorable_until: ::Time
|
62
|
-
attr_accessor key_storage_security_standard: ("FIPS_140_2_LEVEL_2_OR_HIGHER" | "FIPS_140_2_LEVEL_3_OR_HIGHER")
|
62
|
+
attr_accessor key_storage_security_standard: ("FIPS_140_2_LEVEL_2_OR_HIGHER" | "FIPS_140_2_LEVEL_3_OR_HIGHER" | "CCPC_LEVEL_1_OR_HIGHER")
|
63
63
|
attr_accessor usage_mode: ("GENERAL_PURPOSE" | "SHORT_LIVED_CERTIFICATE")
|
64
64
|
SENSITIVE: []
|
65
65
|
end
|
66
66
|
|
67
67
|
class CertificateAuthorityConfiguration
|
68
|
-
attr_accessor key_algorithm: ("RSA_2048" | "RSA_4096" | "EC_prime256v1" | "EC_secp384r1")
|
69
|
-
attr_accessor signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA")
|
68
|
+
attr_accessor key_algorithm: ("RSA_2048" | "RSA_4096" | "EC_prime256v1" | "EC_secp384r1" | "SM2")
|
69
|
+
attr_accessor signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA" | "SM3WITHSM2")
|
70
70
|
attr_accessor subject: Types::ASN1Subject
|
71
71
|
attr_accessor csr_extensions: Types::CsrExtensions
|
72
72
|
SENSITIVE: []
|
@@ -100,7 +100,7 @@ module Aws::ACMPCA
|
|
100
100
|
attr_accessor revocation_configuration: Types::RevocationConfiguration
|
101
101
|
attr_accessor certificate_authority_type: ("ROOT" | "SUBORDINATE")
|
102
102
|
attr_accessor idempotency_token: ::String
|
103
|
-
attr_accessor key_storage_security_standard: ("FIPS_140_2_LEVEL_2_OR_HIGHER" | "FIPS_140_2_LEVEL_3_OR_HIGHER")
|
103
|
+
attr_accessor key_storage_security_standard: ("FIPS_140_2_LEVEL_2_OR_HIGHER" | "FIPS_140_2_LEVEL_3_OR_HIGHER" | "CCPC_LEVEL_1_OR_HIGHER")
|
104
104
|
attr_accessor tags: ::Array[Types::Tag]
|
105
105
|
attr_accessor usage_mode: ("GENERAL_PURPOSE" | "SHORT_LIVED_CERTIFICATE")
|
106
106
|
SENSITIVE: []
|
@@ -317,7 +317,7 @@ module Aws::ACMPCA
|
|
317
317
|
attr_accessor api_passthrough: Types::ApiPassthrough
|
318
318
|
attr_accessor certificate_authority_arn: ::String
|
319
319
|
attr_accessor csr: ::String
|
320
|
-
attr_accessor signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA")
|
320
|
+
attr_accessor signing_algorithm: ("SHA256WITHECDSA" | "SHA384WITHECDSA" | "SHA512WITHECDSA" | "SHA256WITHRSA" | "SHA384WITHRSA" | "SHA512WITHRSA" | "SM3WITHSM2")
|
321
321
|
attr_accessor template_arn: ::String
|
322
322
|
attr_accessor validity: Types::Validity
|
323
323
|
attr_accessor validity_not_before: Types::Validity
|
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.
|
4
|
+
version: 1.73.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-06-
|
11
|
+
date: 2024-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|