aws-sdk-acm 1.30.0 → 1.35.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 +3 -1
- data/lib/aws-sdk-acm/client.rb +13 -9
- data/lib/aws-sdk-acm/client_api.rb +2 -0
- data/lib/aws-sdk-acm/customizations.rb +1 -0
- data/lib/aws-sdk-acm/errors.rb +2 -0
- data/lib/aws-sdk-acm/resource.rb +2 -0
- data/lib/aws-sdk-acm/types.rb +45 -0
- data/lib/aws-sdk-acm/waiters.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 264b972c2baeb943d03f4a1e0c6d0d18360be53fc2e2ec46c3c66f3d6a71fc51
|
4
|
+
data.tar.gz: bed485e9da5408761afadbe7a4d5fe8d9eeff498160d20b611596265426e0725
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38dda66e47d845a3c2a7dad491ef6dbfb0a27703a5f25cbb3489a59e857700dc342b38eda56924c8a19c83eb5bf2df7789f31ddadd8df1436009f1c9e5eff550
|
7
|
+
data.tar.gz: 5a5d838cf940bd89b706749ea88fa4a230541395f974858c2b892bc81052b77253e05a5288b340d59ffc436725685e99944d8ca803f75c9ec71e9429213cd311
|
data/lib/aws-sdk-acm.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -46,6 +48,6 @@ require_relative 'aws-sdk-acm/customizations'
|
|
46
48
|
# @service
|
47
49
|
module Aws::ACM
|
48
50
|
|
49
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.35.0'
|
50
52
|
|
51
53
|
end
|
data/lib/aws-sdk-acm/client.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::ACM
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -161,7 +165,7 @@ module Aws::ACM
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::ACM
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -479,7 +483,7 @@ module Aws::ACM
|
|
479
483
|
# resp.certificate.signature_algorithm #=> String
|
480
484
|
# resp.certificate.in_use_by #=> Array
|
481
485
|
# resp.certificate.in_use_by[0] #=> String
|
482
|
-
# resp.certificate.failure_reason #=> String, one of "NO_AVAILABLE_CONTACTS", "ADDITIONAL_VERIFICATION_REQUIRED", "DOMAIN_NOT_ALLOWED", "INVALID_PUBLIC_DOMAIN", "DOMAIN_VALIDATION_DENIED", "CAA_ERROR", "PCA_LIMIT_EXCEEDED", "PCA_INVALID_ARN", "PCA_INVALID_STATE", "PCA_REQUEST_FAILED", "PCA_NAME_CONSTRAINTS_VALIDATION", "PCA_RESOURCE_NOT_FOUND", "PCA_INVALID_ARGS", "PCA_INVALID_DURATION", "PCA_ACCESS_DENIED", "OTHER"
|
486
|
+
# resp.certificate.failure_reason #=> String, one of "NO_AVAILABLE_CONTACTS", "ADDITIONAL_VERIFICATION_REQUIRED", "DOMAIN_NOT_ALLOWED", "INVALID_PUBLIC_DOMAIN", "DOMAIN_VALIDATION_DENIED", "CAA_ERROR", "PCA_LIMIT_EXCEEDED", "PCA_INVALID_ARN", "PCA_INVALID_STATE", "PCA_REQUEST_FAILED", "PCA_NAME_CONSTRAINTS_VALIDATION", "PCA_RESOURCE_NOT_FOUND", "PCA_INVALID_ARGS", "PCA_INVALID_DURATION", "PCA_ACCESS_DENIED", "SLR_NOT_FOUND", "OTHER"
|
483
487
|
# resp.certificate.type #=> String, one of "IMPORTED", "AMAZON_ISSUED", "PRIVATE"
|
484
488
|
# resp.certificate.renewal_summary.renewal_status #=> String, one of "PENDING_AUTO_RENEWAL", "PENDING_VALIDATION", "SUCCESS", "FAILED"
|
485
489
|
# resp.certificate.renewal_summary.domain_validation_options #=> Array
|
@@ -492,7 +496,7 @@ module Aws::ACM
|
|
492
496
|
# resp.certificate.renewal_summary.domain_validation_options[0].resource_record.type #=> String, one of "CNAME"
|
493
497
|
# resp.certificate.renewal_summary.domain_validation_options[0].resource_record.value #=> String
|
494
498
|
# resp.certificate.renewal_summary.domain_validation_options[0].validation_method #=> String, one of "EMAIL", "DNS"
|
495
|
-
# resp.certificate.renewal_summary.renewal_status_reason #=> String, one of "NO_AVAILABLE_CONTACTS", "ADDITIONAL_VERIFICATION_REQUIRED", "DOMAIN_NOT_ALLOWED", "INVALID_PUBLIC_DOMAIN", "DOMAIN_VALIDATION_DENIED", "CAA_ERROR", "PCA_LIMIT_EXCEEDED", "PCA_INVALID_ARN", "PCA_INVALID_STATE", "PCA_REQUEST_FAILED", "PCA_NAME_CONSTRAINTS_VALIDATION", "PCA_RESOURCE_NOT_FOUND", "PCA_INVALID_ARGS", "PCA_INVALID_DURATION", "PCA_ACCESS_DENIED", "OTHER"
|
499
|
+
# resp.certificate.renewal_summary.renewal_status_reason #=> String, one of "NO_AVAILABLE_CONTACTS", "ADDITIONAL_VERIFICATION_REQUIRED", "DOMAIN_NOT_ALLOWED", "INVALID_PUBLIC_DOMAIN", "DOMAIN_VALIDATION_DENIED", "CAA_ERROR", "PCA_LIMIT_EXCEEDED", "PCA_INVALID_ARN", "PCA_INVALID_STATE", "PCA_REQUEST_FAILED", "PCA_NAME_CONSTRAINTS_VALIDATION", "PCA_RESOURCE_NOT_FOUND", "PCA_INVALID_ARGS", "PCA_INVALID_DURATION", "PCA_ACCESS_DENIED", "SLR_NOT_FOUND", "OTHER"
|
496
500
|
# resp.certificate.renewal_summary.updated_at #=> Time
|
497
501
|
# resp.certificate.key_usages #=> Array
|
498
502
|
# resp.certificate.key_usages[0].name #=> String, one of "DIGITAL_SIGNATURE", "NON_REPUDIATION", "KEY_ENCIPHERMENT", "DATA_ENCIPHERMENT", "KEY_AGREEMENT", "CERTIFICATE_SIGNING", "CRL_SIGNING", "ENCIPHER_ONLY", "DECIPHER_ONLY", "ANY", "CUSTOM"
|
@@ -537,7 +541,7 @@ module Aws::ACM
|
|
537
541
|
#
|
538
542
|
# `arn:aws:acm:region:account:certificate/12345678-1234-1234-1234-123456789012`
|
539
543
|
#
|
540
|
-
# @option params [required, String,
|
544
|
+
# @option params [required, String, StringIO, File] :passphrase
|
541
545
|
# Passphrase to associate with the encrypted exported private key. If
|
542
546
|
# you want to later decrypt the private key, you must have the
|
543
547
|
# passphrase. You can use the following OpenSSL command to decrypt a
|
@@ -695,13 +699,13 @@ module Aws::ACM
|
|
695
699
|
#
|
696
700
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
697
701
|
#
|
698
|
-
# @option params [required, String,
|
702
|
+
# @option params [required, String, StringIO, File] :certificate
|
699
703
|
# The certificate to import.
|
700
704
|
#
|
701
|
-
# @option params [required, String,
|
705
|
+
# @option params [required, String, StringIO, File] :private_key
|
702
706
|
# The private key that matches the public key in the certificate.
|
703
707
|
#
|
704
|
-
# @option params [String,
|
708
|
+
# @option params [String, StringIO, File] :certificate_chain
|
705
709
|
# The PEM encoded certificate chain.
|
706
710
|
#
|
707
711
|
# @option params [Array<Types::Tag>] :tags
|
@@ -1214,7 +1218,7 @@ module Aws::ACM
|
|
1214
1218
|
params: params,
|
1215
1219
|
config: config)
|
1216
1220
|
context[:gem_name] = 'aws-sdk-acm'
|
1217
|
-
context[:gem_version] = '1.
|
1221
|
+
context[:gem_version] = '1.35.0'
|
1218
1222
|
Seahorse::Client::Request.new(handlers, context)
|
1219
1223
|
end
|
1220
1224
|
|
data/lib/aws-sdk-acm/errors.rb
CHANGED
data/lib/aws-sdk-acm/resource.rb
CHANGED
data/lib/aws-sdk-acm/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -44,6 +46,7 @@ module Aws::ACM
|
|
44
46
|
class AddTagsToCertificateRequest < Struct.new(
|
45
47
|
:certificate_arn,
|
46
48
|
:tags)
|
49
|
+
SENSITIVE = []
|
47
50
|
include Aws::Structure
|
48
51
|
end
|
49
52
|
|
@@ -245,6 +248,7 @@ module Aws::ACM
|
|
245
248
|
:certificate_authority_arn,
|
246
249
|
:renewal_eligibility,
|
247
250
|
:options)
|
251
|
+
SENSITIVE = []
|
248
252
|
include Aws::Structure
|
249
253
|
end
|
250
254
|
|
@@ -277,6 +281,7 @@ module Aws::ACM
|
|
277
281
|
#
|
278
282
|
class CertificateOptions < Struct.new(
|
279
283
|
:certificate_transparency_logging_preference)
|
284
|
+
SENSITIVE = []
|
280
285
|
include Aws::Structure
|
281
286
|
end
|
282
287
|
|
@@ -306,6 +311,7 @@ module Aws::ACM
|
|
306
311
|
class CertificateSummary < Struct.new(
|
307
312
|
:certificate_arn,
|
308
313
|
:domain_name)
|
314
|
+
SENSITIVE = []
|
309
315
|
include Aws::Structure
|
310
316
|
end
|
311
317
|
|
@@ -334,6 +340,7 @@ module Aws::ACM
|
|
334
340
|
#
|
335
341
|
class DeleteCertificateRequest < Struct.new(
|
336
342
|
:certificate_arn)
|
343
|
+
SENSITIVE = []
|
337
344
|
include Aws::Structure
|
338
345
|
end
|
339
346
|
|
@@ -362,6 +369,7 @@ module Aws::ACM
|
|
362
369
|
#
|
363
370
|
class DescribeCertificateRequest < Struct.new(
|
364
371
|
:certificate_arn)
|
372
|
+
SENSITIVE = []
|
365
373
|
include Aws::Structure
|
366
374
|
end
|
367
375
|
|
@@ -373,6 +381,7 @@ module Aws::ACM
|
|
373
381
|
#
|
374
382
|
class DescribeCertificateResponse < Struct.new(
|
375
383
|
:certificate)
|
384
|
+
SENSITIVE = []
|
376
385
|
include Aws::Structure
|
377
386
|
end
|
378
387
|
|
@@ -433,6 +442,7 @@ module Aws::ACM
|
|
433
442
|
:validation_status,
|
434
443
|
:resource_record,
|
435
444
|
:validation_method)
|
445
|
+
SENSITIVE = []
|
436
446
|
include Aws::Structure
|
437
447
|
end
|
438
448
|
|
@@ -476,6 +486,7 @@ module Aws::ACM
|
|
476
486
|
class DomainValidationOption < Struct.new(
|
477
487
|
:domain_name,
|
478
488
|
:validation_domain)
|
489
|
+
SENSITIVE = []
|
479
490
|
include Aws::Structure
|
480
491
|
end
|
481
492
|
|
@@ -508,6 +519,7 @@ module Aws::ACM
|
|
508
519
|
class ExportCertificateRequest < Struct.new(
|
509
520
|
:certificate_arn,
|
510
521
|
:passphrase)
|
522
|
+
SENSITIVE = [:passphrase]
|
511
523
|
include Aws::Structure
|
512
524
|
end
|
513
525
|
|
@@ -532,6 +544,7 @@ module Aws::ACM
|
|
532
544
|
:certificate,
|
533
545
|
:certificate_chain,
|
534
546
|
:private_key)
|
547
|
+
SENSITIVE = [:private_key]
|
535
548
|
include Aws::Structure
|
536
549
|
end
|
537
550
|
|
@@ -572,6 +585,7 @@ module Aws::ACM
|
|
572
585
|
class ExtendedKeyUsage < Struct.new(
|
573
586
|
:name,
|
574
587
|
:oid)
|
588
|
+
SENSITIVE = []
|
575
589
|
include Aws::Structure
|
576
590
|
end
|
577
591
|
|
@@ -612,6 +626,7 @@ module Aws::ACM
|
|
612
626
|
:extended_key_usage,
|
613
627
|
:key_usage,
|
614
628
|
:key_types)
|
629
|
+
SENSITIVE = []
|
615
630
|
include Aws::Structure
|
616
631
|
end
|
617
632
|
|
@@ -639,6 +654,7 @@ module Aws::ACM
|
|
639
654
|
#
|
640
655
|
class GetCertificateRequest < Struct.new(
|
641
656
|
:certificate_arn)
|
657
|
+
SENSITIVE = []
|
642
658
|
include Aws::Structure
|
643
659
|
end
|
644
660
|
|
@@ -658,6 +674,7 @@ module Aws::ACM
|
|
658
674
|
class GetCertificateResponse < Struct.new(
|
659
675
|
:certificate,
|
660
676
|
:certificate_chain)
|
677
|
+
SENSITIVE = []
|
661
678
|
include Aws::Structure
|
662
679
|
end
|
663
680
|
|
@@ -713,6 +730,7 @@ module Aws::ACM
|
|
713
730
|
:private_key,
|
714
731
|
:certificate_chain,
|
715
732
|
:tags)
|
733
|
+
SENSITIVE = [:private_key]
|
716
734
|
include Aws::Structure
|
717
735
|
end
|
718
736
|
|
@@ -728,6 +746,7 @@ module Aws::ACM
|
|
728
746
|
#
|
729
747
|
class ImportCertificateResponse < Struct.new(
|
730
748
|
:certificate_arn)
|
749
|
+
SENSITIVE = []
|
731
750
|
include Aws::Structure
|
732
751
|
end
|
733
752
|
|
@@ -740,6 +759,7 @@ module Aws::ACM
|
|
740
759
|
#
|
741
760
|
class InvalidArgsException < Struct.new(
|
742
761
|
:message)
|
762
|
+
SENSITIVE = []
|
743
763
|
include Aws::Structure
|
744
764
|
end
|
745
765
|
|
@@ -753,6 +773,7 @@ module Aws::ACM
|
|
753
773
|
#
|
754
774
|
class InvalidArnException < Struct.new(
|
755
775
|
:message)
|
776
|
+
SENSITIVE = []
|
756
777
|
include Aws::Structure
|
757
778
|
end
|
758
779
|
|
@@ -766,6 +787,7 @@ module Aws::ACM
|
|
766
787
|
#
|
767
788
|
class InvalidDomainValidationOptionsException < Struct.new(
|
768
789
|
:message)
|
790
|
+
SENSITIVE = []
|
769
791
|
include Aws::Structure
|
770
792
|
end
|
771
793
|
|
@@ -778,6 +800,7 @@ module Aws::ACM
|
|
778
800
|
#
|
779
801
|
class InvalidParameterException < Struct.new(
|
780
802
|
:message)
|
803
|
+
SENSITIVE = []
|
781
804
|
include Aws::Structure
|
782
805
|
end
|
783
806
|
|
@@ -790,6 +813,7 @@ module Aws::ACM
|
|
790
813
|
#
|
791
814
|
class InvalidStateException < Struct.new(
|
792
815
|
:message)
|
816
|
+
SENSITIVE = []
|
793
817
|
include Aws::Structure
|
794
818
|
end
|
795
819
|
|
@@ -804,6 +828,7 @@ module Aws::ACM
|
|
804
828
|
#
|
805
829
|
class InvalidTagException < Struct.new(
|
806
830
|
:message)
|
831
|
+
SENSITIVE = []
|
807
832
|
include Aws::Structure
|
808
833
|
end
|
809
834
|
|
@@ -818,6 +843,7 @@ module Aws::ACM
|
|
818
843
|
#
|
819
844
|
class KeyUsage < Struct.new(
|
820
845
|
:name)
|
846
|
+
SENSITIVE = []
|
821
847
|
include Aws::Structure
|
822
848
|
end
|
823
849
|
|
@@ -830,6 +856,7 @@ module Aws::ACM
|
|
830
856
|
#
|
831
857
|
class LimitExceededException < Struct.new(
|
832
858
|
:message)
|
859
|
+
SENSITIVE = []
|
833
860
|
include Aws::Structure
|
834
861
|
end
|
835
862
|
|
@@ -878,6 +905,7 @@ module Aws::ACM
|
|
878
905
|
:includes,
|
879
906
|
:next_token,
|
880
907
|
:max_items)
|
908
|
+
SENSITIVE = []
|
881
909
|
include Aws::Structure
|
882
910
|
end
|
883
911
|
|
@@ -896,6 +924,7 @@ module Aws::ACM
|
|
896
924
|
class ListCertificatesResponse < Struct.new(
|
897
925
|
:next_token,
|
898
926
|
:certificate_summary_list)
|
927
|
+
SENSITIVE = []
|
899
928
|
include Aws::Structure
|
900
929
|
end
|
901
930
|
|
@@ -924,6 +953,7 @@ module Aws::ACM
|
|
924
953
|
#
|
925
954
|
class ListTagsForCertificateRequest < Struct.new(
|
926
955
|
:certificate_arn)
|
956
|
+
SENSITIVE = []
|
927
957
|
include Aws::Structure
|
928
958
|
end
|
929
959
|
|
@@ -935,6 +965,7 @@ module Aws::ACM
|
|
935
965
|
#
|
936
966
|
class ListTagsForCertificateResponse < Struct.new(
|
937
967
|
:tags)
|
968
|
+
SENSITIVE = []
|
938
969
|
include Aws::Structure
|
939
970
|
end
|
940
971
|
|
@@ -974,6 +1005,7 @@ module Aws::ACM
|
|
974
1005
|
class RemoveTagsFromCertificateRequest < Struct.new(
|
975
1006
|
:certificate_arn,
|
976
1007
|
:tags)
|
1008
|
+
SENSITIVE = []
|
977
1009
|
include Aws::Structure
|
978
1010
|
end
|
979
1011
|
|
@@ -1002,6 +1034,7 @@ module Aws::ACM
|
|
1002
1034
|
#
|
1003
1035
|
class RenewCertificateRequest < Struct.new(
|
1004
1036
|
:certificate_arn)
|
1037
|
+
SENSITIVE = []
|
1005
1038
|
include Aws::Structure
|
1006
1039
|
end
|
1007
1040
|
|
@@ -1048,6 +1081,7 @@ module Aws::ACM
|
|
1048
1081
|
:domain_validation_options,
|
1049
1082
|
:renewal_status_reason,
|
1050
1083
|
:updated_at)
|
1084
|
+
SENSITIVE = []
|
1051
1085
|
include Aws::Structure
|
1052
1086
|
end
|
1053
1087
|
|
@@ -1192,6 +1226,7 @@ module Aws::ACM
|
|
1192
1226
|
:options,
|
1193
1227
|
:certificate_authority_arn,
|
1194
1228
|
:tags)
|
1229
|
+
SENSITIVE = []
|
1195
1230
|
include Aws::Structure
|
1196
1231
|
end
|
1197
1232
|
|
@@ -1206,6 +1241,7 @@ module Aws::ACM
|
|
1206
1241
|
#
|
1207
1242
|
class RequestCertificateResponse < Struct.new(
|
1208
1243
|
:certificate_arn)
|
1244
|
+
SENSITIVE = []
|
1209
1245
|
include Aws::Structure
|
1210
1246
|
end
|
1211
1247
|
|
@@ -1219,6 +1255,7 @@ module Aws::ACM
|
|
1219
1255
|
#
|
1220
1256
|
class RequestInProgressException < Struct.new(
|
1221
1257
|
:message)
|
1258
|
+
SENSITIVE = []
|
1222
1259
|
include Aws::Structure
|
1223
1260
|
end
|
1224
1261
|
|
@@ -1273,6 +1310,7 @@ module Aws::ACM
|
|
1273
1310
|
:certificate_arn,
|
1274
1311
|
:domain,
|
1275
1312
|
:validation_domain)
|
1313
|
+
SENSITIVE = []
|
1276
1314
|
include Aws::Structure
|
1277
1315
|
end
|
1278
1316
|
|
@@ -1286,6 +1324,7 @@ module Aws::ACM
|
|
1286
1324
|
#
|
1287
1325
|
class ResourceInUseException < Struct.new(
|
1288
1326
|
:message)
|
1327
|
+
SENSITIVE = []
|
1289
1328
|
include Aws::Structure
|
1290
1329
|
end
|
1291
1330
|
|
@@ -1299,6 +1338,7 @@ module Aws::ACM
|
|
1299
1338
|
#
|
1300
1339
|
class ResourceNotFoundException < Struct.new(
|
1301
1340
|
:message)
|
1341
|
+
SENSITIVE = []
|
1302
1342
|
include Aws::Structure
|
1303
1343
|
end
|
1304
1344
|
|
@@ -1326,6 +1366,7 @@ module Aws::ACM
|
|
1326
1366
|
:name,
|
1327
1367
|
:type,
|
1328
1368
|
:value)
|
1369
|
+
SENSITIVE = []
|
1329
1370
|
include Aws::Structure
|
1330
1371
|
end
|
1331
1372
|
|
@@ -1353,6 +1394,7 @@ module Aws::ACM
|
|
1353
1394
|
class Tag < Struct.new(
|
1354
1395
|
:key,
|
1355
1396
|
:value)
|
1397
|
+
SENSITIVE = []
|
1356
1398
|
include Aws::Structure
|
1357
1399
|
end
|
1358
1400
|
|
@@ -1366,6 +1408,7 @@ module Aws::ACM
|
|
1366
1408
|
#
|
1367
1409
|
class TagPolicyException < Struct.new(
|
1368
1410
|
:message)
|
1411
|
+
SENSITIVE = []
|
1369
1412
|
include Aws::Structure
|
1370
1413
|
end
|
1371
1414
|
|
@@ -1379,6 +1422,7 @@ module Aws::ACM
|
|
1379
1422
|
#
|
1380
1423
|
class TooManyTagsException < Struct.new(
|
1381
1424
|
:message)
|
1425
|
+
SENSITIVE = []
|
1382
1426
|
include Aws::Structure
|
1383
1427
|
end
|
1384
1428
|
|
@@ -1414,6 +1458,7 @@ module Aws::ACM
|
|
1414
1458
|
class UpdateCertificateOptionsRequest < Struct.new(
|
1415
1459
|
:certificate_arn,
|
1416
1460
|
:options)
|
1461
|
+
SENSITIVE = []
|
1417
1462
|
include Aws::Structure
|
1418
1463
|
end
|
1419
1464
|
|
data/lib/aws-sdk-acm/waiters.rb
CHANGED
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.35.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: 2020-
|
11
|
+
date: 2020-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.99.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|