aws-sdk-greengrassv2 1.7.0 → 1.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-greengrassv2/client.rb +17 -1
- 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 +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 605442b738f19f1a1b813f9205c61d33ed864fcd61c3bd137a1cf0a11f446beb
|
4
|
+
data.tar.gz: 801f849821bbcc92a60fc24bae5829a157321a4c352b222033e071c3e496b27d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d881ba80be3fee1392aad3543fbb47f512876b2182cf2270383d06167b43ce31a434896f271f1ecd45e7092a06fbd71b2a201763883baf7cc26fefc40f919367
|
7
|
+
data.tar.gz: e55a8e245165313dfc36b8b0be7d8ed06fac715770499725efe4bc7af66dfaf5334f99df1efdf9f7d93e17829b8f6fe19cf41312f0e54548e292919b469406b0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.11.0 (2021-11-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for Greengrass core devices running Windows. You can now specify name of a Windows user to run a component.
|
8
|
+
|
9
|
+
1.10.0 (2021-11-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.9.0 (2021-10-18)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.8.0 (2021-09-01)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.7.0 (2021-08-02)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.11.0
|
@@ -275,6 +275,15 @@ module Aws::GreengrassV2
|
|
275
275
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
276
|
# requests are made, and retries are disabled.
|
277
277
|
#
|
278
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
279
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
280
|
+
# will be used if available.
|
281
|
+
#
|
282
|
+
# @option options [Boolean] :use_fips_endpoint
|
283
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
284
|
+
# When a `fips` region is used, the region is normalized and this config
|
285
|
+
# is set to `true`.
|
286
|
+
#
|
278
287
|
# @option options [Boolean] :validate_params (true)
|
279
288
|
# When `true`, request parameters are validated before
|
280
289
|
# sending the request.
|
@@ -502,6 +511,11 @@ module Aws::GreengrassV2
|
|
502
511
|
# To create a component from a Lambda function, specify
|
503
512
|
# `lambdaFunction` when you call this operation.
|
504
513
|
#
|
514
|
+
# <note markdown="1"> IoT Greengrass currently supports Lambda functions on only Linux
|
515
|
+
# core devices.
|
516
|
+
#
|
517
|
+
# </note>
|
518
|
+
#
|
505
519
|
#
|
506
520
|
#
|
507
521
|
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/component-recipe-reference.html
|
@@ -730,6 +744,7 @@ module Aws::GreengrassV2
|
|
730
744
|
# memory: 1,
|
731
745
|
# cpus: 1.0,
|
732
746
|
# },
|
747
|
+
# windows_user: "NonEmptyString",
|
733
748
|
# },
|
734
749
|
# },
|
735
750
|
# },
|
@@ -1087,6 +1102,7 @@ module Aws::GreengrassV2
|
|
1087
1102
|
# resp.components["NonEmptyString"].run_with.posix_user #=> String
|
1088
1103
|
# resp.components["NonEmptyString"].run_with.system_resource_limits.memory #=> Integer
|
1089
1104
|
# resp.components["NonEmptyString"].run_with.system_resource_limits.cpus #=> Float
|
1105
|
+
# resp.components["NonEmptyString"].run_with.windows_user #=> String
|
1090
1106
|
# resp.deployment_policies.failure_handling_policy #=> String, one of "ROLLBACK", "DO_NOTHING"
|
1091
1107
|
# resp.deployment_policies.component_update_policy.timeout_in_seconds #=> Integer
|
1092
1108
|
# resp.deployment_policies.component_update_policy.action #=> String, one of "NOTIFY_COMPONENTS", "SKIP_NOTIFY_COMPONENTS"
|
@@ -1669,7 +1685,7 @@ module Aws::GreengrassV2
|
|
1669
1685
|
params: params,
|
1670
1686
|
config: config)
|
1671
1687
|
context[:gem_name] = 'aws-sdk-greengrassv2'
|
1672
|
-
context[:gem_version] = '1.
|
1688
|
+
context[:gem_version] = '1.11.0'
|
1673
1689
|
Seahorse::Client::Request.new(handlers, context)
|
1674
1690
|
end
|
1675
1691
|
|
@@ -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.11.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-11-09 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.122.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.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|