aws-sdk-acm 1.36.0 → 1.41.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/CHANGELOG.md +278 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-acm.rb +3 -2
- data/lib/aws-sdk-acm/client.rb +81 -20
- data/lib/aws-sdk-acm/client_api.rb +59 -1
- data/lib/aws-sdk-acm/errors.rb +65 -1
- data/lib/aws-sdk-acm/resource.rb +1 -1
- data/lib/aws-sdk-acm/types.rb +148 -23
- data/lib/aws-sdk-acm/waiters.rb +1 -1
- metadata +8 -5
data/lib/aws-sdk-acm/resource.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
data/lib/aws-sdk-acm/types.rb
CHANGED
@@ -3,13 +3,26 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
10
|
module Aws::ACM
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# You do not have access required to perform this action.
|
14
|
+
#
|
15
|
+
# @!attribute [rw] message
|
16
|
+
# @return [String]
|
17
|
+
#
|
18
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/AccessDeniedException AWS API Documentation
|
19
|
+
#
|
20
|
+
class AccessDeniedException < Struct.new(
|
21
|
+
:message)
|
22
|
+
SENSITIVE = []
|
23
|
+
include Aws::Structure
|
24
|
+
end
|
25
|
+
|
13
26
|
# @note When making an API call, you may pass AddTagsToCertificateRequest
|
14
27
|
# data as a hash:
|
15
28
|
#
|
@@ -29,8 +42,8 @@ module Aws::ACM
|
|
29
42
|
#
|
30
43
|
# `arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012`
|
31
44
|
#
|
32
|
-
# For more information about ARNs, see [Amazon Resource Names
|
33
|
-
#
|
45
|
+
# For more information about ARNs, see [Amazon Resource Names
|
46
|
+
# (ARNs)][1].
|
34
47
|
#
|
35
48
|
#
|
36
49
|
#
|
@@ -55,8 +68,8 @@ module Aws::ACM
|
|
55
68
|
#
|
56
69
|
# @!attribute [rw] certificate_arn
|
57
70
|
# The Amazon Resource Name (ARN) of the certificate. For more
|
58
|
-
# information about ARNs, see [Amazon Resource Names (ARNs)
|
59
|
-
#
|
71
|
+
# information about ARNs, see [Amazon Resource Names (ARNs)][1] in the
|
72
|
+
# *AWS General Reference*.
|
60
73
|
#
|
61
74
|
#
|
62
75
|
#
|
@@ -98,8 +111,7 @@ module Aws::ACM
|
|
98
111
|
# @return [String]
|
99
112
|
#
|
100
113
|
# @!attribute [rw] created_at
|
101
|
-
# The time at which the certificate was requested.
|
102
|
-
# only when the certificate type is `AMAZON_ISSUED`.
|
114
|
+
# The time at which the certificate was requested.
|
103
115
|
# @return [Time]
|
104
116
|
#
|
105
117
|
# @!attribute [rw] issued_at
|
@@ -293,8 +305,8 @@ module Aws::ACM
|
|
293
305
|
#
|
294
306
|
# `arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012`
|
295
307
|
#
|
296
|
-
# For more information about ARNs, see [Amazon Resource Names
|
297
|
-
#
|
308
|
+
# For more information about ARNs, see [Amazon Resource Names
|
309
|
+
# (ARNs)][1].
|
298
310
|
#
|
299
311
|
#
|
300
312
|
#
|
@@ -315,6 +327,21 @@ module Aws::ACM
|
|
315
327
|
include Aws::Structure
|
316
328
|
end
|
317
329
|
|
330
|
+
# You are trying to update a resource or configuration that is already
|
331
|
+
# being created or updated. Wait for the previous operation to finish
|
332
|
+
# and try again.
|
333
|
+
#
|
334
|
+
# @!attribute [rw] message
|
335
|
+
# @return [String]
|
336
|
+
#
|
337
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ConflictException AWS API Documentation
|
338
|
+
#
|
339
|
+
class ConflictException < Struct.new(
|
340
|
+
:message)
|
341
|
+
SENSITIVE = []
|
342
|
+
include Aws::Structure
|
343
|
+
end
|
344
|
+
|
318
345
|
# @note When making an API call, you may pass DeleteCertificateRequest
|
319
346
|
# data as a hash:
|
320
347
|
#
|
@@ -328,8 +355,8 @@ module Aws::ACM
|
|
328
355
|
#
|
329
356
|
# `arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012`
|
330
357
|
#
|
331
|
-
# For more information about ARNs, see [Amazon Resource Names
|
332
|
-
#
|
358
|
+
# For more information about ARNs, see [Amazon Resource Names
|
359
|
+
# (ARNs)][1].
|
333
360
|
#
|
334
361
|
#
|
335
362
|
#
|
@@ -357,8 +384,8 @@ module Aws::ACM
|
|
357
384
|
#
|
358
385
|
# `arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012`
|
359
386
|
#
|
360
|
-
# For more information about ARNs, see [Amazon Resource Names
|
361
|
-
#
|
387
|
+
# For more information about ARNs, see [Amazon Resource Names
|
388
|
+
# (ARNs)][1].
|
362
389
|
#
|
363
390
|
#
|
364
391
|
#
|
@@ -490,6 +517,32 @@ module Aws::ACM
|
|
490
517
|
include Aws::Structure
|
491
518
|
end
|
492
519
|
|
520
|
+
# Object containing expiration events options associated with an AWS
|
521
|
+
# account.
|
522
|
+
#
|
523
|
+
# @note When making an API call, you may pass ExpiryEventsConfiguration
|
524
|
+
# data as a hash:
|
525
|
+
#
|
526
|
+
# {
|
527
|
+
# days_before_expiry: 1,
|
528
|
+
# }
|
529
|
+
#
|
530
|
+
# @!attribute [rw] days_before_expiry
|
531
|
+
# Specifies the number of days prior to certificate expiration when
|
532
|
+
# ACM starts generating `EventBridge` events. ACM sends one event per
|
533
|
+
# day per certificate until the certificate expires. By default,
|
534
|
+
# accounts receive events starting 45 days before certificate
|
535
|
+
# expiration.
|
536
|
+
# @return [Integer]
|
537
|
+
#
|
538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ExpiryEventsConfiguration AWS API Documentation
|
539
|
+
#
|
540
|
+
class ExpiryEventsConfiguration < Struct.new(
|
541
|
+
:days_before_expiry)
|
542
|
+
SENSITIVE = []
|
543
|
+
include Aws::Structure
|
544
|
+
end
|
545
|
+
|
493
546
|
# @note When making an API call, you may pass ExportCertificateRequest
|
494
547
|
# data as a hash:
|
495
548
|
#
|
@@ -613,8 +666,9 @@ module Aws::ACM
|
|
613
666
|
# Specify one or more algorithms that can be used to generate key
|
614
667
|
# pairs.
|
615
668
|
#
|
616
|
-
# Default filtering returns only `
|
617
|
-
#
|
669
|
+
# Default filtering returns only `RSA_1024` and `RSA_2048`
|
670
|
+
# certificates that have at least one domain. To return other
|
671
|
+
# certificate types, provide the desired type signatures in a
|
618
672
|
# comma-separated list. For example, `"keyTypes":
|
619
673
|
# ["RSA_2048,RSA_4096"]` returns both `RSA_2048` and `RSA_4096`
|
620
674
|
# certificates.
|
@@ -630,6 +684,19 @@ module Aws::ACM
|
|
630
684
|
include Aws::Structure
|
631
685
|
end
|
632
686
|
|
687
|
+
# @!attribute [rw] expiry_events
|
688
|
+
# Expiration events configuration options associated with the AWS
|
689
|
+
# account.
|
690
|
+
# @return [Types::ExpiryEventsConfiguration]
|
691
|
+
#
|
692
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/GetAccountConfigurationResponse AWS API Documentation
|
693
|
+
#
|
694
|
+
class GetAccountConfigurationResponse < Struct.new(
|
695
|
+
:expiry_events)
|
696
|
+
SENSITIVE = []
|
697
|
+
include Aws::Structure
|
698
|
+
end
|
699
|
+
|
633
700
|
# @note When making an API call, you may pass GetCertificateRequest
|
634
701
|
# data as a hash:
|
635
702
|
#
|
@@ -642,8 +709,8 @@ module Aws::ACM
|
|
642
709
|
#
|
643
710
|
# `arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012`
|
644
711
|
#
|
645
|
-
# For more information about ARNs, see [Amazon Resource Names
|
646
|
-
#
|
712
|
+
# For more information about ARNs, see [Amazon Resource Names
|
713
|
+
# (ARNs)][1].
|
647
714
|
#
|
648
715
|
#
|
649
716
|
#
|
@@ -941,8 +1008,8 @@ module Aws::ACM
|
|
941
1008
|
#
|
942
1009
|
# `arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012`
|
943
1010
|
#
|
944
|
-
# For more information about ARNs, see [Amazon Resource Names
|
945
|
-
#
|
1011
|
+
# For more information about ARNs, see [Amazon Resource Names
|
1012
|
+
# (ARNs)][1].
|
946
1013
|
#
|
947
1014
|
#
|
948
1015
|
#
|
@@ -969,6 +1036,38 @@ module Aws::ACM
|
|
969
1036
|
include Aws::Structure
|
970
1037
|
end
|
971
1038
|
|
1039
|
+
# @note When making an API call, you may pass PutAccountConfigurationRequest
|
1040
|
+
# data as a hash:
|
1041
|
+
#
|
1042
|
+
# {
|
1043
|
+
# expiry_events: {
|
1044
|
+
# days_before_expiry: 1,
|
1045
|
+
# },
|
1046
|
+
# idempotency_token: "IdempotencyToken", # required
|
1047
|
+
# }
|
1048
|
+
#
|
1049
|
+
# @!attribute [rw] expiry_events
|
1050
|
+
# Specifies expiration events associated with an account.
|
1051
|
+
# @return [Types::ExpiryEventsConfiguration]
|
1052
|
+
#
|
1053
|
+
# @!attribute [rw] idempotency_token
|
1054
|
+
# Customer-chosen string used to distinguish between calls to
|
1055
|
+
# `PutAccountConfiguration`. Idempotency tokens time out after one
|
1056
|
+
# hour. If you call `PutAccountConfiguration` multiple times with the
|
1057
|
+
# same unexpired idempotency token, ACM treats it as the same request
|
1058
|
+
# and returns the original result. If you change the idempotency token
|
1059
|
+
# for each call, ACM treats each call as a new request.
|
1060
|
+
# @return [String]
|
1061
|
+
#
|
1062
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/PutAccountConfigurationRequest AWS API Documentation
|
1063
|
+
#
|
1064
|
+
class PutAccountConfigurationRequest < Struct.new(
|
1065
|
+
:expiry_events,
|
1066
|
+
:idempotency_token)
|
1067
|
+
SENSITIVE = []
|
1068
|
+
include Aws::Structure
|
1069
|
+
end
|
1070
|
+
|
972
1071
|
# @note When making an API call, you may pass RemoveTagsFromCertificateRequest
|
973
1072
|
# data as a hash:
|
974
1073
|
#
|
@@ -988,8 +1087,8 @@ module Aws::ACM
|
|
988
1087
|
#
|
989
1088
|
# `arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012`
|
990
1089
|
#
|
991
|
-
# For more information about ARNs, see [Amazon Resource Names
|
992
|
-
#
|
1090
|
+
# For more information about ARNs, see [Amazon Resource Names
|
1091
|
+
# (ARNs)][1].
|
993
1092
|
#
|
994
1093
|
#
|
995
1094
|
#
|
@@ -1022,8 +1121,8 @@ module Aws::ACM
|
|
1022
1121
|
#
|
1023
1122
|
# `arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012`
|
1024
1123
|
#
|
1025
|
-
# For more information about ARNs, see [Amazon Resource Names
|
1026
|
-
#
|
1124
|
+
# For more information about ARNs, see [Amazon Resource Names
|
1125
|
+
# (ARNs)][1].
|
1027
1126
|
#
|
1028
1127
|
#
|
1029
1128
|
#
|
@@ -1412,6 +1511,19 @@ module Aws::ACM
|
|
1412
1511
|
include Aws::Structure
|
1413
1512
|
end
|
1414
1513
|
|
1514
|
+
# The request was denied because it exceeded a quota.
|
1515
|
+
#
|
1516
|
+
# @!attribute [rw] message
|
1517
|
+
# @return [String]
|
1518
|
+
#
|
1519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ThrottlingException AWS API Documentation
|
1520
|
+
#
|
1521
|
+
class ThrottlingException < Struct.new(
|
1522
|
+
:message)
|
1523
|
+
SENSITIVE = []
|
1524
|
+
include Aws::Structure
|
1525
|
+
end
|
1526
|
+
|
1415
1527
|
# The request contains too many tags. Try the request again with fewer
|
1416
1528
|
# tags.
|
1417
1529
|
#
|
@@ -1462,5 +1574,18 @@ module Aws::ACM
|
|
1462
1574
|
include Aws::Structure
|
1463
1575
|
end
|
1464
1576
|
|
1577
|
+
# The supplied input failed to satisfy constraints of an AWS service.
|
1578
|
+
#
|
1579
|
+
# @!attribute [rw] message
|
1580
|
+
# @return [String]
|
1581
|
+
#
|
1582
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/acm-2015-12-08/ValidationException AWS API Documentation
|
1583
|
+
#
|
1584
|
+
class ValidationException < Struct.new(
|
1585
|
+
:message)
|
1586
|
+
SENSITIVE = []
|
1587
|
+
include Aws::Structure
|
1588
|
+
end
|
1589
|
+
|
1465
1590
|
end
|
1466
1591
|
end
|
data/lib/aws-sdk-acm/waiters.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
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.41.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:
|
11
|
+
date: 2021-03-10 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.112.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.112.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -47,11 +47,14 @@ dependencies:
|
|
47
47
|
description: Official AWS Ruby gem for AWS Certificate Manager (ACM). This gem is
|
48
48
|
part of the AWS SDK for Ruby.
|
49
49
|
email:
|
50
|
-
-
|
50
|
+
- aws-dr-rubygems@amazon.com
|
51
51
|
executables: []
|
52
52
|
extensions: []
|
53
53
|
extra_rdoc_files: []
|
54
54
|
files:
|
55
|
+
- CHANGELOG.md
|
56
|
+
- LICENSE.txt
|
57
|
+
- VERSION
|
55
58
|
- lib/aws-sdk-acm.rb
|
56
59
|
- lib/aws-sdk-acm/client.rb
|
57
60
|
- lib/aws-sdk-acm/client_api.rb
|