aws-sdk-lambda 1.7.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5f1ff0773638019966bd7b49189e2f618cde61a1
4
- data.tar.gz: 2ff2eee9902f16d117d803243d67eb109f56fc18
3
+ metadata.gz: 17d30e1752a969753a068148bfc74d2afe934ed0
4
+ data.tar.gz: 4379ae1f51dad38fc3d6fa10e5fa0318622ae6ce
5
5
  SHA512:
6
- metadata.gz: 89206f987f4228f96540f77afe2d8e85442ff03618db037b7027c42c5e8a3565a37da1fcec80f535d0525fad9fdcb51dd3bbc16d859b4109363a95f8c5d9c947
7
- data.tar.gz: 77a59c3430a9ca5a56ae7b36a261738e6b27d054aac179b812397c7ddec0d632bc30838f2b9d66b5e7a47a4bf11af61efcde7b7da0fa50ad0f4e74be6ec3a134
6
+ metadata.gz: faba79551b6770ba60496d65ebb882d556b668a990efaae76591314707534d71b3cd16df785d06983e2dd55657d7e80c038ddf7857ab03b7a1f15527680abe70
7
+ data.tar.gz: 0c3b8291a6d927c175e7a255989c492c57f8c94196ce0edbd516a221a125e9d491c90ce2100be497d999707e8533ce281871989becca60602507345f2325cb73
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-lambda/customizations'
42
42
  # @service
43
43
  module Aws::Lambda
44
44
 
45
- GEM_VERSION = '1.7.0'
45
+ GEM_VERSION = '1.8.0'
46
46
 
47
47
  end
@@ -708,7 +708,7 @@ module Aws::Lambda
708
708
  #
709
709
  # resp = client.create_function({
710
710
  # function_name: "FunctionName", # required
711
- # runtime: "nodejs", # required, accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, java8, python2.7, python3.6, dotnetcore1.0, dotnetcore2.0, nodejs4.3-edge, go1.x
711
+ # runtime: "nodejs", # required, accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, java8, python2.7, python3.6, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, nodejs4.3-edge, go1.x
712
712
  # role: "RoleArn", # required
713
713
  # handler: "Handler", # required
714
714
  # code: { # required
@@ -746,7 +746,7 @@ module Aws::Lambda
746
746
  #
747
747
  # resp.function_name #=> String
748
748
  # resp.function_arn #=> String
749
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "nodejs4.3-edge", "go1.x"
749
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "nodejs4.3-edge", "go1.x"
750
750
  # resp.role #=> String
751
751
  # resp.handler #=> String
752
752
  # resp.code_size #=> Integer
@@ -1288,7 +1288,7 @@ module Aws::Lambda
1288
1288
  #
1289
1289
  # resp.configuration.function_name #=> String
1290
1290
  # resp.configuration.function_arn #=> String
1291
- # resp.configuration.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "nodejs4.3-edge", "go1.x"
1291
+ # resp.configuration.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "nodejs4.3-edge", "go1.x"
1292
1292
  # resp.configuration.role #=> String
1293
1293
  # resp.configuration.handler #=> String
1294
1294
  # resp.configuration.code_size #=> Integer
@@ -1436,7 +1436,7 @@ module Aws::Lambda
1436
1436
  #
1437
1437
  # resp.function_name #=> String
1438
1438
  # resp.function_arn #=> String
1439
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "nodejs4.3-edge", "go1.x"
1439
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "nodejs4.3-edge", "go1.x"
1440
1440
  # resp.role #=> String
1441
1441
  # resp.handler #=> String
1442
1442
  # resp.code_size #=> Integer
@@ -1999,7 +1999,7 @@ module Aws::Lambda
1999
1999
  # resp.functions #=> Array
2000
2000
  # resp.functions[0].function_name #=> String
2001
2001
  # resp.functions[0].function_arn #=> String
2002
- # resp.functions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "nodejs4.3-edge", "go1.x"
2002
+ # resp.functions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "nodejs4.3-edge", "go1.x"
2003
2003
  # resp.functions[0].role #=> String
2004
2004
  # resp.functions[0].handler #=> String
2005
2005
  # resp.functions[0].code_size #=> Integer
@@ -2139,7 +2139,7 @@ module Aws::Lambda
2139
2139
  # resp.versions #=> Array
