@aws-sdk/client-iotthingsgraph 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/IoTThingsGraphServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +95 -3
- package/dist-cjs/protocols/Aws_json1_1.js +319 -1211
- package/dist-es/index.js +1 -0
- package/dist-es/models/IoTThingsGraphServiceException.js +12 -0
- package/dist-es/models/models_0.js +86 -1
- package/dist-es/protocols/Aws_json1_1.js +736 -1338
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/IoTThingsGraphServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -29
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/IoTThingsGraphServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -29
- 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 IoTThingsGraphServiceException = (function (_super) {
|
|
4
|
+
__extends(IoTThingsGraphServiceException, _super);
|
|
5
|
+
function IoTThingsGraphServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, IoTThingsGraphServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return IoTThingsGraphServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { IoTThingsGraphServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { IoTThingsGraphServiceException as __BaseException } from "./IoTThingsGraphServiceException";
|
|
2
3
|
export var AssociateEntityToThingRequest;
|
|
3
4
|
(function (AssociateEntityToThingRequest) {
|
|
4
5
|
AssociateEntityToThingRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -7,6 +8,54 @@ export var AssociateEntityToThingResponse;
|
|
|
7
8
|
(function (AssociateEntityToThingResponse) {
|
|
8
9
|
AssociateEntityToThingResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
9
10
|
})(AssociateEntityToThingResponse || (AssociateEntityToThingResponse = {}));
|
|
11
|
+
var InternalFailureException = (function (_super) {
|
|
12
|
+
__extends(InternalFailureException, _super);
|
|
13
|
+
function InternalFailureException(opts) {
|
|
14
|
+
var _this = _super.call(this, __assign({ name: "InternalFailureException", $fault: "server" }, opts)) || this;
|
|
15
|
+
_this.name = "InternalFailureException";
|
|
16
|
+
_this.$fault = "server";
|
|
17
|
+
Object.setPrototypeOf(_this, InternalFailureException.prototype);
|
|
18
|
+
return _this;
|
|
19
|
+
}
|
|
20
|
+
return InternalFailureException;
|
|
21
|
+
}(__BaseException));
|
|
22
|
+
export { InternalFailureException };
|
|
23
|
+
var InvalidRequestException = (function (_super) {
|
|
24
|
+
__extends(InvalidRequestException, _super);
|
|
25
|
+
function InvalidRequestException(opts) {
|
|
26
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
27
|
+
_this.name = "InvalidRequestException";
|
|
28
|
+
_this.$fault = "client";
|
|
29
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
30
|
+
return _this;
|
|
31
|
+
}
|
|
32
|
+
return InvalidRequestException;
|
|
33
|
+
}(__BaseException));
|
|
34
|
+
export { InvalidRequestException };
|
|
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 };
|
|
10
59
|
export var DefinitionLanguage;
|
|
11
60
|
(function (DefinitionLanguage) {
|
|
12
61
|
DefinitionLanguage["GRAPHQL"] = "GRAPHQL";
|
|
@@ -27,6 +76,30 @@ export var CreateFlowTemplateResponse;
|
|
|
27
76
|
(function (CreateFlowTemplateResponse) {
|
|
28
77
|
CreateFlowTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
29
78
|
})(CreateFlowTemplateResponse || (CreateFlowTemplateResponse = {}));
|
|
79
|
+
var LimitExceededException = (function (_super) {
|
|
80
|
+
__extends(LimitExceededException, _super);
|
|
81
|
+
function LimitExceededException(opts) {
|
|
82
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
83
|
+
_this.name = "LimitExceededException";
|
|
84
|
+
_this.$fault = "client";
|
|
85
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
86
|
+
return _this;
|
|
87
|
+
}
|
|
88
|
+
return LimitExceededException;
|
|
89
|
+
}(__BaseException));
|
|
90
|
+
export { LimitExceededException };
|
|
91
|
+
var ResourceAlreadyExistsException = (function (_super) {
|
|
92
|
+
__extends(ResourceAlreadyExistsException, _super);
|
|
93
|
+
function ResourceAlreadyExistsException(opts) {
|
|
94
|
+
var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
95
|
+
_this.name = "ResourceAlreadyExistsException";
|
|
96
|
+
_this.$fault = "client";
|
|
97
|
+
Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
|
|
98
|
+
return _this;
|
|
99
|
+
}
|
|
100
|
+
return ResourceAlreadyExistsException;
|
|
101
|
+
}(__BaseException));
|
|
102
|
+
export { ResourceAlreadyExistsException };
|
|
30
103
|
export var MetricsConfiguration;
|
|
31
104
|
(function (MetricsConfiguration) {
|
|
32
105
|
MetricsConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -83,6 +156,18 @@ export var DeleteFlowTemplateResponse;
|
|
|
83
156
|
(function (DeleteFlowTemplateResponse) {
|
|
84
157
|
DeleteFlowTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
85
158
|
})(DeleteFlowTemplateResponse || (DeleteFlowTemplateResponse = {}));
|
|
159
|
+
var ResourceInUseException = (function (_super) {
|
|
160
|
+
__extends(ResourceInUseException, _super);
|
|
161
|
+
function ResourceInUseException(opts) {
|
|
162
|
+
var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
|
|
163
|
+
_this.name = "ResourceInUseException";
|
|
164
|
+
_this.$fault = "client";
|
|
165
|
+
Object.setPrototypeOf(_this, ResourceInUseException.prototype);
|
|
166
|
+
return _this;
|
|
167
|
+
}
|
|
168
|
+
return ResourceInUseException;
|
|
169
|
+
}(__BaseException));
|
|
170
|
+
export { ResourceInUseException };
|
|
86
171
|
export var DeleteNamespaceRequest;
|
|
87
172
|
(function (DeleteNamespaceRequest) {
|
|
88
173
|
DeleteNamespaceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|