@aws-sdk/client-iot-wireless 3.52.0 → 3.54.1
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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/IoTWirelessServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +110 -6
- package/dist-cjs/protocols/Aws_restJson1.js +891 -3643
- package/dist-es/index.js +1 -0
- package/dist-es/models/IoTWirelessServiceException.js +12 -0
- package/dist-es/models/models_0.js +98 -1
- package/dist-es/protocols/Aws_restJson1.js +2023 -3999
- package/dist-types/IoTWirelessClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/IoTWirelessServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/IoTWirelessClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/IoTWirelessServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -22
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
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 IoTWirelessServiceException = (function (_super) {
|
|
4
|
+
__extends(IoTWirelessServiceException, _super);
|
|
5
|
+
function IoTWirelessServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, IoTWirelessServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return IoTWirelessServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { IoTWirelessServiceException };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { IoTWirelessServiceException as __BaseException } from "./IoTWirelessServiceException";
|
|
3
4
|
export var SessionKeysAbpV1_0_x;
|
|
4
5
|
(function (SessionKeysAbpV1_0_x) {
|
|
5
6
|
SessionKeysAbpV1_0_x.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -16,6 +17,19 @@ export var AbpV1_1;
|
|
|
16
17
|
(function (AbpV1_1) {
|
|
17
18
|
AbpV1_1.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
18
19
|
})(AbpV1_1 || (AbpV1_1 = {}));
|
|
20
|
+
var AccessDeniedException = (function (_super) {
|
|
21
|
+
__extends(AccessDeniedException, _super);
|
|
22
|
+
function AccessDeniedException(opts) {
|
|
23
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
24
|
+
_this.name = "AccessDeniedException";
|
|
25
|
+
_this.$fault = "client";
|
|
26
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
27
|
+
_this.Message = opts.Message;
|
|
28
|
+
return _this;
|
|
29
|
+
}
|
|
30
|
+
return AccessDeniedException;
|
|
31
|
+
}(__BaseException));
|
|
32
|
+
export { AccessDeniedException };
|
|
19
33
|
export var SidewalkAccountInfo;
|
|
20
34
|
(function (SidewalkAccountInfo) {
|
|
21
35
|
SidewalkAccountInfo.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AppServerPrivateKey && { AppServerPrivateKey: SENSITIVE_STRING }))); };
|
|
@@ -32,6 +46,75 @@ export var AssociateAwsAccountWithPartnerAccountResponse;
|
|
|
32
46
|
(function (AssociateAwsAccountWithPartnerAccountResponse) {
|
|
33
47
|
AssociateAwsAccountWithPartnerAccountResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Sidewalk && { Sidewalk: SidewalkAccountInfo.filterSensitiveLog(obj.Sidewalk) }))); };
|
|
34
48
|
})(AssociateAwsAccountWithPartnerAccountResponse || (AssociateAwsAccountWithPartnerAccountResponse = {}));
|
|
49
|
+
var ConflictException = (function (_super) {
|
|
50
|
+
__extends(ConflictException, _super);
|
|
51
|
+
function ConflictException(opts) {
|
|
52
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
53
|
+
_this.name = "ConflictException";
|
|
54
|
+
_this.$fault = "client";
|
|
55
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
56
|
+
_this.Message = opts.Message;
|
|
57
|
+
_this.ResourceId = opts.ResourceId;
|
|
58
|
+
_this.ResourceType = opts.ResourceType;
|
|
59
|
+
return _this;
|
|
60
|
+
}
|
|
61
|
+
return ConflictException;
|
|
62
|
+
}(__BaseException));
|
|
63
|
+
export { ConflictException };
|
|
64
|
+
var InternalServerException = (function (_super) {
|
|
65
|
+
__extends(InternalServerException, _super);
|
|
66
|
+
function InternalServerException(opts) {
|
|
67
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
68
|
+
_this.name = "InternalServerException";
|
|
69
|
+
_this.$fault = "server";
|
|
70
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
71
|
+
_this.Message = opts.Message;
|
|
72
|
+
return _this;
|
|
73
|
+
}
|
|
74
|
+
return InternalServerException;
|
|
75
|
+
}(__BaseException));
|
|
76
|
+
export { InternalServerException };
|
|
77
|
+
var ResourceNotFoundException = (function (_super) {
|
|
78
|
+
__extends(ResourceNotFoundException, _super);
|
|
79
|
+
function ResourceNotFoundException(opts) {
|
|
80
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
81
|
+
_this.name = "ResourceNotFoundException";
|
|
82
|
+
_this.$fault = "client";
|
|
83
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
84
|
+
_this.Message = opts.Message;
|
|
85
|
+
_this.ResourceId = opts.ResourceId;
|
|
86
|
+
_this.ResourceType = opts.ResourceType;
|
|
87
|
+
return _this;
|
|
88
|
+
}
|
|
89
|
+
return ResourceNotFoundException;
|
|
90
|
+
}(__BaseException));
|
|
91
|
+
export { ResourceNotFoundException };
|
|
92
|
+
var ThrottlingException = (function (_super) {
|
|
93
|
+
__extends(ThrottlingException, _super);
|
|
94
|
+
function ThrottlingException(opts) {
|
|
95
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
96
|
+
_this.name = "ThrottlingException";
|
|
97
|
+
_this.$fault = "client";
|
|
98
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
99
|
+
_this.Message = opts.Message;
|
|
100
|
+
return _this;
|
|
101
|
+
}
|
|
102
|
+
return ThrottlingException;
|
|
103
|
+
}(__BaseException));
|
|
104
|
+
export { ThrottlingException };
|
|
105
|
+
var ValidationException = (function (_super) {
|
|
106
|
+
__extends(ValidationException, _super);
|
|
107
|
+
function ValidationException(opts) {
|
|
108
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
109
|
+
_this.name = "ValidationException";
|
|
110
|
+
_this.$fault = "client";
|
|
111
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
112
|
+
_this.Message = opts.Message;
|
|
113
|
+
return _this;
|
|
114
|
+
}
|
|
115
|
+
return ValidationException;
|
|
116
|
+
}(__BaseException));
|
|
117
|
+
export { ValidationException };
|
|
35
118
|
export var AssociateMulticastGroupWithFuotaTaskRequest;
|
|
36
119
|
(function (AssociateMulticastGroupWithFuotaTaskRequest) {
|
|
37
120
|
AssociateMulticastGroupWithFuotaTaskRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -992,6 +1075,20 @@ export var TagResourceResponse;
|
|
|
992
1075
|
(function (TagResourceResponse) {
|
|
993
1076
|
TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
994
1077
|
})(TagResourceResponse || (TagResourceResponse = {}));
|
|
1078
|
+
var TooManyTagsException = (function (_super) {
|
|
1079
|
+
__extends(TooManyTagsException, _super);
|
|
1080
|
+
function TooManyTagsException(opts) {
|
|
1081
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
1082
|
+
_this.name = "TooManyTagsException";
|
|
1083
|
+
_this.$fault = "client";
|
|
1084
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
1085
|
+
_this.Message = opts.Message;
|
|
1086
|
+
_this.ResourceName = opts.ResourceName;
|
|
1087
|
+
return _this;
|
|
1088
|
+
}
|
|
1089
|
+
return TooManyTagsException;
|
|
1090
|
+
}(__BaseException));
|
|
1091
|
+
export { TooManyTagsException };
|
|
995
1092
|
export var TestWirelessDeviceRequest;
|
|
996
1093
|
(function (TestWirelessDeviceRequest) {
|
|
997
1094
|
TestWirelessDeviceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|