@aws-sdk/client-greengrassv2 3.40.0 → 3.45.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.
Files changed (32) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/dist-cjs/endpoints.js +9 -0
  3. package/dist-cjs/protocols/Aws_restJson1.js +2 -0
  4. package/dist-es/endpoints.js +9 -0
  5. package/dist-es/protocols/Aws_restJson1.js +3 -2
  6. package/dist-types/GreengrassV2.d.ts +3 -0
  7. package/dist-types/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.d.ts +1 -1
  8. package/dist-types/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.d.ts +1 -1
  9. package/dist-types/commands/CancelDeploymentCommand.d.ts +1 -1
  10. package/dist-types/commands/CreateComponentVersionCommand.d.ts +4 -1
  11. package/dist-types/commands/CreateDeploymentCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteComponentCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteCoreDeviceCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeComponentCommand.d.ts +1 -1
  15. package/dist-types/commands/GetComponentCommand.d.ts +1 -1
  16. package/dist-types/commands/GetComponentVersionArtifactCommand.d.ts +1 -1
  17. package/dist-types/commands/GetCoreDeviceCommand.d.ts +1 -1
  18. package/dist-types/commands/GetDeploymentCommand.d.ts +1 -1
  19. package/dist-types/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.d.ts +1 -1
  20. package/dist-types/commands/ListComponentVersionsCommand.d.ts +1 -1
  21. package/dist-types/commands/ListComponentsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListCoreDevicesCommand.d.ts +1 -1
  23. package/dist-types/commands/ListDeploymentsCommand.d.ts +1 -1
  24. package/dist-types/commands/ListEffectiveDeploymentsCommand.d.ts +1 -1
  25. package/dist-types/commands/ListInstalledComponentsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  27. package/dist-types/commands/ResolveComponentCandidatesCommand.d.ts +1 -1
  28. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  29. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  30. package/dist-types/models/models_0.d.ts +13 -3
  31. package/dist-types/ts3.4/models/models_0.d.ts +2 -0
  32. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -3,6 +3,44 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.45.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.44.0...v3.45.0) (2021-12-23)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** update clients as of 2021/12/23 ([#3110](https://github.com/aws/aws-sdk-js-v3/issues/3110)) ([5d638e1](https://github.com/aws/aws-sdk-js-v3/commit/5d638e188ce64fa80fe36b8cba79ba63b80b50b7))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.43.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.42.0...v3.43.0) (2021-11-29)
18
+
19
+ **Note:** Version bump only for package @aws-sdk/client-greengrassv2
20
+
21
+
22
+
23
+
24
+
25
+ # [3.42.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.41.0...v3.42.0) (2021-11-19)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/client-greengrassv2
28
+
29
+
30
+
31
+
32
+
33
+ # [3.41.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.40.1...v3.41.0) (2021-11-11)
34
+
35
+
36
+ ### Features
37
+
38
+ * **clients:** update clients as of 2021/11/11 ([#3015](https://github.com/aws/aws-sdk-js-v3/issues/3015)) ([3d82c4e](https://github.com/aws/aws-sdk-js-v3/commit/3d82c4e3c4d174533f46ce35495cf5cffabdb35a))
39
+
40
+
41
+
42
+
43
+
6
44
  # [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
7
45
 
8
46
 
@@ -55,6 +55,7 @@ const partitionHash = {
55
55
  "ap-south-1",
56
56
  "ap-southeast-1",
57
57
  "ap-southeast-2",
58
+ "ap-southeast-3",
58
59
  "ca-central-1",
59
60
  "eu-central-1",
60
61
  "eu-north-1",
@@ -119,6 +120,10 @@ const partitionHash = {
119
120
  hostname: "greengrass.{region}.c2s.ic.gov",
120
121
  tags: [],
121
122
  },
123
+ {
124
+ hostname: "greengrass-fips.{region}.c2s.ic.gov",
125
+ tags: ["fips"],
126
+ },
122
127
  ],
123
128
  },
124
129
  "aws-iso-b": {
@@ -129,6 +134,10 @@ const partitionHash = {
129
134
  hostname: "greengrass.{region}.sc2s.sgov.gov",
130
135
  tags: [],
131
136
  },
137
+ {
138
+ hostname: "greengrass-fips.{region}.sc2s.sgov.gov",
139
+ tags: ["fips"],
140
+ },
132
141
  ],
133
142
  },
134
143
  "aws-us-gov": {
@@ -2931,6 +2931,7 @@ const serializeAws_restJson1ComponentRunWith = (input, context) => {
2931
2931
  input.systemResourceLimits !== null && {
2932
2932
  systemResourceLimits: serializeAws_restJson1SystemResourceLimits(input.systemResourceLimits, context),
2933
2933
  }),
2934
+ ...(input.windowsUser !== undefined && input.windowsUser !== null && { windowsUser: input.windowsUser }),
2934
2935
  };
2935
2936
  };
2936
2937
  const serializeAws_restJson1ComponentVersionRequirementMap = (input, context) => {
@@ -3378,6 +3379,7 @@ const deserializeAws_restJson1ComponentRunWith = (output, context) => {
3378
3379
  systemResourceLimits: output.systemResourceLimits !== undefined && output.systemResourceLimits !== null
3379
3380
  ? deserializeAws_restJson1SystemResourceLimits(output.systemResourceLimits, context)
3380
3381
  : undefined,
3382
+ windowsUser: smithy_client_1.expectString(output.windowsUser),
3381
3383
  };
3382
3384
  };
3383
3385
  const deserializeAws_restJson1ComponentVersionList = (output, context) => {
@@ -53,6 +53,7 @@ var partitionHash = {
53
53
  "ap-south-1",
54
54
  "ap-southeast-1",
55
55
  "ap-southeast-2",
56
+ "ap-southeast-3",
56
57
  "ca-central-1",
57
58
  "eu-central-1",
58
59
  "eu-north-1",
@@ -117,6 +118,10 @@ var partitionHash = {
117
118
  hostname: "greengrass.{region}.c2s.ic.gov",
118
119
  tags: [],
119
120
  },
121
+ {
122
+ hostname: "greengrass-fips.{region}.c2s.ic.gov",
123
+ tags: ["fips"],
124
+ },
120
125
  ],
121
126
  },
122
127
  "aws-iso-b": {
@@ -127,6 +132,10 @@ var partitionHash = {
127
132
  hostname: "greengrass.{region}.sc2s.sgov.gov",
128
133
  tags: [],
129
134
  },
135
+ {
136
+ hostname: "greengrass-fips.{region}.sc2s.sgov.gov",
137
+ tags: ["fips"],
138
+ },
130
139
  ],
131
140
  },
