aws-sdk-acm 1.2.0 → 1.3.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: cc5f02c5bea0bcd493337e573f709b674e6bcbeb
4
- data.tar.gz: 2fc1b0a307e8513b13535a76f37ee3b888830e1f
3
+ metadata.gz: 947abb289a2c2ddbd513e2adec5d3455d7592960
4
+ data.tar.gz: 4f6ca1230e2372b67f64614d4e8c63b272ee1438
5
5
  SHA512:
6
- metadata.gz: efbbc1453f48ed54825d603a7ac571c50b481e8b9d7776b755dfc1562da7971e6358a51fbb053c27935ec3dc560692f7d4bcfb7ccb0e9518aa11871c66d821e5
7
- data.tar.gz: f018ef8f70e878692c0a778db21f2eeb16565de82ea93fc9a18d76136ffefc22dff02f7c6cbf4cd3334ae96eddf425ac0703f75f1a791fb095cc7339766a4e5c
6
+ metadata.gz: 2f240aab46280723c6f1999e1e88c4ccaf4d7436d53c9609bf16ded500e40f13953f7c553e2382b83587287516ddc5effb0f40d80d9e63e906a8afbfb238c3f2
7
+ data.tar.gz: e3d8cf8a702bafc0c691556edd3e17c23fd10a1a8703efc8077e23a5121d77f538a6f661a17b1b32e0c9e3a58690b08e6ad3ad9b0ec62946680b0650d023064c
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-acm/customizations'
42
42
  # @service
43
43
  module Aws::ACM
44
44
 
45
- GEM_VERSION = '1.2.0'
45
+ GEM_VERSION = '1.3.0'
46
46
 
47
47
  end
@@ -346,7 +346,7 @@ module Aws::ACM
346
346
 
347
347
  # Retrieves a certificate specified by an ARN and its certificate chain
348
348
  # . The chain is an ordered list of certificates that contains the end
349
- # entity ertificate, intermediate certificates of subordinate CAs, and
349
+ # entity certificate, intermediate certificates of subordinate CAs, and
350
350
  # the root certificate in that order. The certificate and certificate
351
351
  # chain are base64 encoded. If you want to decode the certificate to see
352
352
  # the individual fields, you can use OpenSSL.
@@ -389,23 +389,20 @@ module Aws::ACM
389
389
  end
390
390
 
391
391
  # Imports a certificate into AWS Certificate Manager (ACM) to use with
392
- # services that are integrated with ACM. For more information, see
393
- # [Integrated Services][1].
394
- #
395
- # <note markdown="1"> ACM does not provide [managed renewal][2] for certificates that you
392
+ # services that are integrated with ACM. Note that [integrated
393
+ # services][1] allow only certificate types and keys they support to be
394
+ # associated with their resources. Further, their support differs
395
+ # depending on whether the certificate is imported into IAM or into ACM.
396
+ # For more information, see the documentation for each service. For more
397
+ # information about importing certificates into ACM, see [Importing
398
+ # Certificates][2] in the *AWS Certificate Manager User Guide*.
399
+ #
400
+ # <note markdown="1"> ACM does not provide [managed renewal][3] for certificates that you
396
401
  # import.
397
402
  #
398
403
  # </note>
399
404
  #
400
- # For more information about importing certificates into ACM, including
401
- # the differences between certificates that you import and those that
402
- # ACM provides, see [Importing Certificates][3] in the *AWS Certificate
403
- # Manager User Guide*.
404
- #
405
- # In general, you can import almost any valid certificate. However,
406
- # services integrated with ACM allow only certificate types they support
407
- # to be associated with their resources. The following guidelines are
408
- # also important:
405
+ # Note the following guidelines when importing third party certificates:
409
406
  #
410
407
  # * You must enter the private key that matches the certificate you are
411
408
  # importing.
@@ -427,18 +424,18 @@ module Aws::ACM
427
424
  #
428
425
  # * The `Issuer` field must not be empty.
429
426
  #
430
- # * The OCSP authority URL must not exceed 1000 characters.
427
+ # * The OCSP authority URL, if present, must not exceed 1000 characters.
431
428
  #
