@aws-sdk/client-iottwinmaker 3.51.0 → 3.54.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/IoTTwinMakerServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +134 -2
- package/dist-cjs/protocols/Aws_restJson1.js +320 -1120
- package/dist-es/index.js +1 -0
- package/dist-es/models/IoTTwinMakerServiceException.js +12 -0
- package/dist-es/models/models_0.js +122 -1
- package/dist-es/protocols/Aws_restJson1.js +638 -1236
- package/dist-types/IoTTwinMakerClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/IoTTwinMakerServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +72 -41
- 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/IoTTwinMakerClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/IoTTwinMakerServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +52 -41
- 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 +33 -33
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 IoTTwinMakerServiceException = (function (_super) {
|
|
4
|
+
__extends(IoTTwinMakerServiceException, _super);
|
|
5
|
+
function IoTTwinMakerServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, IoTTwinMakerServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return IoTTwinMakerServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { IoTTwinMakerServiceException };
|
|
@@ -1,4 +1,17 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { IoTTwinMakerServiceException as __BaseException } from "./IoTTwinMakerServiceException";
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
return _this;
|
|
11
|
+
}
|
|
12
|
+
return AccessDeniedException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { AccessDeniedException };
|
|
2
15
|
export var EntityPropertyReference;
|
|
3
16
|
(function (EntityPropertyReference) {
|
|
4
17
|
EntityPropertyReference.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -7,6 +20,66 @@ export var RelationshipValue;
|
|
|
7
20
|
(function (RelationshipValue) {
|
|
8
21
|
RelationshipValue.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
9
22
|
})(RelationshipValue || (RelationshipValue = {}));
|
|
23
|
+
var InternalServerException = (function (_super) {
|
|
24
|
+
__extends(InternalServerException, _super);
|
|
25
|
+
function InternalServerException(opts) {
|
|
26
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
27
|
+
_this.name = "InternalServerException";
|
|
28
|
+
_this.$fault = "server";
|
|
29
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
30
|
+
return _this;
|
|
31
|
+
}
|
|
32
|
+
return InternalServerException;
|
|
33
|
+
}(__BaseException));
|
|
34
|
+
export { InternalServerException };
|
|
35
|
+
var ResourceNotFoundException = (function (_super) {
|
|
36
|
+
__extends(ResourceNotFoundException, _super);
|
|
37
|
+
function ResourceNotFoundException(opts) {
|
|
38
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
39
|
+
_this.name = "ResourceNotFoundException";
|
|
40
|
+
_this.$fault = "client";
|
|
41
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
42
|
+
return _this;
|
|
43
|
+
}
|
|
44
|
+
return ResourceNotFoundException;
|
|
45
|
+
}(__BaseException));
|
|
46
|
+
export { ResourceNotFoundException };
|
|
47
|
+
var ThrottlingException = (function (_super) {
|
|
48
|
+
__extends(ThrottlingException, _super);
|
|
49
|
+
function ThrottlingException(opts) {
|
|
50
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
51
|
+
_this.name = "ThrottlingException";
|
|
52
|
+
_this.$fault = "client";
|
|
53
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
54
|
+
return _this;
|
|
55
|
+
}
|
|
56
|
+
return ThrottlingException;
|
|
57
|
+
}(__BaseException));
|
|
58
|
+
export { ThrottlingException };
|
|
59
|
+
var ValidationException = (function (_super) {
|
|
60
|
+
__extends(ValidationException, _super);
|
|
61
|
+
function ValidationException(opts) {
|
|
62
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
63
|
+
_this.name = "ValidationException";
|
|
64
|
+
_this.$fault = "client";
|
|
65
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
66
|
+
return _this;
|
|
67
|
+
}
|
|
68
|
+
return ValidationException;
|
|
69
|
+
}(__BaseException));
|
|
70
|
+
export { ValidationException };
|
|
71
|
+
var ConflictException = (function (_super) {
|
|
72
|
+
__extends(ConflictException, _super);
|
|
73
|
+
function ConflictException(opts) {
|
|
74
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
75
|
+
_this.name = "ConflictException";
|
|
76
|
+
_this.$fault = "client";
|
|
77
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
78
|
+
return _this;
|
|
79
|
+
}
|
|
80
|
+
return ConflictException;
|
|
81
|
+
}(__BaseException));
|
|
82
|
+
export { ConflictException };
|
|
10
83
|
export var LambdaFunction;
|
|
11
84
|
(function (LambdaFunction) {
|
|
12
85
|
LambdaFunction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -51,6 +124,18 @@ export var CreateComponentTypeResponse;
|
|
|
51
124
|
(function (CreateComponentTypeResponse) {
|
|
52
125
|
CreateComponentTypeResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
53
126
|
})(CreateComponentTypeResponse || (CreateComponentTypeResponse = {}));
|
|
127
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
128
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
129
|
+
function ServiceQuotaExceededException(opts) {
|
|
130
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
131
|
+
_this.name = "ServiceQuotaExceededException";
|
|
132
|
+
_this.$fault = "client";
|
|
133
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
134
|
+
return _this;
|
|
135
|
+
}
|
|
136
|
+
return ServiceQuotaExceededException;
|
|
137
|
+
}(__BaseException));
|
|
138
|
+
export { ServiceQuotaExceededException };
|
|
54
139
|
export var PropertyUpdateType;
|
|
55
140
|
(function (PropertyUpdateType) {
|
|
56
141
|
PropertyUpdateType["DELETE"] = "DELETE";
|
|
@@ -133,6 +218,30 @@ export var GetEntityRequest;
|
|
|
133
218
|
(function (GetEntityRequest) {
|
|
134
219
|
GetEntityRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
135
220
|
})(GetEntityRequest || (GetEntityRequest = {}));
|
|
221
|
+
var ConnectorFailureException = (function (_super) {
|
|
222
|
+
__extends(ConnectorFailureException, _super);
|
|
223
|
+
function ConnectorFailureException(opts) {
|
|
224
|
+
var _this = _super.call(this, __assign({ name: "ConnectorFailureException", $fault: "client" }, opts)) || this;
|
|
225
|
+
_this.name = "ConnectorFailureException";
|
|
226
|
+
_this.$fault = "client";
|
|
227
|
+
Object.setPrototypeOf(_this, ConnectorFailureException.prototype);
|
|
228
|
+
return _this;
|
|
229
|
+
}
|
|
230
|
+
return ConnectorFailureException;
|
|
231
|
+
}(__BaseException));
|
|
232
|
+
export { ConnectorFailureException };
|
|
233
|
+
var ConnectorTimeoutException = (function (_super) {
|
|
234
|
+
__extends(ConnectorTimeoutException, _super);
|
|
235
|
+
function ConnectorTimeoutException(opts) {
|
|
236
|
+
var _this = _super.call(this, __assign({ name: "ConnectorTimeoutException", $fault: "client" }, opts)) || this;
|
|
237
|
+
_this.name = "ConnectorTimeoutException";
|
|
238
|
+
_this.$fault = "client";
|
|
239
|
+
Object.setPrototypeOf(_this, ConnectorTimeoutException.prototype);
|
|
240
|
+
return _this;
|
|
241
|
+
}
|
|
242
|
+
return ConnectorTimeoutException;
|
|
243
|
+
}(__BaseException));
|
|
244
|
+
export { ConnectorTimeoutException };
|
|
136
245
|
export var GetPropertyValueRequest;
|
|
137
246
|
(function (GetPropertyValueRequest) {
|
|
138
247
|
GetPropertyValueRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -272,6 +381,18 @@ export var TagResourceResponse;
|
|
|
272
381
|
(function (TagResourceResponse) {
|
|
273
382
|
TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
383
|
})(TagResourceResponse || (TagResourceResponse = {}));
|
|
384
|
+
var TooManyTagsException = (function (_super) {
|
|
385
|
+
__extends(TooManyTagsException, _super);
|
|
386
|
+
function TooManyTagsException(opts) {
|
|
387
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
388
|
+
_this.name = "TooManyTagsException";
|
|
389
|
+
_this.$fault = "client";
|
|
390
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
391
|
+
return _this;
|
|
392
|
+
}
|
|
393
|
+
return TooManyTagsException;
|
|
394
|
+
}(__BaseException));
|
|
395
|
+
export { TooManyTagsException };
|
|
275
396
|
export var UntagResourceRequest;
|
|
276
397
|
(function (UntagResourceRequest) {
|
|
277
398
|
UntagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|