aws-sdk-lambda 1.96.0 → 1.98.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-lambda/client.rb +54 -23
- data/lib/aws-sdk-lambda/types.rb +54 -5
- data/lib/aws-sdk-lambda.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: 2b99c46b04ca25da852c9ace6408ebbde4d6686bc5c5e9b43c48c95d6186b467
|
|
4
|
+
data.tar.gz: 692c1537fff79bda4e87345d6fabffe175190f186075daac2b29bb273e717bac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 633d6044060c590a5d3a6fcb87d8bc52b082d4332cc206d59e7571da232ae2dd20509b8efc2110063b6edd01bb9acbb00ecb663efb18b32ae111886d51aedb6e
|
|
7
|
+
data.tar.gz: be0f9ba9d079594cc9cb7b061b9779930c3e6f5c98b5c8ffe021fc2cc2d3bcf1d42f134f359acb9271ec7b1107f8b768a0431a6a818da146a074f3f3594b2638
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.98.0 (2023-06-05)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add Ruby 3.2 (ruby3.2) Runtime support to AWS Lambda.
|
|
8
|
+
|
|
9
|
+
1.97.0 (2023-05-31)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.96.0 (2023-04-27)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.98.0
|
|
@@ -286,6 +286,11 @@ module Aws::Lambda
|
|
|
286
286
|
# in the future.
|
|
287
287
|
#
|
|
288
288
|
#
|
|
289
|
+
# @option options [String] :sdk_ua_app_id
|
|
290
|
+
# A unique and opaque application ID that is appended to the
|
|
291
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
|
292
|
+
# maximum length of 50.
|
|
293
|
+
#
|
|
289
294
|
# @option options [String] :secret_access_key
|
|
290
295
|
#
|
|
291
296
|
# @option options [String] :session_token
|
|
@@ -1274,8 +1279,12 @@ module Aws::Lambda
|
|
|
1274
1279
|
# @option params [String] :kms_key_arn
|
|
1275
1280
|
# The ARN of the Key Management Service (KMS) customer managed key
|
|
1276
1281
|
# that's used to encrypt your function's [environment variables][1].
|
|
1277
|
-
# When [Lambda SnapStart][2] is activated, this key is
|
|
1278
|
-
# encrypt your function's snapshot. If you
|
|
1282
|
+
# When [Lambda SnapStart][2] is activated, Lambda also uses this key is
|
|
1283
|
+
# to encrypt your function's snapshot. If you deploy your function
|
|
1284
|
+
# using a container image, Lambda also uses this key to encrypt your
|
|
1285
|
+
# function when it's deployed. Note that this is not the same key
|
|
1286
|
+
# that's used to protect your container image in the Amazon Elastic
|
|
1287
|
+
# Container Registry (Amazon ECR). If you don't provide a customer
|
|
1279
1288
|
# managed key, Lambda uses a default service key.
|
|
1280
1289
|
#
|
|
1281
1290
|
#
|
|
@@ -1381,7 +1390,7 @@ module Aws::Lambda
|
|
|
1381
1390
|
#
|
|
1382
1391
|
# resp = client.create_function({
|
|
1383
1392
|
# function_name: "FunctionName", # required
|
|
1384
|
-
# runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17
|
|
1393
|
+
# runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2
|
|
1385
1394
|
# role: "RoleArn", # required
|
|
1386
1395
|
# handler: "Handler",
|
|
1387
1396
|
# code: { # required
|
|
@@ -1441,7 +1450,7 @@ module Aws::Lambda
|
|
|
1441
1450
|
#
|
|
1442
1451
|
# resp.function_name #=> String
|
|
1443
1452
|
# resp.function_arn #=> String
|
|
1444
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
|
|
1453
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
|
|
1445
1454
|
# resp.role #=> String
|
|
1446
1455
|
# resp.handler #=> String
|
|
1447
1456
|
# resp.code_size #=> Integer
|
|
@@ -2313,7 +2322,7 @@ module Aws::Lambda
|
|
|
2313
2322
|
#
|
|
2314
2323
|
# resp.configuration.function_name #=> String
|
|
2315
2324
|
# resp.configuration.function_arn #=> String
|
|
2316
|
-
# resp.configuration.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
|
|
2325
|
+
# resp.configuration.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
|
|
2317
2326
|
# resp.configuration.role #=> String
|
|
2318
2327
|
# resp.configuration.handler #=> String
|
|
2319
2328
|
# resp.configuration.code_size #=> Integer
|
|
@@ -2554,7 +2563,7 @@ module Aws::Lambda
|
|
|
2554
2563
|
#
|
|
2555
2564
|
# resp.function_name #=> String
|
|
2556
2565
|
# resp.function_arn #=> String
|
|
2557
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
|
|
2566
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
|
|
2558
2567
|
# resp.role #=> String
|
|
2559
2568
|
# resp.handler #=> String
|
|
2560
2569
|
# resp.code_size #=> Integer
|
|
@@ -2796,7 +2805,7 @@ module Aws::Lambda
|
|
|
2796
2805
|
# resp.created_date #=> Time
|
|
2797
2806
|
# resp.version #=> Integer
|
|
2798
2807
|
# resp.compatible_runtimes #=> Array
|
|
2799
|
-
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
|
|
2808
|
+
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
|
|
2800
2809
|
# resp.license_info #=> String
|
|
2801
2810
|
# resp.compatible_architectures #=> Array
|
|
2802
2811
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -2851,7 +2860,7 @@ module Aws::Lambda
|
|
|
2851
2860
|
# resp.created_date #=> Time
|
|
2852
2861
|
# resp.version #=> Integer
|
|
2853
2862
|
# resp.compatible_runtimes #=> Array
|
|
2854
|
-
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
|
|
2863
|
+
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
|
|
2855
2864
|
# resp.license_info #=> String
|
|
2856
2865
|
# resp.compatible_architectures #=> Array
|
|
2857
2866
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -3894,7 +3903,7 @@ module Aws::Lambda
|
|
|
3894
3903
|
# resp.functions #=> Array
|
|
3895
3904
|
# resp.functions[0].function_name #=> String
|
|
3896
3905
|
# resp.functions[0].function_arn #=> String
|
|
3897
|
-
# resp.functions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
|
|
3906
|
+
# resp.functions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
|
|
3898
3907
|
# resp.functions[0].role #=> String
|
|
3899
3908
|
# resp.functions[0].handler #=> String
|
|
3900
3909
|
# resp.functions[0].code_size #=> Integer
|
|
@@ -4018,6 +4027,13 @@ module Aws::Lambda
|
|
|
4018
4027
|
# @option params [String] :compatible_runtime
|
|
4019
4028
|
# A runtime identifier. For example, `go1.x`.
|
|
4020
4029
|
#
|
|
4030
|
+
# The following list includes deprecated runtimes. For more information,
|
|
4031
|
+
# see [Runtime deprecation policy][1].
|
|
4032
|
+
#
|
|
4033
|
+
#
|
|
4034
|
+
#
|
|
4035
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
|
|
4036
|
+
#
|
|
4021
4037
|
# @option params [required, String] :layer_name
|
|
4022
4038
|
# The name or Amazon Resource Name (ARN) of the layer.
|
|
4023
4039
|
#
|
|
@@ -4044,7 +4060,7 @@ module Aws::Lambda
|
|
|
4044
4060
|
# @example Request syntax with placeholder values
|
|
4045
4061
|
#
|
|
4046
4062
|
# resp = client.list_layer_versions({
|
|
4047
|
-
# compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17
|
|
4063
|
+
# compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2
|
|
4048
4064
|
# layer_name: "LayerName", # required
|
|
4049
4065
|
# marker: "String",
|
|
4050
4066
|
# max_items: 1,
|
|
@@ -4060,7 +4076,7 @@ module Aws::Lambda
|
|
|
4060
4076
|
# resp.layer_versions[0].description #=> String
|
|
4061
4077
|
# resp.layer_versions[0].created_date #=> Time
|
|
4062
4078
|
# resp.layer_versions[0].compatible_runtimes #=> Array
|
|
4063
|
-
# resp.layer_versions[0].compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
|
|
4079
|
+
# resp.layer_versions[0].compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
|
|
4064
4080
|
# resp.layer_versions[0].license_info #=> String
|
|
4065
4081
|
# resp.layer_versions[0].compatible_architectures #=> Array
|
|
4066
4082
|
# resp.layer_versions[0].compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -4089,6 +4105,13 @@ module Aws::Lambda
|
|
|
4089
4105
|
# @option params [String] :compatible_runtime
|
|
4090
4106
|
# A runtime identifier. For example, `go1.x`.
|
|
4091
4107
|
#
|
|
4108
|
+
# The following list includes deprecated runtimes. For more information,
|
|
4109
|
+
# see [Runtime deprecation policy][1].
|
|
4110
|
+
#
|
|
4111
|
+
#
|
|
4112
|
+
#
|
|
4113
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
|
|
4114
|
+
#
|
|
4092
4115
|
# @option params [String] :marker
|
|
4093
4116
|
# A pagination token returned by a previous call.
|
|
4094
4117
|
#
|
|
@@ -4112,7 +4135,7 @@ module Aws::Lambda
|
|
|
4112
4135
|
# @example Request syntax with placeholder values
|
|
4113
4136
|
#
|
|
4114
4137
|
# resp = client.list_layers({
|
|
4115
|
-
# compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17
|
|
4138
|
+
# compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2
|
|
4116
4139
|
# marker: "String",
|
|
4117
4140
|
# max_items: 1,
|
|
4118
4141
|
# compatible_architecture: "x86_64", # accepts x86_64, arm64
|
|
@@ -4129,7 +4152,7 @@ module Aws::Lambda
|
|
|
4129
4152
|
# resp.layers[0].latest_matching_version.description #=> String
|
|
4130
4153
|
# resp.layers[0].latest_matching_version.created_date #=> Time
|
|
4131
4154
|
# resp.layers[0].latest_matching_version.compatible_runtimes #=> Array
|
|
4132
|
-
# resp.layers[0].latest_matching_version.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
|
|
4155
|
+
# resp.layers[0].latest_matching_version.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
|
|
4133
4156
|
# resp.layers[0].latest_matching_version.license_info #=> String
|
|
4134
4157
|
# resp.layers[0].latest_matching_version.compatible_architectures #=> Array
|
|
4135
4158
|
# resp.layers[0].latest_matching_version.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -4291,7 +4314,7 @@ module Aws::Lambda
|
|
|
4291
4314
|
# resp.versions #=> Array
|
|
4292
4315
|
# resp.versions[0].function_name #=> String
|
|
4293
4316
|
# resp.versions[0].function_arn #=> String
|
|
4294
|
-
# resp.versions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
|
|
4317
|
+
# resp.versions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
|
|
4295
4318
|
# resp.versions[0].role #=> String
|
|
4296
4319
|
# resp.versions[0].handler #=> String
|
|
4297
4320
|
# resp.versions[0].code_size #=> Integer
|
|
@@ -4381,9 +4404,13 @@ module Aws::Lambda
|
|
|
4381
4404
|
# A list of compatible [function runtimes][1]. Used for filtering with
|
|
4382
4405
|
# ListLayers and ListLayerVersions.
|
|
4383
4406
|
#
|
|
4407
|
+
# The following list includes deprecated runtimes. For more information,
|
|
4408
|
+
# see [Runtime deprecation policy][2].
|
|
4409
|
+
#
|
|
4384
4410
|
#
|
|
4385
4411
|
#
|
|
4386
4412
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
|
|
4413
|
+
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
|
|
4387
4414
|
#
|
|
4388
4415
|
# @option params [String] :license_info
|
|
4389
4416
|
# The layer's software license. It can be any of the following:
|
|
@@ -4429,7 +4456,7 @@ module Aws::Lambda
|
|
|
4429
4456
|
# s3_object_version: "S3ObjectVersion",
|
|
4430
4457
|
# zip_file: "data",
|
|
4431
4458
|
# },
|
|
4432
|
-
# compatible_runtimes: ["nodejs"], # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17
|
|
4459
|
+
# compatible_runtimes: ["nodejs"], # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2
|
|
4433
4460
|
# license_info: "LicenseInfo",
|
|
4434
4461
|
# compatible_architectures: ["x86_64"], # accepts x86_64, arm64
|
|
4435
4462
|
# })
|
|
@@ -4447,7 +4474,7 @@ module Aws::Lambda
|
|
|
4447
4474
|
# resp.created_date #=> Time
|
|
4448
4475
|
# resp.version #=> Integer
|
|
4449
4476
|
# resp.compatible_runtimes #=> Array
|
|
4450
|
-
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
|
|
4477
|
+
# resp.compatible_runtimes[0] #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
|
|
4451
4478
|
# resp.license_info #=> String
|
|
4452
4479
|
# resp.compatible_architectures #=> Array
|
|
4453
4480
|
# resp.compatible_architectures[0] #=> String, one of "x86_64", "arm64"
|
|
@@ -4559,7 +4586,7 @@ module Aws::Lambda
|
|
|
4559
4586
|
#
|
|
4560
4587
|
# resp.function_name #=> String
|
|
4561
4588
|
# resp.function_arn #=> String
|
|
4562
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
|
|
4589
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
|
|
4563
4590
|
# resp.role #=> String
|
|
4564
4591
|
# resp.handler #=> String
|
|
4565
4592
|
# resp.code_size #=> Integer
|
|
@@ -5759,7 +5786,7 @@ module Aws::Lambda
|
|
|
5759
5786
|
#
|
|
5760
5787
|
# resp.function_name #=> String
|
|
5761
5788
|
# resp.function_arn #=> String
|
|
5762
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
|
|
5789
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
|
|
5763
5790
|
# resp.role #=> String
|
|
5764
5791
|
# resp.handler #=> String
|
|
5765
5792
|
# resp.code_size #=> Integer
|
|
@@ -5939,8 +5966,12 @@ module Aws::Lambda
|
|
|
5939
5966
|
# @option params [String] :kms_key_arn
|
|
5940
5967
|
# The ARN of the Key Management Service (KMS) customer managed key
|
|
5941
5968
|
# that's used to encrypt your function's [environment variables][1].
|
|
5942
|
-
# When [Lambda SnapStart][2] is activated, this key is
|
|
5943
|
-
# encrypt your function's snapshot. If you
|
|
5969
|
+
# When [Lambda SnapStart][2] is activated, Lambda also uses this key is
|
|
5970
|
+
# to encrypt your function's snapshot. If you deploy your function
|
|
5971
|
+
# using a container image, Lambda also uses this key to encrypt your
|
|
5972
|
+
# function when it's deployed. Note that this is not the same key
|
|
5973
|
+
# that's used to protect your container image in the Amazon Elastic
|
|
5974
|
+
# Container Registry (Amazon ECR). If you don't provide a customer
|
|
5944
5975
|
# managed key, Lambda uses a default service key.
|
|
5945
5976
|
#
|
|
5946
5977
|
#
|
|
@@ -6047,7 +6078,7 @@ module Aws::Lambda
|
|
|
6047
6078
|
# "EnvironmentVariableName" => "EnvironmentVariableValue",
|
|
6048
6079
|
# },
|
|
6049
6080
|
# },
|
|
6050
|
-
# runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17
|
|
6081
|
+
# runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, nodejs14.x, nodejs16.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, python3.9, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, dotnet6, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2, nodejs18.x, python3.10, java17, ruby3.2
|
|
6051
6082
|
# dead_letter_config: {
|
|
6052
6083
|
# target_arn: "ResourceArn",
|
|
6053
6084
|
# },
|
|
@@ -6080,7 +6111,7 @@ module Aws::Lambda
|
|
|
6080
6111
|
#
|
|
6081
6112
|
# resp.function_name #=> String
|
|
6082
6113
|
# resp.function_arn #=> String
|
|
6083
|
-
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17"
|
|
6114
|
+
# resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "nodejs16.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "python3.9", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "dotnet6", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2", "nodejs18.x", "python3.10", "java17", "ruby3.2"
|
|
6084
6115
|
# resp.role #=> String
|
|
6085
6116
|
# resp.handler #=> String
|
|
6086
6117
|
# resp.code_size #=> Integer
|
|
@@ -6362,7 +6393,7 @@ module Aws::Lambda
|
|
|
6362
6393
|
params: params,
|
|
6363
6394
|
config: config)
|
|
6364
6395
|
context[:gem_name] = 'aws-sdk-lambda'
|
|
6365
|
-
context[:gem_version] = '1.
|
|
6396
|
+
context[:gem_version] = '1.98.0'
|
|
6366
6397
|
Seahorse::Client::Request.new(handlers, context)
|
|
6367
6398
|
end
|
|
6368
6399
|
|
data/lib/aws-sdk-lambda/types.rb
CHANGED
|
@@ -979,8 +979,12 @@ module Aws::Lambda
|
|
|
979
979
|
# @!attribute [rw] kms_key_arn
|
|
980
980
|
# The ARN of the Key Management Service (KMS) customer managed key
|
|
981
981
|
# that's used to encrypt your function's [environment variables][1].
|
|
982
|
-
# When [Lambda SnapStart][2] is activated,
|
|
983
|
-
# encrypt your function's snapshot. If you
|
|
982
|
+
# When [Lambda SnapStart][2] is activated, Lambda also uses this key
|
|
983
|
+
# is to encrypt your function's snapshot. If you deploy your function
|
|
984
|
+
# using a container image, Lambda also uses this key to encrypt your
|
|
985
|
+
# function when it's deployed. Note that this is not the same key
|
|
986
|
+
# that's used to protect your container image in the Amazon Elastic
|
|
987
|
+
# Container Registry (Amazon ECR). If you don't provide a customer
|
|
984
988
|
# managed key, Lambda uses a default service key.
|
|
985
989
|
#
|
|
986
990
|
#
|
|
@@ -1892,7 +1896,9 @@ module Aws::Lambda
|
|
|
1892
1896
|
# to infinite. When the value is set to infinite, Lambda never
|
|
1893
1897
|
# discards old records.
|
|
1894
1898
|
#
|
|
1895
|
-
# <note markdown="1"> The minimum value
|
|
1899
|
+
# <note markdown="1"> The minimum valid value for maximum record age is 60s. Although
|
|
1900
|
+
# values less than 60 and greater than -1 fall within the parameter's
|
|
1901
|
+
# absolute range, they are not allowed
|
|
1896
1902
|
#
|
|
1897
1903
|
# </note>
|
|
1898
1904
|
# @return [Integer]
|
|
@@ -2988,6 +2994,13 @@ module Aws::Lambda
|
|
|
2988
2994
|
#
|
|
2989
2995
|
# @!attribute [rw] compatible_runtimes
|
|
2990
2996
|
# The layer's compatible runtimes.
|
|
2997
|
+
#
|
|
2998
|
+
# The following list includes deprecated runtimes. For more
|
|
2999
|
+
# information, see [Runtime deprecation policy][1].
|
|
3000
|
+
#
|
|
3001
|
+
#
|
|
3002
|
+
#
|
|
3003
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
|
|
2991
3004
|
# @return [Array<String>]
|
|
2992
3005
|
#
|
|
2993
3006
|
# @!attribute [rw] license_info
|
|
@@ -3886,6 +3899,13 @@ module Aws::Lambda
|
|
|
3886
3899
|
#
|
|
3887
3900
|
# @!attribute [rw] compatible_runtimes
|
|
3888
3901
|
# The layer's compatible runtimes.
|
|
3902
|
+
#
|
|
3903
|
+
# The following list includes deprecated runtimes. For more
|
|
3904
|
+
# information, see [Runtime deprecation policy][1].
|
|
3905
|
+
#
|
|
3906
|
+
#
|
|
3907
|
+
#
|
|
3908
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
|
|
3889
3909
|
# @return [Array<String>]
|
|
3890
3910
|
#
|
|
3891
3911
|
# @!attribute [rw] license_info
|
|
@@ -4314,6 +4334,13 @@ module Aws::Lambda
|
|
|
4314
4334
|
|
|
4315
4335
|
# @!attribute [rw] compatible_runtime
|
|
4316
4336
|
# A runtime identifier. For example, `go1.x`.
|
|
4337
|
+
#
|
|
4338
|
+
# The following list includes deprecated runtimes. For more
|
|
4339
|
+
# information, see [Runtime deprecation policy][1].
|
|
4340
|
+
#
|
|
4341
|
+
#
|
|
4342
|
+
#
|
|
4343
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
|
|
4317
4344
|
# @return [String]
|
|
4318
4345
|
#
|
|
4319
4346
|
# @!attribute [rw] layer_name
|
|
@@ -4368,6 +4395,13 @@ module Aws::Lambda
|
|
|
4368
4395
|
|
|
4369
4396
|
# @!attribute [rw] compatible_runtime
|
|
4370
4397
|
# A runtime identifier. For example, `go1.x`.
|
|
4398
|
+
#
|
|
4399
|
+
# The following list includes deprecated runtimes. For more
|
|
4400
|
+
# information, see [Runtime deprecation policy][1].
|
|
4401
|
+
#
|
|
4402
|
+
#
|
|
4403
|
+
#
|
|
4404
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
|
|
4371
4405
|
# @return [String]
|
|
4372
4406
|
#
|
|
4373
4407
|
# @!attribute [rw] marker
|
|
@@ -4704,9 +4738,13 @@ module Aws::Lambda
|
|
|
4704
4738
|
# A list of compatible [function runtimes][1]. Used for filtering with
|
|
4705
4739
|
# ListLayers and ListLayerVersions.
|
|
4706
4740
|
#
|
|
4741
|
+
# The following list includes deprecated runtimes. For more
|
|
4742
|
+
# information, see [Runtime deprecation policy][2].
|
|
4743
|
+
#
|
|
4707
4744
|
#
|
|
4708
4745
|
#
|
|
4709
4746
|
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
|
|
4747
|
+
# [2]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
|
|
4710
4748
|
# @return [Array<String>]
|
|
4711
4749
|
#
|
|
4712
4750
|
# @!attribute [rw] license_info
|
|
@@ -4776,6 +4814,13 @@ module Aws::Lambda
|
|
|
4776
4814
|
#
|
|
4777
4815
|
# @!attribute [rw] compatible_runtimes
|
|
4778
4816
|
# The layer's compatible runtimes.
|
|
4817
|
+
#
|
|
4818
|
+
# The following list includes deprecated runtimes. For more
|
|
4819
|
+
# information, see [Runtime deprecation policy][1].
|
|
4820
|
+
#
|
|
4821
|
+
#
|
|
4822
|
+
#
|
|
4823
|
+
# [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
|
|
4779
4824
|
# @return [Array<String>]
|
|
4780
4825
|
#
|
|
4781
4826
|
# @!attribute [rw] license_info
|
|
@@ -6214,8 +6259,12 @@ module Aws::Lambda
|
|
|
6214
6259
|
# @!attribute [rw] kms_key_arn
|
|
6215
6260
|
# The ARN of the Key Management Service (KMS) customer managed key
|
|
6216
6261
|
# that's used to encrypt your function's [environment variables][1].
|
|
6217
|
-
# When [Lambda SnapStart][2] is activated,
|
|
6218
|
-
# encrypt your function's snapshot. If you
|
|
6262
|
+
# When [Lambda SnapStart][2] is activated, Lambda also uses this key
|
|
6263
|
+
# is to encrypt your function's snapshot. If you deploy your function
|
|
6264
|
+
# using a container image, Lambda also uses this key to encrypt your
|
|
6265
|
+
# function when it's deployed. Note that this is not the same key
|
|
6266
|
+
# that's used to protect your container image in the Amazon Elastic
|
|
6267
|
+
# Container Registry (Amazon ECR). If you don't provide a customer
|
|
6219
6268
|
# managed key, Lambda uses a default service key.
|
|
6220
6269
|
#
|
|
6221
6270
|
#
|
data/lib/aws-sdk-lambda.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-lambda
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.98.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: 2023-
|
|
11
|
+
date: 2023-06-05 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.174.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.174.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|