432
- # * To import a new certificate, omit the `CertificateArn` field.
433
- # Include this field only when you want to replace a previously
429
+ # * To import a new certificate, omit the `CertificateArn` argument.
430
+ # Include this argument only when you want to replace a previously
434
431
  # imported certificate.
435
432
  #
436
433
  # * When you import a certificate by using the CLI or one of the SDKs,
437
- # you must specify the certificate, certificate chain, and private key
438
- # parameters as file names preceded by `file://`. For example, you can
439
- # specify a certificate saved in the `C:\temp` folder as
440
- # `C:\temp\certificate_to_import.pem`. If you are making an HTTP or
441
- # HTTPS Query request, include these parameters as BLOBs.
434
+ # you must specify the certificate, the certificate chain, and the
435
+ # private key by their file names preceded by `file://`. For example,
436
+ # you can specify a certificate saved in the `C:\temp` folder as
437
+ # `file://C:\temp\certificate_to_import.pem`. If you are making an
438
+ # HTTP or HTTPS Query request, include these arguments as BLOBs.
442
439
  #
443
440
  # This operation returns the [Amazon Resource Name (ARN)][4] of the
444
441
  # imported certificate.
@@ -446,8 +443,8 @@ module Aws::ACM
446
443
  #
447
444
  #
448
445
  # [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-services.html
449
- # [2]: http://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html
450
- # [3]: http://docs.aws.amazon.com/acm/latest/userguide/import-certificate.html
446
+ # [2]: http://docs.aws.amazon.com/acm/latest/userguide/import-certificate.html
447
+ # [3]: http://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html
451
448
  # [4]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
452
449
  #
453
450
  # @option params [String] :certificate_arn
@@ -501,14 +498,8 @@ module Aws::ACM
501
498
  # Filter the certificate list by status value.
502
499
  #
503
500
  # @option params [Types::Filters] :includes
504
- # Filter the certificate list by one or more of the following values.
505
- # For more information, see the Filters structure.
506
- #
507
- # * extendedKeyUsage
508
- #
509
- # * keyUsage
510
- #
511
- # * keyTypes
501
+ # Filter the certificate list. For more information, see the Filters
502
+ # structure.
512
503
  #
513
504
  # @option params [String] :next_token
514
505
  # Use this parameter only when paginating results and only in a
@@ -725,8 +716,8 @@ module Aws::ACM
725
716
  # requesting multiple certificates.
726
717
  #
727
718
  # @option params [Array<Types::DomainValidationOption>] :domain_validation_options
728
- # The domain name that you want ACM to use to send you emails so taht
729
- # your can validate domain ownership.
719
+ # The domain name that you want ACM to use to send you emails so that
720
+ # you can validate domain ownership.
730
721
  #
731
722
  # @return [Types::RequestCertificateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
732
723
  #
@@ -842,7 +833,7 @@ module Aws::ACM
842
833
  params: params,
843
834
  config: config)
844
835
  context[:gem_name] = 'aws-sdk-acm'
845
- context[:gem_version] = '1.2.0'
836
+ context[:gem_version] = '1.3.0'
846
837
  Seahorse::Client::Request.new(handlers, context)
847
838
  end
848
839
 
@@ -623,14 +623,8 @@ module Aws::ACM
623
623
  # @return [Array<String>]
624
624
  #
625
625
  # @!attribute [rw] includes
626
- # Filter the certificate list by one or more of the following values.
627
- # For more information, see the Filters structure.
628
- #
629
- # * extendedKeyUsage
630
- #
631
- # * keyUsage
632
- #
633
- # * keyTypes
626
+ # Filter the certificate list. For more information, see the Filters
627
+ # structure.
634
628
  # @return [Types::Filters]
635
629
  #
636
630
  # @!attribute [rw] next_token
@@ -864,8 +858,8 @@ module Aws::ACM
864
858
  # @return [String]
865
859
  #
866
860
  # @!attribute [rw] domain_validation_options
867
- # The domain name that you want ACM to use to send you emails so taht
868
- # your can validate domain ownership.
861
+ # The domain name that you want ACM to use to send you emails so that
862
+ # you can validate domain ownership.
869
863
  # @return [Array<Types::DomainValidationOption>]
870
864
  #
871
865
  # @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.2.0
4
+ version: 1.3.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-22 00:00:00.000000000 Z
11
+ date: 2018-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core