aws-sdk-greengrass 1.48.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: 7e84c56f4618a0ebaa91a192dbdbc94ee9e73a58884a40544bc20c4acef23f41
4
- data.tar.gz: 4f461bd39f2779b0ac319485ceb3630c65a81e2e96f3f2fbe44442b2df017e61
3
+ metadata.gz: 076d976a20618bafacd3b033ab5a04a93c5e42782e0d8dafe6d62b930ea3f8a4
4
+ data.tar.gz: 8f387d23bda4d470e682ebeae4a2ca250120577a88490a9eea9a60bc5ec4e624
5
5
  SHA512:
6
- metadata.gz: 8a852b7eb783e497f1a7478679339f3ddbedd5663d30f6855a2da2c6f8ea5d991d82102d12ec9e1c1416743b344e179b0643e308197cd30473ca43b018af3bed
7
- data.tar.gz: 49c17299dadc111fad1a354c684c85febb99bc7d68dd7ea38182fc6af5a700ba6851503b15419c827b57ef7ad2bc439586521919295ec51cabb7abc55820467c
6
+ metadata.gz: b2ad2c05c64be3f77645b9ee6e84b9df069e834f1dce302605c7e32aec671391de5d80e83d24ff31928f9ff9beb693a04aa905776727b1da045115afc8dd454b
7
+ data.tar.gz: b804df890c4831f9dc9edc78865bd6901cc0082f2eace803529d7a53e3b82e28a7b07315bc15f60257424153787b3316d65a2fd9d2bd098b1832c66d2ca1acff
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.49.0 (2022-02-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.48.0 (2022-02-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.48.0
1
+ 1.50.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
31
32
  require 'aws-sdk-core/plugins/recursion_detection.rb'
32
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
@@ -75,6 +76,7 @@ module Aws::Greengrass
75
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
76
77
  add_plugin(Aws::Plugins::TransferEncoding)
77
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
78
80
  add_plugin(Aws::Plugins::DefaultsMode)
79
81
  add_plugin(Aws::Plugins::RecursionDetection)
80
82
  add_plugin(Aws::Plugins::SignatureV4)
@@ -866,6 +868,7 @@ module Aws::Greengrass
866
868
  # memory_size: 1,
867
869
  # pinned: false,
868
870
  # timeout: 1,
871
+ # function_runtime_override: "__string",
869
872
  # },
870
873
  # id: "__string", # required
871
874
  # },
@@ -959,6 +962,7 @@ module Aws::Greengrass
959
962
  # memory_size: 1,
960
963
  # pinned: false,
961
964
  # timeout: 1,
965
+ # function_runtime_override: "__string",
962
966
  # },
963
967
  # id: "__string", # required
964
968
  # },
@@ -2318,6 +2322,7 @@ module Aws::Greengrass
2318
2322
  # resp.definition.functions[0].function_configuration.memory_size #=> Integer
2319
2323
  # resp.definition.functions[0].function_configuration.pinned #=> Boolean
2320
2324
  # resp.definition.functions[0].function_configuration.timeout #=> Integer
2325
+ # resp.definition.functions[0].function_configuration.function_runtime_override #=> String
2321
2326
  # resp.definition.functions[0].id #=> String
2322
2327
  # resp.id #=> String
2323
2328
  # resp.next_token #=> String
@@ -4116,7 +4121,7 @@ module Aws::Greengrass
4116
4121
  params: params,
4117
4122
  config: config)
4118
4123
  context[:gem_name] = 'aws-sdk-greengrass'
4119
- context[:gem_version] = '1.48.0'
4124
+ context[:gem_version] = '1.50.0'
4120
4125
  Seahorse::Client::Request.new(handlers, context)
4121
4126
  end
4122
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.48.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.48.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-03 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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.126.0
22
+ version: 3.127.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.126.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement