aws-sdk-acm 1.0.0 → 1.1.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 +4 -4
- data/lib/aws-sdk-acm.rb +1 -1
- data/lib/aws-sdk-acm/client.rb +27 -16
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3403fb2e98c0e2ccedeadbb6e1b6328b6d3b6668
|
4
|
+
data.tar.gz: 39f80502395e1ee07dfe85c91c7397f813f7e837
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2988cb5672c8b2e9c7c1e71c8d897269764b2d99d7d5e630d983d2fcb7c6c5c12c66a20b36c83683b5e2adc76d0146a0697e17e70ed35920bec7b9dea1cfe0bf
|
7
|
+
data.tar.gz: 2617620a1de7cfc331c2d8816b64e3bb4ba9d3c0b78050b3bc507dcec8728252ec860cf8fa59a56bd4244f782bac9fe3da6977bc8b63f068d89ccb0297e623c5
|
data/lib/aws-sdk-acm.rb
CHANGED
data/lib/aws-sdk-acm/client.rb
CHANGED
@@ -333,17 +333,12 @@ module Aws::ACM
|
|
333
333
|
|
334
334
|
# Retrieves an ACM Certificate and certificate chain for the certificate
|
335
335
|
# specified by an ARN. The chain is an ordered list of certificates that
|
336
|
-
# contains the
|
337
|
-
#
|
336
|
+
# contains the ACM Certificate, intermediate certificates of subordinate
|
337
|
+
# CAs, and the root certificate in that order. The certificate and
|
338
338
|
# certificate chain are base64 encoded. If you want to decode the
|
339
339
|
# certificate chain to see the individual certificate fields, you can
|
340
340
|
# use OpenSSL.
|
341
341
|
#
|
342
|
-
# <note markdown="1"> Currently, ACM Certificates can be used only with Elastic Load
|
343
|
-
# Balancing and Amazon CloudFront.
|
344
|
-
#
|
345
|
-
# </note>
|
346
|
-
#
|
347
342
|
# @option params [required, String] :certificate_arn
|
348
343
|
# String that contains a certificate ARN in the following format:
|
349
344
|
#
|
@@ -391,7 +386,7 @@ module Aws::ACM
|
|
391
386
|
#
|
392
387
|
# For more information about importing certificates into ACM, including
|
393
388
|
# the differences between certificates that you import and those that
|
394
|
-
# ACM provides, see [Importing Certificates][3] in the *AWS Certificate
|
389
|
+
# ACM provides, see [ Importing Certificates][3] in the *AWS Certificate
|
395
390
|
# Manager User Guide*.
|
396
391
|
#
|
397
392
|
# To import a certificate, you must provide the certificate and the
|
@@ -408,6 +403,13 @@ module Aws::ACM
|
|
408
403
|
# this field only when you want to replace a previously imported
|
409
404
|
# certificate.
|
410
405
|
#
|
406
|
+
# When you import a certificate by using the CLI or one of the SDKs, you
|
407
|
+
# must specify the certificate, chain, and private key parameters as
|
408
|
+
# file names preceded by `file://`. For example, you can specify a
|
409
|
+
# certificate saved in the `C:\temp` folder as
|
410
|
+
# `C:\temp\certificate_to_import.pem`. If you are making an HTTP or
|
411
|
+
# HTTPS Query request, include these parameters as BLOBs.
|
412
|
+
#
|
411
413
|
# This operation returns the [Amazon Resource Name (ARN)][5] of the
|
412
414
|
# imported certificate.
|
413
415
|
#
|
@@ -620,16 +622,25 @@ module Aws::ACM
|
|
620
622
|
|
621
623
|
# Requests an ACM Certificate for use with other AWS services. To
|
622
624
|
# request an ACM Certificate, you must specify the fully qualified
|
623
|
-
# domain name (FQDN) for your site
|
624
|
-
#
|
625
|
-
#
|
626
|
-
#
|
627
|
-
# domain
|
628
|
-
# the
|
625
|
+
# domain name (FQDN) for your site in the `DomainName` parameter. You
|
626
|
+
# can also specify additional FQDNs in the `SubjectAlternativeNames`
|
627
|
+
# parameter if users can reach your site by using other names.
|
628
|
+
#
|
629
|
+
# For each domain name you specify, email is sent to the domain owner to
|
630
|
+
# request approval to issue the certificate. Email is sent to three
|
631
|
+
# registered contact addresses in the WHOIS database and to five common
|
632
|
+
# system administration addresses formed from the `DomainName` you enter
|
633
|
+
# or the optional `ValidationDomain` parameter. For more information,
|
634
|
+
# see [Validate Domain Ownership][1].
|
635
|
+
#
|
636
|
+
# After receiving approval from the domain owner, the ACM Certificate is
|
637
|
+
# issued. For more information, see the [AWS Certificate Manager User
|
638
|
+
# Guide][2].
|
629
639
|
#
|
630
640
|
#
|
631
641
|
#
|
632
|
-
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/
|
642
|
+
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate.html
|
643
|
+
# [2]: http://docs.aws.amazon.com/acm/latest/userguide/
|
633
644
|
#
|
634
645
|
# @option params [required, String] :domain_name
|
635
646
|
# Fully qualified domain name (FQDN), such as www.example.com, of the
|
@@ -796,7 +807,7 @@ module Aws::ACM
|
|
796
807
|
params: params,
|
797
808
|
config: config)
|
798
809
|
context[:gem_name] = 'aws-sdk-acm'
|
799
|
-
context[:gem_version] = '1.
|
810
|
+
context[:gem_version] = '1.1.0'
|
800
811
|
Seahorse::Client::Request.new(handlers, context)
|
801
812
|
end
|
802
813
|
|
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.1.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: 2017-
|
11
|
+
date: 2017-11-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -56,7 +56,9 @@ files:
|
|
56
56
|
homepage: http://github.com/aws/aws-sdk-ruby
|
57
57
|
licenses:
|
58
58
|
- Apache-2.0
|
59
|
-
metadata:
|
59
|
+
metadata:
|
60
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-acm
|
61
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-acm/CHANGELOG.md
|
60
62
|
post_install_message:
|
61
63
|
rdoc_options: []
|
62
64
|
require_paths:
|