@aws-sdk/client-iot-wireless 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/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./IoTWirelessClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { IoTWirelessServiceException } from "./models/IoTWirelessServiceException";
@@ -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)); };