aws-sdk-acm 1.26.0 → 1.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-acm.rb +1 -1
- data/lib/aws-sdk-acm/client.rb +43 -14
- data/lib/aws-sdk-acm/client_api.rb +22 -0
- data/lib/aws-sdk-acm/errors.rb +32 -0
- data/lib/aws-sdk-acm/types.rb +59 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a7fec9e84eceab87f73c517c6cab6fb2b9bc6a3
|
4
|
+
data.tar.gz: 6daa0cdb808e81705c83bcdfaf822eb85f90568d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ed9e30e58c57da32b39d74d6aa4b124a8a30cc7dda1721947b8c52d0454a520b63d8e791770b05dc85ed37e60dd1f253262e0bf56d07735ca1649f47cc0eb5b
|
7
|
+
data.tar.gz: a71a61c3992fa4737cdd3412c0f4020434d502f714a4a414b16cf11527dbb937646f4808cc2fea3e6391834d56bd0983aa3d30d1731a62b251bc1584babc6af0
|
data/lib/aws-sdk-acm.rb
CHANGED
data/lib/aws-sdk-acm/client.rb
CHANGED
@@ -425,7 +425,7 @@ module Aws::ACM
|
|
425
425
|
# resp.certificate.signature_algorithm #=> String
|
426
426
|
# resp.certificate.in_use_by #=> Array
|
427
427
|
# resp.certificate.in_use_by[0] #=> String
|
428
|
-
# resp.certificate.failure_reason #=> String, one of "NO_AVAILABLE_CONTACTS", "ADDITIONAL_VERIFICATION_REQUIRED", "DOMAIN_NOT_ALLOWED", "INVALID_PUBLIC_DOMAIN", "DOMAIN_VALIDATION_DENIED", "CAA_ERROR", "PCA_LIMIT_EXCEEDED", "PCA_INVALID_ARN", "PCA_INVALID_STATE", "PCA_REQUEST_FAILED", "PCA_RESOURCE_NOT_FOUND", "PCA_INVALID_ARGS", "PCA_INVALID_DURATION", "PCA_ACCESS_DENIED", "OTHER"
|
428
|
+
# resp.certificate.failure_reason #=> String, one of "NO_AVAILABLE_CONTACTS", "ADDITIONAL_VERIFICATION_REQUIRED", "DOMAIN_NOT_ALLOWED", "INVALID_PUBLIC_DOMAIN", "DOMAIN_VALIDATION_DENIED", "CAA_ERROR", "PCA_LIMIT_EXCEEDED", "PCA_INVALID_ARN", "PCA_INVALID_STATE", "PCA_REQUEST_FAILED", "PCA_NAME_CONSTRAINTS_VALIDATION", "PCA_RESOURCE_NOT_FOUND", "PCA_INVALID_ARGS", "PCA_INVALID_DURATION", "PCA_ACCESS_DENIED", "OTHER"
|
429
429
|
# resp.certificate.type #=> String, one of "IMPORTED", "AMAZON_ISSUED", "PRIVATE"
|
430
430
|
# resp.certificate.renewal_summary.renewal_status #=> String, one of "PENDING_AUTO_RENEWAL", "PENDING_VALIDATION", "SUCCESS", "FAILED"
|
431
431
|
# resp.certificate.renewal_summary.domain_validation_options #=> Array
|
@@ -438,7 +438,7 @@ module Aws::ACM
|
|
438
438
|
# resp.certificate.renewal_summary.domain_validation_options[0].resource_record.type #=> String, one of "CNAME"
|
439
439
|
# resp.certificate.renewal_summary.domain_validation_options[0].resource_record.value #=> String
|
440
440
|
# resp.certificate.renewal_summary.domain_validation_options[0].validation_method #=> String, one of "EMAIL", "DNS"
|
441
|
-
# resp.certificate.renewal_summary.renewal_status_reason #=> String, one of "NO_AVAILABLE_CONTACTS", "ADDITIONAL_VERIFICATION_REQUIRED", "DOMAIN_NOT_ALLOWED", "INVALID_PUBLIC_DOMAIN", "DOMAIN_VALIDATION_DENIED", "CAA_ERROR", "PCA_LIMIT_EXCEEDED", "PCA_INVALID_ARN", "PCA_INVALID_STATE", "PCA_REQUEST_FAILED", "PCA_RESOURCE_NOT_FOUND", "PCA_INVALID_ARGS", "PCA_INVALID_DURATION", "PCA_ACCESS_DENIED", "OTHER"
|
441
|
+
# resp.certificate.renewal_summary.renewal_status_reason #=> String, one of "NO_AVAILABLE_CONTACTS", "ADDITIONAL_VERIFICATION_REQUIRED", "DOMAIN_NOT_ALLOWED", "INVALID_PUBLIC_DOMAIN", "DOMAIN_VALIDATION_DENIED", "CAA_ERROR", "PCA_LIMIT_EXCEEDED", "PCA_INVALID_ARN", "PCA_INVALID_STATE", "PCA_REQUEST_FAILED", "PCA_NAME_CONSTRAINTS_VALIDATION", "PCA_RESOURCE_NOT_FOUND", "PCA_INVALID_ARGS", "PCA_INVALID_DURATION", "PCA_ACCESS_DENIED", "OTHER"
|
442
442
|
# resp.certificate.renewal_summary.updated_at #=> Time
|
443
443
|
# resp.certificate.key_usages #=> Array
|
444
444
|
# resp.certificate.key_usages[0].name #=> String, one of "DIGITAL_SIGNATURE", "NON_REPUDIATION", "KEY_ENCIPHERMENT", "DATA_ENCIPHERMENT", "KEY_AGREEMENT", "CERTIFICATE_SIGNING", "CRL_SIGNING", "ENCIPHER_ONLY", "DECIPHER_ONLY", "ANY", "CUSTOM"
|
@@ -459,15 +459,18 @@ module Aws::ACM
|
|
459
459
|
end
|
460
460
|
|
461
461
|
# Exports a private certificate issued by a private certificate
|
462
|
-
# authority (CA) for use anywhere.
|
463
|
-
# certificate chain, and the encrypted private
|
464
|
-
#
|
465
|
-
#
|
466
|
-
#
|
467
|
-
# following OpenSSL command to decrypt it later. Provide the passphrase
|
468
|
-
# when prompted.
|
462
|
+
# authority (CA) for use anywhere. The exported file contains the
|
463
|
+
# certificate, the certificate chain, and the encrypted private 2048-bit
|
464
|
+
# RSA key associated with the public key that is embedded in the
|
465
|
+
# certificate. For security, you must assign a passphrase for the
|
466
|
+
# private key when exporting it.
|
469
467
|
#
|
470
|
-
#
|
468
|
+
# For information about exporting and formatting a certificate using the
|
469
|
+
# ACM console or CLI, see [Export a Private Certificate][1].
|
470
|
+
#
|
471
|
+
#
|
472
|
+
#
|
473
|
+
# [1]: https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-export-private.html
|
471
474
|
#
|
472
475
|
# @option params [required, String] :certificate_arn
|
473
476
|
# An Amazon Resource Name (ARN) of the issued certificate. This must be
|
@@ -595,7 +598,7 @@ module Aws::ACM
|
|
595
598
|
#
|
596
599
|
# * To import a new certificate, omit the `CertificateArn` argument.
|
597
600
|
# Include this argument only when you want to replace a previously
|
598
|
-
# imported
|
601
|
+
# imported certifica
|
599
602
|
#
|
600
603
|
# * When you import a certificate by using the CLI, you must specify the
|
601
604
|
# certificate, the certificate chain, and the private key by their
|
@@ -608,6 +611,10 @@ module Aws::ACM
|
|
608
611
|
# certificate, the certificate chain, and the private key files in the
|
609
612
|
# manner required by the programming language you're using.
|
610
613
|
#
|
614
|
+
# * The cryptographic algorithm of an imported certificate must match
|
615
|
+
# the algorithm of the signing CA. For example, if the signing CA key
|
616
|
+
# type is RSA, then the certificate key type must also be RSA.
|
617
|
+
#
|
611
618
|
# This operation returns the [Amazon Resource Name (ARN)][4] of the
|
612
619
|
# imported certificate.
|
613
620
|
#
|
@@ -635,6 +642,11 @@ module Aws::ACM
|
|
635
642
|
# @option params [String, IO] :certificate_chain
|
636
643
|
# The PEM encoded certificate chain.
|
637
644
|
#
|
645
|
+
# @option params [Array<Types::Tag>] :tags
|
646
|
+
# One or more resource tags to associate with the imported certificate.
|
647
|
+
#
|
648
|
+
# Note: You cannot apply tags when reimporting a certificate.
|
649
|
+
#
|
638
650
|
# @return [Types::ImportCertificateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
639
651
|
#
|
640
652
|
# * {Types::ImportCertificateResponse#certificate_arn #certificate_arn} => String
|
@@ -646,6 +658,12 @@ module Aws::ACM
|
|
646
658
|
# certificate: "data", # required
|
647
659
|
# private_key: "data", # required
|
648
660
|
# certificate_chain: "data",
|
661
|
+
# tags: [
|
662
|
+
# {
|
663
|
+
# key: "TagKey", # required
|
664
|
+
# value: "TagValue",
|
665
|
+
# },
|
666
|
+
# ],
|
649
667
|
# })
|
650
668
|
#
|
651
669
|
# @example Response structure
|
@@ -663,7 +681,9 @@ module Aws::ACM
|
|
663
681
|
|
664
682
|
# Retrieves a list of certificate ARNs and domain names. You can request
|
665
683
|
# that only certificates that match a specific status be listed. You can
|
666
|
-
# also filter by specific attributes of the certificate.
|
684
|
+
# also filter by specific attributes of the certificate. Default
|
685
|
+
# filtering returns only `RSA_2048` certificates. For more information,
|
686
|
+
# see Filters.
|
667
687
|
#
|
668
688
|
# @option params [Array<String>] :certificate_statuses
|
669
689
|
# Filter the certificate list by status value.
|
@@ -876,7 +896,7 @@ module Aws::ACM
|
|
876
896
|
# For example, *.example.com protects www.example.com,
|
877
897
|
# site.example.com, and images.example.com.
|
878
898
|
#
|
879
|
-
# The first domain name you enter cannot exceed
|
899
|
+
# The first domain name you enter cannot exceed 64 octets, including
|
880
900
|
# periods. Each subsequent Subject Alternative Name (SAN), however, can
|
881
901
|
# be up to 253 octets in length.
|
882
902
|
#
|
@@ -960,6 +980,9 @@ module Aws::ACM
|
|
960
980
|
#
|
961
981
|
# [1]: https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaWelcome.html
|
962
982
|
#
|
983
|
+
# @option params [Array<Types::Tag>] :tags
|
984
|
+
# One or more resource tags to associate with the certificate.
|
985
|
+
#
|
963
986
|
# @return [Types::RequestCertificateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
964
987
|
#
|
965
988
|
# * {Types::RequestCertificateResponse#certificate_arn #certificate_arn} => String
|
@@ -981,6 +1004,12 @@ module Aws::ACM
|
|
981
1004
|
# certificate_transparency_logging_preference: "ENABLED", # accepts ENABLED, DISABLED
|
982
1005
|
# },
|
983
1006
|
# certificate_authority_arn: "Arn",
|
1007
|
+
# tags: [
|
1008
|
+
# {
|
1009
|
+
# key: "TagKey", # required
|
1010
|
+
# value: "TagValue",
|
1011
|
+
# },
|
1012
|
+
# ],
|
984
1013
|
# })
|
985
1014
|
#
|
986
1015
|
# @example Response structure
|
@@ -1121,7 +1150,7 @@ module Aws::ACM
|
|
1121
1150
|
params: params,
|
1122
1151
|
config: config)
|
1123
1152
|
context[:gem_name] = 'aws-sdk-acm'
|
1124
|
-
context[:gem_version] = '1.
|
1153
|
+
context[:gem_version] = '1.27.0'
|
1125
1154
|
Seahorse::Client::Request.new(handlers, context)
|
1126
1155
|
end
|
1127
1156
|
|
@@ -52,6 +52,7 @@ module Aws::ACM
|
|
52
52
|
InvalidArgsException = Shapes::StructureShape.new(name: 'InvalidArgsException')
|
53
53
|
InvalidArnException = Shapes::StructureShape.new(name: 'InvalidArnException')
|
54
54
|
InvalidDomainValidationOptionsException = Shapes::StructureShape.new(name: 'InvalidDomainValidationOptionsException')
|
55
|
+
InvalidParameterException = Shapes::StructureShape.new(name: 'InvalidParameterException')
|
55
56
|
InvalidStateException = Shapes::StructureShape.new(name: 'InvalidStateException')
|
56
57
|
InvalidTagException = Shapes::StructureShape.new(name: 'InvalidTagException')
|
57
58
|
KeyAlgorithm = Shapes::StringShape.new(name: 'KeyAlgorithm')
|
@@ -89,6 +90,7 @@ module Aws::ACM
|
|
89
90
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
90
91
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
91
92
|
TagList = Shapes::ListShape.new(name: 'TagList')
|
93
|
+
TagPolicyException = Shapes::StructureShape.new(name: 'TagPolicyException')
|
92
94
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
93
95
|
TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
|
94
96
|
UpdateCertificateOptionsRequest = Shapes::StructureShape.new(name: 'UpdateCertificateOptionsRequest')
|
@@ -198,6 +200,7 @@ module Aws::ACM
|
|
198
200
|
ImportCertificateRequest.add_member(:certificate, Shapes::ShapeRef.new(shape: CertificateBodyBlob, required: true, location_name: "Certificate"))
|
199
201
|
ImportCertificateRequest.add_member(:private_key, Shapes::ShapeRef.new(shape: PrivateKeyBlob, required: true, location_name: "PrivateKey"))
|
200
202
|
ImportCertificateRequest.add_member(:certificate_chain, Shapes::ShapeRef.new(shape: CertificateChainBlob, location_name: "CertificateChain"))
|
203
|
+
ImportCertificateRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
201
204
|
ImportCertificateRequest.struct_class = Types::ImportCertificateRequest
|
202
205
|
|
203
206
|
ImportCertificateResponse.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CertificateArn"))
|
@@ -214,6 +217,9 @@ module Aws::ACM
|
|
214
217
|
InvalidDomainValidationOptionsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
215
218
|
InvalidDomainValidationOptionsException.struct_class = Types::InvalidDomainValidationOptionsException
|
216
219
|
|
220
|
+
InvalidParameterException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
221
|
+
InvalidParameterException.struct_class = Types::InvalidParameterException
|
222
|
+
|
217
223
|
InvalidStateException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
218
224
|
InvalidStateException.struct_class = Types::InvalidStateException
|
219
225
|
|
@@ -268,6 +274,7 @@ module Aws::ACM
|
|
268
274
|
RequestCertificateRequest.add_member(:domain_validation_options, Shapes::ShapeRef.new(shape: DomainValidationOptionList, location_name: "DomainValidationOptions"))
|
269
275
|
RequestCertificateRequest.add_member(:options, Shapes::ShapeRef.new(shape: CertificateOptions, location_name: "Options"))
|
270
276
|
RequestCertificateRequest.add_member(:certificate_authority_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CertificateAuthorityArn"))
|
277
|
+
RequestCertificateRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
271
278
|
RequestCertificateRequest.struct_class = Types::RequestCertificateRequest
|
272
279
|
|
273
280
|
RequestCertificateResponse.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CertificateArn"))
|
@@ -298,6 +305,9 @@ module Aws::ACM
|
|
298
305
|
|
299
306
|
TagList.member = Shapes::ShapeRef.new(shape: Tag)
|
300
307
|
|
308
|
+
TagPolicyException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
309
|
+
TagPolicyException.struct_class = Types::TagPolicyException
|
310
|
+
|
301
311
|
TooManyTagsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
302
312
|
TooManyTagsException.struct_class = Types::TooManyTagsException
|
303
313
|
|
@@ -336,6 +346,8 @@ module Aws::ACM
|
|
336
346
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
337
347
|
o.errors << Shapes::ShapeRef.new(shape: InvalidTagException)
|
338
348
|
o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
|
349
|
+
o.errors << Shapes::ShapeRef.new(shape: TagPolicyException)
|
350
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
339
351
|
end)
|
340
352
|
|
341
353
|
api.add_operation(:delete_certificate, Seahorse::Model::Operation.new.tap do |o|
|
@@ -389,6 +401,10 @@ module Aws::ACM
|
|
389
401
|
o.output = Shapes::ShapeRef.new(shape: ImportCertificateResponse)
|
390
402
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
391
403
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
404
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidTagException)
|
405
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
|
406
|
+
o.errors << Shapes::ShapeRef.new(shape: TagPolicyException)
|
407
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
392
408
|
end)
|
393
409
|
|
394
410
|
api.add_operation(:list_certificates, Seahorse::Model::Operation.new.tap do |o|
|
@@ -425,6 +441,8 @@ module Aws::ACM
|
|
425
441
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
426
442
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
427
443
|
o.errors << Shapes::ShapeRef.new(shape: InvalidTagException)
|
444
|
+
o.errors << Shapes::ShapeRef.new(shape: TagPolicyException)
|
445
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
428
446
|
end)
|
429
447
|
|
430
448
|
api.add_operation(:renew_certificate, Seahorse::Model::Operation.new.tap do |o|
|
@@ -446,6 +464,10 @@ module Aws::ACM
|
|
446
464
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
447
465
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDomainValidationOptionsException)
|
448
466
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArnException)
|
467
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidTagException)
|
468
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
|
469
|
+
o.errors << Shapes::ShapeRef.new(shape: TagPolicyException)
|
470
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
449
471
|
end)
|
450
472
|
|
451
473
|
api.add_operation(:resend_validation_email, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-acm/errors.rb
CHANGED
@@ -58,6 +58,22 @@ module Aws::ACM
|
|
58
58
|
|
59
59
|
end
|
60
60
|
|
61
|
+
class InvalidParameterException < ServiceError
|
62
|
+
|
63
|
+
# @param [Seahorse::Client::RequestContext] context
|
64
|
+
# @param [String] message
|
65
|
+
# @param [Aws::ACM::Types::InvalidParameterException] data
|
66
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
67
|
+
super(context, message, data)
|
68
|
+
end
|
69
|
+
|
70
|
+
# @return [String]
|
71
|
+
def message
|
72
|
+
@message || @data[:message]
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
76
|
+
|
61
77
|
class InvalidStateException < ServiceError
|
62
78
|
|
63
79
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -154,6 +170,22 @@ module Aws::ACM
|
|
154
170
|
|
155
171
|
end
|
156
172
|
|
173
|
+
class TagPolicyException < ServiceError
|
174
|
+
|
175
|
+
# @param [Seahorse::Client::RequestContext] context
|
176
|
+
# @param [String] message
|
177
|
+
# @param [Aws::ACM::Types::TagPolicyException] data
|
178
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
179
|
+
super(context, message, data)
|
180
|
+
end
|
181
|
+
|
182
|
+
# @return [String]
|
183
|
+
def message
|
184
|
+
@message || @data[:message]
|
185
|
+
end
|
186
|
+
|
187
|
+
end
|
188
|
+
|
157
189
|
class TooManyTagsException < ServiceError
|
158
190
|
|
159
191
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-acm/types.rb
CHANGED
@@ -592,6 +592,12 @@ module Aws::ACM
|
|
592
592
|
# @!attribute [rw] key_types
|
593
593
|
# Specify one or more algorithms that can be used to generate key
|
594
594
|
# pairs.
|
595
|
+
#
|
596
|
+
# Default filtering returns only `RSA_2048` certificates. To return
|
597
|
+
# other certificate types, provide the desired type signatures in a
|
598
|
+
# comma-separated list. For example, `"keyTypes":
|
599
|
+
# ["RSA_2048,RSA_4096"]` returns both `RSA_2048` and `RSA_4096`
|
600
|
+
# certificates.
|
595
601
|
# @return [Array<String>]
|
596
602
|
#
|
597
603
|
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/Filters AWS API Documentation
|
@@ -656,6 +662,12 @@ module Aws::ACM
|
|
656
662
|
# certificate: "data", # required
|
657
663
|
# private_key: "data", # required
|
658
664
|
# certificate_chain: "data",
|
665
|
+
# tags: [
|
666
|
+
# {
|
667
|
+
# key: "TagKey", # required
|
668
|
+
# value: "TagValue",
|
669
|
+
# },
|
670
|
+
# ],
|
659
671
|
# }
|
660
672
|
#
|
661
673
|
# @!attribute [rw] certificate_arn
|
@@ -679,13 +691,21 @@ module Aws::ACM
|
|
679
691
|
# The PEM encoded certificate chain.
|
680
692
|
# @return [String]
|
681
693
|
#
|
694
|
+
# @!attribute [rw] tags
|
695
|
+
# One or more resource tags to associate with the imported
|
696
|
+
# certificate.
|
697
|
+
#
|
698
|
+
# Note: You cannot apply tags when reimporting a certificate.
|
699
|
+
# @return [Array<Types::Tag>]
|
700
|
+
#
|
682
701
|
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ImportCertificateRequest AWS API Documentation
|
683
702
|
#
|
684
703
|
class ImportCertificateRequest < Struct.new(
|
685
704
|
:certificate_arn,
|
686
705
|
:certificate,
|
687
706
|
:private_key,
|
688
|
-
:certificate_chain
|
707
|
+
:certificate_chain,
|
708
|
+
:tags)
|
689
709
|
include Aws::Structure
|
690
710
|
end
|
691
711
|
|
@@ -742,6 +762,18 @@ module Aws::ACM
|
|
742
762
|
include Aws::Structure
|
743
763
|
end
|
744
764
|
|
765
|
+
# An input parameter was invalid.
|
766
|
+
#
|
767
|
+
# @!attribute [rw] message
|
768
|
+
# @return [String]
|
769
|
+
#
|
770
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/InvalidParameterException AWS API Documentation
|
771
|
+
#
|
772
|
+
class InvalidParameterException < Struct.new(
|
773
|
+
:message)
|
774
|
+
include Aws::Structure
|
775
|
+
end
|
776
|
+
|
745
777
|
# Processing has reached an invalid state.
|
746
778
|
#
|
747
779
|
# @!attribute [rw] message
|
@@ -1030,6 +1062,12 @@ module Aws::ACM
|
|
1030
1062
|
# certificate_transparency_logging_preference: "ENABLED", # accepts ENABLED, DISABLED
|
1031
1063
|
# },
|
1032
1064
|
# certificate_authority_arn: "Arn",
|
1065
|
+
# tags: [
|
1066
|
+
# {
|
1067
|
+
# key: "TagKey", # required
|
1068
|
+
# value: "TagValue",
|
1069
|
+
# },
|
1070
|
+
# ],
|
1033
1071
|
# }
|
1034
1072
|
#
|
1035
1073
|
# @!attribute [rw] domain_name
|
@@ -1039,7 +1077,7 @@ module Aws::ACM
|
|
1039
1077
|
# same domain. For example, *.example.com protects www.example.com,
|
1040
1078
|
# site.example.com, and images.example.com.
|
1041
1079
|
#
|
1042
|
-
# The first domain name you enter cannot exceed
|
1080
|
+
# The first domain name you enter cannot exceed 64 octets, including
|
1043
1081
|
# periods. Each subsequent Subject Alternative Name (SAN), however,
|
1044
1082
|
# can be up to 253 octets in length.
|
1045
1083
|
# @return [String]
|
@@ -1132,6 +1170,10 @@ module Aws::ACM
|
|
1132
1170
|
# [1]: https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaWelcome.html
|
1133
1171
|
# @return [String]
|
1134
1172
|
#
|
1173
|
+
# @!attribute [rw] tags
|
1174
|
+
# One or more resource tags to associate with the certificate.
|
1175
|
+
# @return [Array<Types::Tag>]
|
1176
|
+
#
|
1135
1177
|
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/RequestCertificateRequest AWS API Documentation
|
1136
1178
|
#
|
1137
1179
|
class RequestCertificateRequest < Struct.new(
|
@@ -1141,7 +1183,8 @@ module Aws::ACM
|
|
1141
1183
|
:idempotency_token,
|
1142
1184
|
:domain_validation_options,
|
1143
1185
|
:options,
|
1144
|
-
:certificate_authority_arn
|
1186
|
+
:certificate_authority_arn,
|
1187
|
+
:tags)
|
1145
1188
|
include Aws::Structure
|
1146
1189
|
end
|
1147
1190
|
|
@@ -1306,6 +1349,19 @@ module Aws::ACM
|
|
1306
1349
|
include Aws::Structure
|
1307
1350
|
end
|
1308
1351
|
|
1352
|
+
# A specified tag did not comply with an existing tag policy and was
|
1353
|
+
# rejected.
|
1354
|
+
#
|
1355
|
+
# @!attribute [rw] message
|
1356
|
+
# @return [String]
|
1357
|
+
#
|
1358
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/TagPolicyException AWS API Documentation
|
1359
|
+
#
|
1360
|
+
class TagPolicyException < Struct.new(
|
1361
|
+
:message)
|
1362
|
+
include Aws::Structure
|
1363
|
+
end
|
1364
|
+
|
1309
1365
|
# The request contains too many tags. Try the request again with fewer
|
1310
1366
|
# tags.
|
1311
1367
|
#
|
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.27.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: 2019-
|
11
|
+
date: 2019-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|