aws-sdk-acm 1.6.0 → 1.7.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
  SHA1:
3
- metadata.gz: dc567d5eb818ef1f4cba9faabfd44c0169176987
4
- data.tar.gz: 1f3ba818a819aa0478177180df0a773aa9813470
3
+ metadata.gz: 2d64309113c5f232062b2d8e6253e22fef5345e8
4
+ data.tar.gz: 18671674650d1ee060504d19a5731ef7c0d31621
5
5
  SHA512:
6
- metadata.gz: d1dc5a26af66c17c4900b36f35f5a6e3d4544e5312f90e5683b0e436573d907a301cfeecd4378bd36bcf3a287a9c4dbcb17ddc19598137d5035acfb69267e9e7
7
- data.tar.gz: 2e0037beb949b7c9f7a96fd7164347fe5560e90c98690125b36d3743e5cc0841b5ebf3746ec59c0adbf2b9c1bf50e4cabadf80f7cff0288839c06fd635398d42
6
+ metadata.gz: a0adfe14534491c74cf7fd6578bf4c1f6f0968599a75efee32b32c5bd1e798b0b6623a9acf37b80897d83ddf48e14146eb81c60557cac2eee5c464cde9a6e87f
7
+ data.tar.gz: 8887f77c58c0c6eed14ed3858e2acd019fb5c83ff2292f7588b51458c35511e19a15323b5c4bf95915fe35a1d1badd1b625f36bfd74288faa9a6fac6fc1ebe44
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-acm/customizations'
42
42
  # @service
43
43
  module Aws::ACM
44
44
 
45
- GEM_VERSION = '1.6.0'
45
+ GEM_VERSION = '1.7.0'
46
46
 
47
47
  end
@@ -177,7 +177,7 @@ module Aws::ACM
177
177
  #
178
178
  #
179
179
  #
180
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/tags.html
180
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/tags.html
181
181
  #
182
182
  # @option params [required, String] :certificate_arn
183
183
  # String that contains the ARN of the ACM certificate to which the tag
@@ -347,13 +347,14 @@ module Aws::ACM
347
347
  req.send_request(options)
348
348
  end
349
349
 
350
- # Exports a certificate for use anywhere. You can export the
351
- # certificate, the certificate chain, and the encrypted private key
352
- # associated with the public key embedded in the certificate. You must
353
- # store the private key securely. The private key is a 2048 bit RSA key.
354
- # You must provide a passphrase for the private key when exporting it.
355
- # You can use the following OpenSSL command to decrypt it later. Provide
356
- # the passphrase when prompted.
350
+ # Exports a private certificate issued by a private certificate
351
+ # authority (CA) for use anywhere. You can export the certificate, the
352
+ # certificate chain, and the encrypted private key associated with the
353
+ # public key embedded in the certificate. You must store the private key
354
+ # securely. The private key is a 2048 bit RSA key. You must provide a
355
+ # passphrase for the private key when exporting it. You can use the
356
+ # following OpenSSL command to decrypt it later. Provide the passphrase
357
+ # when prompted.
357
358
  #
358
359
  # `openssl rsa -in encrypted_key.pem -out decrypted_key.pem`
359
360
  #
@@ -485,21 +486,25 @@ module Aws::ACM
485
486
  # Include this argument only when you want to replace a previously
486
487
  # imported certificate.
487
488
  #
488
- # * When you import a certificate by using the CLI or one of the SDKs,
489
- # you must specify the certificate, the certificate chain, and the
490
- # private key by their file names preceded by `file://`. For example,
491
- # you can specify a certificate saved in the `C:\temp` folder as
489
+ # * When you import a certificate by using the CLI, you must specify the
490
+ # certificate, the certificate chain, and the private key by their
491
+ # file names preceded by `file://`. For example, you can specify a
492
+ # certificate saved in the `C:\temp` folder as
492
493
  # `file://C:\temp\certificate_to_import.pem`. If you are making an
493
494
  # HTTP or HTTPS Query request, include these arguments as BLOBs.
494
495
  #
496
+ # * When you import a certificate by using an SDK, you must specify the
497
+ # certificate, the certificate chain, and the private key files in the
498
+ # manner required by the programming language you're using.
499
+ #
495
500
  # This operation returns the [Amazon Resource Name (ARN)][4] of the
496
501
  # imported certificate.
497
502
  #
498
503
  #
