aws-sdk-acm 1.0.0.rc6 → 1.0.0.rc7
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 +4 -4
- data/lib/aws-sdk-acm.rb +1 -1
- data/lib/aws-sdk-acm/client.rb +32 -2
- data/lib/aws-sdk-acm/types.rb +24 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9296210c51e511bc0b86ff0bad57d46d186c007
|
4
|
+
data.tar.gz: 8e62cddf26621a9a1815b3a398205af7c558a131
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5000ff38bac6d815a05b2f5556195616435dba863f490d0dabadeb37381b8526d977b38e1aeaec64b234b005b2440d9d636bbc8128c7ca9f27dfc8f2c179d6ee
|
7
|
+
data.tar.gz: 90c99ea35e8b242c47ebea5cff8ea6aa98561540710a9643d32ad1771169ee8ff64aaaa7277d9f5f08debb91ff70e4d59459f2aee71a52b589e7eff6c8a5db66
|
data/lib/aws-sdk-acm.rb
CHANGED
data/lib/aws-sdk-acm/client.rb
CHANGED
@@ -638,11 +638,35 @@ module Aws::ACM
|
|
638
638
|
# the same domain. For example, *.example.com protects www.example.com,
|
639
639
|
# site.example.com, and images.example.com.
|
640
640
|
#
|
641
|
+
# The maximum length of a DNS name is 253 octets. The name is made up of
|
642
|
+
# multiple labels separated by periods. No label can be longer than 63
|
643
|
+
# octets. Consider the following examples:
|
644
|
+
#
|
645
|
+
# `(63 octets).(63 octets).(63 octets).(61 octets)` is legal because the
|
646
|
+
# total length is 253 octets (63+1+63+1+63+1+61) and no label exceeds 63
|
647
|
+
# octets.
|
648
|
+
#
|
649
|
+
# `(64 octets).(63 octets).(63 octets).(61 octets)` is not legal because
|
650
|
+
# the total length exceeds 253 octets (64+1+63+1+63+1+61) and the first
|
651
|
+
# label exceeds 63 octets.
|
652
|
+
#
|
653
|
+
# `(63 octets).(63 octets).(63 octets).(62 octets)` is not legal because
|
654
|
+
# the total length of the DNS name (63+1+63+1+63+1+62) exceeds 253
|
655
|
+
# octets.
|
656
|
+
#
|
641
657
|
# @option params [Array<String>] :subject_alternative_names
|
642
658
|
# Additional FQDNs to be included in the Subject Alternative Name
|
643
659
|
# extension of the ACM Certificate. For example, add the name
|
644
660
|
# www.example.net to a certificate for which the `DomainName` field is
|
645
|
-
# www.example.com if users can reach your site by using either name.
|
661
|
+
# www.example.com if users can reach your site by using either name. The
|
662
|
+
# maximum number of domain names that you can add to an ACM Certificate
|
663
|
+
# is 100. However, the initial limit is 10 domain names. If you need
|
664
|
+
# more than 10 names, you must request a limit increase. For more
|
665
|
+
# information, see [Limits][1].
|
666
|
+
#
|
667
|
+
#
|
668
|
+
#
|
669
|
+
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-limits.html
|
646
670
|
#
|
647
671
|
# @option params [String] :idempotency_token
|
648
672
|
# Customer chosen string that can be used to distinguish between calls
|
@@ -698,6 +722,12 @@ module Aws::ACM
|
|
698
722
|
# within 72 hours of requesting the ACM Certificate. If more than 72
|
699
723
|
# hours have elapsed since your original request or since your last
|
700
724
|
# attempt to resend validation mail, you must request a new certificate.
|
725
|
+
# For more information about setting up your contact email addresses,
|
726
|
+
# see [Configure Email for your Domain][1].
|
727
|
+
#
|
728
|
+
#
|
729
|
+
#
|
730
|
+
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/setup-email.html
|
701
731
|
#
|
702
732
|
# @option params [required, String] :certificate_arn
|
703
733
|
# String that contains the ARN of the requested certificate. The
|
@@ -766,7 +796,7 @@ module Aws::ACM
|
|
766
796
|
params: params,
|
767
797
|
config: config)
|
768
798
|
context[:gem_name] = 'aws-sdk-acm'
|
769
|
-
context[:gem_version] = '1.0.0.
|
799
|
+
context[:gem_version] = '1.0.0.rc7'
|
770
800
|
Seahorse::Client::Request.new(handlers, context)
|
771
801
|
end
|
772
802
|
|
data/lib/aws-sdk-acm/types.rb
CHANGED
@@ -685,6 +685,22 @@ module Aws::ACM
|
|
685
685
|
# asterisk (*) to create a wildcard certificate that protects several
|
686
686
|
# sites in the same domain. For example, *.example.com protects
|
687
687
|
# www.example.com, site.example.com, and images.example.com.
|
688
|
+
#
|
689
|
+
# The maximum length of a DNS name is 253 octets. The name is made up
|
690
|
+
# of multiple labels separated by periods. No label can be longer than
|
691
|
+
# 63 octets. Consider the following examples:
|
692
|
+
#
|
693
|
+
# `(63 octets).(63 octets).(63 octets).(61 octets)` is legal because
|
694
|
+
# the total length is 253 octets (63+1+63+1+63+1+61) and no label
|
695
|
+
# exceeds 63 octets.
|
696
|
+
#
|
697
|
+
# `(64 octets).(63 octets).(63 octets).(61 octets)` is not legal
|
698
|
+
# because the total length exceeds 253 octets (64+1+63+1+63+1+61) and
|
699
|
+
# the first label exceeds 63 octets.
|
700
|
+
#
|
701
|
+
# `(63 octets).(63 octets).(63 octets).(62 octets)` is not legal
|
702
|
+
# because the total length of the DNS name (63+1+63+1+63+1+62) exceeds
|
703
|
+
# 253 octets.
|
688
704
|
# @return [String]
|
689
705
|
#
|
690
706
|
# @!attribute [rw] subject_alternative_names
|
@@ -692,6 +708,14 @@ module Aws::ACM
|
|
692
708
|
# extension of the ACM Certificate. For example, add the name
|
693
709
|
# www.example.net to a certificate for which the `DomainName` field is
|
694
710
|
# www.example.com if users can reach your site by using either name.
|
711
|
+
# The maximum number of domain names that you can add to an ACM
|
712
|
+
# Certificate is 100. However, the initial limit is 10 domain names.
|
713
|
+
# If you need more than 10 names, you must request a limit increase.
|
714
|
+
# For more information, see [Limits][1].
|
715
|
+
#
|
716
|
+
#
|
717
|
+
#
|
718
|
+
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-limits.html
|
695
719
|
# @return [Array<String>]
|
696
720
|
#
|
697
721
|
# @!attribute [rw] idempotency_token
|
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.0.0.
|
4
|
+
version: 1.0.0.rc7
|
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: 2017-
|
11
|
+
date: 2017-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.0.0.
|
19
|
+
version: 3.0.0.rc13
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.0.0.
|
26
|
+
version: 3.0.0.rc13
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: aws-sigv4
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|