aws-sdk-acm 1.4.0 → 1.5.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 +29 -13
- data/lib/aws-sdk-acm/types.rb +20 -6
- 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: 2cc48ab0c2ab83b70257253bba7cbebe11305806
|
4
|
+
data.tar.gz: 71a01bb1d701b21ae07b76e3c173503f7853c1f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e3764b7e03ec56888c23bf10877a435f93dab68363de2aa7029ec963c2fe67fd51f56e358ec2b1b93564871fb18ec3e8cf54c962fe7a532882bec8dea9556bd
|
7
|
+
data.tar.gz: 4e977fb9d5d4d7fe77199d872925a12c4bed6f71c0c7e8fd13ff3bdb93e9301b3537a27b0dfadd37a9a85618e8378131bc2f59a57a8d3e25cbf23930ac055c21
|
data/lib/aws-sdk-acm.rb
CHANGED
data/lib/aws-sdk-acm/client.rb
CHANGED
@@ -645,23 +645,26 @@ module Aws::ACM
|
|
645
645
|
# request an ACM certificate, you must specify the fully qualified
|
646
646
|
# domain name (FQDN) for your site in the `DomainName` parameter. You
|
647
647
|
# can also specify additional FQDNs in the `SubjectAlternativeNames`
|
648
|
-
# parameter
|
648
|
+
# parameter.
|
649
649
|
#
|
650
|
-
#
|
650
|
+
# Each domain name that you specify must be validated to verify that you
|
651
|
+
# own or control the domain. You can use [DNS validation][1] or [email
|
652
|
+
# validation][2]. We recommend that you use DNS validation.
|
653
|
+
#
|
654
|
+
# If you choose email validation, email is sent to the domain owner to
|
651
655
|
# request approval to issue the certificate. Email is sent to three
|
652
656
|
# registered contact addresses in the WHOIS database and to five common
|
653
657
|
# system administration addresses formed from the `DomainName` you enter
|
654
658
|
# or the optional `ValidationDomain` parameter. For more information,
|
655
|
-
# see [Validate
|
659
|
+
# see [Validate with Email][2].
|
656
660
|
#
|
657
661
|
# After receiving approval from the domain owner, the ACM certificate is
|
658
|
-
# issued.
|
659
|
-
# Guide][2].
|
662
|
+
# issued.
|
660
663
|
#
|
661
664
|
#
|
662
665
|
#
|
663
|
-
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate.html
|
664
|
-
# [2]: http://docs.aws.amazon.com/acm/latest/userguide/
|
666
|
+
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html
|
667
|
+
# [2]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-email.html
|
665
668
|
#
|
666
669
|
# @option params [required, String] :domain_name
|
667
670
|
# Fully qualified domain name (FQDN), such as www.example.com, of the
|
@@ -675,7 +678,14 @@ module Aws::ACM
|
|
675
678
|
# be up to 253 octets in length.
|
676
679
|
#
|
677
680
|
# @option params [String] :validation_method
|
678
|
-
# The method you want to use to validate
|
681
|
+
# The method you want to use to validate that you own or control domain.
|
682
|
+
# You can [validate with DNS][1] or [validate with email][2]. We
|
683
|
+
# recommend that you use DNS validation.
|
684
|
+
#
|
685
|
+
#
|
686
|
+
#
|
687
|
+
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html
|
688
|
+
# [2]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-email.html
|
679
689
|
#
|
680
690
|
# @option params [Array<String>] :subject_alternative_names
|
681
691
|
# Additional FQDNs to be included in the Subject Alternative Name
|
@@ -726,8 +736,11 @@ module Aws::ACM
|
|
726
736
|
# transparency makes it possible to detect SSL/TLS certificates that
|
727
737
|
# have been mistakenly or maliciously issued. Certificates that have not
|
728
738
|
# been logged typically produce an error message in a browser. For more
|
729
|
-
# information, see [
|
730
|
-
#
|
739
|
+
# information, see [Opting Out of Certificate Transparency Logging][1].
|
740
|
+
#
|
741
|
+
#
|
742
|
+
#
|
743
|
+
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-bestpractices.html#best-practices-transparency
|
731
744
|
#
|
732
745
|
# @return [Types::RequestCertificateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
733
746
|
#
|
@@ -836,8 +849,11 @@ module Aws::ACM
|
|
836
849
|
# Updates a certificate. Currently, you can use this function to specify
|
837
850
|
# whether to opt in to or out of recording your certificate in a
|
838
851
|
# certificate transparency log. For more information, see [ Opting Out
|
839
|
-
# of Certificate Transparency
|
840
|
-
#
|
852
|
+
# of Certificate Transparency Logging][1].
|
853
|
+
#
|
854
|
+
#
|
855
|
+
#
|
856
|
+
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-bestpractices.html#best-practices-transparency
|
841
857
|
#
|
842
858
|
# @option params [required, String] :certificate_arn
|
843
859
|
# ARN of the requested certificate to update. This must be of the form:
|
@@ -886,7 +902,7 @@ module Aws::ACM
|
|
886
902
|
params: params,
|
887
903
|
config: config)
|
888
904
|
context[:gem_name] = 'aws-sdk-acm'
|
889
|
-
context[:gem_version] = '1.
|
905
|
+
context[:gem_version] = '1.5.0'
|
890
906
|
Seahorse::Client::Request.new(handlers, context)
|
891
907
|
end
|
892
908
|
|
data/lib/aws-sdk-acm/types.rb
CHANGED
@@ -198,7 +198,7 @@ module Aws::ACM
|
|
198
198
|
# transparency log. Certificate transparency makes it possible to
|
199
199
|
# detect SSL certificates that have been mistakenly or maliciously
|
200
200
|
# issued. A browser might respond to certificate that has not been
|
201
|
-
# logged by showing an error message. The logs are
|
201
|
+
# logged by showing an error message. The logs are cryptographically
|
202
202
|
# secure.
|
203
203
|
# @return [Types::CertificateOptions]
|
204
204
|
#
|
@@ -239,8 +239,11 @@ module Aws::ACM
|
|
239
239
|
# that are not logged typically generate a browser error. Transparency
|
240
240
|
# makes it possible for you to detect SSL/TLS certificates that have
|
241
241
|
# been mistakenly or maliciously issued for your domain. For general
|
242
|
-
# information, see [
|
243
|
-
#
|
242
|
+
# information, see [Certificate Transparency Logging][1].
|
243
|
+
#
|
244
|
+
#
|
245
|
+
#
|
246
|
+
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency
|
244
247
|
#
|
245
248
|
# @note When making an API call, you may pass CertificateOptions
|
246
249
|
# data as a hash:
|
@@ -855,7 +858,14 @@ module Aws::ACM
|
|
855
858
|
# @return [String]
|
856
859
|
#
|
857
860
|
# @!attribute [rw] validation_method
|
858
|
-
# The method you want to use to validate
|
861
|
+
# The method you want to use to validate that you own or control
|
862
|
+
# domain. You can [validate with DNS][1] or [validate with email][2].
|
863
|
+
# We recommend that you use DNS validation.
|
864
|
+
#
|
865
|
+
#
|
866
|
+
#
|
867
|
+
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html
|
868
|
+
# [2]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-email.html
|
859
869
|
# @return [String]
|
860
870
|
#
|
861
871
|
# @!attribute [rw] subject_alternative_names
|
@@ -910,8 +920,12 @@ module Aws::ACM
|
|
910
920
|
# transparency makes it possible to detect SSL/TLS certificates that
|
911
921
|
# have been mistakenly or maliciously issued. Certificates that have
|
912
922
|
# not been logged typically produce an error message in a browser. For
|
913
|
-
# more information, see [
|
914
|
-
# Logging]
|
923
|
+
# more information, see [Opting Out of Certificate Transparency
|
924
|
+
# Logging][1].
|
925
|
+
#
|
926
|
+
#
|
927
|
+
#
|
928
|
+
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-bestpractices.html#best-practices-transparency
|
915
929
|
# @return [Types::CertificateOptions]
|
916
930
|
#
|
917
931
|
# @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.
|
4
|
+
version: 1.5.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-03-
|
11
|
+
date: 2018-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|