499
504
  #
500
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/acm-services.html
501
- # [2]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/import-certificate.html
502
- # [3]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/acm-renewal.html
505
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-services.html
506
+ # [2]: http://docs.aws.amazon.com/acm/latest/userguide/import-certificate.html
507
+ # [3]: http://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html
503
508
  # [4]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
504
509
  #
505
510
  # @option params [String] :certificate_arn
@@ -696,35 +701,27 @@ module Aws::ACM
696
701
  end
697
702
 
698
703
  # Requests an ACM certificate for use with other AWS services. To
699
- # request an ACM certificate, you must specify the fully qualified
700
- # domain name (FQDN) for your site in the `DomainName` parameter. You
701
- # can also specify additional FQDNs in the `SubjectAlternativeNames`
702
- # parameter.
703
- #
704
- # Each domain name that you specify must be validated to verify that you
705
- # own or control the domain. You can use [DNS validation][1] or [email
706
- # validation][2]. We recommend that you use DNS validation.
707
- #
708
- # If you choose email validation, email is sent to the domain owner to
709
- # request approval to issue the certificate. Email is sent to three
710
- # registered contact addresses in the WHOIS database and to five common
711
- # system administration addresses formed from the `DomainName` you enter
712
- # or the optional `ValidationDomain` parameter. For more information,
713
- # see [Validate with Email][2].
704
+ # request an ACM certificate, you must specify a fully qualified domain
705
+ # name (FQDN) in the `DomainName` parameter. You can also specify
706
+ # additional FQDNs in the `SubjectAlternativeNames` parameter.
714
707
  #
715
- # After receiving approval from the domain owner, the ACM certificate is
716
- # issued.
708
+ # If you are requesting a private certificate, domain validation is not
709
+ # required. If you are requesting a public certificate, each domain name
710
+ # that you specify must be validated to verify that you own or control
711
+ # the domain. You can use [DNS validation][1] or [email validation][2].
712
+ # We recommend that you use DNS validation. ACM issues public
713
+ # certificates after receiving approval from the domain owner.
717
714
  #
718
715
  #
719
716
  #
720
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/gs-acm-validate-dns.html
721
- # [2]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/gs-acm-validate-email.html
717
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html
718
+ # [2]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-email.html
722
719
  #
723
720
  # @option params [required, String] :domain_name
724
- # Fully qualified domain name (FQDN), such as www.example.com, of the
725
- # site that you want to secure with an ACM Certificate. Use an asterisk
726
- # (*) to create a wildcard certificate that protects several sites in
727
- # the same domain. For example, *.example.com protects www.example.com,
721
+ # Fully qualified domain name (FQDN), such as www.example.com, that you
722
+ # want to secure with an ACM certificate. Use an asterisk (*) to create
723
+ # a wildcard certificate that protects several sites in the same domain.
724
+ # For example, *.example.com protects www.example.com,
728
725
  # site.example.com, and images.example.com.
729
726
  #
730
727
  # The first domain name you enter cannot exceed 63 octets, including
@@ -732,14 +729,15 @@ module Aws::ACM
732
729
  # be up to 253 octets in length.
733
730
  #
734
731
  # @option params [String] :validation_method
735
- # The method you want to use to validate that you own or control domain.
736
- # You can [validate with DNS][1] or [validate with email][2]. We
737
- # recommend that you use DNS validation.
732
+ # The method you want to use if you are requesting a public certificate
733
+ # to validate that you own or control domain. You can [validate with
734
+ # DNS][1] or [validate with email][2]. We recommend that you use DNS
735
+ # validation.
738
736
  #
739
737
  #
740
738
  #
741
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/gs-acm-validate-dns.html
742
- # [2]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/gs-acm-validate-email.html
739
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html
740
+ # [2]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-email.html
743
741
  #
744
742
  # @option params [Array<String>] :subject_alternative_names
745
743
  # Additional FQDNs to be included in the Subject Alternative Name
@@ -769,7 +767,7 @@ module Aws::ACM
769
767
  #
770
768
  #
771
769
  #
772
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/acm-limits.html
770
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-limits.html
773
771
  #
774
772
  # @option params [String] :idempotency_token
775
773
  # Customer chosen string that can be used to distinguish between calls
@@ -794,20 +792,21 @@ module Aws::ACM
794
792
  #
795
793
  #
796
794
  #
