aws-sdk-lambdapreview 1.43.0 → 1.44.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: 4e74a3b915a5462949d2d7e13995cf036d128de78699bad22ba8cb035d371018
4
- data.tar.gz: db37509f03a6b46d700be83e88664c5fd111673f44cd68e526d0dee5e178b439
3
+ metadata.gz: fd448dbce67c5e8159b34f5914302fb30160caa2ba227ba58f99abf2895f415b
4
+ data.tar.gz: ed9135a7152a0b1e33b650f6922acde3c130c17a14d9197e159888e76263a01a
5
5
  SHA512:
6
- metadata.gz: 3d086f985d38b48988271d62ab5e0a2231f1a0e2c7931adc6cb69f038e98b7552d5f9d023c177f7ec3aa43c618e7bf559b29cca6896a06d35f95507c628d5c41
7
- data.tar.gz: 63c913374c917dd6ee1d24939cced111d40ba90dc08e23b367838e465acf0a7524532d346e16407109a352999226bdb2153812a2a50140219f3314e97ab36375
6
+ metadata.gz: 4605d0e5c5b6baa2729ff7b8eae40175df8b432ad70bb77a7ed47de3bb0d66b1b32855c20cbea7aec5e07e44837d07b7509aa41253611426177d80eb553845fb
7
+ data.tar.gz: b85d7bd61138f16719d5777bf26d23ea35a0586333f940c8d7ba57b16a3a4306eae87cb1154494e61ac2a288d11f4bae08b3ad594121abbaa7b1fbb3828efacb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.44.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.43.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.43.0
1
+ 1.44.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
- # The client endpoint is normally constructed from the `:region`
200
- # option. You should only configure an `:endpoint` when connecting
201
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
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
@@ -333,50 +342,65 @@ module Aws::LambdaPreview
333
342
  # When `true`, request parameters are validated before
334
343
  # sending the request.
335
344
  #
336
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
337
- # requests through. Formatted like 'http://proxy.com:123'.
338
- #
339
- # @option options [Float] :http_open_timeout (15) The number of
340
- # seconds to wait when opening a HTTP session before raising a
341
- # `Timeout::Error`.
342
- #
343
- # @option options [Float] :http_read_timeout (60) The default
344
- # number of seconds to wait for response data. This value can
345
- # safely be set per-request on the session.
346
- #
347
- # @option options [Float] :http_idle_timeout (5) The number of
348
- # seconds a connection is allowed to sit idle before it is
349
- # considered stale. Stale connections are closed and removed
350
- # from the pool before making a request.
351
- #
352
- # @option options [Float] :http_continue_timeout (1) The number of
353
- # seconds to wait for a 100-continue response before sending the
354
- # request body. This option has no effect unless the request has
355
- # "Expect" header set to "100-continue". Defaults to `nil` which
356
- # disables this behaviour. This value can safely be set per
357
- # request on the session.
358
- #
359
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
360
- # in seconds.
345
+ # @option options [Float] :http_continue_timeout (1)
346
+ # The number of seconds to wait for a 100-continue response before sending the
347
+ # request body. This option has no effect unless the request has "Expect"
348
+ # header set to "100-continue". Defaults to `nil` which disables this
349
+ # behaviour. This value can safely be set per request on the session.
350
+ #
351
+ # @option options [Float] :http_idle_timeout (5)
352
+ # The number of seconds a connection is allowed to sit idle before it
353
+ # is considered stale. Stale connections are closed and removed from the
354
+ # pool before making a request.
355
+ #
356
+ # @option options [Float] :http_open_timeout (15)
357
+ # The default number of seconds to wait for response data.
358
+ # This value can safely be set per-request on the session.
359
+ #
360
+ # @option options [URI::HTTP,String] :http_proxy
361
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
362
+ #
363
+ # @option options [Float] :http_read_timeout (60)
364
+ # The default number of seconds to wait for response data.
365
+ # This value can safely be set per-request on the session.
366
+ #
367
+ # @option options [Boolean] :http_wire_trace (false)
368
+ # When `true`, HTTP debug output will be sent to the `:logger`.
369
+ #
370
+ # @option options [Proc] :on_chunk_received
371
+ # When a Proc object is provided, it will be used as callback when each chunk
372
+ # of the response body is received. It provides three arguments: the chunk,
373
+ # the number of bytes received, and the total number of
374
+ # bytes in the response (or nil if the server did not send a `content-length`).
375
+ #
376
+ # @option options [Proc] :on_chunk_sent
377
+ # When a Proc object is provided, it will be used as callback when each chunk
378
+ # of the request body is sent. It provides three arguments: the chunk,
379
+ # the number of bytes read from the body, and the total number of
380
+ # bytes in the body.
381
+ #
382
+ # @option options [Boolean] :raise_response_errors (true)
383
+ # When `true`, response errors are raised.
384
+ #
385
+ # @option options [String] :ssl_ca_bundle
386
+ # Full path to the SSL certificate authority bundle file that should be used when
387
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
388
+ # `:ssl_ca_directory` the the system default will be used if available.
389
+ #
390
+ # @option options [String] :ssl_ca_directory
391
+ # Full path of the directory that contains the unbundled SSL certificate
392
+ # authority files for verifying peer certificates. If you do
393
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
394
+ # default will be used if available.
361
395
  #
362
- # @option options [Boolean] :http_wire_trace (false) When `true`,
363
- # HTTP debug output will be sent to the `:logger`.
396
+ # @option options [String] :ssl_ca_store
397
+ # Sets the X509::Store to verify peer certificate.
364
398
  #
365
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
366
- # SSL peer certificates are verified when establishing a
367
- # connection.
399
+ # @option options [Float] :ssl_timeout
400
+ # Sets the SSL timeout in seconds
368
401
  #
369
- # @option options [String] :ssl_ca_bundle Full path to the SSL
370
- # certificate authority bundle file that should be used when
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.
402
+ # @option options [Boolean] :ssl_verify_peer (true)
403
+ # When `true`, SSL peer certificates are verified when establishing a connection.
380
404
  #
381
405
  def initialize(*args)
382
406
  super
@@ -1066,7 +1090,7 @@ module Aws::LambdaPreview
1066
1090
  params: params,
1067
1091
  config: config)
1068
1092
  context[:gem_name] = 'aws-sdk-lambdapreview'
1069
- context[:gem_version] = '1.43.0'
1093
+ context[:gem_version] = '1.44.0'
1070
1094
  Seahorse::Client::Request.new(handlers, context)
1071
1095
  end
1072
1096
 
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-lambdapreview/customizations'
48
48
  # @!group service
49
49
  module Aws::LambdaPreview
50
50
 
51
- GEM_VERSION = '1.43.0'
51
+ GEM_VERSION = '1.44.0'
52
52
 
53
53
  end
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.43.0
4
+ version: 1.44.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-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.191.0
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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement