aws-sdk-greengrass 1.49.0 → 1.50.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
  SHA256:
3
- metadata.gz: 62d39f080aabbd513f9ef9925cea2f9f002b43ff1f61a1a680c7ced5c2ba9313
4
- data.tar.gz: 6b459c278fb1a27ef88567d48d7550c69fbb9ca5e22cbb3b80f9adb9733cdb4a
3
+ metadata.gz: 076d976a20618bafacd3b033ab5a04a93c5e42782e0d8dafe6d62b930ea3f8a4
4
+ data.tar.gz: 8f387d23bda4d470e682ebeae4a2ca250120577a88490a9eea9a60bc5ec4e624
5
5
  SHA512:
6
- metadata.gz: da1a820d6082cbfe2abb25b9bebb0f5ea615ac6abe1d91b1288336d23c8a3c71d94361e4e93035c3d0e3db677bef7d131d41ab2d6d396bf5c384499699be2e86
7
- data.tar.gz: 07b6cf458ba59d5d202ea7b81ee636f7008f90901a36825659b58ec9f9bf63cc393c41656c5e9802a8e84920e30ec941005a51fd155782a3cb72524c39799de3
6
+ metadata.gz: b2ad2c05c64be3f77645b9ee6e84b9df069e834f1dce302605c7e32aec671391de5d80e83d24ff31928f9ff9beb693a04aa905776727b1da045115afc8dd454b
7
+ data.tar.gz: b804df890c4831f9dc9edc78865bd6901cc0082f2eace803529d7a53e3b82e28a7b07315bc15f60257424153787b3316d65a2fd9d2bd098b1832c66d2ca1acff
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.50.0 (2022-10-17)
5
+ ------------------
6
+
7
+ * Feature - This change allows customers to specify FunctionRuntimeOverride in FunctionDefinitionVersion. This configuration can be used if the runtime on the device is different from the AWS Lambda runtime specified for that function.
8
+
4
9
  1.49.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.50.0
@@ -868,6 +868,7 @@ module Aws::Greengrass
868
868
  # memory_size: 1,
869
869
  # pinned: false,
870
870
  # timeout: 1,
871
+ # function_runtime_override: "__string",
871
872
  # },
872
873
  # id: "__string", # required
873
874
  # },
@@ -961,6 +962,7 @@ module Aws::Greengrass
961
962
  # memory_size: 1,
962
963
  # pinned: false,
963
964
  # timeout: 1,
965
+ # function_runtime_override: "__string",
964
966
  # },
965
967
  # id: "__string", # required
966
968
  # },
@@ -2320,6 +2322,7 @@ module Aws::Greengrass
2320
2322
  # resp.definition.functions[0].function_configuration.memory_size #=> Integer
2321
2323
  # resp.definition.functions[0].function_configuration.pinned #=> Boolean
2322
2324
  # resp.definition.functions[0].function_configuration.timeout #=> Integer
2325
+ # resp.definition.functions[0].function_configuration.function_runtime_override #=> String
2323
2326
  # resp.definition.functions[0].id #=> String
2324
2327
  # resp.id #=> String
2325
2328
  # resp.next_token #=> String
@@ -4118,7 +4121,7 @@ module Aws::Greengrass
4118
4121
  params: params,
4119
4122
  config: config)
4120
4123
  context[:gem_name] = 'aws-sdk-greengrass'
4121
- context[:gem_version] = '1.49.0'
4124
+ context[:gem_version] = '1.50.0'
4122
4125
  Seahorse::Client::Request.new(handlers, context)
4123
4126
  end
4124
4127
 
@@ -700,6 +700,7 @@ module Aws::Greengrass
700
700
  FunctionConfiguration.add_member(:memory_size, Shapes::ShapeRef.new(shape: __integer, location_name: "MemorySize"))
701
701
  FunctionConfiguration.add_member(:pinned, Shapes::ShapeRef.new(shape: __boolean, location_name: "Pinned"))
702
702
  FunctionConfiguration.add_member(:timeout, Shapes::ShapeRef.new(shape: __integer, location_name: "Timeout"))
703
+ FunctionConfiguration.add_member(:function_runtime_override, Shapes::ShapeRef.new(shape: __string, location_name: "FunctionRuntimeOverride"))
703
704
  FunctionConfiguration.struct_class = Types::FunctionConfiguration
704
705
 
705
706
  FunctionConfigurationEnvironment.add_member(:access_sysfs, Shapes::ShapeRef.new(shape: __boolean, location_name: "AccessSysfs"))
@@ -911,6 +911,7 @@ module Aws::Greengrass
911
911
  # memory_size: 1,
912
912
  # pinned: false,
913
913
  # timeout: 1,
914
+ # function_runtime_override: "__string",
914
915
  # },
915
916
  # id: "__string", # required
916
917
  # },
@@ -1026,6 +1027,7 @@ module Aws::Greengrass
1026
1027
  # memory_size: 1,
1027
1028
  # pinned: false,
1028
1029
  # timeout: 1,
1030
+ # function_runtime_override: "__string",
1029
1031
  # },
1030
1032
  # id: "__string", # required
1031
1033
  # },
@@ -2287,6 +2289,7 @@ module Aws::Greengrass
2287
2289
  # memory_size: 1,
2288
2290
  # pinned: false,
2289
2291
  # timeout: 1,
2292
+ # function_runtime_override: "__string",
2290
2293
  # },
2291
2294
  # id: "__string", # required
2292
2295
  # }
@@ -2346,6 +2349,7 @@ module Aws::Greengrass
2346
2349
  # memory_size: 1,
2347
2350
  # pinned: false,
2348
2351
  # timeout: 1,
2352
+ # function_runtime_override: "__string",
2349
2353
  # }
2350
2354
  #
2351
2355
  # @!attribute [rw] encoding_type
@@ -2382,6 +2386,11 @@ module Aws::Greengrass
2382
2386
  # functions for each request.
2383
2387
  # @return [Integer]
2384
2388
  #
2389
+ # @!attribute [rw] function_runtime_override
2390
+ # The Lambda runtime supported by Greengrass which is to be used
2391
+ # instead of the one specified in the Lambda function.
2392
+ # @return [String]
2393
+ #
2385
2394
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/FunctionConfiguration AWS API Documentation
2386
2395
  #
2387
2396
  class FunctionConfiguration < Struct.new(
@@ -2391,7 +2400,8 @@ module Aws::Greengrass
2391
2400
  :executable,
2392
2401
  :memory_size,
2393
2402
  :pinned,
2394
- :timeout)
2403
+ :timeout,
2404
+ :function_runtime_override)
2395
2405
  SENSITIVE = []
2396
2406
  include Aws::Structure
2397
2407
  end
@@ -2567,6 +2577,7 @@ module Aws::Greengrass
2567
2577
  # memory_size: 1,
2568
2578
  # pinned: false,
2569
2579
  # timeout: 1,
2580
+ # function_runtime_override: "__string",
2570
2581
  # },
2571
2582
  # id: "__string", # required
2572
2583
  # },
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-greengrass/customizations'
48
48
  # @!group service
49
49
  module Aws::Greengrass
50
50
 
51
- GEM_VERSION = '1.49.0'
51
+ GEM_VERSION = '1.50.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-greengrass
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.49.0
4
+ version: 1.50.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: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core