aws-sdk-acm 1.0.0.rc2 → 1.0.0.rc3
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 +23 -1
- data/lib/aws-sdk-acm/types.rb +44 -0
- 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: 23f7b92af897356f85500341b121b9ef74915045
|
4
|
+
data.tar.gz: 8fd6eb78aabad7e5719c40c053b263fd42e55471
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b93d31929faec84930f54ef33c2a317fd8a2129f60f0f5a918d1fe29417c81b2cb9208449b4daac4c39d9219975bf09a4b4e255b5595e40c1e0ccfb158897061
|
7
|
+
data.tar.gz: 9b8432a51f9ef72958758a268e003d7719a77f8052228bb73f5ff1cda6911eae2f1395977134f04f12d370a648fa9f487c0ab8df8d40a8bc2543f1139fce4ca6
|
data/lib/aws-sdk-acm.rb
CHANGED
data/lib/aws-sdk-acm/client.rb
CHANGED
@@ -18,6 +18,7 @@ require 'aws-sdk-core/plugins/regional_endpoint.rb'
|
|
18
18
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
19
19
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
20
20
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
21
|
+
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
21
22
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
22
23
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
23
24
|
|
@@ -45,6 +46,7 @@ module Aws::ACM
|
|
45
46
|
add_plugin(Aws::Plugins::ResponsePaging)
|
46
47
|
add_plugin(Aws::Plugins::StubResponses)
|
47
48
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
49
|
+
add_plugin(Aws::Plugins::JsonvalueConverter)
|
48
50
|
add_plugin(Aws::Plugins::SignatureV4)
|
49
51
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
50
52
|
|
@@ -207,6 +209,8 @@ module Aws::ACM
|
|
207
209
|
# ],
|
208
210
|
# })
|
209
211
|
#
|
212
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/AddTagsToCertificate AWS API Documentation
|
213
|
+
#
|
210
214
|
# @overload add_tags_to_certificate(params = {})
|
211
215
|
# @param [Hash] params ({})
|
212
216
|
def add_tags_to_certificate(params = {}, options = {})
|
@@ -247,6 +251,8 @@ module Aws::ACM
|
|
247
251
|
# certificate_arn: "Arn", # required
|
248
252
|
# })
|
249
253
|
#
|
254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/DeleteCertificate AWS API Documentation
|
255
|
+
#
|
250
256
|
# @overload delete_certificate(params = {})
|
251
257
|
# @param [Hash] params ({})
|
252
258
|
def delete_certificate(params = {}, options = {})
|
@@ -316,6 +322,8 @@ module Aws::ACM
|
|
316
322
|
# resp.certificate.renewal_summary.domain_validation_options[0].validation_domain #=> String
|
317
323
|
# resp.certificate.renewal_summary.domain_validation_options[0].validation_status #=> String, one of "PENDING_VALIDATION", "SUCCESS", "FAILED"
|
318
324
|
#
|
325
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/DescribeCertificate AWS API Documentation
|
326
|
+
#
|
319
327
|
# @overload describe_certificate(params = {})
|
320
328
|
# @param [Hash] params ({})
|
321
329
|
def describe_certificate(params = {}, options = {})
|
@@ -364,6 +372,8 @@ module Aws::ACM
|
|
364
372
|
# resp.certificate #=> String
|
365
373
|
# resp.certificate_chain #=> String
|
366
374
|
#
|
375
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/GetCertificate AWS API Documentation
|
376
|
+
#
|
367
377
|
# @overload get_certificate(params = {})
|
368
378
|
# @param [Hash] params ({})
|
369
379
|
def get_certificate(params = {}, options = {})
|
@@ -457,6 +467,8 @@ module Aws::ACM
|
|
457
467
|
#
|
458
468
|
# resp.certificate_arn #=> String
|
459
469
|
#
|
470
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ImportCertificate AWS API Documentation
|
471
|
+
#
|
460
472
|
# @overload import_certificate(params = {})
|
461
473
|
# @param [Hash] params ({})
|
462
474
|
def import_certificate(params = {}, options = {})
|
@@ -505,6 +517,8 @@ module Aws::ACM
|
|
505
517
|
# resp.certificate_summary_list[0].certificate_arn #=> String
|
506
518
|
# resp.certificate_summary_list[0].domain_name #=> String
|
507
519
|
#
|
520
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ListCertificates AWS API Documentation
|
521
|
+
#
|
508
522
|
# @overload list_certificates(params = {})
|
509
523
|
# @param [Hash] params ({})
|
510
524
|
def list_certificates(params = {}, options = {})
|
@@ -546,6 +560,8 @@ module Aws::ACM
|
|
546
560
|
# resp.tags[0].key #=> String
|
547
561
|
# resp.tags[0].value #=> String
|
548
562
|
#
|
563
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ListTagsForCertificate AWS API Documentation
|
564
|
+
#
|
549
565
|
# @overload list_tags_for_certificate(params = {})
|
550
566
|
# @param [Hash] params ({})
|
551
567
|
def list_tags_for_certificate(params = {}, options = {})
|
@@ -593,6 +609,8 @@ module Aws::ACM
|
|
593
609
|
# ],
|
594
610
|
# })
|
595
611
|
#
|
612
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/RemoveTagsFromCertificate AWS API Documentation
|
613
|
+
#
|
596
614
|
# @overload remove_tags_from_certificate(params = {})
|
597
615
|
# @param [Hash] params ({})
|
598
616
|
def remove_tags_from_certificate(params = {}, options = {})
|
@@ -661,6 +679,8 @@ module Aws::ACM
|
|
661
679
|
#
|
662
680
|
# resp.certificate_arn #=> String
|
663
681
|
#
|
682
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/RequestCertificate AWS API Documentation
|
683
|
+
#
|
664
684
|
# @overload request_certificate(params = {})
|
665
685
|
# @param [Hash] params ({})
|
666
686
|
def request_certificate(params = {}, options = {})
|
@@ -724,6 +744,8 @@ module Aws::ACM
|
|
724
744
|
# validation_domain: "DomainNameString", # required
|
725
745
|
# })
|
726
746
|
#
|
747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ResendValidationEmail AWS API Documentation
|
748
|
+
#
|
727
749
|
# @overload resend_validation_email(params = {})
|
728
750
|
# @param [Hash] params ({})
|
729
751
|
def resend_validation_email(params = {}, options = {})
|
@@ -744,7 +766,7 @@ module Aws::ACM
|
|
744
766
|
params: params,
|
745
767
|
config: config)
|
746
768
|
context[:gem_name] = 'aws-sdk-acm'
|
747
|
-
context[:gem_version] = '1.0.0.
|
769
|
+
context[:gem_version] = '1.0.0.rc3'
|
748
770
|
Seahorse::Client::Request.new(handlers, context)
|
749
771
|
end
|
750
772
|
|
data/lib/aws-sdk-acm/types.rb
CHANGED
@@ -39,6 +39,8 @@ module Aws::ACM
|
|
39
39
|
# The key-value pair that defines the tag. The tag value is optional.
|
40
40
|
# @return [Array<Types::Tag>]
|
41
41
|
#
|
42
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/AddTagsToCertificateRequest AWS API Documentation
|
43
|
+
#
|
42
44
|
class AddTagsToCertificateRequest < Struct.new(
|
43
45
|
:certificate_arn,
|
44
46
|
:tags)
|
@@ -179,6 +181,8 @@ module Aws::ACM
|
|
179
181
|
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html
|
180
182
|
# @return [Types::RenewalSummary]
|
181
183
|
#
|
184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/CertificateDetail AWS API Documentation
|
185
|
+
#
|
182
186
|
class CertificateDetail < Struct.new(
|
183
187
|
:certificate_arn,
|
184
188
|
:domain_name,
|
@@ -225,6 +229,8 @@ module Aws::ACM
|
|
225
229
|
# example.com, for the certificate.
|
226
230
|
# @return [String]
|
227
231
|
#
|
232
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/CertificateSummary AWS API Documentation
|
233
|
+
#
|
228
234
|
class CertificateSummary < Struct.new(
|
229
235
|
:certificate_arn,
|
230
236
|
:domain_name)
|
@@ -252,6 +258,8 @@ module Aws::ACM
|
|
252
258
|
# [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
253
259
|
# @return [String]
|
254
260
|
#
|
261
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/DeleteCertificateRequest AWS API Documentation
|
262
|
+
#
|
255
263
|
class DeleteCertificateRequest < Struct.new(
|
256
264
|
:certificate_arn)
|
257
265
|
include Aws::Structure
|
@@ -278,6 +286,8 @@ module Aws::ACM
|
|
278
286
|
# [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
279
287
|
# @return [String]
|
280
288
|
#
|
289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/DescribeCertificateRequest AWS API Documentation
|
290
|
+
#
|
281
291
|
class DescribeCertificateRequest < Struct.new(
|
282
292
|
:certificate_arn)
|
283
293
|
include Aws::Structure
|
@@ -287,6 +297,8 @@ module Aws::ACM
|
|
287
297
|
# Metadata about an ACM certificate.
|
288
298
|
# @return [Types::CertificateDetail]
|
289
299
|
#
|
300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/DescribeCertificateResponse AWS API Documentation
|
301
|
+
#
|
290
302
|
class DescribeCertificateResponse < Struct.new(
|
291
303
|
:certificate)
|
292
304
|
include Aws::Structure
|
@@ -313,6 +325,8 @@ module Aws::ACM
|
|
313
325
|
# The validation status of the domain name.
|
314
326
|
# @return [String]
|
315
327
|
#
|
328
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/DomainValidation AWS API Documentation
|
329
|
+
#
|
316
330
|
class DomainValidation < Struct.new(
|
317
331
|
:domain_name,
|
318
332
|
:validation_emails,
|
@@ -356,6 +370,8 @@ module Aws::ACM
|
|
356
370
|
# * webmaster@example.com
|
357
371
|
# @return [String]
|
358
372
|
#
|
373
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/DomainValidationOption AWS API Documentation
|
374
|
+
#
|
359
375
|
class DomainValidationOption < Struct.new(
|
360
376
|
:domain_name,
|
361
377
|
:validation_domain)
|
@@ -382,6 +398,8 @@ module Aws::ACM
|
|
382
398
|
# [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
383
399
|
# @return [String]
|
384
400
|
#
|
401
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/GetCertificateRequest AWS API Documentation
|
402
|
+
#
|
385
403
|
class GetCertificateRequest < Struct.new(
|
386
404
|
:certificate_arn)
|
387
405
|
include Aws::Structure
|
@@ -397,6 +415,8 @@ module Aws::ACM
|
|
397
415
|
# the certificate authority (CA).
|
398
416
|
# @return [String]
|
399
417
|
#
|
418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/GetCertificateResponse AWS API Documentation
|
419
|
+
#
|
400
420
|
class GetCertificateResponse < Struct.new(
|
401
421
|
:certificate,
|
402
422
|
:certificate_chain)
|
@@ -449,6 +469,8 @@ module Aws::ACM
|
|
449
469
|
# The certificate chain. It must be PEM-encoded.
|
450
470
|
# @return [String]
|
451
471
|
#
|
472
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ImportCertificateRequest AWS API Documentation
|
473
|
+
#
|
452
474
|
class ImportCertificateRequest < Struct.new(
|
453
475
|
:certificate_arn,
|
454
476
|
:certificate,
|
@@ -465,6 +487,8 @@ module Aws::ACM
|
|
465
487
|
# [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
466
488
|
# @return [String]
|
467
489
|
#
|
490
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ImportCertificateResponse AWS API Documentation
|
491
|
+
#
|
468
492
|
class ImportCertificateResponse < Struct.new(
|
469
493
|
:certificate_arn)
|
470
494
|
include Aws::Structure
|
@@ -499,6 +523,8 @@ module Aws::ACM
|
|
499
523
|
# retrieve additional items.
|
500
524
|
# @return [Integer]
|
501
525
|
#
|
526
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ListCertificatesRequest AWS API Documentation
|
527
|
+
#
|
502
528
|
class ListCertificatesRequest < Struct.new(
|
503
529
|
:certificate_statuses,
|
504
530
|
:next_token,
|
@@ -516,6 +542,8 @@ module Aws::ACM
|
|
516
542
|
# A list of ACM Certificates.
|
517
543
|
# @return [Array<Types::CertificateSummary>]
|
518
544
|
#
|
545
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ListCertificatesResponse AWS API Documentation
|
546
|
+
#
|
519
547
|
class ListCertificatesResponse < Struct.new(
|
520
548
|
:next_token,
|
521
549
|
:certificate_summary_list)
|
@@ -543,6 +571,8 @@ module Aws::ACM
|
|
543
571
|
# [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
544
572
|
# @return [String]
|
545
573
|
#
|
574
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ListTagsForCertificateRequest AWS API Documentation
|
575
|
+
#
|
546
576
|
class ListTagsForCertificateRequest < Struct.new(
|
547
577
|
:certificate_arn)
|
548
578
|
include Aws::Structure
|
@@ -552,6 +582,8 @@ module Aws::ACM
|
|
552
582
|
# The key-value pairs that define the applied tags.
|
553
583
|
# @return [Array<Types::Tag>]
|
554
584
|
#
|
585
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ListTagsForCertificateResponse AWS API Documentation
|
586
|
+
#
|
555
587
|
class ListTagsForCertificateResponse < Struct.new(
|
556
588
|
:tags)
|
557
589
|
include Aws::Structure
|
@@ -588,6 +620,8 @@ module Aws::ACM
|
|
588
620
|
# The key-value pair that defines the tag to remove.
|
589
621
|
# @return [Array<Types::Tag>]
|
590
622
|
#
|
623
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/RemoveTagsFromCertificateRequest AWS API Documentation
|
624
|
+
#
|
591
625
|
class RemoveTagsFromCertificateRequest < Struct.new(
|
592
626
|
:certificate_arn,
|
593
627
|
:tags)
|
@@ -622,6 +656,8 @@ module Aws::ACM
|
|
622
656
|
# [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html
|
623
657
|
# @return [Array<Types::DomainValidation>]
|
624
658
|
#
|
659
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/RenewalSummary AWS API Documentation
|
660
|
+
#
|
625
661
|
class RenewalSummary < Struct.new(
|
626
662
|
:renewal_status,
|
627
663
|
:domain_validation_options)
|
@@ -673,6 +709,8 @@ module Aws::ACM
|
|
673
709
|
# validate your ownership of the domain.
|
674
710
|
# @return [Array<Types::DomainValidationOption>]
|
675
711
|
#
|
712
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/RequestCertificateRequest AWS API Documentation
|
713
|
+
#
|
676
714
|
class RequestCertificateRequest < Struct.new(
|
677
715
|
:domain_name,
|
678
716
|
:subject_alternative_names,
|
@@ -688,6 +726,8 @@ module Aws::ACM
|
|
688
726
|
# `arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012`
|
689
727
|
# @return [String]
|
690
728
|
#
|
729
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/RequestCertificateResponse AWS API Documentation
|
730
|
+
#
|
691
731
|
class RequestCertificateResponse < Struct.new(
|
692
732
|
:certificate_arn)
|
693
733
|
include Aws::Structure
|
@@ -740,6 +780,8 @@ module Aws::ACM
|
|
740
780
|
# * webmaster@subdomain.example.com
|
741
781
|
# @return [String]
|
742
782
|
#
|
783
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ResendValidationEmailRequest AWS API Documentation
|
784
|
+
#
|
743
785
|
class ResendValidationEmailRequest < Struct.new(
|
744
786
|
:certificate_arn,
|
745
787
|
:domain,
|
@@ -766,6 +808,8 @@ module Aws::ACM
|
|
766
808
|
# The value of the tag.
|
767
809
|
# @return [String]
|
768
810
|
#
|
811
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/Tag AWS API Documentation
|
812
|
+
#
|
769
813
|
class Tag < Struct.new(
|
770
814
|
:key,
|
771
815
|
:value)
|
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.rc3
|
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-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|