@aws-sdk/client-iot-jobs-data-plane 3.131.0 → 3.137.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 +11 -0
- package/dist-cjs/commands/DescribeJobExecutionCommand.js +2 -2
- package/dist-cjs/commands/GetPendingJobExecutionsCommand.js +2 -2
- package/dist-cjs/commands/StartNextPendingJobExecutionCommand.js +2 -2
- package/dist-cjs/commands/UpdateJobExecutionCommand.js +2 -2
- package/dist-cjs/models/models_0.js +45 -67
- package/dist-es/commands/DescribeJobExecutionCommand.js +3 -3
- package/dist-es/commands/GetPendingJobExecutionsCommand.js +3 -3
- package/dist-es/commands/StartNextPendingJobExecutionCommand.js +3 -3
- package/dist-es/commands/UpdateJobExecutionCommand.js +3 -3
- package/dist-es/models/models_0.js +11 -44
- package/dist-types/models/models_0.d.ts +44 -66
- package/dist-types/ts3.4/models/models_0.d.ts +22 -44
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.137.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.136.1...v3.137.0) (2022-07-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **namespaces:** remove namespaces with only a log filter ([#3823](https://github.com/aws/aws-sdk-js-v3/issues/3823)) ([33e6822](https://github.com/aws/aws-sdk-js-v3/commit/33e68228fb64c53dd8f89e6be76dd5f46edc3cfd))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.131.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.130.0...v3.131.0) (2022-07-15)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-iot-jobs-data-plane
|
|
@@ -20,8 +20,8 @@ class DescribeJobExecutionCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeJobExecutionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeJobExecutionResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class GetPendingJobExecutionsCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.GetPendingJobExecutionsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.GetPendingJobExecutionsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class StartNextPendingJobExecutionCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.StartNextPendingJobExecutionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.StartNextPendingJobExecutionResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class UpdateJobExecutionCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.UpdateJobExecutionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.UpdateJobExecutionResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.UpdateJobExecutionResponseFilterSensitiveLog = exports.JobExecutionStateFilterSensitiveLog = exports.UpdateJobExecutionRequestFilterSensitiveLog = exports.StartNextPendingJobExecutionResponseFilterSensitiveLog = exports.StartNextPendingJobExecutionRequestFilterSensitiveLog = exports.GetPendingJobExecutionsResponseFilterSensitiveLog = exports.JobExecutionSummaryFilterSensitiveLog = exports.GetPendingJobExecutionsRequestFilterSensitiveLog = exports.DescribeJobExecutionResponseFilterSensitiveLog = exports.JobExecutionFilterSensitiveLog = exports.DescribeJobExecutionRequestFilterSensitiveLog = exports.InvalidStateTransitionException = exports.ThrottlingException = exports.TerminalStateException = exports.ServiceUnavailableException = exports.ResourceNotFoundException = exports.InvalidRequestException = exports.JobExecutionStatus = exports.CertificateValidationException = void 0;
|
|
4
4
|
const IoTJobsDataPlaneServiceException_1 = require("./IoTJobsDataPlaneServiceException");
|
|
5
5
|
class CertificateValidationException extends IoTJobsDataPlaneServiceException_1.IoTJobsDataPlaneServiceException {
|
|
6
6
|
constructor(opts) {
|
|
@@ -15,12 +15,6 @@ class CertificateValidationException extends IoTJobsDataPlaneServiceException_1.
|
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
exports.CertificateValidationException = CertificateValidationException;
|
|
18
|
-
var DescribeJobExecutionRequest;
|
|
19
|
-
(function (DescribeJobExecutionRequest) {
|
|
20
|
-
DescribeJobExecutionRequest.filterSensitiveLog = (obj) => ({
|
|
21
|
-
...obj,
|
|
22
|
-
});
|
|
23
|
-
})(DescribeJobExecutionRequest = exports.DescribeJobExecutionRequest || (exports.DescribeJobExecutionRequest = {}));
|
|
24
18
|
var JobExecutionStatus;
|
|
25
19
|
(function (JobExecutionStatus) {
|
|
26
20
|
JobExecutionStatus["CANCELED"] = "CANCELED";
|
|
@@ -32,18 +26,6 @@ var JobExecutionStatus;
|
|
|
32
26
|
JobExecutionStatus["SUCCEEDED"] = "SUCCEEDED";
|
|
33
27
|
JobExecutionStatus["TIMED_OUT"] = "TIMED_OUT";
|
|
34
28
|
})(JobExecutionStatus = exports.JobExecutionStatus || (exports.JobExecutionStatus = {}));
|
|
35
|
-
var JobExecution;
|
|
36
|
-
(function (JobExecution) {
|
|
37
|
-
JobExecution.filterSensitiveLog = (obj) => ({
|
|
38
|
-
...obj,
|
|
39
|
-
});
|
|
40
|
-
})(JobExecution = exports.JobExecution || (exports.JobExecution = {}));
|
|
41
|
-
var DescribeJobExecutionResponse;
|
|
42
|
-
(function (DescribeJobExecutionResponse) {
|
|
43
|
-
DescribeJobExecutionResponse.filterSensitiveLog = (obj) => ({
|
|
44
|
-
...obj,
|
|
45
|
-
});
|
|
46
|
-
})(DescribeJobExecutionResponse = exports.DescribeJobExecutionResponse || (exports.DescribeJobExecutionResponse = {}));
|
|
47
29
|
class InvalidRequestException extends IoTJobsDataPlaneServiceException_1.IoTJobsDataPlaneServiceException {
|
|
48
30
|
constructor(opts) {
|
|
49
31
|
super({
|
|
@@ -110,24 +92,6 @@ class ThrottlingException extends IoTJobsDataPlaneServiceException_1.IoTJobsData
|
|
|
110
92
|
}
|
|
111
93
|
}
|
|
112
94
|
exports.ThrottlingException = ThrottlingException;
|
|
113
|
-
var GetPendingJobExecutionsRequest;
|
|
114
|
-
(function (GetPendingJobExecutionsRequest) {
|
|
115
|
-
GetPendingJobExecutionsRequest.filterSensitiveLog = (obj) => ({
|
|
116
|
-
...obj,
|
|
117
|
-
});
|
|
118
|
-
})(GetPendingJobExecutionsRequest = exports.GetPendingJobExecutionsRequest || (exports.GetPendingJobExecutionsRequest = {}));
|
|
119
|
-
var JobExecutionSummary;
|
|
120
|
-
(function (JobExecutionSummary) {
|
|
121
|
-
JobExecutionSummary.filterSensitiveLog = (obj) => ({
|
|
122
|
-
...obj,
|
|
123
|
-
});
|
|
124
|
-
})(JobExecutionSummary = exports.JobExecutionSummary || (exports.JobExecutionSummary = {}));
|
|
125
|
-
var GetPendingJobExecutionsResponse;
|
|
126
|
-
(function (GetPendingJobExecutionsResponse) {
|
|
127
|
-
GetPendingJobExecutionsResponse.filterSensitiveLog = (obj) => ({
|
|
128
|
-
...obj,
|
|
129
|
-
});
|
|
130
|
-
})(GetPendingJobExecutionsResponse = exports.GetPendingJobExecutionsResponse || (exports.GetPendingJobExecutionsResponse = {}));
|
|
131
95
|
class InvalidStateTransitionException extends IoTJobsDataPlaneServiceException_1.IoTJobsDataPlaneServiceException {
|
|
132
96
|
constructor(opts) {
|
|
133
97
|
super({
|
|
@@ -141,33 +105,47 @@ class InvalidStateTransitionException extends IoTJobsDataPlaneServiceException_1
|
|
|
141
105
|
}
|
|
142
106
|
}
|
|
143
107
|
exports.InvalidStateTransitionException = InvalidStateTransitionException;
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
108
|
+
const DescribeJobExecutionRequestFilterSensitiveLog = (obj) => ({
|
|
109
|
+
...obj,
|
|
110
|
+
});
|
|
111
|
+
exports.DescribeJobExecutionRequestFilterSensitiveLog = DescribeJobExecutionRequestFilterSensitiveLog;
|
|
112
|
+
const JobExecutionFilterSensitiveLog = (obj) => ({
|
|
113
|
+
...obj,
|
|
114
|
+
});
|
|
115
|
+
exports.JobExecutionFilterSensitiveLog = JobExecutionFilterSensitiveLog;
|
|
116
|
+
const DescribeJobExecutionResponseFilterSensitiveLog = (obj) => ({
|
|
117
|
+
...obj,
|
|
118
|
+
});
|
|
119
|
+
exports.DescribeJobExecutionResponseFilterSensitiveLog = DescribeJobExecutionResponseFilterSensitiveLog;
|
|
120
|
+
const GetPendingJobExecutionsRequestFilterSensitiveLog = (obj) => ({
|
|
121
|
+
...obj,
|
|
122
|
+
});
|
|
123
|
+
exports.GetPendingJobExecutionsRequestFilterSensitiveLog = GetPendingJobExecutionsRequestFilterSensitiveLog;
|
|
124
|
+
const JobExecutionSummaryFilterSensitiveLog = (obj) => ({
|
|
125
|
+
...obj,
|
|
126
|
+
});
|
|
127
|
+
exports.JobExecutionSummaryFilterSensitiveLog = JobExecutionSummaryFilterSensitiveLog;
|
|
128
|
+
const GetPendingJobExecutionsResponseFilterSensitiveLog = (obj) => ({
|
|
129
|
+
...obj,
|
|
130
|
+
});
|
|
131
|
+
exports.GetPendingJobExecutionsResponseFilterSensitiveLog = GetPendingJobExecutionsResponseFilterSensitiveLog;
|
|
132
|
+
const StartNextPendingJobExecutionRequestFilterSensitiveLog = (obj) => ({
|
|
133
|
+
...obj,
|
|
134
|
+
});
|
|
135
|
+
exports.StartNextPendingJobExecutionRequestFilterSensitiveLog = StartNextPendingJobExecutionRequestFilterSensitiveLog;
|
|
136
|
+
const StartNextPendingJobExecutionResponseFilterSensitiveLog = (obj) => ({
|
|
137
|
+
...obj,
|
|
138
|
+
});
|
|
139
|
+
exports.StartNextPendingJobExecutionResponseFilterSensitiveLog = StartNextPendingJobExecutionResponseFilterSensitiveLog;
|
|
140
|
+
const UpdateJobExecutionRequestFilterSensitiveLog = (obj) => ({
|
|
141
|
+
...obj,
|
|
142
|
+
});
|
|
143
|
+
exports.UpdateJobExecutionRequestFilterSensitiveLog = UpdateJobExecutionRequestFilterSensitiveLog;
|
|
144
|
+
const JobExecutionStateFilterSensitiveLog = (obj) => ({
|
|
145
|
+
...obj,
|
|
146
|
+
});
|
|
147
|
+
exports.JobExecutionStateFilterSensitiveLog = JobExecutionStateFilterSensitiveLog;
|
|
148
|
+
const UpdateJobExecutionResponseFilterSensitiveLog = (obj) => ({
|
|
149
|
+
...obj,
|
|
150
|
+
});
|
|
151
|
+
exports.UpdateJobExecutionResponseFilterSensitiveLog = UpdateJobExecutionResponseFilterSensitiveLog;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeJobExecutionRequestFilterSensitiveLog, DescribeJobExecutionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeJobExecutionCommand, serializeAws_restJson1DescribeJobExecutionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DescribeJobExecutionCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeJobExecutionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeJobExecutionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeJobExecutionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeJobExecutionResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetPendingJobExecutionsRequestFilterSensitiveLog, GetPendingJobExecutionsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetPendingJobExecutionsCommand, serializeAws_restJson1GetPendingJobExecutionsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetPendingJobExecutionsCommand = (function (_super) {
|
|
7
7
|
__extends(GetPendingJobExecutionsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetPendingJobExecutionsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetPendingJobExecutionsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetPendingJobExecutionsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { StartNextPendingJobExecutionRequestFilterSensitiveLog, StartNextPendingJobExecutionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1StartNextPendingJobExecutionCommand, serializeAws_restJson1StartNextPendingJobExecutionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var StartNextPendingJobExecutionCommand = (function (_super) {
|
|
7
7
|
__extends(StartNextPendingJobExecutionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartNextPendingJobExecutionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartNextPendingJobExecutionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartNextPendingJobExecutionResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateJobExecutionRequestFilterSensitiveLog, UpdateJobExecutionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateJobExecutionCommand, serializeAws_restJson1UpdateJobExecutionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateJobExecutionCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateJobExecutionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateJobExecutionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateJobExecutionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateJobExecutionResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -12,10 +12,6 @@ var CertificateValidationException = (function (_super) {
|
|
|
12
12
|
return CertificateValidationException;
|
|
13
13
|
}(__BaseException));
|
|
14
14
|
export { CertificateValidationException };
|
|
15
|
-
export var DescribeJobExecutionRequest;
|
|
16
|
-
(function (DescribeJobExecutionRequest) {
|
|
17
|
-
DescribeJobExecutionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
18
|
-
})(DescribeJobExecutionRequest || (DescribeJobExecutionRequest = {}));
|
|
19
15
|
export var JobExecutionStatus;
|
|
20
16
|
(function (JobExecutionStatus) {
|
|
21
17
|
JobExecutionStatus["CANCELED"] = "CANCELED";
|
|
@@ -27,14 +23,6 @@ export var JobExecutionStatus;
|
|
|
27
23
|
JobExecutionStatus["SUCCEEDED"] = "SUCCEEDED";
|
|
28
24
|
JobExecutionStatus["TIMED_OUT"] = "TIMED_OUT";
|
|
29
25
|
})(JobExecutionStatus || (JobExecutionStatus = {}));
|
|
30
|
-
export var JobExecution;
|
|
31
|
-
(function (JobExecution) {
|
|
32
|
-
JobExecution.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
33
|
-
})(JobExecution || (JobExecution = {}));
|
|
34
|
-
export var DescribeJobExecutionResponse;
|
|
35
|
-
(function (DescribeJobExecutionResponse) {
|
|
36
|
-
DescribeJobExecutionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
37
|
-
})(DescribeJobExecutionResponse || (DescribeJobExecutionResponse = {}));
|
|
38
26
|
var InvalidRequestException = (function (_super) {
|
|
39
27
|
__extends(InvalidRequestException, _super);
|
|
40
28
|
function InvalidRequestException(opts) {
|
|
@@ -96,18 +84,6 @@ var ThrottlingException = (function (_super) {
|
|
|
96
84
|
return ThrottlingException;
|
|
97
85
|
}(__BaseException));
|
|
98
86
|
export { ThrottlingException };
|
|
99
|
-
export var GetPendingJobExecutionsRequest;
|
|
100
|
-
(function (GetPendingJobExecutionsRequest) {
|
|
101
|
-
GetPendingJobExecutionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
102
|
-
})(GetPendingJobExecutionsRequest || (GetPendingJobExecutionsRequest = {}));
|
|
103
|
-
export var JobExecutionSummary;
|
|
104
|
-
(function (JobExecutionSummary) {
|
|
105
|
-
JobExecutionSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
106
|
-
})(JobExecutionSummary || (JobExecutionSummary = {}));
|
|
107
|
-
export var GetPendingJobExecutionsResponse;
|
|
108
|
-
(function (GetPendingJobExecutionsResponse) {
|
|
109
|
-
GetPendingJobExecutionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
110
|
-
})(GetPendingJobExecutionsResponse || (GetPendingJobExecutionsResponse = {}));
|
|
111
87
|
var InvalidStateTransitionException = (function (_super) {
|
|
112
88
|
__extends(InvalidStateTransitionException, _super);
|
|
113
89
|
function InvalidStateTransitionException(opts) {
|
|
@@ -120,23 +96,14 @@ var InvalidStateTransitionException = (function (_super) {
|
|
|
120
96
|
return InvalidStateTransitionException;
|
|
121
97
|
}(__BaseException));
|
|
122
98
|
export { InvalidStateTransitionException };
|
|
123
|
-
export var
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
export var
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
export var
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
})(UpdateJobExecutionRequest || (UpdateJobExecutionRequest = {}));
|
|
135
|
-
export var JobExecutionState;
|
|
136
|
-
(function (JobExecutionState) {
|
|
137
|
-
JobExecutionState.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
138
|
-
})(JobExecutionState || (JobExecutionState = {}));
|
|
139
|
-
export var UpdateJobExecutionResponse;
|
|
140
|
-
(function (UpdateJobExecutionResponse) {
|
|
141
|
-
UpdateJobExecutionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
142
|
-
})(UpdateJobExecutionResponse || (UpdateJobExecutionResponse = {}));
|
|
99
|
+
export var DescribeJobExecutionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
100
|
+
export var JobExecutionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
101
|
+
export var DescribeJobExecutionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
102
|
+
export var GetPendingJobExecutionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
103
|
+
export var JobExecutionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
104
|
+
export var GetPendingJobExecutionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
105
|
+
export var StartNextPendingJobExecutionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
106
|
+
export var StartNextPendingJobExecutionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
107
|
+
export var UpdateJobExecutionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
108
|
+
export var JobExecutionStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
109
|
+
export var UpdateJobExecutionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -30,12 +30,6 @@ export interface DescribeJobExecutionRequest {
|
|
|
30
30
|
*/
|
|
31
31
|
executionNumber?: number;
|
|
32
32
|
}
|
|
33
|
-
export declare namespace DescribeJobExecutionRequest {
|
|
34
|
-
/**
|
|
35
|
-
* @internal
|
|
36
|
-
*/
|
|
37
|
-
const filterSensitiveLog: (obj: DescribeJobExecutionRequest) => any;
|
|
38
|
-
}
|
|
39
33
|
export declare enum JobExecutionStatus {
|
|
40
34
|
CANCELED = "CANCELED",
|
|
41
35
|
FAILED = "FAILED",
|
|
@@ -99,24 +93,12 @@ export interface JobExecution {
|
|
|
99
93
|
*/
|
|
100
94
|
jobDocument?: string;
|
|
101
95
|
}
|
|
102
|
-
export declare namespace JobExecution {
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
const filterSensitiveLog: (obj: JobExecution) => any;
|
|
107
|
-
}
|
|
108
96
|
export interface DescribeJobExecutionResponse {
|
|
109
97
|
/**
|
|
110
98
|
* <p>Contains data about a job execution.</p>
|
|
111
99
|
*/
|
|
112
100
|
execution?: JobExecution;
|
|
113
101
|
}
|
|
114
|
-
export declare namespace DescribeJobExecutionResponse {
|
|
115
|
-
/**
|
|
116
|
-
* @internal
|
|
117
|
-
*/
|
|
118
|
-
const filterSensitiveLog: (obj: DescribeJobExecutionResponse) => any;
|
|
119
|
-
}
|
|
120
102
|
/**
|
|
121
103
|
* <p>The contents of the request were invalid. For example, this code is returned when an UpdateJobExecution request contains invalid status details. The message contains details about the error.</p>
|
|
122
104
|
*/
|
|
@@ -182,12 +164,6 @@ export interface GetPendingJobExecutionsRequest {
|
|
|
182
164
|
*/
|
|
183
165
|
thingName: string | undefined;
|
|
184
166
|
}
|
|
185
|
-
export declare namespace GetPendingJobExecutionsRequest {
|
|
186
|
-
/**
|
|
187
|
-
* @internal
|
|
188
|
-
*/
|
|
189
|
-
const filterSensitiveLog: (obj: GetPendingJobExecutionsRequest) => any;
|
|
190
|
-
}
|
|
191
167
|
/**
|
|
192
168
|
* <p>Contains a subset of information about a job execution.</p>
|
|
193
169
|
*/
|
|
@@ -218,12 +194,6 @@ export interface JobExecutionSummary {
|
|
|
218
194
|
*/
|
|
219
195
|
executionNumber?: number;
|
|
220
196
|
}
|
|
221
|
-
export declare namespace JobExecutionSummary {
|
|
222
|
-
/**
|
|
223
|
-
* @internal
|
|
224
|
-
*/
|
|
225
|
-
const filterSensitiveLog: (obj: JobExecutionSummary) => any;
|
|
226
|
-
}
|
|
227
197
|
export interface GetPendingJobExecutionsResponse {
|
|
228
198
|
/**
|
|
229
199
|
* <p>A list of JobExecutionSummary objects with status IN_PROGRESS.</p>
|
|
@@ -234,12 +204,6 @@ export interface GetPendingJobExecutionsResponse {
|
|
|
234
204
|
*/
|
|
235
205
|
queuedJobs?: JobExecutionSummary[];
|
|
236
206
|
}
|
|
237
|
-
export declare namespace GetPendingJobExecutionsResponse {
|
|
238
|
-
/**
|
|
239
|
-
* @internal
|
|
240
|
-
*/
|
|
241
|
-
const filterSensitiveLog: (obj: GetPendingJobExecutionsResponse) => any;
|
|
242
|
-
}
|
|
243
207
|
/**
|
|
244
208
|
* <p>An update attempted to change the job execution to a state that is invalid because of the job execution's
|
|
245
209
|
* current state (for example, an attempt to change a request in state SUCCESS to state IN_PROGRESS). In this
|
|
@@ -274,24 +238,12 @@ export interface StartNextPendingJobExecutionRequest {
|
|
|
274
238
|
*/
|
|
275
239
|
stepTimeoutInMinutes?: number;
|
|
276
240
|
}
|
|
277
|
-
export declare namespace StartNextPendingJobExecutionRequest {
|
|
278
|
-
/**
|
|
279
|
-
* @internal
|
|
280
|
-
*/
|
|
281
|
-
const filterSensitiveLog: (obj: StartNextPendingJobExecutionRequest) => any;
|
|
282
|
-
}
|
|
283
241
|
export interface StartNextPendingJobExecutionResponse {
|
|
284
242
|
/**
|
|
285
243
|
* <p>A JobExecution object.</p>
|
|
286
244
|
*/
|
|
287
245
|
execution?: JobExecution;
|
|
288
246
|
}
|
|
289
|
-
export declare namespace StartNextPendingJobExecutionResponse {
|
|
290
|
-
/**
|
|
291
|
-
* @internal
|
|
292
|
-
*/
|
|
293
|
-
const filterSensitiveLog: (obj: StartNextPendingJobExecutionResponse) => any;
|
|
294
|
-
}
|
|
295
247
|
export interface UpdateJobExecutionRequest {
|
|
296
248
|
/**
|
|
297
249
|
* <p>The unique identifier assigned to this job when it was created.</p>
|
|
@@ -343,12 +295,6 @@ export interface UpdateJobExecutionRequest {
|
|
|
343
295
|
*/
|
|
344
296
|
executionNumber?: number;
|
|
345
297
|
}
|
|
346
|
-
export declare namespace UpdateJobExecutionRequest {
|
|
347
|
-
/**
|
|
348
|
-
* @internal
|
|
349
|
-
*/
|
|
350
|
-
const filterSensitiveLog: (obj: UpdateJobExecutionRequest) => any;
|
|
351
|
-
}
|
|
352
298
|
/**
|
|
353
299
|
* <p>Contains data about the state of a job execution.</p>
|
|
354
300
|
*/
|
|
@@ -368,12 +314,6 @@ export interface JobExecutionState {
|
|
|
368
314
|
*/
|
|
369
315
|
versionNumber?: number;
|
|
370
316
|
}
|
|
371
|
-
export declare namespace JobExecutionState {
|
|
372
|
-
/**
|
|
373
|
-
* @internal
|
|
374
|
-
*/
|
|
375
|
-
const filterSensitiveLog: (obj: JobExecutionState) => any;
|
|
376
|
-
}
|
|
377
317
|
export interface UpdateJobExecutionResponse {
|
|
378
318
|
/**
|
|
379
319
|
* <p>A JobExecutionState object.</p>
|
|
@@ -384,9 +324,47 @@ export interface UpdateJobExecutionResponse {
|
|
|
384
324
|
*/
|
|
385
325
|
jobDocument?: string;
|
|
386
326
|
}
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
327
|
+
/**
|
|
328
|
+
* @internal
|
|
329
|
+
*/
|
|
330
|
+
export declare const DescribeJobExecutionRequestFilterSensitiveLog: (obj: DescribeJobExecutionRequest) => any;
|
|
331
|
+
/**
|
|
332
|
+
* @internal
|
|
333
|
+
*/
|
|
334
|
+
export declare const JobExecutionFilterSensitiveLog: (obj: JobExecution) => any;
|
|
335
|
+
/**
|
|
336
|
+
* @internal
|
|
337
|
+
*/
|
|
338
|
+
export declare const DescribeJobExecutionResponseFilterSensitiveLog: (obj: DescribeJobExecutionResponse) => any;
|
|
339
|
+
/**
|
|
340
|
+
* @internal
|
|
341
|
+
*/
|
|
342
|
+
export declare const GetPendingJobExecutionsRequestFilterSensitiveLog: (obj: GetPendingJobExecutionsRequest) => any;
|
|
343
|
+
/**
|
|
344
|
+
* @internal
|
|
345
|
+
*/
|
|
346
|
+
export declare const JobExecutionSummaryFilterSensitiveLog: (obj: JobExecutionSummary) => any;
|
|
347
|
+
/**
|
|
348
|
+
* @internal
|
|
349
|
+
*/
|
|
350
|
+
export declare const GetPendingJobExecutionsResponseFilterSensitiveLog: (obj: GetPendingJobExecutionsResponse) => any;
|
|
351
|
+
/**
|
|
352
|
+
* @internal
|
|
353
|
+
*/
|
|
354
|
+
export declare const StartNextPendingJobExecutionRequestFilterSensitiveLog: (obj: StartNextPendingJobExecutionRequest) => any;
|
|
355
|
+
/**
|
|
356
|
+
* @internal
|
|
357
|
+
*/
|
|
358
|
+
export declare const StartNextPendingJobExecutionResponseFilterSensitiveLog: (obj: StartNextPendingJobExecutionResponse) => any;
|
|
359
|
+
/**
|
|
360
|
+
* @internal
|
|
361
|
+
*/
|
|
362
|
+
export declare const UpdateJobExecutionRequestFilterSensitiveLog: (obj: UpdateJobExecutionRequest) => any;
|
|
363
|
+
/**
|
|
364
|
+
* @internal
|
|
365
|
+
*/
|
|
366
|
+
export declare const JobExecutionStateFilterSensitiveLog: (obj: JobExecutionState) => any;
|
|
367
|
+
/**
|
|
368
|
+
* @internal
|
|
369
|
+
*/
|
|
370
|
+
export declare const UpdateJobExecutionResponseFilterSensitiveLog: (obj: UpdateJobExecutionResponse) => any;
|
|
@@ -17,10 +17,6 @@ export interface DescribeJobExecutionRequest {
|
|
|
17
17
|
|
|
18
18
|
executionNumber?: number;
|
|
19
19
|
}
|
|
20
|
-
export declare namespace DescribeJobExecutionRequest {
|
|
21
|
-
|
|
22
|
-
const filterSensitiveLog: (obj: DescribeJobExecutionRequest) => any;
|
|
23
|
-
}
|
|
24
20
|
export declare enum JobExecutionStatus {
|
|
25
21
|
CANCELED = "CANCELED",
|
|
26
22
|
FAILED = "FAILED",
|
|
@@ -56,18 +52,10 @@ export interface JobExecution {
|
|
|
56
52
|
|
|
57
53
|
jobDocument?: string;
|
|
58
54
|
}
|
|
59
|
-
export declare namespace JobExecution {
|
|
60
|
-
|
|
61
|
-
const filterSensitiveLog: (obj: JobExecution) => any;
|
|
62
|
-
}
|
|
63
55
|
export interface DescribeJobExecutionResponse {
|
|
64
56
|
|
|
65
57
|
execution?: JobExecution;
|
|
66
58
|
}
|
|
67
|
-
export declare namespace DescribeJobExecutionResponse {
|
|
68
|
-
|
|
69
|
-
const filterSensitiveLog: (obj: DescribeJobExecutionResponse) => any;
|
|
70
|
-
}
|
|
71
59
|
|
|
72
60
|
export declare class InvalidRequestException extends __BaseException {
|
|
73
61
|
readonly name: "InvalidRequestException";
|
|
@@ -109,10 +97,6 @@ export interface GetPendingJobExecutionsRequest {
|
|
|
109
97
|
|
|
110
98
|
thingName: string | undefined;
|
|
111
99
|
}
|
|
112
|
-
export declare namespace GetPendingJobExecutionsRequest {
|
|
113
|
-
|
|
114
|
-
const filterSensitiveLog: (obj: GetPendingJobExecutionsRequest) => any;
|
|
115
|
-
}
|
|
116
100
|
|
|
117
101
|
export interface JobExecutionSummary {
|
|
118
102
|
|
|
@@ -128,20 +112,12 @@ export interface JobExecutionSummary {
|
|
|
128
112
|
|
|
129
113
|
executionNumber?: number;
|
|
130
114
|
}
|
|
131
|
-
export declare namespace JobExecutionSummary {
|
|
132
|
-
|
|
133
|
-
const filterSensitiveLog: (obj: JobExecutionSummary) => any;
|
|
134
|
-
}
|
|
135
115
|
export interface GetPendingJobExecutionsResponse {
|
|
136
116
|
|
|
137
117
|
inProgressJobs?: JobExecutionSummary[];
|
|
138
118
|
|
|
139
119
|
queuedJobs?: JobExecutionSummary[];
|
|
140
120
|
}
|
|
141
|
-
export declare namespace GetPendingJobExecutionsResponse {
|
|
142
|
-
|
|
143
|
-
const filterSensitiveLog: (obj: GetPendingJobExecutionsResponse) => any;
|
|
144
|
-
}
|
|
145
121
|
|
|
146
122
|
export declare class InvalidStateTransitionException extends __BaseException {
|
|
147
123
|
readonly name: "InvalidStateTransitionException";
|
|
@@ -157,18 +133,10 @@ export interface StartNextPendingJobExecutionRequest {
|
|
|
157
133
|
|
|
158
134
|
stepTimeoutInMinutes?: number;
|
|
159
135
|
}
|
|
160
|
-
export declare namespace StartNextPendingJobExecutionRequest {
|
|
161
|
-
|
|
162
|
-
const filterSensitiveLog: (obj: StartNextPendingJobExecutionRequest) => any;
|
|
163
|
-
}
|
|
164
136
|
export interface StartNextPendingJobExecutionResponse {
|
|
165
137
|
|
|
166
138
|
execution?: JobExecution;
|
|
167
139
|
}
|
|
168
|
-
export declare namespace StartNextPendingJobExecutionResponse {
|
|
169
|
-
|
|
170
|
-
const filterSensitiveLog: (obj: StartNextPendingJobExecutionResponse) => any;
|
|
171
|
-
}
|
|
172
140
|
export interface UpdateJobExecutionRequest {
|
|
173
141
|
|
|
174
142
|
jobId: string | undefined;
|
|
@@ -189,10 +157,6 @@ export interface UpdateJobExecutionRequest {
|
|
|
189
157
|
|
|
190
158
|
executionNumber?: number;
|
|
191
159
|
}
|
|
192
|
-
export declare namespace UpdateJobExecutionRequest {
|
|
193
|
-
|
|
194
|
-
const filterSensitiveLog: (obj: UpdateJobExecutionRequest) => any;
|
|
195
|
-
}
|
|
196
160
|
|
|
197
161
|
export interface JobExecutionState {
|
|
198
162
|
|
|
@@ -202,17 +166,31 @@ export interface JobExecutionState {
|
|
|
202
166
|
|
|
203
167
|
versionNumber?: number;
|
|
204
168
|
}
|
|
205
|
-
export declare namespace JobExecutionState {
|
|
206
|
-
|
|
207
|
-
const filterSensitiveLog: (obj: JobExecutionState) => any;
|
|
208
|
-
}
|
|
209
169
|
export interface UpdateJobExecutionResponse {
|
|
210
170
|
|
|
211
171
|
executionState?: JobExecutionState;
|
|
212
172
|
|
|
213
173
|
jobDocument?: string;
|
|
214
174
|
}
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
175
|
+
|
|
176
|
+
export declare const DescribeJobExecutionRequestFilterSensitiveLog: (obj: DescribeJobExecutionRequest) => any;
|
|
177
|
+
|
|
178
|
+
export declare const JobExecutionFilterSensitiveLog: (obj: JobExecution) => any;
|
|
179
|
+
|
|
180
|
+
export declare const DescribeJobExecutionResponseFilterSensitiveLog: (obj: DescribeJobExecutionResponse) => any;
|
|
181
|
+
|
|
182
|
+
export declare const GetPendingJobExecutionsRequestFilterSensitiveLog: (obj: GetPendingJobExecutionsRequest) => any;
|
|
183
|
+
|
|
184
|
+
export declare const JobExecutionSummaryFilterSensitiveLog: (obj: JobExecutionSummary) => any;
|
|
185
|
+
|
|
186
|
+
export declare const GetPendingJobExecutionsResponseFilterSensitiveLog: (obj: GetPendingJobExecutionsResponse) => any;
|
|
187
|
+
|
|
188
|
+
export declare const StartNextPendingJobExecutionRequestFilterSensitiveLog: (obj: StartNextPendingJobExecutionRequest) => any;
|
|
189
|
+
|
|
190
|
+
export declare const StartNextPendingJobExecutionResponseFilterSensitiveLog: (obj: StartNextPendingJobExecutionResponse) => any;
|
|
191
|
+
|
|
192
|
+
export declare const UpdateJobExecutionRequestFilterSensitiveLog: (obj: UpdateJobExecutionRequest) => any;
|
|
193
|
+
|
|
194
|
+
export declare const JobExecutionStateFilterSensitiveLog: (obj: JobExecutionState) => any;
|
|
195
|
+
|
|
196
|
+
export declare const UpdateJobExecutionResponseFilterSensitiveLog: (obj: UpdateJobExecutionResponse) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot-jobs-data-plane",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Jobs Data Plane Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.137.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.137.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.137.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.137.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.137.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.137.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|