@aws-sdk/client-greengrassv2 3.489.0 → 3.495.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 (50) hide show
  1. package/dist-cjs/GreengrassV2.js +1 -69
  2. package/dist-cjs/GreengrassV2Client.js +1 -43
  3. package/dist-cjs/commands/AssociateServiceRoleToAccountCommand.js +1 -28
  4. package/dist-cjs/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.js +1 -28
  5. package/dist-cjs/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.js +1 -28
  6. package/dist-cjs/commands/CancelDeploymentCommand.js +1 -28
  7. package/dist-cjs/commands/CreateComponentVersionCommand.js +1 -28
  8. package/dist-cjs/commands/CreateDeploymentCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteComponentCommand.js +1 -28
  10. package/dist-cjs/commands/DeleteCoreDeviceCommand.js +1 -28
  11. package/dist-cjs/commands/DeleteDeploymentCommand.js +1 -28
  12. package/dist-cjs/commands/DescribeComponentCommand.js +1 -28
  13. package/dist-cjs/commands/DisassociateServiceRoleFromAccountCommand.js +1 -28
  14. package/dist-cjs/commands/GetComponentCommand.js +1 -28
  15. package/dist-cjs/commands/GetComponentVersionArtifactCommand.js +1 -28
  16. package/dist-cjs/commands/GetConnectivityInfoCommand.js +1 -28
  17. package/dist-cjs/commands/GetCoreDeviceCommand.js +1 -28
  18. package/dist-cjs/commands/GetDeploymentCommand.js +1 -28
  19. package/dist-cjs/commands/GetServiceRoleForAccountCommand.js +1 -28
  20. package/dist-cjs/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.js +1 -28
  21. package/dist-cjs/commands/ListComponentVersionsCommand.js +1 -28
  22. package/dist-cjs/commands/ListComponentsCommand.js +1 -28
  23. package/dist-cjs/commands/ListCoreDevicesCommand.js +1 -28
  24. package/dist-cjs/commands/ListDeploymentsCommand.js +1 -28
  25. package/dist-cjs/commands/ListEffectiveDeploymentsCommand.js +1 -28
  26. package/dist-cjs/commands/ListInstalledComponentsCommand.js +1 -28
  27. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  28. package/dist-cjs/commands/ResolveComponentCandidatesCommand.js +1 -28
  29. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  30. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  31. package/dist-cjs/commands/UpdateConnectivityInfoCommand.js +1 -28
  32. package/dist-cjs/commands/index.js +1 -32
  33. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  34. package/dist-cjs/extensionConfiguration.js +1 -2
  35. package/dist-cjs/index.js +3210 -11
  36. package/dist-cjs/models/GreengrassV2ServiceException.js +1 -12
  37. package/dist-cjs/models/index.js +1 -4
  38. package/dist-cjs/models/models_0.js +1 -224
  39. package/dist-cjs/pagination/Interfaces.js +1 -2
  40. package/dist-cjs/pagination/ListClientDevicesAssociatedWithCoreDevicePaginator.js +1 -7
  41. package/dist-cjs/pagination/ListComponentVersionsPaginator.js +1 -7
  42. package/dist-cjs/pagination/ListComponentsPaginator.js +1 -7
  43. package/dist-cjs/pagination/ListCoreDevicesPaginator.js +1 -7
  44. package/dist-cjs/pagination/ListDeploymentsPaginator.js +1 -7
  45. package/dist-cjs/pagination/ListEffectiveDeploymentsPaginator.js +1 -7
  46. package/dist-cjs/pagination/ListInstalledComponentsPaginator.js +1 -7
  47. package/dist-cjs/pagination/index.js +1 -11
  48. package/dist-cjs/protocols/Aws_restJson1.js +1 -2195
  49. package/dist-cjs/runtimeExtensions.js +1 -22
  50. package/package.json +40 -40
