aws-sdk-acm 1.54.0 → 1.55.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2085e2ddda99653688c557569a63baf167aeb20176510c15b4975461a4aba04d
4
- data.tar.gz: d9ebe9d64183257ab068f94729ff27dd6447666181e0dc2df9bd3cfb25ea0ef4
3
+ metadata.gz: cd9d366c9f5850d41d06d2cc61c7e5e0cf43b60261e86216d5d7afd774f09611
4
+ data.tar.gz: 71fd6bb0003dfba1cf5a8b87091a8259b4cf2cdaa68aece2a84cce9c184bf9fd
5
5
  SHA512:
6
- metadata.gz: 3f1db2ec7982360308a42a91592a1e10b091bdaebb087a0eb7b6e730eb3658b82abb90482fc7727377e8cad3db5208d126f1efd4693f7fa1fceae670fcff7528
7
- data.tar.gz: ca6c4653dade74e3e20aba7ed4acf87b418dfcad4acf0c098b5717406c09d19224c8c405b45d4bfda5d0d3c816a3573e11aa97fe07db0e51107320ec48387005
6
+ metadata.gz: e1c52cbe80df1c2e15ecd45fa433762ed9be99cb1bbea0bd348ca6cb05b9805a0b0d5061cc493a3390096e5d5f224db831f6d3aae9d6b003b1f1b78c325ba00c
7
+ data.tar.gz: 5bcdeb4c2c814be4558a29573d15f95b26e1bea83e661817fd4dc9d8bcdbe5b8a8fb3adfd824c96d6525a4984cf23f88feeb849b2295a0fe7f360eb149b92dc7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.55.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.54.0 (2022-11-08)
5
12
  ------------------
6
13
 
@@ -340,4 +347,4 @@ Unreleased Changes
340
347
  1.0.0.rc1 (2016-12-05)
341
348
  ------------------
342
349
 
343
- * Feature - Initial preview release of the `aws-sdk-acm` gem.
350
+ * Feature - Initial preview release of the `aws-sdk-acm` gem.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
1
+ 1.55.0
@@ -1409,7 +1409,7 @@ module Aws::ACM
1409
1409
  params: params,
1410
1410
  config: config)
1411
1411
  context[:gem_name] = 'aws-sdk-acm'
1412
- context[:gem_version] = '1.54.0'
1412
+ context[:gem_version] = '1.55.0'
1413
1413
  Seahorse::Client::Request.new(handlers, context)
1414
1414
  end
1415
1415
 
@@ -9,108 +9,46 @@
9
9
 
