@aws-sdk/client-iot-jobs-data-plane 3.180.0 → 3.183.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,26 @@
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.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-iot-jobs-data-plane
9
+
10
+
11
+
12
+
13
+
14
+ # [3.181.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.180.0...v3.181.0) (2022-09-29)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **clients:** make parseErrorBody async ([#3999](https://github.com/aws/aws-sdk-js-v3/issues/3999)) ([2558c93](https://github.com/aws/aws-sdk-js-v3/commit/2558c93c050357ac6dc47aa0452b15b12ebfd676))
20
+ * **clients:** populate message field when parsing errors ([#3995](https://github.com/aws/aws-sdk-js-v3/issues/3995)) ([02e47f1](https://github.com/aws/aws-sdk-js-v3/commit/02e47f14397ae0a5d2e2883350d038b307fdcdb4))
21
+
22
+
23
+
24
+
25
+
6
26
  # [3.180.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.179.0...v3.180.0) (2022-09-27)
7
27
 
8
28
  **Note:** Version bump only for package @aws-sdk/client-iot-jobs-data-plane
@@ -118,7 +118,7 @@ exports.deserializeAws_restJson1DescribeJobExecutionCommand = deserializeAws_res
118
118
  const deserializeAws_restJson1DescribeJobExecutionCommandError = async (output, context) => {
119
119
  const parsedOutput = {
120
120
  ...output,
121
- body: await parseBody(output.body, context),
121
+ body: await parseErrorBody(output.body, context),
122
122
  };
123
123
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
124
124
  switch (errorCode) {
@@ -170,7 +170,7 @@ exports.deserializeAws_restJson1GetPendingJobExecutionsCommand = deserializeAws_
170
170
  const deserializeAws_restJson1GetPendingJobExecutionsCommandError = async (output, context) => {
171
171
  const parsedOutput = {
172
172
  ...output,
173
- body: await parseBody(output.body, context),
173
+ body: await parseErrorBody(output.body, context),
174
174
  };
175
175
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
176
176
  switch (errorCode) {
@@ -216,7 +216,7 @@ exports.deserializeAws_restJson1StartNextPendingJobExecutionCommand = deserializ
216
216
  const deserializeAws_restJson1StartNextPendingJobExecutionCommandError = async (output, context) => {
217
217
  const parsedOutput = {
218
218
  ...output,
219
- body: await parseBody(output.body, context),
219
+ body: await parseErrorBody(output.body, context),
220
220
  };
221
221
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
222
222
  switch (errorCode) {
@@ -265,7 +265,7 @@ exports.deserializeAws_restJson1UpdateJobExecutionCommand = deserializeAws_restJ
265
265
  const deserializeAws_restJson1UpdateJobExecutionCommandError = async (output, context) => {
266
266
  const parsedOutput = {
267
267
  ...output,
268
- body: await parseBody(output.body, context),
268
+ body: await parseErrorBody(output.body, context),
269
269
  };
270
270
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
271
271
  switch (errorCode) {
@@ -477,6 +477,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
477
477
  }
478
478
  return {};
479
479
  });
480
+ const parseErrorBody = async (errorBody, context) => {
481
+ var _a;
482
+ const value = await parseBody(errorBody, context);
483
+ value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
484
+ return value;
485
+ };
480
486
  const loadRestJsonErrorCode = (output, data) => {
481
487
  const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
482
488
  const sanitizeErrorCode = (rawValue) => {
@@ -1,70 +1,63 @@
1
- import { __extends } from "tslib";
2
1
  import { DescribeJobExecutionCommand, } from "./commands/DescribeJobExecutionCommand";
3
2
  import { GetPendingJobExecutionsCommand, } from "./commands/GetPendingJobExecutionsCommand";
4
3
  import { StartNextPendingJobExecutionCommand, } from "./commands/StartNextPendingJobExecutionCommand";
5
4
  import { UpdateJobExecutionCommand, } from "./commands/UpdateJobExecutionCommand";
6
5
  import { IoTJobsDataPlaneClient } from "./IoTJobsDataPlaneClient";
7
- var IoTJobsDataPlane = (function (_super) {
8
- __extends(IoTJobsDataPlane, _super);
9
- function IoTJobsDataPlane() {
10
- return _super !== null && _super.apply(this, arguments) || this;
11
- }
12
- IoTJobsDataPlane.prototype.describeJobExecution = function (args, optionsOrCb, cb) {
13
- var command = new DescribeJobExecutionCommand(args);
6
+ export class IoTJobsDataPlane extends IoTJobsDataPlaneClient {
7
+ describeJobExecution(args, optionsOrCb, cb) {
8
+ const command = new DescribeJobExecutionCommand(args);
14
9
  if (typeof optionsOrCb === "function") {
15
10
  this.send(command, optionsOrCb);
16
11
  }
17
12
  else if (typeof cb === "function") {
18
13
  if (typeof optionsOrCb !== "object")
19
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
14
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
20
15
  this.send(command, optionsOrCb || {}, cb);
21
16
  }
22
17
  else {
23
18
  return this.send(command, optionsOrCb);
24
19
  }
25
- };
26
- IoTJobsDataPlane.prototype.getPendingJobExecutions = function (args, optionsOrCb, cb) {
27
- var command = new GetPendingJobExecutionsCommand(args);
20
+ }
21
+ getPendingJobExecutions(args, optionsOrCb, cb) {
22
+ const command = new GetPendingJobExecutionsCommand(args);
28
23
  if (typeof optionsOrCb === "function") {
29
24
  this.send(command, optionsOrCb);
30
25
  }
31
26
  else if (typeof cb === "function") {
32
27
  if (typeof optionsOrCb !== "object")
33
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
28
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
34
29
  this.send(command, optionsOrCb || {}, cb);
35
30
  }
36
31
  else {
37
32
  return this.send(command, optionsOrCb);
38
33
  }
39
- };
40
- IoTJobsDataPlane.prototype.startNextPendingJobExecution = function (args, optionsOrCb, cb) {
41
- var command = new StartNextPendingJobExecutionCommand(args);
34
+ }
35
+ startNextPendingJobExecution(args, optionsOrCb, cb) {
36
+ const command = new StartNextPendingJobExecutionCommand(args);
42
37
  if (typeof optionsOrCb === "function") {
43
38
  this.send(command, optionsOrCb);
44
39
  }
45
40
  else if (typeof cb === "function") {
46
41
  if (typeof optionsOrCb !== "object")
47
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
42
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
48
43
  this.send(command, optionsOrCb || {}, cb);
49
44
  }
50
45
  else {
51
46
  return this.send(command, optionsOrCb);
52
47
  }
53
- };
54
- IoTJobsDataPlane.prototype.updateJobExecution = function (args, optionsOrCb, cb) {
55
- var command = new UpdateJobExecutionCommand(args);
48
+ }
49
+ updateJobExecution(args, optionsOrCb, cb) {
50
+ const command = new UpdateJobExecutionCommand(args);
56
51
  if (typeof optionsOrCb === "function") {
57
52
  this.send(command, optionsOrCb);
58
53
  }
59
54
  else if (typeof cb === "function") {
60
55
  if (typeof optionsOrCb !== "object")
61
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
56
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
62
57
  this.send(command, optionsOrCb || {}, cb);
63
58
  }
64
59
  else {
65
60
  return this.send(command, optionsOrCb);
66
61
  }
67
- };
68
- return IoTJobsDataPlane;
69
- }(IoTJobsDataPlaneClient));
70
- export { IoTJobsDataPlane };
62
+ }
63
+ }
@@ -1,4 +1,3 @@
1
- import { __extends } from "tslib";
2
1
  import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
3
2
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
3
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
@@ -9,31 +8,26 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
9
8
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
10
9
  import { Client as __Client, } from "@aws-sdk/smithy-client";
11
10
  import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
12
- var IoTJobsDataPlaneClient = (function (_super) {
13
- __extends(IoTJobsDataPlaneClient, _super);
14
- function IoTJobsDataPlaneClient(configuration) {
15
- var _this = this;
16
- var _config_0 = __getRuntimeConfig(configuration);
17
- var _config_1 = resolveRegionConfig(_config_0);
18
- var _config_2 = resolveEndpointsConfig(_config_1);
19
- var _config_3 = resolveRetryConfig(_config_2);
20
- var _config_4 = resolveHostHeaderConfig(_config_3);
21
- var _config_5 = resolveAwsAuthConfig(_config_4);
22
- var _config_6 = resolveUserAgentConfig(_config_5);
23
- _this = _super.call(this, _config_6) || this;
24
- _this.config = _config_6;
25
- _this.middlewareStack.use(getRetryPlugin(_this.config));
26
- _this.middlewareStack.use(getContentLengthPlugin(_this.config));
27
- _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
28
- _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
- _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
30
- _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
31
- _this.middlewareStack.use(getUserAgentPlugin(_this.config));
32
- return _this;
11
+ export class IoTJobsDataPlaneClient extends __Client {
12
+ constructor(configuration) {
13
+ const _config_0 = __getRuntimeConfig(configuration);
14
+ const _config_1 = resolveRegionConfig(_config_0);
15
+ const _config_2 = resolveEndpointsConfig(_config_1);
16
+ const _config_3 = resolveRetryConfig(_config_2);
17
+ const _config_4 = resolveHostHeaderConfig(_config_3);
18
+ const _config_5 = resolveAwsAuthConfig(_config_4);
19
+ const _config_6 = resolveUserAgentConfig(_config_5);
20
+ super(_config_6);
21
+ this.config = _config_6;
22
+ this.middlewareStack.use(getRetryPlugin(this.config));
23
+ this.middlewareStack.use(getContentLengthPlugin(this.config));
24
+ this.middlewareStack.use(getHostHeaderPlugin(this.config));
25
+ this.middlewareStack.use(getLoggerPlugin(this.config));
26
+ this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
27
+ this.middlewareStack.use(getAwsAuthPlugin(this.config));
28
+ this.middlewareStack.use(getUserAgentPlugin(this.config));
33
29
  }
34
- IoTJobsDataPlaneClient.prototype.destroy = function () {
35
- _super.prototype.destroy.call(this);
36
- };
37
- return IoTJobsDataPlaneClient;
38
- }(__Client));
39
- export { IoTJobsDataPlaneClient };
30
+ destroy() {
31
+ super.destroy();
32
+ }
33
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { DescribeJobExecutionRequestFilterSensitiveLog, DescribeJobExecutionResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1DescribeJobExecutionCommand, serializeAws_restJson1DescribeJobExecutionCommand, } from "../protocols/Aws_restJson1";
6
- var DescribeJobExecutionCommand = (function (_super) {
7
- __extends(DescribeJobExecutionCommand, _super);
8
- function DescribeJobExecutionCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DescribeJobExecutionCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DescribeJobExecutionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "IoTJobsDataPlaneClient";
18
- var commandName = "DescribeJobExecutionCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "IoTJobsDataPlaneClient";
15
+ const commandName = "DescribeJobExecutionCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DescribeJobExecutionRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DescribeJobExecutionResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DescribeJobExecutionCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1DescribeJobExecutionCommand(input, context);
33
- };
34
- DescribeJobExecutionCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1DescribeJobExecutionCommand(output, context);
36
- };
37
- return DescribeJobExecutionCommand;
38
- }($Command));
39
- export { DescribeJobExecutionCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { GetPendingJobExecutionsRequestFilterSensitiveLog, GetPendingJobExecutionsResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1GetPendingJobExecutionsCommand, serializeAws_restJson1GetPendingJobExecutionsCommand, } from "../protocols/Aws_restJson1";
6
- var GetPendingJobExecutionsCommand = (function (_super) {
7
- __extends(GetPendingJobExecutionsCommand, _super);
8
- function GetPendingJobExecutionsCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class GetPendingJobExecutionsCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- GetPendingJobExecutionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "IoTJobsDataPlaneClient";
18
- var commandName = "GetPendingJobExecutionsCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "IoTJobsDataPlaneClient";
15
+ const commandName = "GetPendingJobExecutionsCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: GetPendingJobExecutionsRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: GetPendingJobExecutionsResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- GetPendingJobExecutionsCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1GetPendingJobExecutionsCommand(input, context);
33
- };
34
- GetPendingJobExecutionsCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1GetPendingJobExecutionsCommand(output, context);
36
- };
37
- return GetPendingJobExecutionsCommand;
38
- }($Command));
39
- export { GetPendingJobExecutionsCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { StartNextPendingJobExecutionRequestFilterSensitiveLog, StartNextPendingJobExecutionResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1StartNextPendingJobExecutionCommand, serializeAws_restJson1StartNextPendingJobExecutionCommand, } from "../protocols/Aws_restJson1";
6
- var StartNextPendingJobExecutionCommand = (function (_super) {
7
- __extends(StartNextPendingJobExecutionCommand, _super);
8
- function StartNextPendingJobExecutionCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class StartNextPendingJobExecutionCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- StartNextPendingJobExecutionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "IoTJobsDataPlaneClient";
18
- var commandName = "StartNextPendingJobExecutionCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "IoTJobsDataPlaneClient";
15
+ const commandName = "StartNextPendingJobExecutionCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: StartNextPendingJobExecutionRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: StartNextPendingJobExecutionResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- StartNextPendingJobExecutionCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1StartNextPendingJobExecutionCommand(input, context);
33
- };
34
- StartNextPendingJobExecutionCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1StartNextPendingJobExecutionCommand(output, context);
36
- };
37
- return StartNextPendingJobExecutionCommand;
38
- }($Command));
39
- export { StartNextPendingJobExecutionCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { UpdateJobExecutionRequestFilterSensitiveLog, UpdateJobExecutionResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1UpdateJobExecutionCommand, serializeAws_restJson1UpdateJobExecutionCommand, } from "../protocols/Aws_restJson1";
6
- var UpdateJobExecutionCommand = (function (_super) {
7
- __extends(UpdateJobExecutionCommand, _super);
8
- function UpdateJobExecutionCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class UpdateJobExecutionCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- UpdateJobExecutionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "IoTJobsDataPlaneClient";
18
- var commandName = "UpdateJobExecutionCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "IoTJobsDataPlaneClient";
15
+ const commandName = "UpdateJobExecutionCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: UpdateJobExecutionRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: UpdateJobExecutionResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- UpdateJobExecutionCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1UpdateJobExecutionCommand(input, context);
33
- };
34
- UpdateJobExecutionCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1UpdateJobExecutionCommand(output, context);
36
- };
37
- return UpdateJobExecutionCommand;
38
- }($Command));
39
- export { UpdateJobExecutionCommand };
31
+ }
32
+ }
@@ -1,6 +1,5 @@
1
- import { __assign, __awaiter, __generator } from "tslib";
2
1
  import { getRegionInfo } from "@aws-sdk/config-resolver";
3
- var regionHash = {
2
+ const regionHash = {
4
3
  "ca-central-1": {
5
4
  variants: [
6
5
  {
@@ -58,7 +57,7 @@ var regionHash = {
58
57
  ],
59
58
  },
60
59
  };
61
- var partitionHash = {
60
+ const partitionHash = {
62
61
  aws: {
63
62
  regions: [
64
63
  "af-south-1",
@@ -183,8 +182,9 @@ var partitionHash = {
183
182
  ],
184
183
  },
185
184
  };
186
- export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
187
- return __generator(this, function (_a) {
188
- return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "iot-jobs-data", regionHash: regionHash, partitionHash: partitionHash }))];
189
- });
190
- }); };
185
+ export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, {
186
+ ...options,
187
+ signingService: "iot-jobs-data",
188
+ regionHash,
189
+ partitionHash,
190
+ });
@@ -1,12 +1,7 @@
1
- import { __extends } from "tslib";
2
1
  import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
- var IoTJobsDataPlaneServiceException = (function (_super) {
4
- __extends(IoTJobsDataPlaneServiceException, _super);
5
- function IoTJobsDataPlaneServiceException(options) {
6
- var _this = _super.call(this, options) || this;
7
- Object.setPrototypeOf(_this, IoTJobsDataPlaneServiceException.prototype);
8
- return _this;
2
+ export class IoTJobsDataPlaneServiceException extends __ServiceException {
3
+ constructor(options) {
4
+ super(options);
5
+ Object.setPrototypeOf(this, IoTJobsDataPlaneServiceException.prototype);
9
6
  }
10
- return IoTJobsDataPlaneServiceException;
11
- }(__ServiceException));
12
- export { IoTJobsDataPlaneServiceException };
7
+ }