@aws-sdk/client-iot-events-data 3.169.0 → 3.171.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 (27) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/IoTEventsData.d.ts +208 -65
  3. package/dist-types/ts3.4/IoTEventsDataClient.d.ts +177 -85
  4. package/dist-types/ts3.4/commands/BatchAcknowledgeAlarmCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/BatchDeleteDetectorCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/BatchDisableAlarmCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/BatchEnableAlarmCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/BatchPutMessageCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/BatchResetAlarmCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/BatchSnoozeAlarmCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/BatchUpdateDetectorCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/DescribeAlarmCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/DescribeDetectorCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/ListAlarmsCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/ListDetectorsCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/index.d.ts +12 -12
  17. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  18. package/dist-types/ts3.4/index.d.ts +5 -5
  19. package/dist-types/ts3.4/models/IoTEventsDataServiceException.d.ts +7 -6
  20. package/dist-types/ts3.4/models/index.d.ts +1 -1
  21. package/dist-types/ts3.4/models/models_0.d.ts +493 -626
  22. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -38
  23. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  24. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  25. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  26. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  27. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-iot-events-data
9
+
10
+
11
+
12
+
13
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-iot-events-data
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-iot-events-data
@@ -1,65 +1,208 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { BatchAcknowledgeAlarmCommandInput, BatchAcknowledgeAlarmCommandOutput } from "./commands/BatchAcknowledgeAlarmCommand";
3
- import { BatchDeleteDetectorCommandInput, BatchDeleteDetectorCommandOutput } from "./commands/BatchDeleteDetectorCommand";
4
- import { BatchDisableAlarmCommandInput, BatchDisableAlarmCommandOutput } from "./commands/BatchDisableAlarmCommand";
5
- import { BatchEnableAlarmCommandInput, BatchEnableAlarmCommandOutput } from "./commands/BatchEnableAlarmCommand";
6
- import { BatchPutMessageCommandInput, BatchPutMessageCommandOutput } from "./commands/BatchPutMessageCommand";
7
- import { BatchResetAlarmCommandInput, BatchResetAlarmCommandOutput } from "./commands/BatchResetAlarmCommand";
8
- import { BatchSnoozeAlarmCommandInput, BatchSnoozeAlarmCommandOutput } from "./commands/BatchSnoozeAlarmCommand";
9
- import { BatchUpdateDetectorCommandInput, BatchUpdateDetectorCommandOutput } from "./commands/BatchUpdateDetectorCommand";
10
- import { DescribeAlarmCommandInput, DescribeAlarmCommandOutput } from "./commands/DescribeAlarmCommand";
11
- import { DescribeDetectorCommandInput, DescribeDetectorCommandOutput } from "./commands/DescribeDetectorCommand";
12
- import { ListAlarmsCommandInput, ListAlarmsCommandOutput } from "./commands/ListAlarmsCommand";
13
- import { ListDetectorsCommandInput, ListDetectorsCommandOutput } from "./commands/ListDetectorsCommand";
14
- import { IoTEventsDataClient } from "./IoTEventsDataClient";
15
-
16
- export declare class IoTEventsData extends IoTEventsDataClient {
17
-
18
- batchAcknowledgeAlarm(args: BatchAcknowledgeAlarmCommandInput, options?: __HttpHandlerOptions): Promise<BatchAcknowledgeAlarmCommandOutput>;
19
- batchAcknowledgeAlarm(args: BatchAcknowledgeAlarmCommandInput, cb: (err: any, data?: BatchAcknowledgeAlarmCommandOutput) => void): void;
20
- batchAcknowledgeAlarm(args: BatchAcknowledgeAlarmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchAcknowledgeAlarmCommandOutput) => void): void;
21
-
22
- batchDeleteDetector(args: BatchDeleteDetectorCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeleteDetectorCommandOutput>;
23
- batchDeleteDetector(args: BatchDeleteDetectorCommandInput, cb: (err: any, data?: BatchDeleteDetectorCommandOutput) => void): void;
24
- batchDeleteDetector(args: BatchDeleteDetectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteDetectorCommandOutput) => void): void;
25
-
26
- batchDisableAlarm(args: BatchDisableAlarmCommandInput, options?: __HttpHandlerOptions): Promise<BatchDisableAlarmCommandOutput>;
27
- batchDisableAlarm(args: BatchDisableAlarmCommandInput, cb: (err: any, data?: BatchDisableAlarmCommandOutput) => void): void;
28
- batchDisableAlarm(args: BatchDisableAlarmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDisableAlarmCommandOutput) => void): void;
29
-
30
- batchEnableAlarm(args: BatchEnableAlarmCommandInput, options?: __HttpHandlerOptions): Promise<BatchEnableAlarmCommandOutput>;
31
- batchEnableAlarm(args: BatchEnableAlarmCommandInput, cb: (err: any, data?: BatchEnableAlarmCommandOutput) => void): void;
32
- batchEnableAlarm(args: BatchEnableAlarmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchEnableAlarmCommandOutput) => void): void;
33
-
34
- batchPutMessage(args: BatchPutMessageCommandInput, options?: __HttpHandlerOptions): Promise<BatchPutMessageCommandOutput>;
35
- batchPutMessage(args: BatchPutMessageCommandInput, cb: (err: any, data?: BatchPutMessageCommandOutput) => void): void;
36
- batchPutMessage(args: BatchPutMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchPutMessageCommandOutput) => void): void;
37
-
38
- batchResetAlarm(args: BatchResetAlarmCommandInput, options?: __HttpHandlerOptions): Promise<BatchResetAlarmCommandOutput>;
39
- batchResetAlarm(args: BatchResetAlarmCommandInput, cb: (err: any, data?: BatchResetAlarmCommandOutput) => void): void;
40
- batchResetAlarm(args: BatchResetAlarmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchResetAlarmCommandOutput) => void): void;
41
-
42
- batchSnoozeAlarm(args: BatchSnoozeAlarmCommandInput, options?: __HttpHandlerOptions): Promise<BatchSnoozeAlarmCommandOutput>;
43
- batchSnoozeAlarm(args: BatchSnoozeAlarmCommandInput, cb: (err: any, data?: BatchSnoozeAlarmCommandOutput) => void): void;
44
- batchSnoozeAlarm(args: BatchSnoozeAlarmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchSnoozeAlarmCommandOutput) => void): void;
45
-
46
- batchUpdateDetector(args: BatchUpdateDetectorCommandInput, options?: __HttpHandlerOptions): Promise<BatchUpdateDetectorCommandOutput>;
47
- batchUpdateDetector(args: BatchUpdateDetectorCommandInput, cb: (err: any, data?: BatchUpdateDetectorCommandOutput) => void): void;
48
- batchUpdateDetector(args: BatchUpdateDetectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchUpdateDetectorCommandOutput) => void): void;
49
-
50
- describeAlarm(args: DescribeAlarmCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAlarmCommandOutput>;
51
- describeAlarm(args: DescribeAlarmCommandInput, cb: (err: any, data?: DescribeAlarmCommandOutput) => void): void;
52
- describeAlarm(args: DescribeAlarmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAlarmCommandOutput) => void): void;
53
-
54
- describeDetector(args: DescribeDetectorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDetectorCommandOutput>;
55
- describeDetector(args: DescribeDetectorCommandInput, cb: (err: any, data?: DescribeDetectorCommandOutput) => void): void;
56
- describeDetector(args: DescribeDetectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDetectorCommandOutput) => void): void;
57
-
58
- listAlarms(args: ListAlarmsCommandInput, options?: __HttpHandlerOptions): Promise<ListAlarmsCommandOutput>;
59
- listAlarms(args: ListAlarmsCommandInput, cb: (err: any, data?: ListAlarmsCommandOutput) => void): void;
60
- listAlarms(args: ListAlarmsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAlarmsCommandOutput) => void): void;
61
-
62
- listDetectors(args: ListDetectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListDetectorsCommandOutput>;
63
- listDetectors(args: ListDetectorsCommandInput, cb: (err: any, data?: ListDetectorsCommandOutput) => void): void;
64
- listDetectors(args: ListDetectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDetectorsCommandOutput) => void): void;
65
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ BatchAcknowledgeAlarmCommandInput,
4
+ BatchAcknowledgeAlarmCommandOutput,
5
+ } from "./commands/BatchAcknowledgeAlarmCommand";
6
+ import {
7
+ BatchDeleteDetectorCommandInput,
8
+ BatchDeleteDetectorCommandOutput,
9
+ } from "./commands/BatchDeleteDetectorCommand";
10
+ import {
11
+ BatchDisableAlarmCommandInput,
12
+ BatchDisableAlarmCommandOutput,
13
+ } from "./commands/BatchDisableAlarmCommand";
14
+ import {
15
+ BatchEnableAlarmCommandInput,
16
+ BatchEnableAlarmCommandOutput,
17
+ } from "./commands/BatchEnableAlarmCommand";
18
+ import {
19
+ BatchPutMessageCommandInput,
20
+ BatchPutMessageCommandOutput,
21
+ } from "./commands/BatchPutMessageCommand";
22
+ import {
23
+ BatchResetAlarmCommandInput,
24
+ BatchResetAlarmCommandOutput,
25
+ } from "./commands/BatchResetAlarmCommand";
26
+ import {
27
+ BatchSnoozeAlarmCommandInput,
28
+ BatchSnoozeAlarmCommandOutput,
29
+ } from "./commands/BatchSnoozeAlarmCommand";
30
+ import {
31
+ BatchUpdateDetectorCommandInput,
32
+ BatchUpdateDetectorCommandOutput,
33
+ } from "./commands/BatchUpdateDetectorCommand";
34
+ import {
35
+ DescribeAlarmCommandInput,
36
+ DescribeAlarmCommandOutput,
37
+ } from "./commands/DescribeAlarmCommand";
38
+ import {
39
+ DescribeDetectorCommandInput,
40
+ DescribeDetectorCommandOutput,
41
+ } from "./commands/DescribeDetectorCommand";
42
+ import {
43
+ ListAlarmsCommandInput,
44
+ ListAlarmsCommandOutput,
45
+ } from "./commands/ListAlarmsCommand";
46
+ import {
47
+ ListDetectorsCommandInput,
48
+ ListDetectorsCommandOutput,
49
+ } from "./commands/ListDetectorsCommand";
50
+ import { IoTEventsDataClient } from "./IoTEventsDataClient";
51
+ export declare class IoTEventsData extends IoTEventsDataClient {
52
+ batchAcknowledgeAlarm(
53
+ args: BatchAcknowledgeAlarmCommandInput,
54
+ options?: __HttpHandlerOptions
55
+ ): Promise<BatchAcknowledgeAlarmCommandOutput>;
56
+ batchAcknowledgeAlarm(
57
+ args: BatchAcknowledgeAlarmCommandInput,
58
+ cb: (err: any, data?: BatchAcknowledgeAlarmCommandOutput) => void
59
+ ): void;
60
+ batchAcknowledgeAlarm(
61
+ args: BatchAcknowledgeAlarmCommandInput,
62
+ options: __HttpHandlerOptions,
63
+ cb: (err: any, data?: BatchAcknowledgeAlarmCommandOutput) => void
64
+ ): void;
65
+ batchDeleteDetector(
66
+ args: BatchDeleteDetectorCommandInput,
67
+ options?: __HttpHandlerOptions
68
+ ): Promise<BatchDeleteDetectorCommandOutput>;
69
+ batchDeleteDetector(
70
+ args: BatchDeleteDetectorCommandInput,
71
+ cb: (err: any, data?: BatchDeleteDetectorCommandOutput) => void
72
+ ): void;
73
+ batchDeleteDetector(
74
+ args: BatchDeleteDetectorCommandInput,
75
+ options: __HttpHandlerOptions,
76
+ cb: (err: any, data?: BatchDeleteDetectorCommandOutput) => void
77
+ ): void;
78
+ batchDisableAlarm(
79
+ args: BatchDisableAlarmCommandInput,
80
+ options?: __HttpHandlerOptions
81
+ ): Promise<BatchDisableAlarmCommandOutput>;
82
+ batchDisableAlarm(
83
+ args: BatchDisableAlarmCommandInput,
84
+ cb: (err: any, data?: BatchDisableAlarmCommandOutput) => void
85
+ ): void;
86
+ batchDisableAlarm(
87
+ args: BatchDisableAlarmCommandInput,
88
+ options: __HttpHandlerOptions,
89
+ cb: (err: any, data?: BatchDisableAlarmCommandOutput) => void
90
+ ): void;
91
+ batchEnableAlarm(
92
+ args: BatchEnableAlarmCommandInput,
93
+ options?: __HttpHandlerOptions
94
+ ): Promise<BatchEnableAlarmCommandOutput>;
95
+ batchEnableAlarm(
96
+ args: BatchEnableAlarmCommandInput,
97
+ cb: (err: any, data?: BatchEnableAlarmCommandOutput) => void
98
+ ): void;
99
+ batchEnableAlarm(
100
+ args: BatchEnableAlarmCommandInput,
101
+ options: __HttpHandlerOptions,
102
+ cb: (err: any, data?: BatchEnableAlarmCommandOutput) => void
103
+ ): void;
104
+ batchPutMessage(
105
+ args: BatchPutMessageCommandInput,
106
+ options?: __HttpHandlerOptions
107
+ ): Promise<BatchPutMessageCommandOutput>;
108
+ batchPutMessage(
109
+ args: BatchPutMessageCommandInput,
110
+ cb: (err: any, data?: BatchPutMessageCommandOutput) => void
111
+ ): void;
112
+ batchPutMessage(
113
+ args: BatchPutMessageCommandInput,
114
+ options: __HttpHandlerOptions,
115
+ cb: (err: any, data?: BatchPutMessageCommandOutput) => void
116
+ ): void;
117
+ batchResetAlarm(
118
+ args: BatchResetAlarmCommandInput,
119
+ options?: __HttpHandlerOptions
120
+ ): Promise<BatchResetAlarmCommandOutput>;
121
+ batchResetAlarm(
122
+ args: BatchResetAlarmCommandInput,
123
+ cb: (err: any, data?: BatchResetAlarmCommandOutput) => void
124
+ ): void;
125
+ batchResetAlarm(
126
+ args: BatchResetAlarmCommandInput,
127
+ options: __HttpHandlerOptions,
128
+ cb: (err: any, data?: BatchResetAlarmCommandOutput) => void
129
+ ): void;
130
+ batchSnoozeAlarm(
131
+ args: BatchSnoozeAlarmCommandInput,
132
+ options?: __HttpHandlerOptions
133
+ ): Promise<BatchSnoozeAlarmCommandOutput>;
134
+ batchSnoozeAlarm(
135
+ args: BatchSnoozeAlarmCommandInput,
136
+ cb: (err: any, data?: BatchSnoozeAlarmCommandOutput) => void
137
+ ): void;
138
+ batchSnoozeAlarm(
139
+ args: BatchSnoozeAlarmCommandInput,
140
+ options: __HttpHandlerOptions,
141
+ cb: (err: any, data?: BatchSnoozeAlarmCommandOutput) => void
142
+ ): void;
143
+ batchUpdateDetector(
144
+ args: BatchUpdateDetectorCommandInput,
145
+ options?: __HttpHandlerOptions
146
+ ): Promise<BatchUpdateDetectorCommandOutput>;
147
+ batchUpdateDetector(
148
+ args: BatchUpdateDetectorCommandInput,
149
+ cb: (err: any, data?: BatchUpdateDetectorCommandOutput) => void
150
+ ): void;
151
+ batchUpdateDetector(
152
+ args: BatchUpdateDetectorCommandInput,
153
+ options: __HttpHandlerOptions,
154
+ cb: (err: any, data?: BatchUpdateDetectorCommandOutput) => void
155
+ ): void;
156
+ describeAlarm(
157
+ args: DescribeAlarmCommandInput,
158
+ options?: __HttpHandlerOptions
159
+ ): Promise<DescribeAlarmCommandOutput>;
160
+ describeAlarm(
161
+ args: DescribeAlarmCommandInput,
162
+ cb: (err: any, data?: DescribeAlarmCommandOutput) => void
163
+ ): void;
164
+ describeAlarm(
165
+ args: DescribeAlarmCommandInput,
166
+ options: __HttpHandlerOptions,
167
+ cb: (err: any, data?: DescribeAlarmCommandOutput) => void
168
+ ): void;
169
+ describeDetector(
170
+ args: DescribeDetectorCommandInput,
171
+ options?: __HttpHandlerOptions
172
+ ): Promise<DescribeDetectorCommandOutput>;
173
+ describeDetector(
174
+ args: DescribeDetectorCommandInput,
175
+ cb: (err: any, data?: DescribeDetectorCommandOutput) => void
176
+ ): void;
177
+ describeDetector(
178
+ args: DescribeDetectorCommandInput,
179
+ options: __HttpHandlerOptions,
180
+ cb: (err: any, data?: DescribeDetectorCommandOutput) => void
181
+ ): void;
182
+ listAlarms(
183
+ args: ListAlarmsCommandInput,
184
+ options?: __HttpHandlerOptions
185
+ ): Promise<ListAlarmsCommandOutput>;
186
+ listAlarms(
187
+ args: ListAlarmsCommandInput,
188
+ cb: (err: any, data?: ListAlarmsCommandOutput) => void
189
+ ): void;
190
+ listAlarms(
191
+ args: ListAlarmsCommandInput,
192
+ options: __HttpHandlerOptions,
193
+ cb: (err: any, data?: ListAlarmsCommandOutput) => void
194
+ ): void;
195
+ listDetectors(
196
+ args: ListDetectorsCommandInput,
197
+ options?: __HttpHandlerOptions
198
+ ): Promise<ListDetectorsCommandOutput>;
199
+ listDetectors(
200
+ args: ListDetectorsCommandInput,
201
+ cb: (err: any, data?: ListDetectorsCommandOutput) => void
202
+ ): void;
203
+ listDetectors(
204
+ args: ListDetectorsCommandInput,
205
+ options: __HttpHandlerOptions,
206
+ cb: (err: any, data?: ListDetectorsCommandOutput) => void
207
+ ): void;
208
+ }
@@ -1,85 +1,177 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { BatchAcknowledgeAlarmCommandInput, BatchAcknowledgeAlarmCommandOutput } from "./commands/BatchAcknowledgeAlarmCommand";
10
- import { BatchDeleteDetectorCommandInput, BatchDeleteDetectorCommandOutput } from "./commands/BatchDeleteDetectorCommand";
11
- import { BatchDisableAlarmCommandInput, BatchDisableAlarmCommandOutput } from "./commands/BatchDisableAlarmCommand";
12
- import { BatchEnableAlarmCommandInput, BatchEnableAlarmCommandOutput } from "./commands/BatchEnableAlarmCommand";
13
- import { BatchPutMessageCommandInput, BatchPutMessageCommandOutput } from "./commands/BatchPutMessageCommand";
14
- import { BatchResetAlarmCommandInput, BatchResetAlarmCommandOutput } from "./commands/BatchResetAlarmCommand";
15
- import { BatchSnoozeAlarmCommandInput, BatchSnoozeAlarmCommandOutput } from "./commands/BatchSnoozeAlarmCommand";
16
- import { BatchUpdateDetectorCommandInput, BatchUpdateDetectorCommandOutput } from "./commands/BatchUpdateDetectorCommand";
17
- import { DescribeAlarmCommandInput, DescribeAlarmCommandOutput } from "./commands/DescribeAlarmCommand";
18
- import { DescribeDetectorCommandInput, DescribeDetectorCommandOutput } from "./commands/DescribeDetectorCommand";
19
- import { ListAlarmsCommandInput, ListAlarmsCommandOutput } from "./commands/ListAlarmsCommand";
20
- import { ListDetectorsCommandInput, ListDetectorsCommandOutput } from "./commands/ListDetectorsCommand";
21
- export declare type ServiceInputTypes = BatchAcknowledgeAlarmCommandInput | BatchDeleteDetectorCommandInput | BatchDisableAlarmCommandInput | BatchEnableAlarmCommandInput | BatchPutMessageCommandInput | BatchResetAlarmCommandInput | BatchSnoozeAlarmCommandInput | BatchUpdateDetectorCommandInput | DescribeAlarmCommandInput | DescribeDetectorCommandInput | ListAlarmsCommandInput | ListDetectorsCommandInput;
22
- export declare type ServiceOutputTypes = BatchAcknowledgeAlarmCommandOutput | BatchDeleteDetectorCommandOutput | BatchDisableAlarmCommandOutput | BatchEnableAlarmCommandOutput | BatchPutMessageCommandOutput | BatchResetAlarmCommandOutput | BatchSnoozeAlarmCommandOutput | BatchUpdateDetectorCommandOutput | DescribeAlarmCommandOutput | DescribeDetectorCommandOutput | ListAlarmsCommandOutput | ListDetectorsCommandOutput;
23
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
24
-
25
- requestHandler?: __HttpHandler;
26
-
27
- sha256?: __HashConstructor;
28
-
29
- urlParser?: __UrlParser;
30
-
31
- bodyLengthChecker?: __BodyLengthCalculator;
32
-
33
- streamCollector?: __StreamCollector;
34
-
35
- base64Decoder?: __Decoder;
36
-
37
- base64Encoder?: __Encoder;
38
-
39
- utf8Decoder?: __Decoder;
40
-
41
- utf8Encoder?: __Encoder;
42
-
43
- runtime?: string;
44
-
45
- disableHostPrefix?: boolean;
46
-
47
- maxAttempts?: number | __Provider<number>;
48
-
49
- retryMode?: string | __Provider<string>;
50
-
51
- logger?: __Logger;
52
-
53
- useDualstackEndpoint?: boolean | __Provider<boolean>;
54
-
55
- useFipsEndpoint?: boolean | __Provider<boolean>;
56
-
57
- serviceId?: string;
58
-
59
- region?: string | __Provider<string>;
60
-
61
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
62
-
63
- regionInfoProvider?: RegionInfoProvider;
64
-
65
- defaultUserAgentProvider?: Provider<__UserAgent>;
66
-
67
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
68
- }
69
- declare type IoTEventsDataClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
70
-
71
- export interface IoTEventsDataClientConfig extends IoTEventsDataClientConfigType {
72
- }
73
- declare type IoTEventsDataClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
74
-
75
- export interface IoTEventsDataClientResolvedConfig extends IoTEventsDataClientResolvedConfigType {
76
- }
77
-
78
- export declare class IoTEventsDataClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IoTEventsDataClientResolvedConfig> {
79
-
80
- readonly config: IoTEventsDataClientResolvedConfig;
81
- constructor(configuration: IoTEventsDataClientConfig);
82
-
83
- destroy(): void;
84
- }
85
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ BatchAcknowledgeAlarmCommandInput,
47
+ BatchAcknowledgeAlarmCommandOutput,
48
+ } from "./commands/BatchAcknowledgeAlarmCommand";
49
+ import {
50
+ BatchDeleteDetectorCommandInput,
51
+ BatchDeleteDetectorCommandOutput,
52
+ } from "./commands/BatchDeleteDetectorCommand";
53
+ import {
54
+ BatchDisableAlarmCommandInput,
55
+ BatchDisableAlarmCommandOutput,
56
+ } from "./commands/BatchDisableAlarmCommand";
57
+ import {
58
+ BatchEnableAlarmCommandInput,
59
+ BatchEnableAlarmCommandOutput,
60
+ } from "./commands/BatchEnableAlarmCommand";
61
+ import {
62
+ BatchPutMessageCommandInput,
63
+ BatchPutMessageCommandOutput,
64
+ } from "./commands/BatchPutMessageCommand";
65
+ import {
66
+ BatchResetAlarmCommandInput,
67
+ BatchResetAlarmCommandOutput,
68
+ } from "./commands/BatchResetAlarmCommand";
69
+ import {
70
+ BatchSnoozeAlarmCommandInput,
71
+ BatchSnoozeAlarmCommandOutput,
72
+ } from "./commands/BatchSnoozeAlarmCommand";
73
+ import {
74
+ BatchUpdateDetectorCommandInput,
75
+ BatchUpdateDetectorCommandOutput,
76
+ } from "./commands/BatchUpdateDetectorCommand";
77
+ import {
78
+ DescribeAlarmCommandInput,
79
+ DescribeAlarmCommandOutput,
80
+ } from "./commands/DescribeAlarmCommand";
81
+ import {
82
+ DescribeDetectorCommandInput,
83
+ DescribeDetectorCommandOutput,
84
+ } from "./commands/DescribeDetectorCommand";
85
+ import {
86
+ ListAlarmsCommandInput,
87
+ ListAlarmsCommandOutput,
88
+ } from "./commands/ListAlarmsCommand";
89
+ import {
90
+ ListDetectorsCommandInput,
91
+ ListDetectorsCommandOutput,
92
+ } from "./commands/ListDetectorsCommand";
93
+ export declare type ServiceInputTypes =
94
+ | BatchAcknowledgeAlarmCommandInput
95
+ | BatchDeleteDetectorCommandInput
96
+ | BatchDisableAlarmCommandInput
97
+ | BatchEnableAlarmCommandInput
98
+ | BatchPutMessageCommandInput
99
+ | BatchResetAlarmCommandInput
100
+ | BatchSnoozeAlarmCommandInput
101
+ | BatchUpdateDetectorCommandInput
102
+ | DescribeAlarmCommandInput
103
+ | DescribeDetectorCommandInput
104
+ | ListAlarmsCommandInput
105
+ | ListDetectorsCommandInput;
106
+ export declare type ServiceOutputTypes =
107
+ | BatchAcknowledgeAlarmCommandOutput
108
+ | BatchDeleteDetectorCommandOutput
109
+ | BatchDisableAlarmCommandOutput
110
+ | BatchEnableAlarmCommandOutput
111
+ | BatchPutMessageCommandOutput
112
+ | BatchResetAlarmCommandOutput
113
+ | BatchSnoozeAlarmCommandOutput
114
+ | BatchUpdateDetectorCommandOutput
115
+ | DescribeAlarmCommandOutput
116
+ | DescribeDetectorCommandOutput
117
+ | ListAlarmsCommandOutput
118
+ | ListDetectorsCommandOutput;
119
+ export interface ClientDefaults
120
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
121
+ requestHandler?: __HttpHandler;
122
+ sha256?: __HashConstructor;
123
+ urlParser?: __UrlParser;
124
+ bodyLengthChecker?: __BodyLengthCalculator;
125
+ streamCollector?: __StreamCollector;
126
+ base64Decoder?: __Decoder;
127
+ base64Encoder?: __Encoder;
128
+ utf8Decoder?: __Decoder;
129
+ utf8Encoder?: __Encoder;
130
+ runtime?: string;
131
+ disableHostPrefix?: boolean;
132
+ maxAttempts?: number | __Provider<number>;
133
+ retryMode?: string | __Provider<string>;
134
+ logger?: __Logger;
135
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
136
+ useFipsEndpoint?: boolean | __Provider<boolean>;
137
+ serviceId?: string;
138
+ region?: string | __Provider<string>;
139
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
140
+ regionInfoProvider?: RegionInfoProvider;
141
+ defaultUserAgentProvider?: Provider<__UserAgent>;
142
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
143
+ }
144
+ declare type IoTEventsDataClientConfigType = Partial<
145
+ __SmithyConfiguration<__HttpHandlerOptions>
146
+ > &
147
+ ClientDefaults &
148
+ RegionInputConfig &
149
+ EndpointsInputConfig &
150
+ RetryInputConfig &
151
+ HostHeaderInputConfig &
152
+ AwsAuthInputConfig &
153
+ UserAgentInputConfig;
154
+ export interface IoTEventsDataClientConfig
155
+ extends IoTEventsDataClientConfigType {}
156
+ declare type IoTEventsDataClientResolvedConfigType =
157
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
158
+ Required<ClientDefaults> &
159
+ RegionResolvedConfig &
160
+ EndpointsResolvedConfig &
161
+ RetryResolvedConfig &
162
+ HostHeaderResolvedConfig &
163
+ AwsAuthResolvedConfig &
164
+ UserAgentResolvedConfig;
165
+ export interface IoTEventsDataClientResolvedConfig
166
+ extends IoTEventsDataClientResolvedConfigType {}
167
+ export declare class IoTEventsDataClient extends __Client<
168
+ __HttpHandlerOptions,
169
+ ServiceInputTypes,
170
+ ServiceOutputTypes,
171
+ IoTEventsDataClientResolvedConfig
172
+ > {
173
+ readonly config: IoTEventsDataClientResolvedConfig;
174
+ constructor(configuration: IoTEventsDataClientConfig);
175
+ destroy(): void;
176
+ }
177
+ export {};
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
4
- import { BatchAcknowledgeAlarmRequest, BatchAcknowledgeAlarmResponse } from "../models/models_0";
5
- export interface BatchAcknowledgeAlarmCommandInput extends BatchAcknowledgeAlarmRequest {
6
- }
7
- export interface BatchAcknowledgeAlarmCommandOutput extends BatchAcknowledgeAlarmResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class BatchAcknowledgeAlarmCommand extends $Command<BatchAcknowledgeAlarmCommandInput, BatchAcknowledgeAlarmCommandOutput, IoTEventsDataClientResolvedConfig> {
11
- readonly input: BatchAcknowledgeAlarmCommandInput;
12
- constructor(input: BatchAcknowledgeAlarmCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchAcknowledgeAlarmCommandInput, BatchAcknowledgeAlarmCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IoTEventsDataClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IoTEventsDataClient";
13
+ import {
14
+ BatchAcknowledgeAlarmRequest,
15
+ BatchAcknowledgeAlarmResponse,
16
+ } from "../models/models_0";
17
+ export interface BatchAcknowledgeAlarmCommandInput
18
+ extends BatchAcknowledgeAlarmRequest {}
19
+ export interface BatchAcknowledgeAlarmCommandOutput
20
+ extends BatchAcknowledgeAlarmResponse,
21
+ __MetadataBearer {}
22
+ export declare class BatchAcknowledgeAlarmCommand extends $Command<
23
+ BatchAcknowledgeAlarmCommandInput,
24
+ BatchAcknowledgeAlarmCommandOutput,
25
+ IoTEventsDataClientResolvedConfig
26
+ > {
27
+ readonly input: BatchAcknowledgeAlarmCommandInput;
28
+ constructor(input: BatchAcknowledgeAlarmCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: IoTEventsDataClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ BatchAcknowledgeAlarmCommandInput,
35
+ BatchAcknowledgeAlarmCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }