aws-sdk-greengrassv2 1.9.0 → 1.13.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-greengrassv2/client.rb +30 -3
- data/lib/aws-sdk-greengrassv2/client_api.rb +1 -0
- data/lib/aws-sdk-greengrassv2/types.rb +29 -7
- data/lib/aws-sdk-greengrassv2.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bd0c9f05869f2e1a014f844a8fb97439755569b60664b7ddb15885e129ab7ff7
|
4
|
+
data.tar.gz: 172dc61e318b5a64d5694ce7c362e3dd4bbd4642d79f90c63e94ef866ff8775f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 312ae079486de60232bea1aeffefa4a90b0620a039b0f6161fdd480df4bdb3dc53fdecab7e7cb8427a9e7c549b3e0776b257fc7a1940b16d62c3dc97dbe0dbd3
|
7
|
+
data.tar.gz: 188eded5009f6b7f60b3dee69d146f6524d4e525c365d7e3399c227aec3a20b8bc842480a1fde401998a50026a6e5f4b2b00f599b167ac9a4bd102754b094fc5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.13.0 (2021-12-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.12.0 (2021-11-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.11.0 (2021-11-09)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds support for Greengrass core devices running Windows. You can now specify name of a Windows user to run a component.
|
18
|
+
|
19
|
+
1.10.0 (2021-11-04)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.9.0 (2021-10-18)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.13.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/defaults_mode.rb'
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
32
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
33
|
|
@@ -73,6 +74,7 @@ module Aws::GreengrassV2
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
79
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
80
|
|
@@ -119,7 +121,9 @@ module Aws::GreengrassV2
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
126
|
+
# to true.
|
123
127
|
#
|
124
128
|
# @option options [required, String] :region
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +177,10 @@ module Aws::GreengrassV2
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
179
|
#
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
183
|
+
#
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
178
186
|
# to default service endpoint when available.
|
@@ -275,6 +283,15 @@ module Aws::GreengrassV2
|
|
275
283
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
284
|
# requests are made, and retries are disabled.
|
277
285
|
#
|
286
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
287
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
288
|
+
# will be used if available.
|
289
|
+
#
|
290
|
+
# @option options [Boolean] :use_fips_endpoint
|
291
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
292
|
+
# When a `fips` region is used, the region is normalized and this config
|
293
|
+
# is set to `true`.
|
294
|
+
#
|
278
295
|
# @option options [Boolean] :validate_params (true)
|
279
296
|
# When `true`, request parameters are validated before
|
280
297
|
# sending the request.
|
@@ -286,7 +303,7 @@ module Aws::GreengrassV2
|
|
286
303
|
# seconds to wait when opening a HTTP session before raising a
|
287
304
|
# `Timeout::Error`.
|
288
305
|
#
|
289
|
-
# @option options [
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
290
307
|
# number of seconds to wait for response data. This value can
|
291
308
|
# safely be set per-request on the session.
|
292
309
|
#
|
@@ -302,6 +319,9 @@ module Aws::GreengrassV2
|
|
302
319
|
# disables this behaviour. This value can safely be set per
|
303
320
|
# request on the session.
|
304
321
|
#
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
323
|
+
# in seconds.
|
324
|
+
#
|
305
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
306
326
|
# HTTP debug output will be sent to the `:logger`.
|
307
327
|
#
|
@@ -502,6 +522,11 @@ module Aws::GreengrassV2
|
|
502
522
|
# To create a component from a Lambda function, specify
|
503
523
|
# `lambdaFunction` when you call this operation.
|
504
524
|
#
|
525
|
+
# <note markdown="1"> IoT Greengrass currently supports Lambda functions on only Linux
|
526
|
+
# core devices.
|
527
|
+
#
|
528
|
+
# </note>
|
529
|
+
#
|
505
530
|
#
|
506
531
|
#
|
507
532
|
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/component-recipe-reference.html
|
@@ -730,6 +755,7 @@ module Aws::GreengrassV2
|
|
730
755
|
# memory: 1,
|
731
756
|
# cpus: 1.0,
|
732
757
|
# },
|
758
|
+
# windows_user: "NonEmptyString",
|
733
759
|
# },
|
734
760
|
# },
|
735
761
|
# },
|
@@ -1087,6 +1113,7 @@ module Aws::GreengrassV2
|
|
1087
1113
|
# resp.components["NonEmptyString"].run_with.posix_user #=> String
|
1088
1114
|
# resp.components["NonEmptyString"].run_with.system_resource_limits.memory #=> Integer
|
1089
1115
|
# resp.components["NonEmptyString"].run_with.system_resource_limits.cpus #=> Float
|
1116
|
+
# resp.components["NonEmptyString"].run_with.windows_user #=> String
|
1090
1117
|
# resp.deployment_policies.failure_handling_policy #=> String, one of "ROLLBACK", "DO_NOTHING"
|
1091
1118
|
# resp.deployment_policies.component_update_policy.timeout_in_seconds #=> Integer
|
1092
1119
|
# resp.deployment_policies.component_update_policy.action #=> String, one of "NOTIFY_COMPONENTS", "SKIP_NOTIFY_COMPONENTS"
|
@@ -1669,7 +1696,7 @@ module Aws::GreengrassV2
|
|
1669
1696
|
params: params,
|
1670
1697
|
config: config)
|
1671
1698
|
context[:gem_name] = 'aws-sdk-greengrassv2'
|
1672
|
-
context[:gem_version] = '1.
|
1699
|
+
context[:gem_version] = '1.13.0'
|
1673
1700
|
Seahorse::Client::Request.new(handlers, context)
|
1674
1701
|
end
|
1675
1702
|
|
@@ -300,6 +300,7 @@ module Aws::GreengrassV2
|
|
300
300
|
|
301
301
|
ComponentRunWith.add_member(:posix_user, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "posixUser"))
|
302
302
|
ComponentRunWith.add_member(:system_resource_limits, Shapes::ShapeRef.new(shape: SystemResourceLimits, location_name: "systemResourceLimits"))
|
303
|
+
ComponentRunWith.add_member(:windows_user, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "windowsUser"))
|
303
304
|
ComponentRunWith.struct_class = Types::ComponentRunWith
|
304
305
|
|
305
306
|
ComponentVersionList.member = Shapes::ShapeRef.new(shape: ComponentVersionListItem)
|
@@ -436,6 +436,7 @@ module Aws::GreengrassV2
|
|
436
436
|
# memory: 1,
|
437
437
|
# cpus: 1.0,
|
438
438
|
# },
|
439
|
+
# windows_user: "NonEmptyString",
|
439
440
|
# },
|
440
441
|
# }
|
441
442
|
#
|
@@ -585,14 +586,16 @@ module Aws::GreengrassV2
|
|
585
586
|
# memory: 1,
|
586
587
|
# cpus: 1.0,
|
587
588
|
# },
|
589
|
+
# windows_user: "NonEmptyString",
|
588
590
|
# }
|
589
591
|
#
|
590
592
|
# @!attribute [rw] posix_user
|
591
|
-
# The POSIX system user and
|
592
|
-
# component.
|
593
|
-
#
|
594
|
-
#
|
595
|
-
#
|
593
|
+
# The POSIX system user and, optionally, group to use to run this
|
594
|
+
# component on Linux core devices. The user, and group if specified,
|
595
|
+
# must exist on each Linux core device. Specify the user and group
|
596
|
+
# separated by a colon (`:`) in the following format: `user:group`.
|
597
|
+
# The group is optional. If you don't specify a group, the IoT
|
598
|
+
# Greengrass Core software uses the primary user for the group.
|
596
599
|
#
|
597
600
|
# If you omit this parameter, the IoT Greengrass Core software uses
|
598
601
|
# the default system user and group that you configure on the
|
@@ -606,7 +609,8 @@ module Aws::GreengrassV2
|
|
606
609
|
#
|
607
610
|
# @!attribute [rw] system_resource_limits
|
608
611
|
# The system resource limits to apply to this component's process on
|
609
|
-
# the core device.
|
612
|
+
# the core device. IoT Greengrass currently supports this feature on
|
613
|
+
# only Linux core devices.
|
610
614
|
#
|
611
615
|
# If you omit this parameter, the IoT Greengrass Core software uses
|
612
616
|
# the default system resource limits that you configure on the
|
@@ -618,11 +622,28 @@ module Aws::GreengrassV2
|
|
618
622
|
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/configure-greengrass-core-v2.html#configure-component-system-resource-limits
|
619
623
|
# @return [Types::SystemResourceLimits]
|
620
624
|
#
|
625
|
+
# @!attribute [rw] windows_user
|
626
|
+
# The Windows user to use to run this component on Windows core
|
627
|
+
# devices. The user must exist on each Windows core device, and its
|
628
|
+
# name and password must be in the LocalSystem account's Credentials
|
629
|
+
# Manager instance.
|
630
|
+
#
|
631
|
+
# If you omit this parameter, the IoT Greengrass Core software uses
|
632
|
+
# the default Windows user that you configure on the Greengrass
|
633
|
+
# nucleus component. For more information, see [Configure the user and
|
634
|
+
# group that run components][1].
|
635
|
+
#
|
636
|
+
#
|
637
|
+
#
|
638
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/configure-greengrass-core-v2.html#configure-component-user
|
639
|
+
# @return [String]
|
640
|
+
#
|
621
641
|
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrassv2-2020-11-30/ComponentRunWith AWS API Documentation
|
622
642
|
#
|
623
643
|
class ComponentRunWith < Struct.new(
|
624
644
|
:posix_user,
|
625
|
-
:system_resource_limits
|
645
|
+
:system_resource_limits,
|
646
|
+
:windows_user)
|
626
647
|
SENSITIVE = []
|
627
648
|
include Aws::Structure
|
628
649
|
end
|
@@ -891,6 +912,7 @@ module Aws::GreengrassV2
|
|
891
912
|
# memory: 1,
|
892
913
|
# cpus: 1.0,
|
893
914
|
# },
|
915
|
+
# windows_user: "NonEmptyString",
|
894
916
|
# },
|
895
917
|
# },
|
896
918
|
# },
|
data/lib/aws-sdk-greengrassv2.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-greengrassv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.13.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: 2021-
|
11
|
+
date: 2021-12-21 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.
|
22
|
+
version: 3.125.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.
|
32
|
+
version: 3.125.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|