132
141
  "aws-us-gov": {
@@ -3303,10 +3303,10 @@ var serializeAws_restJson1ComponentPlatformList = function (input, context) {
3303
3303
  });
3304
3304
  };
3305
3305
  var serializeAws_restJson1ComponentRunWith = function (input, context) {
3306
- return __assign(__assign({}, (input.posixUser !== undefined && input.posixUser !== null && { posixUser: input.posixUser })), (input.systemResourceLimits !== undefined &&
3306
+ return __assign(__assign(__assign({}, (input.posixUser !== undefined && input.posixUser !== null && { posixUser: input.posixUser })), (input.systemResourceLimits !== undefined &&
3307
3307
  input.systemResourceLimits !== null && {
3308
3308
  systemResourceLimits: serializeAws_restJson1SystemResourceLimits(input.systemResourceLimits, context),
3309
- }));
3309
+ })), (input.windowsUser !== undefined && input.windowsUser !== null && { windowsUser: input.windowsUser }));
3310
3310
  };
3311
3311
  var serializeAws_restJson1ComponentVersionRequirementMap = function (input, context) {
3312
3312
  return Object.entries(input).reduce(function (acc, _a) {
@@ -3672,6 +3672,7 @@ var deserializeAws_restJson1ComponentRunWith = function (output, context) {
3672
3672
  systemResourceLimits: output.systemResourceLimits !== undefined && output.systemResourceLimits !== null
3673
3673
  ? deserializeAws_restJson1SystemResourceLimits(output.systemResourceLimits, context)
3674
3674
  : undefined,
3675
+ windowsUser: __expectString(output.windowsUser),
3675
3676
  };
3676
3677
  };
3677
3678
  var deserializeAws_restJson1ComponentVersionList = function (output, context) {
@@ -124,6 +124,9 @@ export declare class GreengrassV2 extends GreengrassV2Client {
124
124
  * </ul>
125
125
  * <p>To create a component from a Lambda function, specify <code>lambdaFunction</code>
126
126
  * when you call this operation.</p>
127
+ * <note>
128
+ * <p>IoT Greengrass currently supports Lambda functions on only Linux core devices.</p>
129
+ * </note>
127
130
  * </li>
128
131
  * </ul>
129
132
  */
@@ -32,7 +32,7 @@ export interface BatchAssociateClientDeviceWithCoreDeviceCommandOutput extends B
32
32
  *
33
33
  * @see {@link BatchAssociateClientDeviceWithCoreDeviceCommandInput} for command's `input` shape.
34
34
  * @see {@link BatchAssociateClientDeviceWithCoreDeviceCommandOutput} for command's `response` shape.
35
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
35
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
36
36
  *
37
37
  */
38
38
  export declare class BatchAssociateClientDeviceWithCoreDeviceCommand extends $Command<BatchAssociateClientDeviceWithCoreDeviceCommandInput, BatchAssociateClientDeviceWithCoreDeviceCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -22,7 +22,7 @@ export interface BatchDisassociateClientDeviceFromCoreDeviceCommandOutput extend
22
22
  *
23
23
  * @see {@link BatchDisassociateClientDeviceFromCoreDeviceCommandInput} for command's `input` shape.
24
24
  * @see {@link BatchDisassociateClientDeviceFromCoreDeviceCommandOutput} for command's `response` shape.
25
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class BatchDisassociateClientDeviceFromCoreDeviceCommand extends $Command<BatchDisassociateClientDeviceFromCoreDeviceCommandInput, BatchDisassociateClientDeviceFromCoreDeviceCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -22,7 +22,7 @@ export interface CancelDeploymentCommandOutput extends CancelDeploymentResponse,
22
22
  *
23
23
  * @see {@link CancelDeploymentCommandInput} for command's `input` shape.
24
24
  * @see {@link CancelDeploymentCommandOutput} for command's `response` shape.
25
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class CancelDeploymentCommand extends $Command<CancelDeploymentCommandInput, CancelDeploymentCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -59,6 +59,9 @@ export interface CreateComponentVersionCommandOutput extends CreateComponentVers
59
59
  * </ul>
60
60
  * <p>To create a component from a Lambda function, specify <code>lambdaFunction</code>
61
61
  * when you call this operation.</p>
62
+ * <note>
63
+ * <p>IoT Greengrass currently supports Lambda functions on only Linux core devices.</p>
64
+ * </note>
62
65
  * </li>
63
66
  * </ul>
64
67
  * @example
@@ -73,7 +76,7 @@ export interface CreateComponentVersionCommandOutput extends CreateComponentVers
73
76
  *
74
77
  * @see {@link CreateComponentVersionCommandInput} for command's `input` shape.
75
78
  * @see {@link CreateComponentVersionCommandOutput} for command's `response` shape.
76
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
79
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
77
80
  *
78
81
  */
79
82
  export declare class CreateComponentVersionCommand extends $Command<CreateComponentVersionCommandInput, CreateComponentVersionCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -30,7 +30,7 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse,
30
30
  *
31
31
  * @see {@link CreateDeploymentCommandInput} for command's `input` shape.
32
32
  * @see {@link CreateDeploymentCommandOutput} for command's `response` shape.
33
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
33
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
34
34
  *
35
35
  */
36
36
  export declare class CreateDeploymentCommand extends $Command<CreateDeploymentCommandInput, CreateDeploymentCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -26,7 +26,7 @@ export interface DeleteComponentCommandOutput extends __MetadataBearer {
26
26
  *
27
27
  * @see {@link DeleteComponentCommandInput} for command's `input` shape.
28
28
  * @see {@link DeleteComponentCommandOutput} for command's `response` shape.
29
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
29
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
30
30
  *
31
31
  */
32
32
  export declare class DeleteComponentCommand extends $Command<DeleteComponentCommandInput, DeleteComponentCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -23,7 +23,7 @@ export interface DeleteCoreDeviceCommandOutput extends __MetadataBearer {
23
23
  *
24
24
  * @see {@link DeleteCoreDeviceCommandInput} for command's `input` shape.
25
25
  * @see {@link DeleteCoreDeviceCommandOutput} for command's `response` shape.
26
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
26
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
27
27
  *
28
28
  */
29
29
  export declare class DeleteCoreDeviceCommand extends $Command<DeleteCoreDeviceCommandInput, DeleteCoreDeviceCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface DescribeComponentCommandOutput extends DescribeComponentRespons
20
20
  *
21
21
  * @see {@link DescribeComponentCommandInput} for command's `input` shape.
22
22
  * @see {@link DescribeComponentCommandOutput} for command's `response` shape.
23
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class DescribeComponentCommand extends $Command<DescribeComponentCommandInput, DescribeComponentCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface GetComponentCommandOutput extends GetComponentResponse, __Metad
21
21
  *
22
22
  * @see {@link GetComponentCommandInput} for command's `input` shape.
23
23
  * @see {@link GetComponentCommandOutput} for command's `response` shape.
24
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class GetComponentCommand extends $Command<GetComponentCommandInput, GetComponentCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface GetComponentVersionArtifactCommandOutput extends GetComponentVe
21
21
  *
22
22
  * @see {@link GetComponentVersionArtifactCommandInput} for command's `input` shape.
23
23
  * @see {@link GetComponentVersionArtifactCommandOutput} for command's `response` shape.
24
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class GetComponentVersionArtifactCommand extends $Command<GetComponentVersionArtifactCommandInput, GetComponentVersionArtifactCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetCoreDeviceCommandOutput extends GetCoreDeviceResponse, __Met
20
20
  *
21
21
  * @see {@link GetCoreDeviceCommandInput} for command's `input` shape.
22
22
  * @see {@link GetCoreDeviceCommandOutput} for command's `response` shape.
23
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetCoreDeviceCommand extends $Command<GetCoreDeviceCommandInput, GetCoreDeviceCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetDeploymentCommandOutput extends GetDeploymentResponse, __Met
20
20
  *
21
21
  * @see {@link GetDeploymentCommandInput} for command's `input` shape.
22
22
  * @see {@link GetDeploymentCommandOutput} for command's `response` shape.
23
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetDeploymentCommand extends $Command<GetDeploymentCommandInput, GetDeploymentCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface ListClientDevicesAssociatedWithCoreDeviceCommandOutput extends
21
21
  *
22
22
  * @see {@link ListClientDevicesAssociatedWithCoreDeviceCommandInput} for command's `input` shape.
23
23
  * @see {@link ListClientDevicesAssociatedWithCoreDeviceCommandOutput} for command's `response` shape.
24
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class ListClientDevicesAssociatedWithCoreDeviceCommand extends $Command<ListClientDevicesAssociatedWithCoreDeviceCommandInput, ListClientDevicesAssociatedWithCoreDeviceCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListComponentVersionsCommandOutput extends ListComponentVersion
20
20
  *
21
21
  * @see {@link ListComponentVersionsCommandInput} for command's `input` shape.
22
22
  * @see {@link ListComponentVersionsCommandOutput} for command's `response` shape.
23
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListComponentVersionsCommand extends $Command<ListComponentVersionsCommandInput, ListComponentVersionsCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
21
21
  *
22
22
  * @see {@link ListComponentsCommandInput} for command's `input` shape.
23
23
  * @see {@link ListComponentsCommandOutput} for command's `response` shape.
24
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class ListComponentsCommand extends $Command<ListComponentsCommandInput, ListComponentsCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListCoreDevicesCommandOutput extends ListCoreDevicesResponse, _
20
20
  *
21
21
  * @see {@link ListCoreDevicesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListCoreDevicesCommandOutput} for command's `response` shape.
23
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListCoreDevicesCommand extends $Command<ListCoreDevicesCommandInput, ListCoreDevicesCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsResponse, _
20
20
  *
21
21
  * @see {@link ListDeploymentsCommandInput} for command's `input` shape.
22
22
  * @see {@link ListDeploymentsCommandOutput} for command's `response` shape.
23
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListDeploymentsCommand extends $Command<ListDeploymentsCommandInput, ListDeploymentsCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface ListEffectiveDeploymentsCommandOutput extends ListEffectiveDepl
21
21
  *
22
22
  * @see {@link ListEffectiveDeploymentsCommandInput} for command's `input` shape.
23
23
  * @see {@link ListEffectiveDeploymentsCommandOutput} for command's `response` shape.
24
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class ListEffectiveDeploymentsCommand extends $Command<ListEffectiveDeploymentsCommandInput, ListEffectiveDeploymentsCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListInstalledComponentsCommandOutput extends ListInstalledCompo
20
20
  *
21
21
  * @see {@link ListInstalledComponentsCommandInput} for command's `input` shape.
22
22
  * @see {@link ListInstalledComponentsCommandOutput} for command's `response` shape.
23
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListInstalledComponentsCommand extends $Command<ListInstalledComponentsCommandInput, ListInstalledComponentsCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
20
20
  *
21
21
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
23
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -34,7 +34,7 @@ export interface ResolveComponentCandidatesCommandOutput extends ResolveComponen
34
34
  *
35
35
  * @see {@link ResolveComponentCandidatesCommandInput} for command's `input` shape.
36
36
  * @see {@link ResolveComponentCandidatesCommandOutput} for command's `response` shape.
37
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
37
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
38
38
  *
39
39
  */
40
40
  export declare class ResolveComponentCandidatesCommand extends $Command<ResolveComponentCandidatesCommandInput, ResolveComponentCandidatesCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
21
21
  *
22
22
  * @see {@link TagResourceCommandInput} for command's `input` shape.
23
23
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
24
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
20
20
  *
21
21
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
23
- * @see {@link GreengrassV2ClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, GreengrassV2ClientResolvedConfig> {
@@ -586,8 +586,9 @@ export declare namespace SystemResourceLimits {
586
586
  */
587
587
  export interface ComponentRunWith {
588
588
  /**
589
- * <p>The POSIX system user and (optional) group to use to run this component. Specify the user
590
- * and group separated by a colon (<code>:</code>) in the following format:
589
+ * <p>The POSIX system user and, optionally, group to use to run this component on Linux core
590
+ * devices. The user, and group if specified, must exist on each Linux core device. Specify the
591
+ * user and group separated by a colon (<code>:</code>) in the following format:
591
592
  * <code>user:group</code>. The group is optional. If you don't specify a group, the IoT Greengrass Core
592
593
  * software uses the primary user for the group.</p>
593
594
  * <p>If you omit this parameter, the IoT Greengrass Core software uses the default system user and group that
@@ -595,11 +596,20 @@ export interface ComponentRunWith {
595
596
  */
596
597
  posixUser?: string;
597
598
  /**
598
- * <p>The system resource limits to apply to this component's process on the core device.</p>
599
+ * <p>The system resource limits to apply to this component's process on the core device. IoT Greengrass
600
+ * currently supports this feature on only Linux core devices.</p>
599
601
  * <p>If you omit this parameter, the IoT Greengrass Core software uses the default system resource limits
600
602
  * that you configure on the Greengrass nucleus component. For more information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/configure-greengrass-core-v2.html#configure-component-system-resource-limits">Configure system resource limits for components</a>.</p>
601
603
  */
602
604
  systemResourceLimits?: SystemResourceLimits;
605
+ /**
606
+ * <p>The Windows user to use to run this component on Windows core devices. The user must exist
607
+ * on each Windows core device, and its name and password must be in the LocalSystem account's
608
+ * Credentials Manager instance.</p>
609
+ * <p>If you omit this parameter, the IoT Greengrass Core software uses the default Windows user that you
610
+ * configure on the Greengrass nucleus component. For more information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/configure-greengrass-core-v2.html#configure-component-user">Configure the user and group that run components</a>.</p>
611
+ */
612
+ windowsUser?: string;
603
613
  }
604
614
  export declare namespace ComponentRunWith {
605
615
  /**
@@ -328,6 +328,8 @@ export interface ComponentRunWith {
328
328
  posixUser?: string;
329
329
 
330
330
  systemResourceLimits?: SystemResourceLimits;
331
+
332
+ windowsUser?: string;
331
333
  }
332
334
  export declare namespace ComponentRunWith {
333
335
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-greengrassv2",
3
3
  "description": "AWS SDK for JavaScript Greengrassv2 Client for Node.js, Browser and React Native",
4
- "version": "3.40.0",
4
+ "version": "3.45.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "2.0.0",
23
23
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.40.0",
25
- "@aws-sdk/config-resolver": "3.40.0",
26
- "@aws-sdk/credential-provider-node": "3.40.0",
24
+ "@aws-sdk/client-sts": "3.45.0",
25
+ "@aws-sdk/config-resolver": "3.45.0",
26
+ "@aws-sdk/credential-provider-node": "3.45.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.40.0",
28
28
  "@aws-sdk/hash-node": "3.40.0",
29
29
  "@aws-sdk/invalid-dependency": "3.40.0",
@@ -32,13 +32,13 @@
32
32
  "@aws-sdk/middleware-logger": "3.40.0",
33
33
  "@aws-sdk/middleware-retry": "3.40.0",
34
34
  "@aws-sdk/middleware-serde": "3.40.0",
35
- "@aws-sdk/middleware-signing": "3.40.0",
35
+ "@aws-sdk/middleware-signing": "3.45.0",
36
36
  "@aws-sdk/middleware-stack": "3.40.0",
37
37
  "@aws-sdk/middleware-user-agent": "3.40.0",
38
38
  "@aws-sdk/node-config-provider": "3.40.0",
39
39
  "@aws-sdk/node-http-handler": "3.40.0",
40
40
  "@aws-sdk/protocol-http": "3.40.0",
41
- "@aws-sdk/smithy-client": "3.40.0",
41
+ "@aws-sdk/smithy-client": "3.41.0",
42
42
  "@aws-sdk/types": "3.40.0",
43
43
  "@aws-sdk/url-parser": "3.40.0",
44
44
  "@aws-sdk/util-base64-browser": "3.37.0",