@@ -1,69 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GreengrassV2 = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const AssociateServiceRoleToAccountCommand_1 = require("./commands/AssociateServiceRoleToAccountCommand");
6
- const BatchAssociateClientDeviceWithCoreDeviceCommand_1 = require("./commands/BatchAssociateClientDeviceWithCoreDeviceCommand");
7
- const BatchDisassociateClientDeviceFromCoreDeviceCommand_1 = require("./commands/BatchDisassociateClientDeviceFromCoreDeviceCommand");
8
- const CancelDeploymentCommand_1 = require("./commands/CancelDeploymentCommand");
9
- const CreateComponentVersionCommand_1 = require("./commands/CreateComponentVersionCommand");
10
- const CreateDeploymentCommand_1 = require("./commands/CreateDeploymentCommand");
11
- const DeleteComponentCommand_1 = require("./commands/DeleteComponentCommand");
12
- const DeleteCoreDeviceCommand_1 = require("./commands/DeleteCoreDeviceCommand");
13
- const DeleteDeploymentCommand_1 = require("./commands/DeleteDeploymentCommand");
14
- const DescribeComponentCommand_1 = require("./commands/DescribeComponentCommand");
15
- const DisassociateServiceRoleFromAccountCommand_1 = require("./commands/DisassociateServiceRoleFromAccountCommand");
16
- const GetComponentCommand_1 = require("./commands/GetComponentCommand");
17
- const GetComponentVersionArtifactCommand_1 = require("./commands/GetComponentVersionArtifactCommand");
18
- const GetConnectivityInfoCommand_1 = require("./commands/GetConnectivityInfoCommand");
19
- const GetCoreDeviceCommand_1 = require("./commands/GetCoreDeviceCommand");
20
- const GetDeploymentCommand_1 = require("./commands/GetDeploymentCommand");
21
- const GetServiceRoleForAccountCommand_1 = require("./commands/GetServiceRoleForAccountCommand");
22
- const ListClientDevicesAssociatedWithCoreDeviceCommand_1 = require("./commands/ListClientDevicesAssociatedWithCoreDeviceCommand");
23
- const ListComponentsCommand_1 = require("./commands/ListComponentsCommand");
24
- const ListComponentVersionsCommand_1 = require("./commands/ListComponentVersionsCommand");
25
- const ListCoreDevicesCommand_1 = require("./commands/ListCoreDevicesCommand");
26
- const ListDeploymentsCommand_1 = require("./commands/ListDeploymentsCommand");
27
- const ListEffectiveDeploymentsCommand_1 = require("./commands/ListEffectiveDeploymentsCommand");
28
- const ListInstalledComponentsCommand_1 = require("./commands/ListInstalledComponentsCommand");
29
- const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
30
- const ResolveComponentCandidatesCommand_1 = require("./commands/ResolveComponentCandidatesCommand");
31
- const TagResourceCommand_1 = require("./commands/TagResourceCommand");
32
- const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
33
- const UpdateConnectivityInfoCommand_1 = require("./commands/UpdateConnectivityInfoCommand");
34
- const GreengrassV2Client_1 = require("./GreengrassV2Client");
35
- const commands = {
36
- AssociateServiceRoleToAccountCommand: AssociateServiceRoleToAccountCommand_1.AssociateServiceRoleToAccountCommand,
37
- BatchAssociateClientDeviceWithCoreDeviceCommand: BatchAssociateClientDeviceWithCoreDeviceCommand_1.BatchAssociateClientDeviceWithCoreDeviceCommand,
38
- BatchDisassociateClientDeviceFromCoreDeviceCommand: BatchDisassociateClientDeviceFromCoreDeviceCommand_1.BatchDisassociateClientDeviceFromCoreDeviceCommand,
39
- CancelDeploymentCommand: CancelDeploymentCommand_1.CancelDeploymentCommand,
40
- CreateComponentVersionCommand: CreateComponentVersionCommand_1.CreateComponentVersionCommand,
41
- CreateDeploymentCommand: CreateDeploymentCommand_1.CreateDeploymentCommand,
42
- DeleteComponentCommand: DeleteComponentCommand_1.DeleteComponentCommand,
43
- DeleteCoreDeviceCommand: DeleteCoreDeviceCommand_1.DeleteCoreDeviceCommand,
44
- DeleteDeploymentCommand: DeleteDeploymentCommand_1.DeleteDeploymentCommand,
45
- DescribeComponentCommand: DescribeComponentCommand_1.DescribeComponentCommand,
46
- DisassociateServiceRoleFromAccountCommand: DisassociateServiceRoleFromAccountCommand_1.DisassociateServiceRoleFromAccountCommand,
47
- GetComponentCommand: GetComponentCommand_1.GetComponentCommand,
48
- GetComponentVersionArtifactCommand: GetComponentVersionArtifactCommand_1.GetComponentVersionArtifactCommand,
49
- GetConnectivityInfoCommand: GetConnectivityInfoCommand_1.GetConnectivityInfoCommand,
50
- GetCoreDeviceCommand: GetCoreDeviceCommand_1.GetCoreDeviceCommand,
51
- GetDeploymentCommand: GetDeploymentCommand_1.GetDeploymentCommand,
52
- GetServiceRoleForAccountCommand: GetServiceRoleForAccountCommand_1.GetServiceRoleForAccountCommand,
53
- ListClientDevicesAssociatedWithCoreDeviceCommand: ListClientDevicesAssociatedWithCoreDeviceCommand_1.ListClientDevicesAssociatedWithCoreDeviceCommand,
54
- ListComponentsCommand: ListComponentsCommand_1.ListComponentsCommand,
55
- ListComponentVersionsCommand: ListComponentVersionsCommand_1.ListComponentVersionsCommand,
56
- ListCoreDevicesCommand: ListCoreDevicesCommand_1.ListCoreDevicesCommand,
57
- ListDeploymentsCommand: ListDeploymentsCommand_1.ListDeploymentsCommand,
58
- ListEffectiveDeploymentsCommand: ListEffectiveDeploymentsCommand_1.ListEffectiveDeploymentsCommand,
59
- ListInstalledComponentsCommand: ListInstalledComponentsCommand_1.ListInstalledComponentsCommand,
60
- ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
61
- ResolveComponentCandidatesCommand: ResolveComponentCandidatesCommand_1.ResolveComponentCandidatesCommand,
62
- TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
63
- UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
64
- UpdateConnectivityInfoCommand: UpdateConnectivityInfoCommand_1.UpdateConnectivityInfoCommand,
65
- };
66
- class GreengrassV2 extends GreengrassV2Client_1.GreengrassV2Client {
67
- }
68
- exports.GreengrassV2 = GreengrassV2;
69
- (0, smithy_client_1.createAggregatedClient)(commands, GreengrassV2);
1
+ module.exports = require("./index.js");
@@ -1,43 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GreengrassV2Client = exports.__Client = void 0;
4
- const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
5
- const middleware_logger_1 = require("@aws-sdk/middleware-logger");
6
- const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
7
- const middleware_signing_1 = require("@aws-sdk/middleware-signing");
8
- const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
9
- const config_resolver_1 = require("@smithy/config-resolver");
10
- const middleware_content_length_1 = require("@smithy/middleware-content-length");
11
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
12
- const middleware_retry_1 = require("@smithy/middleware-retry");
13
- const smithy_client_1 = require("@smithy/smithy-client");
14
- Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
15
- const EndpointParameters_1 = require("./endpoint/EndpointParameters");
16
- const runtimeConfig_1 = require("./runtimeConfig");
17
- const runtimeExtensions_1 = require("./runtimeExtensions");
18
- class GreengrassV2Client extends smithy_client_1.Client {
19
- constructor(...[configuration]) {
20
- const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
21
- const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
22
- const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
23
- const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
24
- const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
25
- const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
26
- const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
27
- const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
28
- const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
29
- super(_config_8);
30
- this.config = _config_8;
31
- this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
32
- this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
33
- this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
34
- this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
35
- this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
36
- this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
37
- this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
38
- }
39
- destroy() {
40
- super.destroy();
41
- }
42
- }
43
- exports.GreengrassV2Client = GreengrassV2Client;
1
+ module.exports = require("./index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AssociateServiceRoleToAccountCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class AssociateServiceRoleToAccountCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "AssociateServiceRoleToAccount", {})
22
- .n("GreengrassV2Client", "AssociateServiceRoleToAccountCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_AssociateServiceRoleToAccountCommand)
25
- .de(Aws_restJson1_1.de_AssociateServiceRoleToAccountCommand)
26
- .build() {
27
- }
28
- exports.AssociateServiceRoleToAccountCommand = AssociateServiceRoleToAccountCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.BatchAssociateClientDeviceWithCoreDeviceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class BatchAssociateClientDeviceWithCoreDeviceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "BatchAssociateClientDeviceWithCoreDevice", {})
22
- .n("GreengrassV2Client", "BatchAssociateClientDeviceWithCoreDeviceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_BatchAssociateClientDeviceWithCoreDeviceCommand)
25
- .de(Aws_restJson1_1.de_BatchAssociateClientDeviceWithCoreDeviceCommand)
26
- .build() {
27
- }
28
- exports.BatchAssociateClientDeviceWithCoreDeviceCommand = BatchAssociateClientDeviceWithCoreDeviceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.BatchDisassociateClientDeviceFromCoreDeviceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class BatchDisassociateClientDeviceFromCoreDeviceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "BatchDisassociateClientDeviceFromCoreDevice", {})
22
- .n("GreengrassV2Client", "BatchDisassociateClientDeviceFromCoreDeviceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_BatchDisassociateClientDeviceFromCoreDeviceCommand)
25
- .de(Aws_restJson1_1.de_BatchDisassociateClientDeviceFromCoreDeviceCommand)
26
- .build() {
27
- }
28
- exports.BatchDisassociateClientDeviceFromCoreDeviceCommand = BatchDisassociateClientDeviceFromCoreDeviceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CancelDeploymentCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class CancelDeploymentCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "CancelDeployment", {})
22
- .n("GreengrassV2Client", "CancelDeploymentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_CancelDeploymentCommand)
25
- .de(Aws_restJson1_1.de_CancelDeploymentCommand)
26
- .build() {
27
- }
28
- exports.CancelDeploymentCommand = CancelDeploymentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateComponentVersionCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class CreateComponentVersionCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "CreateComponentVersion", {})
22
- .n("GreengrassV2Client", "CreateComponentVersionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_CreateComponentVersionCommand)
25
- .de(Aws_restJson1_1.de_CreateComponentVersionCommand)
26
- .build() {
27
- }
28
- exports.CreateComponentVersionCommand = CreateComponentVersionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateDeploymentCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class CreateDeploymentCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "CreateDeployment", {})
22
- .n("GreengrassV2Client", "CreateDeploymentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_CreateDeploymentCommand)
25
- .de(Aws_restJson1_1.de_CreateDeploymentCommand)
26
- .build() {
27
- }
28
- exports.CreateDeploymentCommand = CreateDeploymentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteComponentCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DeleteComponentCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "DeleteComponent", {})
22
- .n("GreengrassV2Client", "DeleteComponentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteComponentCommand)
25
- .de(Aws_restJson1_1.de_DeleteComponentCommand)
26
- .build() {
27
- }
28
- exports.DeleteComponentCommand = DeleteComponentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteCoreDeviceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DeleteCoreDeviceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "DeleteCoreDevice", {})
22
- .n("GreengrassV2Client", "DeleteCoreDeviceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteCoreDeviceCommand)
25
- .de(Aws_restJson1_1.de_DeleteCoreDeviceCommand)
26
- .build() {
27
- }
28
- exports.DeleteCoreDeviceCommand = DeleteCoreDeviceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteDeploymentCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DeleteDeploymentCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "DeleteDeployment", {})
22
- .n("GreengrassV2Client", "DeleteDeploymentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteDeploymentCommand)
25
- .de(Aws_restJson1_1.de_DeleteDeploymentCommand)
26
- .build() {
27
- }
28
- exports.DeleteDeploymentCommand = DeleteDeploymentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeComponentCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DescribeComponentCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "DescribeComponent", {})
22
- .n("GreengrassV2Client", "DescribeComponentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DescribeComponentCommand)
25
- .de(Aws_restJson1_1.de_DescribeComponentCommand)
26
- .build() {
27
- }
28
- exports.DescribeComponentCommand = DescribeComponentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DisassociateServiceRoleFromAccountCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DisassociateServiceRoleFromAccountCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "DisassociateServiceRoleFromAccount", {})
22
- .n("GreengrassV2Client", "DisassociateServiceRoleFromAccountCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DisassociateServiceRoleFromAccountCommand)
25
- .de(Aws_restJson1_1.de_DisassociateServiceRoleFromAccountCommand)
26
- .build() {
27
- }
28
- exports.DisassociateServiceRoleFromAccountCommand = DisassociateServiceRoleFromAccountCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetComponentCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetComponentCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "GetComponent", {})
22
- .n("GreengrassV2Client", "GetComponentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetComponentCommand)
25
- .de(Aws_restJson1_1.de_GetComponentCommand)
26
- .build() {
27
- }
28
- exports.GetComponentCommand = GetComponentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetComponentVersionArtifactCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetComponentVersionArtifactCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "GetComponentVersionArtifact", {})
22
- .n("GreengrassV2Client", "GetComponentVersionArtifactCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetComponentVersionArtifactCommand)
25
- .de(Aws_restJson1_1.de_GetComponentVersionArtifactCommand)
26
- .build() {
27
- }
28
- exports.GetComponentVersionArtifactCommand = GetComponentVersionArtifactCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetConnectivityInfoCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetConnectivityInfoCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "GetConnectivityInfo", {})
22
- .n("GreengrassV2Client", "GetConnectivityInfoCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetConnectivityInfoCommand)
25
- .de(Aws_restJson1_1.de_GetConnectivityInfoCommand)
26
- .build() {
27
- }
28
- exports.GetConnectivityInfoCommand = GetConnectivityInfoCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetCoreDeviceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetCoreDeviceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "GetCoreDevice", {})
22
- .n("GreengrassV2Client", "GetCoreDeviceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetCoreDeviceCommand)
25
- .de(Aws_restJson1_1.de_GetCoreDeviceCommand)
26
- .build() {
27
- }
28
- exports.GetCoreDeviceCommand = GetCoreDeviceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetDeploymentCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetDeploymentCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "GetDeployment", {})
22
- .n("GreengrassV2Client", "GetDeploymentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetDeploymentCommand)
25
- .de(Aws_restJson1_1.de_GetDeploymentCommand)
26
- .build() {
27
- }
28
- exports.GetDeploymentCommand = GetDeploymentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetServiceRoleForAccountCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetServiceRoleForAccountCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GreengrassV2", "GetServiceRoleForAccount", {})
22
- .n("GreengrassV2Client", "GetServiceRoleForAccountCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetServiceRoleForAccountCommand)
25
- .de(Aws_restJson1_1.de_GetServiceRoleForAccountCommand)
26
- .build() {
27
- }
28
- exports.GetServiceRoleForAccountCommand = GetServiceRoleForAccountCommand;
1
+ module.exports = require("../index.js");