aws-sdk-lambda 1.105.0 → 1.106.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +11 -1
- data/lib/aws-sdk-lambda/client_api.rb +3 -0
- data/lib/aws-sdk-lambda/types.rb +14 -2
- 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: f79996b9d10e8985c5daad16fe02e43bc86e4f3aea5a389e0d84991d40bb5696
|
|
4
|
+
data.tar.gz: fbf8d8ea1f0ce2dec8225dd96aa2b8dc0534ecad1d2d5f83d06b05dc661241a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c58d55cde6bfc19d4307d9d02c7f55a95fe3bb7de39f8f9c654d31dceb2f880eeaf6063fd0756e240c7b83b6ae36b0209329f296f35cff4ccad402275ae61d4
|
|
7
|
+
data.tar.gz: 3c9fb7061d689f233f8c1feb6f9af18eea3dc601fc49b574d52c07c155866e485de595421b1c6ceb7fb667e0af59f53779013ce2062d23bf5611a23e2291b3f9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.106.0 (2023-10-12)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for Lambda functions to access Dual-Stack subnets over IPv6, via an opt-in flag in CreateFunction and UpdateFunctionConfiguration APIs
|
|
8
|
+
|
|
4
9
|
1.105.0 (2023-09-27)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.106.0
|
|
@@ -1422,6 +1422,7 @@ module Aws::Lambda
|
|
|
1422
1422
|
# vpc_config: {
|
|
1423
1423
|
# subnet_ids: ["SubnetId"],
|
|
1424
1424
|
# security_group_ids: ["SecurityGroupId"],
|
|
1425
|
+
# ipv_6_allowed_for_dual_stack: false,
|
|
1425
1426
|
# },
|
|
1426
1427
|
# package_type: "Zip", # accepts Zip, Image
|
|
1427
1428
|
# dead_letter_config: {
|
|
@@ -1480,6 +1481,7 @@ module Aws::Lambda
|
|
|
1480
1481
|
# resp.vpc_config.security_group_ids #=> Array
|
|
1481
1482
|
# resp.vpc_config.security_group_ids[0] #=> String
|
|
1482
1483
|
# resp.vpc_config.vpc_id #=> String
|
|
1484
|
+
# resp.vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
|
|
1483
1485
|
# resp.dead_letter_config.target_arn #=> String
|
|
1484
1486
|
# resp.environment.variables #=> Hash
|
|
1485
1487
|
# resp.environment.variables["EnvironmentVariableName"] #=> String
|
|
@@ -2353,6 +2355,7 @@ module Aws::Lambda
|
|
|
2353
2355
|
# resp.configuration.vpc_config.security_group_ids #=> Array
|
|
2354
2356
|
# resp.configuration.vpc_config.security_group_ids[0] #=> String
|
|
2355
2357
|
# resp.configuration.vpc_config.vpc_id #=> String
|
|
2358
|
+
# resp.configuration.vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
|
|
2356
2359
|
# resp.configuration.dead_letter_config.target_arn #=> String
|
|
2357
2360
|
# resp.configuration.environment.variables #=> Hash
|
|
2358
2361
|
# resp.configuration.environment.variables["EnvironmentVariableName"] #=> String
|
|
@@ -2594,6 +2597,7 @@ module Aws::Lambda
|
|
|
2594
2597
|
# resp.vpc_config.security_group_ids #=> Array
|
|
2595
2598
|
# resp.vpc_config.security_group_ids[0] #=> String
|
|
2596
2599
|
# resp.vpc_config.vpc_id #=> String
|
|
2600
|
+
# resp.vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
|
|
2597
2601
|
# resp.dead_letter_config.target_arn #=> String
|
|
2598
2602
|
# resp.environment.variables #=> Hash
|
|
2599
2603
|
# resp.environment.variables["EnvironmentVariableName"] #=> String
|
|
@@ -3934,6 +3938,7 @@ module Aws::Lambda
|
|
|
3934
3938
|
# resp.functions[0].vpc_config.security_group_ids #=> Array
|
|
3935
3939
|
# resp.functions[0].vpc_config.security_group_ids[0] #=> String
|
|
3936
3940
|
# resp.functions[0].vpc_config.vpc_id #=> String
|
|
3941
|
+
# resp.functions[0].vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
|
|
3937
3942
|
# resp.functions[0].dead_letter_config.target_arn #=> String
|
|
3938
3943
|
# resp.functions[0].environment.variables #=> Hash
|
|
3939
3944
|
# resp.functions[0].environment.variables["EnvironmentVariableName"] #=> String
|
|
@@ -4345,6 +4350,7 @@ module Aws::Lambda
|
|
|
4345
4350
|
# resp.versions[0].vpc_config.security_group_ids #=> Array
|
|
4346
4351
|
# resp.versions[0].vpc_config.security_group_ids[0] #=> String
|
|
4347
4352
|
# resp.versions[0].vpc_config.vpc_id #=> String
|
|
4353
|
+
# resp.versions[0].vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
|
|
4348
4354
|
# resp.versions[0].dead_letter_config.target_arn #=> String
|
|
4349
4355
|
# resp.versions[0].environment.variables #=> Hash
|
|
4350
4356
|
# resp.versions[0].environment.variables["EnvironmentVariableName"] #=> String
|
|
@@ -4617,6 +4623,7 @@ module Aws::Lambda
|
|
|
4617
4623
|
# resp.vpc_config.security_group_ids #=> Array
|
|
4618
4624
|
# resp.vpc_config.security_group_ids[0] #=> String
|
|
4619
4625
|
# resp.vpc_config.vpc_id #=> String
|
|
4626
|
+
# resp.vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
|
|
4620
4627
|
# resp.dead_letter_config.target_arn #=> String
|
|
4621
4628
|
# resp.environment.variables #=> Hash
|
|
4622
4629
|
# resp.environment.variables["EnvironmentVariableName"] #=> String
|
|
@@ -5817,6 +5824,7 @@ module Aws::Lambda
|
|
|
5817
5824
|
# resp.vpc_config.security_group_ids #=> Array
|
|
5818
5825
|
# resp.vpc_config.security_group_ids[0] #=> String
|
|
5819
5826
|
# resp.vpc_config.vpc_id #=> String
|
|
5827
|
+
# resp.vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
|
|
5820
5828
|
# resp.dead_letter_config.target_arn #=> String
|
|
5821
5829
|
# resp.environment.variables #=> Hash
|
|
5822
5830
|
# resp.environment.variables["EnvironmentVariableName"] #=> String
|
|
@@ -6088,6 +6096,7 @@ module Aws::Lambda
|
|
|
6088
6096
|
# vpc_config: {
|
|
6089
6097
|
# subnet_ids: ["SubnetId"],
|
|
6090
6098
|
# security_group_ids: ["SecurityGroupId"],
|
|
6099
|
+
# ipv_6_allowed_for_dual_stack: false,
|
|
6091
6100
|
# },
|
|
6092
6101
|
# environment: {
|
|
6093
6102
|
# variables: {
|
|
@@ -6142,6 +6151,7 @@ module Aws::Lambda
|
|
|
6142
6151
|
# resp.vpc_config.security_group_ids #=> Array
|
|
6143
6152
|
# resp.vpc_config.security_group_ids[0] #=> String
|
|
6144
6153
|
# resp.vpc_config.vpc_id #=> String
|
|
6154
|
+
# resp.vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
|
|
6145
6155
|
# resp.dead_letter_config.target_arn #=> String
|
|
6146
6156
|
# resp.environment.variables #=> Hash
|
|
6147
6157
|
# resp.environment.variables["EnvironmentVariableName"] #=> String
|
|
@@ -6409,7 +6419,7 @@ module Aws::Lambda
|
|
|
6409
6419
|
params: params,
|
|
6410
6420
|
config: config)
|
|
6411
6421
|
context[:gem_name] = 'aws-sdk-lambda'
|
|
6412
|
-
context[:gem_version] = '1.
|
|
6422
|
+
context[:gem_version] = '1.106.0'
|
|
6413
6423
|
Seahorse::Client::Request.new(handlers, context)
|
|
6414
6424
|
end
|
|
6415
6425
|
|
|
@@ -250,6 +250,7 @@ module Aws::Lambda
|
|
|
250
250
|
NamespacedFunctionName = Shapes::StringShape.new(name: 'NamespacedFunctionName')
|
|
251
251
|
NamespacedStatementId = Shapes::StringShape.new(name: 'NamespacedStatementId')
|
|
252
252
|
NonNegativeInteger = Shapes::IntegerShape.new(name: 'NonNegativeInteger')
|
|
253
|
+
NullableBoolean = Shapes::BooleanShape.new(name: 'NullableBoolean')
|
|
253
254
|
OnFailure = Shapes::StructureShape.new(name: 'OnFailure')
|
|
254
255
|
OnSuccess = Shapes::StructureShape.new(name: 'OnSuccess')
|
|
255
256
|
OrganizationId = Shapes::StringShape.new(name: 'OrganizationId')
|
|
@@ -1479,11 +1480,13 @@ module Aws::Lambda
|
|
|
1479
1480
|
|
|
1480
1481
|
VpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
|
|
1481
1482
|
VpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
|
|
1483
|
+
VpcConfig.add_member(:ipv_6_allowed_for_dual_stack, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "Ipv6AllowedForDualStack"))
|
|
1482
1484
|
VpcConfig.struct_class = Types::VpcConfig
|
|
1483
1485
|
|
|
1484
1486
|
VpcConfigResponse.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
|
|
1485
1487
|
VpcConfigResponse.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
|
|
1486
1488
|
VpcConfigResponse.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
|
|
1489
|
+
VpcConfigResponse.add_member(:ipv_6_allowed_for_dual_stack, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "Ipv6AllowedForDualStack"))
|
|
1487
1490
|
VpcConfigResponse.struct_class = Types::VpcConfigResponse
|
|
1488
1491
|
|
|
1489
1492
|
|
data/lib/aws-sdk-lambda/types.rb
CHANGED
|
@@ -6595,11 +6595,17 @@ module Aws::Lambda
|
|
|
6595
6595
|
# A list of VPC security group IDs.
|
|
6596
6596
|
# @return [Array<String>]
|
|
6597
6597
|
#
|
|
6598
|
+
# @!attribute [rw] ipv_6_allowed_for_dual_stack
|
|
6599
|
+
# Allows outbound IPv6 traffic on VPC functions that are connected to
|
|
6600
|
+
# dual-stack subnets.
|
|
6601
|
+
# @return [Boolean]
|
|
6602
|
+
#
|
|
6598
6603
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/VpcConfig AWS API Documentation
|
|
6599
6604
|
#
|
|
6600
6605
|
class VpcConfig < Struct.new(
|
|
6601
6606
|
:subnet_ids,
|
|
6602
|
-
:security_group_ids
|
|
6607
|
+
:security_group_ids,
|
|
6608
|
+
:ipv_6_allowed_for_dual_stack)
|
|
6603
6609
|
SENSITIVE = []
|
|
6604
6610
|
include Aws::Structure
|
|
6605
6611
|
end
|
|
@@ -6619,12 +6625,18 @@ module Aws::Lambda
|
|
|
6619
6625
|
# The ID of the VPC.
|
|
6620
6626
|
# @return [String]
|
|
6621
6627
|
#
|
|
6628
|
+
# @!attribute [rw] ipv_6_allowed_for_dual_stack
|
|
6629
|
+
# Allows outbound IPv6 traffic on VPC functions that are connected to
|
|
6630
|
+
# dual-stack subnets.
|
|
6631
|
+
# @return [Boolean]
|
|
6632
|
+
#
|
|
6622
6633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/VpcConfigResponse AWS API Documentation
|
|
6623
6634
|
#
|
|
6624
6635
|
class VpcConfigResponse < Struct.new(
|
|
6625
6636
|
:subnet_ids,
|
|
6626
6637
|
:security_group_ids,
|
|
6627
|
-
:vpc_id
|
|
6638
|
+
:vpc_id,
|
|
6639
|
+
:ipv_6_allowed_for_dual_stack)
|
|
6628
6640
|
SENSITIVE = []
|
|
6629
6641
|
include Aws::Structure
|
|
6630
6642
|
end
|
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.106.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-10-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|