797
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/acm-bestpractices.html#best-practices-transparency
795
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-bestpractices.html#best-practices-transparency
798
796
  #
799
797
  # @option params [String] :certificate_authority_arn
800
798
  # The Amazon Resource Name (ARN) of the private certificate authority
801
- # (CA) that will be used to issue the certificate. For more information
802
- # about private CAs, see the [AWS Certificate Manager Private
803
- # Certificate Authority (PCA)][1] user guide. The ARN must have the
804
- # following form:
799
+ # (CA) that will be used to issue the certificate. If you do not provide
800
+ # an ARN and you are trying to request a private certificate, ACM will
801
+ # attempt to issue a public certificate. For more information about
802
+ # private CAs, see the [AWS Certificate Manager Private Certificate
803
+ # Authority (PCA)][1] user guide. The ARN must have the following form:
805
804
  #
806
805
  # `arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012`
807
806
  #
808
807
  #
809
808
  #
810
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm-pca/latest/userguide/PcaWelcome.html
809
+ # [1]: http://docs.aws.amazon.com/acm-pca/latest/userguide/PcaWelcome.html
811
810
  #
812
811
  # @return [Types::RequestCertificateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
813
812
  #
@@ -860,7 +859,7 @@ module Aws::ACM
860
859
  #
861
860
  #
862
861
  #
863
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/setup-email.html
862
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/setup-email.html
864
863
  #
865
864
  # @option params [required, String] :certificate_arn
866
865
  # String that contains the ARN of the requested certificate. The
@@ -921,7 +920,7 @@ module Aws::ACM
921
920
  #
922
921
  #
923
922
  #
924
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/acm-bestpractices.html#best-practices-transparency
923
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-bestpractices.html#best-practices-transparency
925
924
  #
926
925
  # @option params [required, String] :certificate_arn
927
926
  # ARN of the requested certificate to update. This must be of the form:
@@ -970,7 +969,7 @@ module Aws::ACM
970
969
  params: params,
971
970
  config: config)
972
971
  context[:gem_name] = 'aws-sdk-acm'
973
- context[:gem_version] = '1.6.0'
972
+ context[:gem_version] = '1.7.0'
974
973
  Seahorse::Client::Request.new(handlers, context)
975
974
  end
976
975
 
@@ -152,7 +152,7 @@ module Aws::ACM
152
152
  #
153
153
  #
154
154
  #
155
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/troubleshooting.html#troubleshooting-failed
155
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/troubleshooting.html#troubleshooting-failed
156
156
  # @return [String]
157
157
  #
158
158
  # @!attribute [rw] type
@@ -166,8 +166,8 @@ module Aws::ACM
166
166
  #
167
167
  #
168
168
  #
169
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/acm-renewal.html
170
- # [2]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/import-certificate.html
169
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html
170
+ # [2]: http://docs.aws.amazon.com/acm/latest/userguide/import-certificate.html
171
171
  # @return [String]
172
172
  #
173
173
  # @!attribute [rw] renewal_summary
@@ -177,7 +177,7 @@ module Aws::ACM
177
177
  #
178
178
  #
179
179
  #
180
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/acm-renewal.html
180
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html
181
181
  # @return [Types::RenewalSummary]
182
182
  #
183
183
  # @!attribute [rw] key_usages
@@ -257,7 +257,7 @@ module Aws::ACM
257
257
  #
258
258
  #
259
259
  #
260
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/acm-concepts.html#concept-transparency
260
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency
261
261
  #
262
262
  # @note When making an API call, you may pass CertificateOptions
263
263
  # data as a hash:
@@ -409,7 +409,7 @@ module Aws::ACM
409
409
  #
410
410
  #
411
411
  #
412
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/gs-acm-validate-dns.html
412
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html
413
413
  # @return [Types::ResourceRecord]
414
414
  #
415
415
  # @!attribute [rw] validation_method
@@ -865,14 +865,14 @@ module Aws::ACM
865
865
  #
866
866
  #
867
867
  #
868
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/acm-renewal.html
868
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html
869
869
  #
870
870
  # @!attribute [rw] renewal_status
871
871
  # The status of ACM's [managed renewal][1] of the certificate.
872
872
  #
873
873
  #
874
874
  #
875
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/acm-renewal.html
875
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html
876
876
  # @return [String]
877
877
  #
878
878
  # @!attribute [rw] domain_validation_options
