@aws-sdk/client-iot-jobs-data-plane 3.183.0 → 3.185.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/protocols/Aws_restJson1.js +2 -2
- package/dist-es/IoTJobsDataPlane.js +25 -18
- package/dist-es/IoTJobsDataPlaneClient.js +28 -22
- package/dist-es/commands/DescribeJobExecutionCommand.js +28 -21
- package/dist-es/commands/GetPendingJobExecutionsCommand.js +28 -21
- package/dist-es/commands/StartNextPendingJobExecutionCommand.js +28 -21
- package/dist-es/commands/UpdateJobExecutionCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/IoTJobsDataPlaneServiceException.js +10 -5
- package/dist-es/models/models_0.js +90 -111
- package/dist-es/protocols/Aws_restJson1.js +541 -401
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,16 +1,17 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { IoTJobsDataPlaneServiceException as __BaseException } from "./IoTJobsDataPlaneServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
this.$fault = "client";
|
|
11
|
-
Object.setPrototypeOf(this, CertificateValidationException.prototype);
|
|
3
|
+
var CertificateValidationException = (function (_super) {
|
|
4
|
+
__extends(CertificateValidationException, _super);
|
|
5
|
+
function CertificateValidationException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "CertificateValidationException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "CertificateValidationException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, CertificateValidationException.prototype);
|
|
10
|
+
return _this;
|
|
12
11
|
}
|
|
13
|
-
|
|
12
|
+
return CertificateValidationException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { CertificateValidationException };
|
|
14
15
|
export var JobExecutionStatus;
|
|
15
16
|
(function (JobExecutionStatus) {
|
|
16
17
|
JobExecutionStatus["CANCELED"] = "CANCELED";
|
|
@@ -22,109 +23,87 @@ export var JobExecutionStatus;
|
|
|
22
23
|
JobExecutionStatus["SUCCEEDED"] = "SUCCEEDED";
|
|
23
24
|
JobExecutionStatus["TIMED_OUT"] = "TIMED_OUT";
|
|
24
25
|
})(JobExecutionStatus || (JobExecutionStatus = {}));
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
this.$fault = "client";
|
|
34
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
26
|
+
var InvalidRequestException = (function (_super) {
|
|
27
|
+
__extends(InvalidRequestException, _super);
|
|
28
|
+
function InvalidRequestException(opts) {
|
|
29
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
30
|
+
_this.name = "InvalidRequestException";
|
|
31
|
+
_this.$fault = "client";
|
|
32
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
33
|
+
return _this;
|
|
35
34
|
}
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
35
|
+
return InvalidRequestException;
|
|
36
|
+
}(__BaseException));
|
|
37
|
+
export { InvalidRequestException };
|
|
38
|
+
var ResourceNotFoundException = (function (_super) {
|
|
39
|
+
__extends(ResourceNotFoundException, _super);
|
|
40
|
+
function ResourceNotFoundException(opts) {
|
|
41
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
42
|
+
_this.name = "ResourceNotFoundException";
|
|
43
|
+
_this.$fault = "client";
|
|
44
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
45
|
+
return _this;
|
|
47
46
|
}
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
47
|
+
return ResourceNotFoundException;
|
|
48
|
+
}(__BaseException));
|
|
49
|
+
export { ResourceNotFoundException };
|
|
50
|
+
var ServiceUnavailableException = (function (_super) {
|
|
51
|
+
__extends(ServiceUnavailableException, _super);
|
|
52
|
+
function ServiceUnavailableException(opts) {
|
|
53
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
54
|
+
_this.name = "ServiceUnavailableException";
|
|
55
|
+
_this.$fault = "server";
|
|
56
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
57
|
+
return _this;
|
|
59
58
|
}
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
59
|
+
return ServiceUnavailableException;
|
|
60
|
+
}(__BaseException));
|
|
61
|
+
export { ServiceUnavailableException };
|
|
62
|
+
var TerminalStateException = (function (_super) {
|
|
63
|
+
__extends(TerminalStateException, _super);
|
|
64
|
+
function TerminalStateException(opts) {
|
|
65
|
+
var _this = _super.call(this, __assign({ name: "TerminalStateException", $fault: "client" }, opts)) || this;
|
|
66
|
+
_this.name = "TerminalStateException";
|
|
67
|
+
_this.$fault = "client";
|
|
68
|
+
Object.setPrototypeOf(_this, TerminalStateException.prototype);
|
|
69
|
+
return _this;
|
|
71
70
|
}
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
71
|
+
return TerminalStateException;
|
|
72
|
+
}(__BaseException));
|
|
73
|
+
export { TerminalStateException };
|
|
74
|
+
var ThrottlingException = (function (_super) {
|
|
75
|
+
__extends(ThrottlingException, _super);
|
|
76
|
+
function ThrottlingException(opts) {
|
|
77
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
78
|
+
_this.name = "ThrottlingException";
|
|
79
|
+
_this.$fault = "client";
|
|
80
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
81
|
+
_this.payload = opts.payload;
|
|
82
|
+
return _this;
|
|
84
83
|
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
84
|
+
return ThrottlingException;
|
|
85
|
+
}(__BaseException));
|
|
86
|
+
export { ThrottlingException };
|
|
87
|
+
var InvalidStateTransitionException = (function (_super) {
|
|
88
|
+
__extends(InvalidStateTransitionException, _super);
|
|
89
|
+
function InvalidStateTransitionException(opts) {
|
|
90
|
+
var _this = _super.call(this, __assign({ name: "InvalidStateTransitionException", $fault: "client" }, opts)) || this;
|
|
91
|
+
_this.name = "InvalidStateTransitionException";
|
|
92
|
+
_this.$fault = "client";
|
|
93
|
+
Object.setPrototypeOf(_this, InvalidStateTransitionException.prototype);
|
|
94
|
+
return _this;
|
|
96
95
|
}
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
});
|
|
101
|
-
export
|
|
102
|
-
|
|
103
|
-
});
|
|
104
|
-
export
|
|
105
|
-
|
|
106
|
-
});
|
|
107
|
-
export
|
|
108
|
-
|
|
109
|
-
});
|
|
110
|
-
export
|
|
111
|
-
...obj,
|
|
112
|
-
});
|
|
113
|
-
export const GetPendingJobExecutionsResponseFilterSensitiveLog = (obj) => ({
|
|
114
|
-
...obj,
|
|
115
|
-
});
|
|
116
|
-
export const StartNextPendingJobExecutionRequestFilterSensitiveLog = (obj) => ({
|
|
117
|
-
...obj,
|
|
118
|
-
});
|
|
119
|
-
export const StartNextPendingJobExecutionResponseFilterSensitiveLog = (obj) => ({
|
|
120
|
-
...obj,
|
|
121
|
-
});
|
|
122
|
-
export const UpdateJobExecutionRequestFilterSensitiveLog = (obj) => ({
|
|
123
|
-
...obj,
|
|
124
|
-
});
|
|
125
|
-
export const JobExecutionStateFilterSensitiveLog = (obj) => ({
|
|
126
|
-
...obj,
|
|
127
|
-
});
|
|
128
|
-
export const UpdateJobExecutionResponseFilterSensitiveLog = (obj) => ({
|
|
129
|
-
...obj,
|
|
130
|
-
});
|
|
96
|
+
return InvalidStateTransitionException;
|
|
97
|
+
}(__BaseException));
|
|
98
|
+
export { InvalidStateTransitionException };
|
|
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)); };
|