@aws-sdk/client-iot-events 3.490.0 → 3.495.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 (38) hide show
  1. package/dist-cjs/IoTEvents.js +1 -63
  2. package/dist-cjs/IoTEventsClient.js +1 -43
  3. package/dist-cjs/commands/CreateAlarmModelCommand.js +1 -28
  4. package/dist-cjs/commands/CreateDetectorModelCommand.js +1 -28
  5. package/dist-cjs/commands/CreateInputCommand.js +1 -28
  6. package/dist-cjs/commands/DeleteAlarmModelCommand.js +1 -28
  7. package/dist-cjs/commands/DeleteDetectorModelCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteInputCommand.js +1 -28
  9. package/dist-cjs/commands/DescribeAlarmModelCommand.js +1 -28
  10. package/dist-cjs/commands/DescribeDetectorModelAnalysisCommand.js +1 -28
  11. package/dist-cjs/commands/DescribeDetectorModelCommand.js +1 -28
  12. package/dist-cjs/commands/DescribeInputCommand.js +1 -28
  13. package/dist-cjs/commands/DescribeLoggingOptionsCommand.js +1 -28
  14. package/dist-cjs/commands/GetDetectorModelAnalysisResultsCommand.js +1 -28
  15. package/dist-cjs/commands/ListAlarmModelVersionsCommand.js +1 -28
  16. package/dist-cjs/commands/ListAlarmModelsCommand.js +1 -28
  17. package/dist-cjs/commands/ListDetectorModelVersionsCommand.js +1 -28
  18. package/dist-cjs/commands/ListDetectorModelsCommand.js +1 -28
  19. package/dist-cjs/commands/ListInputRoutingsCommand.js +1 -28
  20. package/dist-cjs/commands/ListInputsCommand.js +1 -28
  21. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  22. package/dist-cjs/commands/PutLoggingOptionsCommand.js +1 -28
  23. package/dist-cjs/commands/StartDetectorModelAnalysisCommand.js +1 -28
  24. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  25. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  26. package/dist-cjs/commands/UpdateAlarmModelCommand.js +1 -28
  27. package/dist-cjs/commands/UpdateDetectorModelCommand.js +1 -28
  28. package/dist-cjs/commands/UpdateInputCommand.js +1 -28
  29. package/dist-cjs/commands/index.js +1 -29
  30. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  31. package/dist-cjs/extensionConfiguration.js +1 -2
  32. package/dist-cjs/index.js +2794 -10
  33. package/dist-cjs/models/IoTEventsServiceException.js +1 -12
  34. package/dist-cjs/models/index.js +1 -4
  35. package/dist-cjs/models/models_0.js +1 -175
  36. package/dist-cjs/protocols/Aws_restJson1.js +1 -1927
  37. package/dist-cjs/runtimeExtensions.js +1 -22
  38. package/package.json +40 -40
