@aws-sdk/client-iotdeviceadvisor 3.52.0 → 3.53.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/index.js +3 -0
- package/dist-cjs/models/IotDeviceAdvisorServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +54 -1
- package/dist-cjs/protocols/Aws_restJson1.js +131 -396
- package/dist-es/index.js +1 -0
- package/dist-es/models/IotDeviceAdvisorServiceException.js +12 -0
- package/dist-es/models/models_0.js +50 -1
- package/dist-es/protocols/Aws_restJson1.js +273 -457
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/IotDeviceAdvisorServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +22 -21
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/IotDeviceAdvisorServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -17
- package/package.json +25 -25
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var IotDeviceAdvisorServiceException = (function (_super) {
|
|
4
|
+
__extends(IotDeviceAdvisorServiceException, _super);
|
|
5
|
+
function IotDeviceAdvisorServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, IotDeviceAdvisorServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return IotDeviceAdvisorServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { IotDeviceAdvisorServiceException };
|
|
@@ -1,4 +1,17 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { IotDeviceAdvisorServiceException as __BaseException } from "./IotDeviceAdvisorServiceException";
|
|
3
|
+
var ConflictException = (function (_super) {
|
|
4
|
+
__extends(ConflictException, _super);
|
|
5
|
+
function ConflictException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "ConflictException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
10
|
+
return _this;
|
|
11
|
+
}
|
|
12
|
+
return ConflictException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { ConflictException };
|
|
2
15
|
export var DeviceUnderTest;
|
|
3
16
|
(function (DeviceUnderTest) {
|
|
4
17
|
DeviceUnderTest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -15,6 +28,30 @@ export var CreateSuiteDefinitionResponse;
|
|
|
15
28
|
(function (CreateSuiteDefinitionResponse) {
|
|
16
29
|
CreateSuiteDefinitionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
17
30
|
})(CreateSuiteDefinitionResponse || (CreateSuiteDefinitionResponse = {}));
|
|
31
|
+
var InternalServerException = (function (_super) {
|
|
32
|
+
__extends(InternalServerException, _super);
|
|
33
|
+
function InternalServerException(opts) {
|
|
34
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
35
|
+
_this.name = "InternalServerException";
|
|
36
|
+
_this.$fault = "server";
|
|
37
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
38
|
+
return _this;
|
|
39
|
+
}
|
|
40
|
+
return InternalServerException;
|
|
41
|
+
}(__BaseException));
|
|
42
|
+
export { InternalServerException };
|
|
43
|
+
var ValidationException = (function (_super) {
|
|
44
|
+
__extends(ValidationException, _super);
|
|
45
|
+
function ValidationException(opts) {
|
|
46
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
47
|
+
_this.name = "ValidationException";
|
|
48
|
+
_this.$fault = "client";
|
|
49
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
50
|
+
return _this;
|
|
51
|
+
}
|
|
52
|
+
return ValidationException;
|
|
53
|
+
}(__BaseException));
|
|
54
|
+
export { ValidationException };
|
|
18
55
|
export var DeleteSuiteDefinitionRequest;
|
|
19
56
|
(function (DeleteSuiteDefinitionRequest) {
|
|
20
57
|
DeleteSuiteDefinitionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -31,6 +68,18 @@ export var GetEndpointResponse;
|
|
|
31
68
|
(function (GetEndpointResponse) {
|
|
32
69
|
GetEndpointResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
33
70
|
})(GetEndpointResponse || (GetEndpointResponse = {}));
|
|
71
|
+
var ResourceNotFoundException = (function (_super) {
|
|
72
|
+
__extends(ResourceNotFoundException, _super);
|
|
73
|
+
function ResourceNotFoundException(opts) {
|
|
74
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
75
|
+
_this.name = "ResourceNotFoundException";
|
|
76
|
+
_this.$fault = "client";
|
|
77
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
78
|
+
return _this;
|
|
79
|
+
}
|
|
80
|
+
return ResourceNotFoundException;
|
|
81
|
+
}(__BaseException));
|
|
82
|
+
export { ResourceNotFoundException };
|
|
34
83
|
export var GetSuiteDefinitionRequest;
|
|
35
84
|
(function (GetSuiteDefinitionRequest) {
|
|
36
85
|
GetSuiteDefinitionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|