@aws-sdk/client-iottwinmaker 3.50.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.
Files changed (59) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/IoTTwinMakerServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +134 -2
  5. package/dist-cjs/protocols/Aws_restJson1.js +320 -1120
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/IoTTwinMakerServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +122 -1
  9. package/dist-es/protocols/Aws_restJson1.js +638 -1236
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/IoTTwinMakerServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +72 -41
  13. package/dist-types/ts3.4/IoTTwinMaker.d.ts +135 -0
  14. package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +99 -0
  15. package/dist-types/ts3.4/commands/BatchPutPropertyValuesCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateComponentTypeCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateEntityCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/CreateSceneCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DeleteComponentTypeCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DeleteEntityCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DeleteSceneCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/GetComponentTypeCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/GetEntityCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/GetPropertyValueCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/GetPropertyValueHistoryCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/GetSceneCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/GetWorkspaceCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/ListComponentTypesCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/ListEntitiesCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/ListScenesCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/UpdateComponentTypeCommand.d.ts +17 -0
  38. package/dist-types/ts3.4/commands/UpdateEntityCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/UpdateSceneCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/index.d.ts +26 -0
  42. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  43. package/dist-types/ts3.4/index.d.ts +6 -0
  44. package/dist-types/ts3.4/models/IoTTwinMakerServiceException.d.ts +6 -0
  45. package/dist-types/ts3.4/models/index.d.ts +1 -0
  46. package/dist-types/ts3.4/models/models_0.d.ts +1353 -0
  47. package/dist-types/ts3.4/pagination/GetPropertyValueHistoryPaginator.d.ts +4 -0
  48. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  49. package/dist-types/ts3.4/pagination/ListComponentTypesPaginator.d.ts +4 -0
  50. package/dist-types/ts3.4/pagination/ListEntitiesPaginator.d.ts +4 -0
  51. package/dist-types/ts3.4/pagination/ListScenesPaginator.d.ts +4 -0
  52. package/dist-types/ts3.4/pagination/ListWorkspacesPaginator.d.ts +4 -0
  53. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  54. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +80 -0
  55. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  56. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  57. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  58. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  59. package/package.json +33 -33
package/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./IoTTwinMakerClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { IoTTwinMakerServiceException } from "./models/IoTTwinMakerServiceException";
@@ -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)); };