aws-sdk-lambda 1.0.0.rc8 → 1.0.0.rc9
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/lib/aws-sdk-lambda.rb +1 -1
- data/lib/aws-sdk-lambda/client.rb +17 -7
- data/lib/aws-sdk-lambda/client_api.rb +4 -0
- data/lib/aws-sdk-lambda/types.rb +25 -8
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a21dcf9c2958c60121611820ba8df27646a36e7
|
4
|
+
data.tar.gz: cbe66a3018b14f56d67e988917ee74efc94aca0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5c8f2aecfec3fcca8ef63ddb2a5905b87fb8de75afcdf43a5c2df611b1107a275c12b638aa7bb0b9c9933a70274a248e976689e23ae88a6341149ac12abefd6
|
7
|
+
data.tar.gz: 39fdf1ba131b6461ad0847062c3723ed79b9fbca1716632598fe01fc00c628b6905f4d2110988f1d635dc8b49024eab827f61059b9bce0ab24234ad249b32a50
|
data/lib/aws-sdk-lambda.rb
CHANGED
@@ -499,10 +499,14 @@ module Aws::Lambda
|
|
499
499
|
# Node.js runtime v6.10, set the value to "nodejs6.10". To use the
|
500
500
|
# Node.js runtime v4.3, set the value to "nodejs4.3".
|
501
501
|
#
|
502
|
-
# <note markdown="1">
|
503
|
-
#
|
504
|
-
#
|
505
|
-
#
|
502
|
+
# <note markdown="1"> Node v0.10.42 is currently marked as deprecated. You must migrate
|
503
|
+
# existing functions to the newer Node.js runtime versions available on
|
504
|
+
# AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. You can
|
505
|
+
# request a one-time extension until June 30, 2017 by going to the
|
506
|
+
# Lambda console and following the instructions provided. Failure to do
|
507
|
+
# so will result in an invalid parmaeter error being returned. Note that
|
508
|
+
# you will have to follow this procedure for each region that contains
|
509
|
+
# functions written in the Node v0.10.42 runtime.
|
506
510
|
#
|
507
511
|
# </note>
|
508
512
|
#
|
@@ -2265,8 +2269,14 @@ module Aws::Lambda
|
|
2265
2269
|
# Python runtime v3.6, set the value to "python3.6". To use the Python
|
2266
2270
|
# runtime v2.7, set the value to "python2.7".
|
2267
2271
|
#
|
2268
|
-
# <note markdown="1">
|
2269
|
-
#
|
2272
|
+
# <note markdown="1"> Node v0.10.42 is currently marked as deprecated. You must migrate
|
2273
|
+
# existing functions to the newer Node.js runtime versions available on
|
2274
|
+
# AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. You can
|
2275
|
+
# request a one-time extension until June 30, 2017 by going to the
|
2276
|
+
# Lambda console and following the instructions provided. Failure to do
|
2277
|
+
# so will result in an invalid parameter value error being returned.
|
2278
|
+
# Note that you will have to follow this procedure for each region that
|
2279
|
+
# contains functions written in the Node v0.10.42 runtime.
|
2270
2280
|
#
|
2271
2281
|
# </note>
|
2272
2282
|
#
|
@@ -2380,7 +2390,7 @@ module Aws::Lambda
|
|
2380
2390
|
params: params,
|
2381
2391
|
config: config)
|
2382
2392
|
context[:gem_name] = 'aws-sdk-lambda'
|
2383
|
-
context[:gem_version] = '1.0.0.
|
2393
|
+
context[:gem_version] = '1.0.0.rc9'
|
2384
2394
|
Seahorse::Client::Request.new(handlers, context)
|
2385
2395
|
end
|
2386
2396
|
|
@@ -69,6 +69,7 @@ module Aws::Lambda
|
|
69
69
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
70
70
|
InvalidParameterValueException = Shapes::StructureShape.new(name: 'InvalidParameterValueException')
|
71
71
|
InvalidRequestContentException = Shapes::StructureShape.new(name: 'InvalidRequestContentException')
|
72
|
+
InvalidRuntimeException = Shapes::StructureShape.new(name: 'InvalidRuntimeException')
|
72
73
|
InvalidSecurityGroupIDException = Shapes::StructureShape.new(name: 'InvalidSecurityGroupIDException')
|
73
74
|
InvalidSubnetIDException = Shapes::StructureShape.new(name: 'InvalidSubnetIDException')
|
74
75
|
InvalidZipFileException = Shapes::StructureShape.new(name: 'InvalidZipFileException')
|
@@ -654,6 +655,7 @@ module Aws::Lambda
|
|
654
655
|
o.errors << Shapes::ShapeRef.new(shape: KMSInvalidStateException)
|
655
656
|
o.errors << Shapes::ShapeRef.new(shape: KMSAccessDeniedException)
|
656
657
|
o.errors << Shapes::ShapeRef.new(shape: KMSNotFoundException)
|
658
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRuntimeException)
|
657
659
|
end)
|
658
660
|
|
659
661
|
api.add_operation(:invoke_async, Seahorse::Model::Operation.new.tap do |o|
|
@@ -666,6 +668,7 @@ module Aws::Lambda
|
|
666
668
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
667
669
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
668
670
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestContentException)
|
671
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRuntimeException)
|
669
672
|
end)
|
670
673
|
|
671
674
|
api.add_operation(:list_aliases, Seahorse::Model::Operation.new.tap do |o|
|
@@ -835,6 +838,7 @@ module Aws::Lambda
|
|
835
838
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
836
839
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
837
840
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
841
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
|
838
842
|
end)
|
839
843
|
end
|
840
844
|
|
data/lib/aws-sdk-lambda/types.rb
CHANGED
@@ -413,10 +413,14 @@ module Aws::Lambda
|
|
413
413
|
# the Node.js runtime v6.10, set the value to "nodejs6.10". To use
|
414
414
|
# the Node.js runtime v4.3, set the value to "nodejs4.3".
|
415
415
|
#
|
416
|
-
# <note markdown="1">
|
417
|
-
#
|
418
|
-
#
|
419
|
-
#
|
416
|
+
# <note markdown="1"> Node v0.10.42 is currently marked as deprecated. You must migrate
|
417
|
+
# existing functions to the newer Node.js runtime versions available
|
418
|
+
# on AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. You can
|
419
|
+
# request a one-time extension until June 30, 2017 by going to the
|
420
|
+
# Lambda console and following the instructions provided. Failure to
|
421
|
+
# do so will result in an invalid parmaeter error being returned. Note
|
422
|
+
# that you will have to follow this procedure for each region that
|
423
|
+
# contains functions written in the Node v0.10.42 runtime.
|
420
424
|
#
|
421
425
|
# </note>
|
422
426
|
# @return [String]
|
@@ -883,7 +887,14 @@ module Aws::Lambda
|
|
883
887
|
# @return [Integer]
|
884
888
|
#
|
885
889
|
# @!attribute [rw] last_modified
|
886
|
-
# The time stamp of the last time you updated the function.
|
890
|
+
# The time stamp of the last time you updated the function. The time
|
891
|
+
# stamp is conveyed as a string complying with ISO-8601 in this way
|
892
|
+
# YYYY-MM-DDThh:mm:ssTZD (e.g., 1997-07-16T19:20:30+01:00). For more
|
893
|
+
# information, see [Date and Time Formats][1].
|
894
|
+
#
|
895
|
+
#
|
896
|
+
#
|
897
|
+
# [1]: https://www.w3.org/TR/NOTE-datetime
|
887
898
|
# @return [Time]
|
888
899
|
#
|
889
900
|
# @!attribute [rw] code_sha_256
|
@@ -1259,7 +1270,7 @@ module Aws::Lambda
|
|
1259
1270
|
#
|
1260
1271
|
# @!attribute [rw] status_code
|
1261
1272
|
# The HTTP status code will be in the 200 range for successful
|
1262
|
-
# request. For the `
|
1273
|
+
# request. For the `RequestResponse` invocation type this status code
|
1263
1274
|
# will be 200. For the `Event` invocation type this status code will
|
1264
1275
|
# be 202. For the `DryRun` invocation type the status code will be
|
1265
1276
|
# 204.
|
@@ -2055,8 +2066,14 @@ module Aws::Lambda
|
|
2055
2066
|
# Python runtime v3.6, set the value to "python3.6". To use the
|
2056
2067
|
# Python runtime v2.7, set the value to "python2.7".
|
2057
2068
|
#
|
2058
|
-
# <note markdown="1">
|
2059
|
-
#
|
2069
|
+
# <note markdown="1"> Node v0.10.42 is currently marked as deprecated. You must migrate
|
2070
|
+
# existing functions to the newer Node.js runtime versions available
|
2071
|
+
# on AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. You can
|
2072
|
+
# request a one-time extension until June 30, 2017 by going to the
|
2073
|
+
# Lambda console and following the instructions provided. Failure to
|
2074
|
+
# do so will result in an invalid parameter value error being
|
2075
|
+
# returned. Note that you will have to follow this procedure for each
|
2076
|
+
# region that contains functions written in the Node v0.10.42 runtime.
|
2060
2077
|
#
|
2061
2078
|
# </note>
|
2062
2079
|
# @return [String]
|
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.0.0.
|
4
|
+
version: 1.0.0.rc9
|
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: 2017-
|
11
|
+
date: 2017-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.0.0.
|
19
|
+
version: 3.0.0.rc13
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.0.0.
|
26
|
+
version: 3.0.0.rc13
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: aws-sigv4
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|