aws-sdk-lambda 1.81.0 → 1.84.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +415 -21
- data/lib/aws-sdk-lambda/client_api.rb +177 -0
- data/lib/aws-sdk-lambda/types.rb +651 -13
- data/lib/aws-sdk-lambda.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5bfcdfb3efcb4f65b81ec5c165a98e763fd28406b48fd024ec283d2e2e7f3ddc
|
4
|
+
data.tar.gz: 7fb10cd75c7988d7b81cc99e0baf2cc0ff1a77c4c896360bb1967d6a77cdc3e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e7023e71755475046364a5b28ca712797c8764512f5b1164ba194441da16370afc0f6ec269e31dcca94cd00a2ce8d82dbec2b1533836fbd50dbaa9135656382
|
7
|
+
data.tar.gz: 45e6d543441ac840eb3ec2b377161a7bb3d9c510cd89f805e4b652fdb5ddb7c0745f146e104bb61dda2ac63adb915695604953ef3b7447c0dd806c10fdeb5264
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.84.0 (2022-05-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Lambda releases NodeJs 16 managed runtime to be available in all commercial regions.
|
8
|
+
|
9
|
+
1.83.0 (2022-04-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds new APIs for creating and managing Lambda Function URLs and adds a new FunctionUrlAuthType parameter to the AddPermission API. Customers can use Function URLs to create built-in HTTPS endpoints on their functions.
|
13
|
+
|
14
|
+
1.82.0 (2022-03-24)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Adds support for increased ephemeral storage (/tmp) up to 10GB for Lambda functions. Customers can now provision up to 10 GB of ephemeral storage per function instance, a 20x increase over the previous limit of 512 MB.
|
18
|
+
|
4
19
|
1.81.0 (2022-03-11)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.84.0
|