aws-sdk-greengrassv2 1.8.0 → 1.12.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5eab0901d38605a2528ee383b00ecee7646f11587384121ee147dc82e05ccbe3
4
- data.tar.gz: 66ba056d0be04e87b589a9cdedf5f74360bddb54bf4caadc6ceb91f294128de5
3
+ metadata.gz: 729dc247e86d40e964bd12b7d09928379f192fec3e0b19b8cbe96d84284acfd0
4
+ data.tar.gz: 606756e546d7466cb01c5711b8b617d77fce7e9ad86122e29fe12a026e7c6f5c
5
5
  SHA512:
6
- metadata.gz: ab04572cfa458e4aeef72415ae183ba0d59a1229dd65dd7715ccfeae6a0c999177fcfa716994fe7ba9e023d84d0e236827a4fb22899a2e5cb0a178b9594385ca
7
- data.tar.gz: 30780092eb951cfc24699f6a5f2a68f94b697c254e0612ba21ff485b04f73a1763c97762f342a65e867ab6ed2aab895dbd70e9efbccf8392d668b40d0adb4065
6
+ metadata.gz: 841bd00a37656811a24d96750c83e106b8a7244391c9f761bd454739be4d3777f5f77e953391f0b6ea649c50a13fd6f9ffb86da7baf85be9d8a15c94e7035a96
7
+ data.tar.gz: 7009de41cf068e74762908fe6ca0655c6cf52a5bf57a601a8437de56ce625805b5320e996532646ea35f97aa472a7674bd7f4e5e79cf0f83bbc7a9a8154ade8b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.0 (2021-11-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.11.0 (2021-11-09)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for Greengrass core devices running Windows. You can now specify name of a Windows user to run a component.
13
+
14
+ 1.10.0 (2021-11-04)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.9.0 (2021-10-18)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.8.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.12.0
@@ -119,7 +119,9 @@ module Aws::GreengrassV2
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -275,6 +277,15 @@ module Aws::GreengrassV2
275
277
  # ** Please note ** When response stubbing is enabled, no HTTP
276
278
  # requests are made, and retries are disabled.
277
279
  #
280
+ # @option options [Boolean] :use_dualstack_endpoint
281
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
282
+ # will be used if available.
283
+ #
284
+ # @option options [Boolean] :use_fips_endpoint
285
+ # When set to `true`, fips compatible endpoints will be used if available.
286
+ # When a `fips` region is used, the region is normalized and this config
287
+ # is set to `true`.
288
+ #
278
289
  # @option options [Boolean] :validate_params (true)
279
290
  # When `true`, request parameters are validated before
280
291
  # sending the request.
@@ -502,6 +513,11 @@ module Aws::GreengrassV2
502
513
  # To create a component from a Lambda function, specify
503
514
  # `lambdaFunction` when you call this operation.
504
515
  #
516
+ # <note markdown="1"> IoT Greengrass currently supports Lambda functions on only Linux
517
+ # core devices.
518
+ #
519
+ # </note>
520
+ #
505
521
  #
506
522
  #
507
523
  # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/component-recipe-reference.html
@@ -730,6 +746,7 @@ module Aws::GreengrassV2
730
746
  # memory: 1,
731
747
  # cpus: 1.0,
732
748
  # },
749
+ # windows_user: "NonEmptyString",
733
750
  # },
734
751
  # },
735
752
  # },
@@ -1087,6 +1104,7 @@ module Aws::GreengrassV2
1087
1104
  # resp.components["NonEmptyString"].run_with.posix_user #=> String
1088
1105
  # resp.components["NonEmptyString"].run_with.system_resource_limits.memory #=> Integer
1089
1106
  # resp.components["NonEmptyString"].run_with.system_resource_limits.cpus #=> Float
1107
+ # resp.components["NonEmptyString"].run_with.windows_user #=> String
1090
1108
  # resp.deployment_policies.failure_handling_policy #=> String, one of "ROLLBACK", "DO_NOTHING"
1091
1109
  # resp.deployment_policies.component_update_policy.timeout_in_seconds #=> Integer
1092
1110
  # resp.deployment_policies.component_update_policy.action #=> String, one of "NOTIFY_COMPONENTS", "SKIP_NOTIFY_COMPONENTS"
@@ -1669,7 +1687,7 @@ module Aws::GreengrassV2
1669
1687
  params: params,
1670
1688
  config: config)
1671
1689
  context[:gem_name] = 'aws-sdk-greengrassv2'
1672
- context[:gem_version] = '1.8.0'
1690
+ context[:gem_version] = '1.12.0'
1673
1691
  Seahorse::Client::Request.new(handlers, context)
1674
1692
  end
1675
1693
 
@@ -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 (optional) group to use to run this
592
- # component. Specify the user and group separated by a colon (`:`) in
593
- # the following format: `user:group`. The group is optional. If you
594
- # don't specify a group, the IoT Greengrass Core software uses the
595
- # primary user for the group.
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
  # },
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-greengrassv2/customizations'
48
48
  # @!group service
49
49
  module Aws::GreengrassV2
50
50
 
51
- GEM_VERSION = '1.8.0'
51
+ GEM_VERSION = '1.12.0'
52
52
 
53
53
  end
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.8.0
4
+ version: 1.12.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-09-01 00:00:00.000000000 Z
11
+ date: 2021-11-30 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.120.0
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.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement