aws-sdk-lambdapreview 1.43.0 → 1.45.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambdapreview/client.rb +73 -48
- data/lib/aws-sdk-lambdapreview.rb +1 -1
- 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: b248d7152626a07d31031e3f660ffd67d5981281b2180d59c85474fdb80dd055
|
4
|
+
data.tar.gz: 9552e3e0722167741bf572ac4d5bfc6f90580120a3d769639625463469688bf4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d2da16f581811fdff6270edd88edd7ae3cdefca8cb08d03ea030206df848c1bd7d6149380bc283713934e231a1f56b26813635c3204f77f9d24e5ec4f460be7
|
7
|
+
data.tar.gz: 01655d21739e81c18dc102ef1255a9a17a08375ebfb808eca9deb7553df31173e39055b2c66a42fa1c119f55862984bd2e07d1019d99d5a3018bfa9cd21ecabe
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.45.0 (2024-05-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.44.0 (2024-04-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.43.0 (2024-01-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.45.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::LambdaPreview
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -195,10 +197,17 @@ module Aws::LambdaPreview
|
|
195
197
|
# When set to 'true' the request body will not be compressed
|
196
198
|
# for supported operations.
|
197
199
|
#
|
198
|
-
# @option options [String] :endpoint
|
199
|
-
#
|
200
|
-
#
|
201
|
-
#
|
200
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
201
|
+
# Normally you should not configure the `:endpoint` option
|
202
|
+
# directly. This is normally constructed from the `:region`
|
203
|
+
# option. Configuring `:endpoint` is normally reserved for
|
204
|
+
# connecting to test or custom endpoints. The endpoint should
|
205
|
+
# be a URI formatted like:
|
206
|
+
#
|
207
|
+
# 'http://example.com'
|
208
|
+
# 'https://example.com'
|
209
|
+
# 'http://example.com:123'
|
210
|
+
#
|
202
211
|
#
|
203
212
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
204
213
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -291,8 +300,9 @@ module Aws::LambdaPreview
|
|
291
300
|
#
|
292
301
|
# @option options [String] :sdk_ua_app_id
|
293
302
|
# A unique and opaque application ID that is appended to the
|
294
|
-
# User-Agent header as app
|
295
|
-
# maximum length of 50.
|
303
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
304
|
+
# maximum length of 50. This variable is sourced from environment
|
305
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
296
306
|
#
|
297
307
|
# @option options [String] :secret_access_key
|
298
308
|
#
|
@@ -333,50 +343,65 @@ module Aws::LambdaPreview
|
|
333
343
|
# When `true`, request parameters are validated before
|
334
344
|
# sending the request.
|
335
345
|
#
|
336
|
-
# @option options [
|
337
|
-
#
|
338
|
-
#
|
339
|
-
#
|
340
|
-
#
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
# @option options [Float] :
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
346
|
+
# @option options [Float] :http_continue_timeout (1)
|
347
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
348
|
+
# request body. This option has no effect unless the request has "Expect"
|
349
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
350
|
+
# behaviour. This value can safely be set per request on the session.
|
351
|
+
#
|
352
|
+
# @option options [Float] :http_idle_timeout (5)
|
353
|
+
# The number of seconds a connection is allowed to sit idle before it
|
354
|
+
# is considered stale. Stale connections are closed and removed from the
|
355
|
+
# pool before making a request.
|
356
|
+
#
|
357
|
+
# @option options [Float] :http_open_timeout (15)
|
358
|
+
# The default number of seconds to wait for response data.
|
359
|
+
# This value can safely be set per-request on the session.
|
360
|
+
#
|
361
|
+
# @option options [URI::HTTP,String] :http_proxy
|
362
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
363
|
+
#
|
364
|
+
# @option options [Float] :http_read_timeout (60)
|
365
|
+
# The default number of seconds to wait for response data.
|
366
|
+
# This value can safely be set per-request on the session.
|
367
|
+
#
|
368
|
+
# @option options [Boolean] :http_wire_trace (false)
|
369
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
370
|
+
#
|
371
|
+
# @option options [Proc] :on_chunk_received
|
372
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
373
|
+
# of the response body is received. It provides three arguments: the chunk,
|
374
|
+
# the number of bytes received, and the total number of
|
375
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
376
|
+
#
|
377
|
+
# @option options [Proc] :on_chunk_sent
|
378
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
379
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
380
|
+
# the number of bytes read from the body, and the total number of
|
381
|
+
# bytes in the body.
|
382
|
+
#
|
383
|
+
# @option options [Boolean] :raise_response_errors (true)
|
384
|
+
# When `true`, response errors are raised.
|
385
|
+
#
|
386
|
+
# @option options [String] :ssl_ca_bundle
|
387
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
388
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
389
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
390
|
+
#
|
391
|
+
# @option options [String] :ssl_ca_directory
|
392
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
393
|
+
# authority files for verifying peer certificates. If you do
|
394
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
395
|
+
# default will be used if available.
|
361
396
|
#
|
362
|
-
# @option options [
|
363
|
-
#
|
397
|
+
# @option options [String] :ssl_ca_store
|
398
|
+
# Sets the X509::Store to verify peer certificate.
|
364
399
|
#
|
365
|
-
# @option options [
|
366
|
-
#
|
367
|
-
# connection.
|
400
|
+
# @option options [Float] :ssl_timeout
|
401
|
+
# Sets the SSL timeout in seconds
|
368
402
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# verifying peer certificates. If you do not pass
|
372
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
373
|
-
# will be used if available.
|
374
|
-
#
|
375
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
376
|
-
# directory that contains the unbundled SSL certificate
|
377
|
-
# authority files for verifying peer certificates. If you do
|
378
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
379
|
-
# system default will be used if available.
|
403
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
404
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
380
405
|
#
|
381
406
|
def initialize(*args)
|
382
407
|
super
|
@@ -1066,7 +1091,7 @@ module Aws::LambdaPreview
|
|
1066
1091
|
params: params,
|
1067
1092
|
config: config)
|
1068
1093
|
context[:gem_name] = 'aws-sdk-lambdapreview'
|
1069
|
-
context[:gem_version] = '1.
|
1094
|
+
context[:gem_version] = '1.45.0'
|
1070
1095
|
Seahorse::Client::Request.new(handlers, context)
|
1071
1096
|
end
|
1072
1097
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-lambdapreview
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.45.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: 2024-
|
11
|
+
date: 2024-05-13 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.193.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.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|