10
10
  module Aws::ACM
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://acm-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://acm.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ return Aws::Endpoints::Endpoint.new(url: "https://acm-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
39
+ end
40
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
41
+ end
42
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
43
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
44
+ return Aws::Endpoints::Endpoint.new(url: "https://acm.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
45
+ end
46
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
47
+ end
48
+ return Aws::Endpoints::Endpoint.new(url: "https://acm.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
49
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
50
+ raise ArgumentError, 'No endpoint could be resolved'
24
51
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
52
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2FjbS1maXBzLntSZWdpb259LntQYXJ0aXRp
77
- b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
78
- LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
79
- b25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJs
80
- ZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBv
81
- ciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZu
82
- IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0
83
- cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
84
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
85
- QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
86
- b3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
87
- dGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
88
- IjpbeyJmbiI6InN0cmluZ0VxdWFscyIsImFyZ3YiOlsiYXdzLXVzLWdvdiIs
89
- eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
90
- bHQifSwibmFtZSJdfV19XSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9h
91
- Y20ue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJv
92
- cGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In0s
93
- eyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9h
94
- Y20tZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0i
95
- LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9p
96
- bnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVu
97
- YWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQ
98
- UyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
99
- b2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0
100
- cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
101
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
102
- QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
103
- b3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
104
- Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vYWNt
105
- LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4
106
- fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRw
107
- b2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sg
108
- aXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9y
109
- dCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
110
- W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vYWNtLntSZWdpb259LntQ
111
- YXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJo
112
- ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
113
-
114
- JSON
115
53
  end
116
54
  end
@@ -23,19 +23,6 @@ module Aws::ACM
23
23
  include Aws::Structure
24
24
  end
25
25
 
26
- # @note When making an API call, you may pass AddTagsToCertificateRequest
27
- # data as a hash:
28
- #
29
- # {
30
- # certificate_arn: "Arn", # required
31
- # tags: [ # required
32
- # {
33
- # key: "TagKey", # required
34
- # value: "TagValue",
35
- # },
36
- # ],
37
- # }
38
- #
39
26
  # @!attribute [rw] certificate_arn
40
27
  # String that contains the ARN of the ACM certificate to which the tag
41
28
  # is to be applied. This must be of the form:
@@ -292,13 +279,6 @@ module Aws::ACM
292
279
  #
293
280
  # [1]: https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency
294
281
  #
295
- # @note When making an API call, you may pass CertificateOptions
296
- # data as a hash:
297
- #
298
- # {
299
- # certificate_transparency_logging_preference: "ENABLED", # accepts ENABLED, DISABLED
300
- # }
301
- #
302
282
  # @!attribute [rw] certificate_transparency_logging_preference
303
283
  # You can opt out of certificate transparency logging by specifying
304
284
  # the `DISABLED` option. Opt in by specifying `ENABLED`.
@@ -501,13 +481,6 @@ module Aws::ACM
501
481
  include Aws::Structure
502
482
  end
503
483
 
504
- # @note When making an API call, you may pass DeleteCertificateRequest
505
- # data as a hash:
506
- #
507
- # {
508
- # certificate_arn: "Arn", # required
509
- # }
510
- #
511
484
  # @!attribute [rw] certificate_arn
512
485
  # String that contains the ARN of the ACM certificate to be deleted.
513
486
  # This must be of the form:
@@ -530,13 +503,6 @@ module Aws::ACM
530
503
  include Aws::Structure
531
504
  end
532
505
 
533
- # @note When making an API call, you may pass DescribeCertificateRequest
534
- # data as a hash:
535
- #
536
- # {
537
- # certificate_arn: "Arn", # required
538
- # }
539
- #
540
506
  # @!attribute [rw] certificate_arn
541
507
  # The Amazon Resource Name (ARN) of the ACM certificate. The ARN must
542
508
  # have the following form:
@@ -635,14 +601,6 @@ module Aws::ACM
635
601
  # Contains information about the domain names that you want ACM to use
636
602
  # to send you emails that enable you to validate domain ownership.
637
603
  #
638
- # @note When making an API call, you may pass DomainValidationOption
639
- # data as a hash:
640
- #
641
- # {
642
- # domain_name: "DomainNameString", # required
643
- # validation_domain: "DomainNameString", # required
644
- # }
645
- #
646
604
  # @!attribute [rw] domain_name
647
605
  # A fully qualified domain name (FQDN) in the certificate request.
648
606
  # @return [String]
@@ -679,13 +637,6 @@ module Aws::ACM
679
637
  # Object containing expiration events options associated with an Amazon
680
638
  # Web Services account.
681
639
  #
682
- # @note When making an API call, you may pass ExpiryEventsConfiguration
683
- # data as a hash:
684
- #
685
- # {
686
- # days_before_expiry: 1,
687
- # }
688
- #
689
640
  # @!attribute [rw] days_before_expiry
690
641
  # Specifies the number of days prior to certificate expiration when
691
642
  # ACM starts generating `EventBridge` events. ACM sends one event per
@@ -702,14 +653,6 @@ module Aws::ACM
702
653
  include Aws::Structure
703
654
  end
704
655
 
705
- # @note When making an API call, you may pass ExportCertificateRequest
706
- # data as a hash:
707
- #
708
- # {
709
- # certificate_arn: "Arn", # required
710
- # passphrase: "data", # required
711
- # }
712
- #
713
656
  # @!attribute [rw] certificate_arn
714
657
  # An Amazon Resource Name (ARN) of the issued certificate. This must
715
658
  # be of the form:
@@ -811,15 +754,6 @@ module Aws::ACM
811
754
  # This structure can be used in the ListCertificates action to filter
812
755
  # the output of the certificate list.
813
756
  #
814
- # @note When making an API call, you may pass Filters
815
- # data as a hash:
816
- #
817
- # {
818
- # extended_key_usage: ["TLS_WEB_SERVER_AUTHENTICATION"], # accepts TLS_WEB_SERVER_AUTHENTICATION, TLS_WEB_CLIENT_AUTHENTICATION, CODE_SIGNING, EMAIL_PROTECTION, TIME_STAMPING, OCSP_SIGNING, IPSEC_END_SYSTEM, IPSEC_TUNNEL, IPSEC_USER, ANY, NONE, CUSTOM
819
- # key_usage: ["DIGITAL_SIGNATURE"], # accepts DIGITAL_SIGNATURE, NON_REPUDIATION, KEY_ENCIPHERMENT, DATA_ENCIPHERMENT, KEY_AGREEMENT, CERTIFICATE_SIGNING, CRL_SIGNING, ENCIPHER_ONLY, DECIPHER_ONLY, ANY, CUSTOM
820
- # key_types: ["RSA_1024"], # accepts RSA_1024, RSA_2048, RSA_3072, RSA_4096, EC_prime256v1, EC_secp384r1, EC_secp521r1
821
- # }
822
- #
823
757
  # @!attribute [rw] extended_key_usage
824
758
  # Specify one or more ExtendedKeyUsage extension values.
825
759
  # @return [Array<String>]
@@ -863,13 +797,6 @@ module Aws::ACM
863
797
  include Aws::Structure
864
798
  end
865
799
 
866
- # @note When making an API call, you may pass GetCertificateRequest
867
- # data as a hash:
868
- #
869
- # {
870
- # certificate_arn: "Arn", # required
871
- # }
872
- #
873
800
  # @!attribute [rw] certificate_arn
874
801
  # String that contains a certificate ARN in the following format:
875
802
  #
@@ -911,22 +838,6 @@ module Aws::ACM
911
838
  include Aws::Structure
912
839
  end
913
840
 
914
- # @note When making an API call, you may pass ImportCertificateRequest
915
- # data as a hash:
916
- #
917
- # {
918
- # certificate_arn: "Arn",
919
- # certificate: "data", # required
920
- # private_key: "data", # required
921
- # certificate_chain: "data",
922
- # tags: [
923
- # {
924
- # key: "TagKey", # required
925
- # value: "TagValue",
926
- # },
927
- # ],
928
- # }
929
- #
930
841
  # @!attribute [rw] certificate_arn
931
842
  # The [Amazon Resource Name (ARN)][1] of an imported certificate to
932
843
  # replace. To import a new certificate, omit this field.
@@ -1093,22 +1004,6 @@ module Aws::ACM
1093
1004
  include Aws::Structure
1094
1005
  end
1095
1006
 
1096
- # @note When making an API call, you may pass ListCertificatesRequest
1097
- # data as a hash:
1098
- #
1099
- # {
1100
- # certificate_statuses: ["PENDING_VALIDATION"], # accepts PENDING_VALIDATION, ISSUED, INACTIVE, EXPIRED, VALIDATION_TIMED_OUT, REVOKED, FAILED
1101
- # includes: {
1102
- # extended_key_usage: ["TLS_WEB_SERVER_AUTHENTICATION"], # accepts TLS_WEB_SERVER_AUTHENTICATION, TLS_WEB_CLIENT_AUTHENTICATION, CODE_SIGNING, EMAIL_PROTECTION, TIME_STAMPING, OCSP_SIGNING, IPSEC_END_SYSTEM, IPSEC_TUNNEL, IPSEC_USER, ANY, NONE, CUSTOM
1103
- # key_usage: ["DIGITAL_SIGNATURE"], # accepts DIGITAL_SIGNATURE, NON_REPUDIATION, KEY_ENCIPHERMENT, DATA_ENCIPHERMENT, KEY_AGREEMENT, CERTIFICATE_SIGNING, CRL_SIGNING, ENCIPHER_ONLY, DECIPHER_ONLY, ANY, CUSTOM
1104
- # key_types: ["RSA_1024"], # accepts RSA_1024, RSA_2048, RSA_3072, RSA_4096, EC_prime256v1, EC_secp384r1, EC_secp521r1
1105
- # },
1106
- # next_token: "NextToken",
1107
- # max_items: 1,
1108
- # sort_by: "CREATED_AT", # accepts CREATED_AT
1109
- # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
1110
- # }
1111
- #
1112
1007
  # @!attribute [rw] certificate_statuses
1113
1008
  # Filter the certificate list by status value.
1114
1009
  # @return [Array<String>]
@@ -1175,13 +1070,6 @@ module Aws::ACM
1175
1070
  include Aws::Structure
1176
1071
  end
1177
1072
 
1178
- # @note When making an API call, you may pass ListTagsForCertificateRequest
1179
- # data as a hash:
1180
- #
1181
- # {
1182
- # certificate_arn: "Arn", # required
1183
- # }
1184
- #
1185
1073
  # @!attribute [rw] certificate_arn
1186
1074
  # String that contains the ARN of the ACM certificate for which you
1187
1075
  # want to list the tags. This must have the following form:
@@ -1216,16 +1104,6 @@ module Aws::ACM
1216
1104
  include Aws::Structure
1217
1105
  end
1218
1106
 
1219
- # @note When making an API call, you may pass PutAccountConfigurationRequest
1220
- # data as a hash:
1221
- #
1222
- # {
1223
- # expiry_events: {
1224
- # days_before_expiry: 1,
1225
- # },
1226
- # idempotency_token: "IdempotencyToken", # required
1227
- # }
1228
- #
1229
1107
  # @!attribute [rw] expiry_events
1230
1108
  # Specifies expiration events associated with an account.
1231
1109
  # @return [Types::ExpiryEventsConfiguration]
@@ -1248,19 +1126,6 @@ module Aws::ACM
1248
1126
  include Aws::Structure
1249
1127
  end
1250
1128
 
1251
- # @note When making an API call, you may pass RemoveTagsFromCertificateRequest
1252
- # data as a hash:
1253
- #
1254
- # {
1255
- # certificate_arn: "Arn", # required
1256
- # tags: [ # required
1257
- # {
1258
- # key: "TagKey", # required
1259
- # value: "TagValue",
1260
- # },
1261
- # ],
1262
- # }
1263
- #
1264
1129
  # @!attribute [rw] certificate_arn
1265
1130
  # String that contains the ARN of the ACM Certificate with one or more
1266
1131
  # tags that you want to remove. This must be of the form:
@@ -1288,13 +1153,6 @@ module Aws::ACM
1288
1153
  include Aws::Structure
1289
1154
  end
1290
1155
 
1291
- # @note When making an API call, you may pass RenewCertificateRequest
1292
- # data as a hash:
1293
- #
1294
- # {
1295
- # certificate_arn: "Arn", # required
1296
- # }
1297
- #
1298
1156
  # @!attribute [rw] certificate_arn
1299
1157
  # String that contains the ARN of the ACM certificate to be renewed.
1300
1158
  # This must be of the form:
@@ -1364,33 +1222,6 @@ module Aws::ACM
1364
1222
  include Aws::Structure
1365
1223
  end
1366
1224
 
1367
- # @note When making an API call, you may pass RequestCertificateRequest
1368
- # data as a hash:
1369
- #
1370
- # {
1371
- # domain_name: "DomainNameString", # required
1372
- # validation_method: "EMAIL", # accepts EMAIL, DNS
1373
- # subject_alternative_names: ["DomainNameString"],
1374
- # idempotency_token: "IdempotencyToken",
1375
- # domain_validation_options: [
1376
- # {
1377
- # domain_name: "DomainNameString", # required
1378
- # validation_domain: "DomainNameString", # required
1379
- # },
1380
- # ],
1381
- # options: {
1382
- # certificate_transparency_logging_preference: "ENABLED", # accepts ENABLED, DISABLED
1383
- # },
1384
- # certificate_authority_arn: "PcaArn",
1385
- # tags: [
1386
- # {
1387
- # key: "TagKey", # required
1388
- # value: "TagValue",
1389
- # },
1390
- # ],
1391
- # key_algorithm: "RSA_1024", # accepts RSA_1024, RSA_2048, RSA_3072, RSA_4096, EC_prime256v1, EC_secp384r1, EC_secp521r1
1392
- # }
1393
- #
1394
1225
  # @!attribute [rw] domain_name
1395
1226
  # Fully qualified domain name (FQDN), such as www.example.com, that
1396
1227
  # you want to secure with an ACM certificate. Use an asterisk (*) to
@@ -1560,15 +1391,6 @@ module Aws::ACM
1560
1391
  include Aws::Structure
1561
1392
  end
1562
1393
 
1563
- # @note When making an API call, you may pass ResendValidationEmailRequest
1564
- # data as a hash:
1565
- #
1566
- # {
1567
- # certificate_arn: "Arn", # required
1568
- # domain: "DomainNameString", # required
1569
- # validation_domain: "DomainNameString", # required
1570
- # }
1571
- #
1572
1394
  # @!attribute [rw] certificate_arn
1573
1395
  # String that contains the ARN of the requested certificate. The
1574
1396
  # certificate ARN is generated and returned by the RequestCertificate
@@ -1673,14 +1495,6 @@ module Aws::ACM
1673
1495
  # A key-value pair that identifies or specifies metadata about an ACM
1674
1496
  # resource.
1675
1497
  #
1676
- # @note When making an API call, you may pass Tag
1677
- # data as a hash:
1678
- #
1679
- # {
1680
- # key: "TagKey", # required
1681
- # value: "TagValue",
1682
- # }
1683
- #
1684
1498
  # @!attribute [rw] key
1685
1499
  # The key of the tag.
1686
1500
  # @return [String]
@@ -1739,16 +1553,6 @@ module Aws::ACM
1739
1553
  include Aws::Structure
1740
1554
  end
1741
1555
 
1742
- # @note When making an API call, you may pass UpdateCertificateOptionsRequest
1743
- # data as a hash:
1744
- #
1745
- # {
1746
- # certificate_arn: "Arn", # required
1747
- # options: { # required
1748
- # certificate_transparency_logging_preference: "ENABLED", # accepts ENABLED, DISABLED
1749
- # },
1750
- # }
1751
- #
1752
1556
  # @!attribute [rw] certificate_arn
1753
1557
  # ARN of the requested certificate to update. This must be of the
1754
1558
  # form:
data/lib/aws-sdk-acm.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-acm/customizations'
53
53
  # @!group service
54
54
  module Aws::ACM
55
55
 
56
- GEM_VERSION = '1.54.0'
56
+ GEM_VERSION = '1.55.0'
57
57
 
58
58
  end
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.54.0
4
+ version: 1.55.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: 2022-11-08 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core