aws-sdk-acm 1.18.0 → 1.19.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 +1 -1
- data/lib/aws-sdk-acm/client.rb +51 -6
- 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: b9410a77ac6a171cab0bd8e9276b7ba8ea332284
|
4
|
+
data.tar.gz: 1176c07d18559d8e352cf77eaf9fc897fdade266
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c533d0c7e026375c2c0d113353756c5fc8a304ef8cda1fe788762132460ae694d86d699cfff368ed895a0783f2bf4101f35b97e400e1669ee005c6ecdb7d6cef
|
7
|
+
data.tar.gz: 89c73af2fedbc93f00b9ffad1586bf525ebd58f85b5b636733b1e6c6e893b1893b8a17197217c86dfd4e63a960a3ae999cb916813f3e91ac86d7d29b50269ba7
|
data/lib/aws-sdk-acm.rb
CHANGED
data/lib/aws-sdk-acm/client.rb
CHANGED
@@ -209,6 +209,49 @@ module Aws::ACM
|
|
209
209
|
# When `true`, request parameters are validated before
|
210
210
|
# sending the request.
|
211
211
|
#
|
212
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
213
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
214
|
+
#
|
215
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
216
|
+
# seconds to wait when opening a HTTP session before rasing a
|
217
|
+
# `Timeout::Error`.
|
218
|
+
#
|
219
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
220
|
+
# number of seconds to wait for response data. This value can
|
221
|
+
# safely be set
|
222
|
+
# per-request on the session yeidled by {#session_for}.
|
223
|
+
#
|
224
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
225
|
+
# seconds a connection is allowed to sit idble before it is
|
226
|
+
# considered stale. Stale connections are closed and removed
|
227
|
+
# from the pool before making a request.
|
228
|
+
#
|
229
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
230
|
+
# seconds to wait for a 100-continue response before sending the
|
231
|
+
# request body. This option has no effect unless the request has
|
232
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
233
|
+
# disables this behaviour. This value can safely be set per
|
234
|
+
# request on the session yeidled by {#session_for}.
|
235
|
+
#
|
236
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
237
|
+
# HTTP debug output will be sent to the `:logger`.
|
238
|
+
#
|
239
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
240
|
+
# SSL peer certificates are verified when establishing a
|
241
|
+
# connection.
|
242
|
+
#
|
243
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
244
|
+
# certificate authority bundle file that should be used when
|
245
|
+
# verifying peer certificates. If you do not pass
|
246
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
247
|
+
# will be used if available.
|
248
|
+
#
|
249
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
250
|
+
# directory that contains the unbundled SSL certificate
|
251
|
+
# authority files for verifying peer certificates. If you do
|
252
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
253
|
+
# system default will be used if available.
|
254
|
+
#
|
212
255
|
def initialize(*args)
|
213
256
|
super
|
214
257
|
end
|
@@ -765,11 +808,13 @@ module Aws::ACM
|
|
765
808
|
# Renews an eligable ACM certificate. At this time, only exported
|
766
809
|
# private certificates can be renewed with this operation. In order to
|
767
810
|
# renew your ACM PCA certificates with ACM, you must first [grant the
|
768
|
-
# ACM service principal permission to do
|
769
|
-
#
|
770
|
-
#
|
771
|
-
#
|
772
|
-
#
|
811
|
+
# ACM service principal permission to do so][1]. For more information,
|
812
|
+
# see [Testing Managed Renewal][2] in the ACM User Guide.
|
813
|
+
#
|
814
|
+
#
|
815
|
+
#
|
816
|
+
# [1]: https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaPermissions.html
|
817
|
+
# [2]: https://docs.aws.amazon.com/acm/latest/userguide/manual-renewal.html
|
773
818
|
#
|
774
819
|
# @option params [required, String] :certificate_arn
|
775
820
|
# String that contains the ARN of the ACM certificate to be renewed.
|
@@ -1070,7 +1115,7 @@ module Aws::ACM
|
|
1070
1115
|
params: params,
|
1071
1116
|
config: config)
|
1072
1117
|
context[:gem_name] = 'aws-sdk-acm'
|
1073
|
-
context[:gem_version] = '1.
|
1118
|
+
context[:gem_version] = '1.19.0'
|
1074
1119
|
Seahorse::Client::Request.new(handlers, context)
|
1075
1120
|
end
|
1076
1121
|
|
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.19.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: 2019-
|
11
|
+
date: 2019-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|