2140
2140
  # resp.versions[0].function_name #=> String
2141
2141
  # resp.versions[0].function_arn #=> String
2142
- # resp.versions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "nodejs4.3-edge", "go1.x"
2142
+ # resp.versions[0].runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "nodejs4.3-edge", "go1.x"
2143
2143
  # resp.versions[0].role #=> String
2144
2144
  # resp.versions[0].handler #=> String
2145
2145
  # resp.versions[0].code_size #=> Integer
@@ -2277,7 +2277,7 @@ module Aws::Lambda
2277
2277
  #
2278
2278
  # resp.function_name #=> String
2279
2279
  # resp.function_arn #=> String
2280
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "nodejs4.3-edge", "go1.x"
2280
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "nodejs4.3-edge", "go1.x"
2281
2281
  # resp.role #=> String
2282
2282
  # resp.handler #=> String
2283
2283
  # resp.code_size #=> Integer
@@ -2885,7 +2885,7 @@ module Aws::Lambda
2885
2885
  #
2886
2886
  # resp.function_name #=> String
2887
2887
  # resp.function_arn #=> String
2888
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "nodejs4.3-edge", "go1.x"
2888
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "nodejs4.3-edge", "go1.x"
2889
2889
  # resp.role #=> String
2890
2890
  # resp.handler #=> String
2891
2891
  # resp.code_size #=> Integer
@@ -3099,7 +3099,7 @@ module Aws::Lambda
3099
3099
  # "EnvironmentVariableName" => "EnvironmentVariableValue",
3100
3100
  # },
3101
3101
  # },
3102
- # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, java8, python2.7, python3.6, dotnetcore1.0, dotnetcore2.0, nodejs4.3-edge, go1.x
3102
+ # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, java8, python2.7, python3.6, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, nodejs4.3-edge, go1.x
3103
3103
  # dead_letter_config: {
3104
3104
  # target_arn: "ResourceArn",
3105
3105
  # },
@@ -3114,7 +3114,7 @@ module Aws::Lambda
3114
3114
  #
3115
3115
  # resp.function_name #=> String
3116
3116
  # resp.function_arn #=> String
3117
- # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "nodejs4.3-edge", "go1.x"
3117
+ # resp.runtime #=> String, one of "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "java8", "python2.7", "python3.6", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "nodejs4.3-edge", "go1.x"
3118
3118
  # resp.role #=> String
3119
3119
  # resp.handler #=> String
3120
3120
  # resp.code_size #=> Integer
@@ -3161,7 +3161,7 @@ module Aws::Lambda
3161
3161
  params: params,
3162
3162
  config: config)
3163
3163
  context[:gem_name] = 'aws-sdk-lambda'
3164
- context[:gem_version] = '1.7.0'
3164
+ context[:gem_version] = '1.8.0'
3165
3165
  Seahorse::Client::Request.new(handlers, context)
3166
3166
  end
3167
3167
 
@@ -448,7 +448,7 @@ module Aws::Lambda
448
448
  #
449
449
  # {
450
450
  # function_name: "FunctionName", # required
451
- # runtime: "nodejs", # required, accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, java8, python2.7, python3.6, dotnetcore1.0, dotnetcore2.0, nodejs4.3-edge, go1.x
451
+ # runtime: "nodejs", # required, accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, java8, python2.7, python3.6, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, nodejs4.3-edge, go1.x
452
452
  # role: "RoleArn", # required
453
453
  # handler: "Handler", # required
454
454
  # code: { # required
@@ -2283,7 +2283,7 @@ module Aws::Lambda
2283
2283
  # "EnvironmentVariableName" => "EnvironmentVariableValue",
2284
2284
  # },
2285
2285
  # },
2286
- # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, java8, python2.7, python3.6, dotnetcore1.0, dotnetcore2.0, nodejs4.3-edge, go1.x
2286
+ # runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, java8, python2.7, python3.6, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, nodejs4.3-edge, go1.x
2287
2287
  # dead_letter_config: {
2288
2288
  # target_arn: "ResourceArn",
2289
2289
  # },
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.7.0
4
+ version: 1.8.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: 2018-06-28 00:00:00.000000000 Z
11
+ date: 2018-07-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core