aws-sdk-lambdapreview 1.35.0 → 1.36.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-lambdapreview/client.rb +14 -1
- data/lib/aws-sdk-lambdapreview/types.rb +0 -101
- 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: f7b7d1b85462b6c991ce4cd6fd6889cccf6e5fcbdfd5857c4754208608858fc8
|
4
|
+
data.tar.gz: 759b895c0c77d3c10e4e473d6667613f1eaf8eb899db920059c00f298d6ecf9b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 845a0d68f15cb1a41ef054586f95f6bb31da265346c0c649f52f3da6fd741d87949f6d0a3f077ae5ebf49a0e280d97b295e29eb1aa4c0770fb5b7ba9dd6165f2
|
7
|
+
data.tar.gz: ac4e4164020d537e6fd59f3b5a777988fc463c23a63c1151bbea6761a12510a92f20f1acc5787c7ead73521bc8f710e84108e0249a8cf475537ae699ad8eb2f3
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.36.1 (2023-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
8
|
+
|
9
|
+
1.36.0 (2022-10-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.35.0 (2022-02-24)
|
5
15
|
------------------
|
6
16
|
|
@@ -243,4 +253,4 @@ Unreleased Changes
|
|
243
253
|
1.0.0.rc1 (2016-12-05)
|
244
254
|
------------------
|
245
255
|
|
246
|
-
* Feature - Initial preview release of the `aws-sdk-lambdapreview` gem.
|
256
|
+
* Feature - Initial preview release of the `aws-sdk-lambdapreview` gem.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.36.1
|
@@ -287,6 +287,19 @@ module Aws::LambdaPreview
|
|
287
287
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
288
288
|
# requests are made, and retries are disabled.
|
289
289
|
#
|
290
|
+
# @option options [Aws::TokenProvider] :token_provider
|
291
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
292
|
+
# following classes:
|
293
|
+
#
|
294
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
295
|
+
# tokens.
|
296
|
+
#
|
297
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
298
|
+
# access token generated from `aws login`.
|
299
|
+
#
|
300
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
301
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
302
|
+
#
|
290
303
|
# @option options [Boolean] :use_dualstack_endpoint
|
291
304
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
292
305
|
# will be used if available.
|
@@ -1033,7 +1046,7 @@ module Aws::LambdaPreview
|
|
1033
1046
|
params: params,
|
1034
1047
|
config: config)
|
1035
1048
|
context[:gem_name] = 'aws-sdk-lambdapreview'
|
1036
|
-
context[:gem_version] = '1.
|
1049
|
+
context[:gem_version] = '1.36.1'
|
1037
1050
|
Seahorse::Client::Request.new(handlers, context)
|
1038
1051
|
end
|
1039
1052
|
|
@@ -10,19 +10,6 @@
|
|
10
10
|
module Aws::LambdaPreview
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# @note When making an API call, you may pass AddEventSourceRequest
|
14
|
-
# data as a hash:
|
15
|
-
#
|
16
|
-
# {
|
17
|
-
# event_source: "String", # required
|
18
|
-
# function_name: "FunctionName", # required
|
19
|
-
# role: "RoleArn", # required
|
20
|
-
# batch_size: 1,
|
21
|
-
# parameters: {
|
22
|
-
# "String" => "String",
|
23
|
-
# },
|
24
|
-
# }
|
25
|
-
#
|
26
13
|
# @!attribute [rw] event_source
|
27
14
|
# The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is
|
28
15
|
# the event source. Any record added to this stream causes AWS Lambda
|
@@ -70,13 +57,6 @@ module Aws::LambdaPreview
|
|
70
57
|
include Aws::Structure
|
71
58
|
end
|
72
59
|
|
73
|
-
# @note When making an API call, you may pass DeleteFunctionRequest
|
74
|
-
# data as a hash:
|
75
|
-
#
|
76
|
-
# {
|
77
|
-
# function_name: "FunctionName", # required
|
78
|
-
# }
|
79
|
-
#
|
80
60
|
# @!attribute [rw] function_name
|
81
61
|
# The Lambda function to delete.
|
82
62
|
# @return [String]
|
@@ -250,13 +230,6 @@ module Aws::LambdaPreview
|
|
250
230
|
include Aws::Structure
|
251
231
|
end
|
252
232
|
|
253
|
-
# @note When making an API call, you may pass GetEventSourceRequest
|
254
|
-
# data as a hash:
|
255
|
-
#
|
256
|
-
# {
|
257
|
-
# uuid: "String", # required
|
258
|
-
# }
|
259
|
-
#
|
260
233
|
# @!attribute [rw] uuid
|
261
234
|
# The AWS Lambda assigned ID of the event source mapping.
|
262
235
|
# @return [String]
|
@@ -269,13 +242,6 @@ module Aws::LambdaPreview
|
|
269
242
|
include Aws::Structure
|
270
243
|
end
|
271
244
|
|
272
|
-
# @note When making an API call, you may pass GetFunctionConfigurationRequest
|
273
|
-
# data as a hash:
|
274
|
-
#
|
275
|
-
# {
|
276
|
-
# function_name: "FunctionName", # required
|
277
|
-
# }
|
278
|
-
#
|
279
245
|
# @!attribute [rw] function_name
|
280
246
|
# The name of the Lambda function for which you want to retrieve the
|
281
247
|
# configuration information.
|
@@ -289,13 +255,6 @@ module Aws::LambdaPreview
|
|
289
255
|
include Aws::Structure
|
290
256
|
end
|
291
257
|
|
292
|
-
# @note When making an API call, you may pass GetFunctionRequest
|
293
|
-
# data as a hash:
|
294
|
-
#
|
295
|
-
# {
|
296
|
-
# function_name: "FunctionName", # required
|
297
|
-
# }
|
298
|
-
#
|
299
258
|
# @!attribute [rw] function_name
|
300
259
|
# The Lambda function name.
|
301
260
|
# @return [String]
|
@@ -365,14 +324,6 @@ module Aws::LambdaPreview
|
|
365
324
|
include Aws::Structure
|
366
325
|
end
|
367
326
|
|
368
|
-
# @note When making an API call, you may pass InvokeAsyncRequest
|
369
|
-
# data as a hash:
|
370
|
-
#
|
371
|
-
# {
|
372
|
-
# function_name: "FunctionName", # required
|
373
|
-
# invoke_args: "data", # required
|
374
|
-
# }
|
375
|
-
#
|
376
327
|
# @!attribute [rw] function_name
|
377
328
|
# The Lambda function name.
|
378
329
|
# @return [String]
|
@@ -405,16 +356,6 @@ module Aws::LambdaPreview
|
|
405
356
|
include Aws::Structure
|
406
357
|
end
|
407
358
|
|
408
|
-
# @note When making an API call, you may pass ListEventSourcesRequest
|
409
|
-
# data as a hash:
|
410
|
-
#
|
411
|
-
# {
|
412
|
-
# event_source_arn: "String",
|
413
|
-
# function_name: "FunctionName",
|
414
|
-
# marker: "String",
|
415
|
-
# max_items: 1,
|
416
|
-
# }
|
417
|
-
#
|
418
359
|
# @!attribute [rw] event_source_arn
|
419
360
|
# The Amazon Resource Name (ARN) of the Amazon Kinesis stream.
|
420
361
|
# @return [String]
|
@@ -464,14 +405,6 @@ module Aws::LambdaPreview
|
|
464
405
|
include Aws::Structure
|
465
406
|
end
|
466
407
|
|
467
|
-
# @note When making an API call, you may pass ListFunctionsRequest
|
468
|
-
# data as a hash:
|
469
|
-
#
|
470
|
-
# {
|
471
|
-
# marker: "String",
|
472
|
-
# max_items: 1,
|
473
|
-
# }
|
474
|
-
#
|
475
408
|
# @!attribute [rw] marker
|
476
409
|
# Optional string. An opaque pagination token returned from a previous
|
477
410
|
# `ListFunctions` operation. If present, indicates where to continue
|
@@ -513,13 +446,6 @@ module Aws::LambdaPreview
|
|
513
446
|
include Aws::Structure
|
514
447
|
end
|
515
448
|
|
516
|
-
# @note When making an API call, you may pass RemoveEventSourceRequest
|
517
|
-
# data as a hash:
|
518
|
-
#
|
519
|
-
# {
|
520
|
-
# uuid: "String", # required
|
521
|
-
# }
|
522
|
-
#
|
523
449
|
# @!attribute [rw] uuid
|
524
450
|
# The event source mapping ID.
|
525
451
|
# @return [String]
|
@@ -567,18 +493,6 @@ module Aws::LambdaPreview
|
|
567
493
|
include Aws::Structure
|
568
494
|
end
|
569
495
|
|
570
|
-
# @note When making an API call, you may pass UpdateFunctionConfigurationRequest
|
571
|
-
# data as a hash:
|
572
|
-
#
|
573
|
-
# {
|
574
|
-
# function_name: "FunctionName", # required
|
575
|
-
# role: "RoleArn",
|
576
|
-
# handler: "Handler",
|
577
|
-
# description: "Description",
|
578
|
-
# timeout: 1,
|
579
|
-
# memory_size: 1,
|
580
|
-
# }
|
581
|
-
#
|
582
496
|
# @!attribute [rw] function_name
|
583
497
|
# The name of the Lambda function.
|
584
498
|
# @return [String]
|
@@ -627,21 +541,6 @@ module Aws::LambdaPreview
|
|
627
541
|
include Aws::Structure
|
628
542
|
end
|
629
543
|
|
630
|
-
# @note When making an API call, you may pass UploadFunctionRequest
|
631
|
-
# data as a hash:
|
632
|
-
#
|
633
|
-
# {
|
634
|
-
# function_name: "FunctionName", # required
|
635
|
-
# function_zip: "data", # required
|
636
|
-
# runtime: "nodejs", # required, accepts nodejs
|
637
|
-
# role: "RoleArn", # required
|
638
|
-
# handler: "Handler", # required
|
639
|
-
# mode: "event", # required, accepts event
|
640
|
-
# description: "Description",
|
641
|
-
# timeout: 1,
|
642
|
-
# memory_size: 1,
|
643
|
-
# }
|
644
|
-
#
|
645
544
|
# @!attribute [rw] function_name
|
646
545
|
# The name you want to assign to the function you are uploading. The
|
647
546
|
# function names appear in the console and are returned in the
|
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.36.1
|
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: 2023-01-18 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.165.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.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|