@@ -884,7 +884,7 @@ module Aws::ACM
884
884
  #
885
885
  #
886
886
  #
887
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/acm-renewal.html
887
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html
888
888
  # @return [Array<Types::DomainValidation>]
889
889
  #
890
890
  # @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/RenewalSummary AWS API Documentation
@@ -916,11 +916,11 @@ module Aws::ACM
916
916
  # }
917
917
  #
918
918
  # @!attribute [rw] domain_name
919
- # Fully qualified domain name (FQDN), such as www.example.com, of the
920
- # site that you want to secure with an ACM Certificate. Use an
921
- # asterisk (*) to create a wildcard certificate that protects several
922
- # sites in the same domain. For example, *.example.com protects
923
- # www.example.com, site.example.com, and images.example.com.
919
+ # Fully qualified domain name (FQDN), such as www.example.com, that
920
+ # you want to secure with an ACM certificate. Use an asterisk (*) to
921
+ # create a wildcard certificate that protects several sites in the
922
+ # same domain. For example, *.example.com protects www.example.com,
923
+ # site.example.com, and images.example.com.
924
924
  #
925
925
  # The first domain name you enter cannot exceed 63 octets, including
926
926
  # periods. Each subsequent Subject Alternative Name (SAN), however,
@@ -928,14 +928,15 @@ module Aws::ACM
928
928
  # @return [String]
929
929
  #
930
930
  # @!attribute [rw] validation_method
931
- # The method you want to use to validate that you own or control
932
- # domain. You can [validate with DNS][1] or [validate with email][2].
933
- # We recommend that you use DNS validation.
931
+ # The method you want to use if you are requesting a public
932
+ # certificate to validate that you own or control domain. You can
933
+ # [validate with DNS][1] or [validate with email][2]. We recommend
934
+ # that you use DNS validation.
934
935
  #
935
936
  #
936
937
  #
937
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/gs-acm-validate-dns.html
938
- # [2]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/gs-acm-validate-email.html
938
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html
939
+ # [2]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-email.html
939
940
  # @return [String]
940
941
  #
941
942
  # @!attribute [rw] subject_alternative_names
@@ -966,7 +967,7 @@ module Aws::ACM
966
967
  #
967
968
  #
968
969
  #
969
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/acm-limits.html
970
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-limits.html
970
971
  # @return [Array<String>]
971
972
  #
972
973
  # @!attribute [rw] idempotency_token
@@ -995,21 +996,23 @@ module Aws::ACM
995
996
  #
996
997
  #
997
998
  #
998
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm/latest/userguide/acm-bestpractices.html#best-practices-transparency
999
+ # [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-bestpractices.html#best-practices-transparency
999
1000
  # @return [Types::CertificateOptions]
1000
1001
  #
1001
1002
  # @!attribute [rw] certificate_authority_arn
1002
1003
  # The Amazon Resource Name (ARN) of the private certificate authority
1003
- # (CA) that will be used to issue the certificate. For more
1004
- # information about private CAs, see the [AWS Certificate Manager
1005
- # Private Certificate Authority (PCA)][1] user guide. The ARN must
1006
- # have the following form:
1004
+ # (CA) that will be used to issue the certificate. If you do not
1005
+ # provide an ARN and you are trying to request a private certificate,
1006
+ # ACM will attempt to issue a public certificate. For more information
1007
+ # about private CAs, see the [AWS Certificate Manager Private
1008
+ # Certificate Authority (PCA)][1] user guide. The ARN must have the
1009
+ # following form:
1007
1010
  #
1008
1011
  # `arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012`
1009
1012
  #
1010
1013
  #
1011
1014
  #
1012
- # [1]: http://docs.aws.amazon.com/http:/docs.aws.amazon.comacm-pca/latest/userguide/PcaWelcome.html
1015
+ # [1]: http://docs.aws.amazon.com/acm-pca/latest/userguide/PcaWelcome.html
1013
1016
  # @return [String]
1014
1017
  #
1015
1018
  # @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/RequestCertificateRequest AWS API Documentation
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.6.0
4
+ version: 1.7.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: 2018-04-04 00:00:00.000000000 Z
11
+ date: 2018-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  version: '0'
76
76
  requirements: []
77
77
  rubyforge_project:
78
- rubygems_version: 2.5.2.2
78
+ rubygems_version: 2.5.2.3
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: AWS SDK for Ruby - ACM