@@ -1,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.IoTEventsServiceException = exports.__ServiceException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
- class IoTEventsServiceException extends smithy_client_1.ServiceException {
7
- constructor(options) {
8
- super(options);
9
- Object.setPrototypeOf(this, IoTEventsServiceException.prototype);
10
- }
11
- }
12
- exports.IoTEventsServiceException = IoTEventsServiceException;
1
+ module.exports = require("../index.js");
@@ -1,4 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./models_0"), exports);
1
+ module.exports = require("../index.js");
@@ -1,175 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UnsupportedOperationException = exports.LoggingLevel = exports.ResourceNotFoundException = exports.InputStatus = exports.DetectorModelVersionStatus = exports.EvaluationMethod = exports.ThrottlingException = exports.ServiceUnavailableException = exports.ResourceInUseException = exports.ResourceAlreadyExistsException = exports.LimitExceededException = exports.InvalidRequestException = exports.InternalFailureException = exports.AnalysisStatus = exports.AnalysisResultLevel = exports.ComparisonOperator = exports.AlarmModelVersionStatus = exports.PayloadType = void 0;
4
- const IoTEventsServiceException_1 = require("./IoTEventsServiceException");
5
- exports.PayloadType = {
6
- JSON: "JSON",
7
- STRING: "STRING",
8
- };
9
- exports.AlarmModelVersionStatus = {
10
- ACTIVATING: "ACTIVATING",
11
- ACTIVE: "ACTIVE",
12
- FAILED: "FAILED",
13
- INACTIVE: "INACTIVE",
14
- };
15
- exports.ComparisonOperator = {
16
- EQUAL: "EQUAL",
17
- GREATER: "GREATER",
18
- GREATER_OR_EQUAL: "GREATER_OR_EQUAL",
19
- LESS: "LESS",
20
- LESS_OR_EQUAL: "LESS_OR_EQUAL",
21
- NOT_EQUAL: "NOT_EQUAL",
22
- };
23
- exports.AnalysisResultLevel = {
24
- ERROR: "ERROR",
25
- INFO: "INFO",
26
- WARNING: "WARNING",
27
- };
28
- exports.AnalysisStatus = {
29
- COMPLETE: "COMPLETE",
30
- FAILED: "FAILED",
31
- RUNNING: "RUNNING",
32
- };
33
- class InternalFailureException extends IoTEventsServiceException_1.IoTEventsServiceException {
34
- constructor(opts) {
35
- super({
36
- name: "InternalFailureException",
37
- $fault: "server",
38
- ...opts,
39
- });
40
- this.name = "InternalFailureException";
41
- this.$fault = "server";
42
- Object.setPrototypeOf(this, InternalFailureException.prototype);
43
- }
44
- }
45
- exports.InternalFailureException = InternalFailureException;
46
- class InvalidRequestException extends IoTEventsServiceException_1.IoTEventsServiceException {
47
- constructor(opts) {
48
- super({
49
- name: "InvalidRequestException",
50
- $fault: "client",
51
- ...opts,
52
- });
53
- this.name = "InvalidRequestException";
54
- this.$fault = "client";
55
- Object.setPrototypeOf(this, InvalidRequestException.prototype);
56
- }
57
- }
58
- exports.InvalidRequestException = InvalidRequestException;
59
- class LimitExceededException extends IoTEventsServiceException_1.IoTEventsServiceException {
60
- constructor(opts) {
61
- super({
62
- name: "LimitExceededException",
63
- $fault: "client",
64
- ...opts,
65
- });
66
- this.name = "LimitExceededException";
67
- this.$fault = "client";
68
- Object.setPrototypeOf(this, LimitExceededException.prototype);
69
- }
70
- }
71
- exports.LimitExceededException = LimitExceededException;
72
- class ResourceAlreadyExistsException extends IoTEventsServiceException_1.IoTEventsServiceException {
73
- constructor(opts) {
74
- super({
75
- name: "ResourceAlreadyExistsException",
76
- $fault: "client",
77
- ...opts,
78
- });
79
- this.name = "ResourceAlreadyExistsException";
80
- this.$fault = "client";
81
- Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
82
- this.resourceId = opts.resourceId;
83
- this.resourceArn = opts.resourceArn;
84
- }
85
- }
86
- exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
87
- class ResourceInUseException extends IoTEventsServiceException_1.IoTEventsServiceException {
88
- constructor(opts) {
89
- super({
90
- name: "ResourceInUseException",
91
- $fault: "client",
92
- ...opts,
93
- });
94
- this.name = "ResourceInUseException";
95
- this.$fault = "client";
96
- Object.setPrototypeOf(this, ResourceInUseException.prototype);
97
- }
98
- }
99
- exports.ResourceInUseException = ResourceInUseException;
100
- class ServiceUnavailableException extends IoTEventsServiceException_1.IoTEventsServiceException {
101
- constructor(opts) {
102
- super({
103
- name: "ServiceUnavailableException",
104
- $fault: "server",
105
- ...opts,
106
- });
107
- this.name = "ServiceUnavailableException";
108
- this.$fault = "server";
109
- Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
110
- }
111
- }
112
- exports.ServiceUnavailableException = ServiceUnavailableException;
113
- class ThrottlingException extends IoTEventsServiceException_1.IoTEventsServiceException {
114
- constructor(opts) {
115
- super({
116
- name: "ThrottlingException",
117
- $fault: "client",
118
- ...opts,
119
- });
120
- this.name = "ThrottlingException";
121
- this.$fault = "client";
122
- Object.setPrototypeOf(this, ThrottlingException.prototype);
123
- }
124
- }
125
- exports.ThrottlingException = ThrottlingException;
126
- exports.EvaluationMethod = {
127
- BATCH: "BATCH",
128
- SERIAL: "SERIAL",
129
- };
130
- exports.DetectorModelVersionStatus = {
131
- ACTIVATING: "ACTIVATING",
132
- ACTIVE: "ACTIVE",
133
- DEPRECATED: "DEPRECATED",
134
- DRAFT: "DRAFT",
135
- FAILED: "FAILED",
136
- INACTIVE: "INACTIVE",
137
- PAUSED: "PAUSED",
138
- };
139
- exports.InputStatus = {
140
- ACTIVE: "ACTIVE",
141
- CREATING: "CREATING",
142
- DELETING: "DELETING",
143
- UPDATING: "UPDATING",
144
- };
145
- class ResourceNotFoundException extends IoTEventsServiceException_1.IoTEventsServiceException {
146
- constructor(opts) {
147
- super({
148
- name: "ResourceNotFoundException",
149
- $fault: "client",
150
- ...opts,
151
- });
152
- this.name = "ResourceNotFoundException";
153
- this.$fault = "client";
154
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
155
- }
156
- }
157
- exports.ResourceNotFoundException = ResourceNotFoundException;
158
- exports.LoggingLevel = {
159
- DEBUG: "DEBUG",
160
- ERROR: "ERROR",
161
- INFO: "INFO",
162
- };
163
- class UnsupportedOperationException extends IoTEventsServiceException_1.IoTEventsServiceException {
164
- constructor(opts) {
165
- super({
166
- name: "UnsupportedOperationException",
167
- $fault: "server",
168
- ...opts,
169
- });
170
- this.name = "UnsupportedOperationException";
171
- this.$fault = "server";
172
- Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
173
- }
174
- }
175
- exports.UnsupportedOperationException = UnsupportedOperationException;
1
+ module.exports = require("../index.js");