@aws-sdk/client-iot-wireless 3.41.0 → 3.46.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 +48 -0
- package/README.md +11 -1
- package/dist-cjs/IoTWireless.js +60 -0
- package/dist-cjs/commands/DeleteQueuedMessagesCommand.js +36 -0
- package/dist-cjs/commands/GetNetworkAnalyzerConfigurationCommand.js +36 -0
- package/dist-cjs/commands/ListQueuedMessagesCommand.js +36 -0
- package/dist-cjs/commands/UpdateNetworkAnalyzerConfigurationCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/endpoints.js +48 -1
- package/dist-cjs/models/models_0.js +76 -11
- package/dist-cjs/pagination/ListQueuedMessagesPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +545 -4
- package/dist-cjs/runtimeConfig.js +0 -2
- package/dist-es/IoTWireless.js +60 -0
- package/dist-es/commands/DeleteQueuedMessagesCommand.js +39 -0
- package/dist-es/commands/GetNetworkAnalyzerConfigurationCommand.js +39 -0
- package/dist-es/commands/ListQueuedMessagesCommand.js +39 -0
- package/dist-es/commands/UpdateNetworkAnalyzerConfigurationCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoints.js +48 -1
- package/dist-es/models/models_0.js +49 -4
- package/dist-es/pagination/ListQueuedMessagesPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +629 -32
- package/dist-es/runtimeConfig.js +0 -2
- package/dist-types/IoTWireless.d.ts +39 -1
- package/dist-types/IoTWirelessClient.d.ts +17 -3
- package/dist-types/commands/DeleteQueuedMessagesCommand.d.ts +35 -0
- package/dist-types/commands/GetNetworkAnalyzerConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/ListQueuedMessagesCommand.d.ts +35 -0
- package/dist-types/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +205 -15
- package/dist-types/pagination/ListQueuedMessagesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/ts3.4/IoTWireless.d.ts +20 -0
- package/dist-types/ts3.4/IoTWirelessClient.d.ts +6 -2
- package/dist-types/ts3.4/commands/DeleteQueuedMessagesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetNetworkAnalyzerConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListQueuedMessagesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +125 -9
- package/dist-types/ts3.4/pagination/ListQueuedMessagesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +36 -43
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "../commands/ListQueuedMessagesCommand";
|
|
3
|
+
import { IoTWirelessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListQueuedMessages(config: IoTWirelessPaginationConfiguration, input: ListQueuedMessagesCommandInput, ...additionalArguments: any): Paginator<ListQueuedMessagesCommandOutput>;
|
|
@@ -4,6 +4,7 @@ export * from "./ListDeviceProfilesPaginator";
|
|
|
4
4
|
export * from "./ListFuotaTasksPaginator";
|
|
5
5
|
export * from "./ListMulticastGroupsByFuotaTaskPaginator";
|
|
6
6
|
export * from "./ListMulticastGroupsPaginator";
|
|
7
|
+
export * from "./ListQueuedMessagesPaginator";
|
|
7
8
|
export * from "./ListServiceProfilesPaginator";
|
|
8
9
|
export * from "./ListWirelessDevicesPaginator";
|
|
9
10
|
export * from "./ListWirelessGatewaysPaginator";
|
|
@@ -21,6 +21,7 @@ import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from ".
|
|
|
21
21
|
import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "../commands/DeleteDeviceProfileCommand";
|
|
22
22
|
import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "../commands/DeleteFuotaTaskCommand";
|
|
23
23
|
import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "../commands/DeleteMulticastGroupCommand";
|
|
24
|
+
import { DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput } from "../commands/DeleteQueuedMessagesCommand";
|
|
24
25
|
import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "../commands/DeleteServiceProfileCommand";
|
|
25
26
|
import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "../commands/DeleteWirelessDeviceCommand";
|
|
26
27
|
import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "../commands/DeleteWirelessGatewayCommand";
|
|
@@ -39,6 +40,7 @@ import { GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput } from "../commands
|
|
|
39
40
|
import { GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput } from "../commands/GetLogLevelsByResourceTypesCommand";
|
|
40
41
|
import { GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput } from "../commands/GetMulticastGroupCommand";
|
|
41
42
|
import { GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput } from "../commands/GetMulticastGroupSessionCommand";
|
|
43
|
+
import { GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput } from "../commands/GetNetworkAnalyzerConfigurationCommand";
|
|
42
44
|
import { GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput } from "../commands/GetPartnerAccountCommand";
|
|
43
45
|
import { GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput } from "../commands/GetResourceEventConfigurationCommand";
|
|
44
46
|
import { GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput } from "../commands/GetResourceLogLevelCommand";
|
|
@@ -58,6 +60,7 @@ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "../comm
|
|
|
58
60
|
import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "../commands/ListMulticastGroupsByFuotaTaskCommand";
|
|
59
61
|
import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "../commands/ListMulticastGroupsCommand";
|
|
60
62
|
import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "../commands/ListPartnerAccountsCommand";
|
|
63
|
+
import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "../commands/ListQueuedMessagesCommand";
|
|
61
64
|
import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "../commands/ListServiceProfilesCommand";
|
|
62
65
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
63
66
|
import { ListWirelessDevicesCommandInput, ListWirelessDevicesCommandOutput } from "../commands/ListWirelessDevicesCommand";
|
|
@@ -79,6 +82,7 @@ import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from ".
|
|
|
79
82
|
import { UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput } from "../commands/UpdateFuotaTaskCommand";
|
|
80
83
|
import { UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput } from "../commands/UpdateLogLevelsByResourceTypesCommand";
|
|
81
84
|
import { UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput } from "../commands/UpdateMulticastGroupCommand";
|
|
85
|
+
import { UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput } from "../commands/UpdateNetworkAnalyzerConfigurationCommand";
|
|
82
86
|
import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } from "../commands/UpdatePartnerAccountCommand";
|
|
83
87
|
import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "../commands/UpdateResourceEventConfigurationCommand";
|
|
84
88
|
import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "../commands/UpdateWirelessDeviceCommand";
|
|
@@ -104,6 +108,7 @@ export declare const serializeAws_restJson1DeleteDestinationCommand: (input: Del
|
|
|
104
108
|
export declare const serializeAws_restJson1DeleteDeviceProfileCommand: (input: DeleteDeviceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
109
|
export declare const serializeAws_restJson1DeleteFuotaTaskCommand: (input: DeleteFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
110
|
export declare const serializeAws_restJson1DeleteMulticastGroupCommand: (input: DeleteMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
111
|
+
export declare const serializeAws_restJson1DeleteQueuedMessagesCommand: (input: DeleteQueuedMessagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
112
|
export declare const serializeAws_restJson1DeleteServiceProfileCommand: (input: DeleteServiceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
113
|
export declare const serializeAws_restJson1DeleteWirelessDeviceCommand: (input: DeleteWirelessDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
114
|
export declare const serializeAws_restJson1DeleteWirelessGatewayCommand: (input: DeleteWirelessGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -122,6 +127,7 @@ export declare const serializeAws_restJson1GetFuotaTaskCommand: (input: GetFuota
|
|
|
122
127
|
export declare const serializeAws_restJson1GetLogLevelsByResourceTypesCommand: (input: GetLogLevelsByResourceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
123
128
|
export declare const serializeAws_restJson1GetMulticastGroupCommand: (input: GetMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
124
129
|
export declare const serializeAws_restJson1GetMulticastGroupSessionCommand: (input: GetMulticastGroupSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_restJson1GetNetworkAnalyzerConfigurationCommand: (input: GetNetworkAnalyzerConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
131
|
export declare const serializeAws_restJson1GetPartnerAccountCommand: (input: GetPartnerAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
126
132
|
export declare const serializeAws_restJson1GetResourceEventConfigurationCommand: (input: GetResourceEventConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
127
133
|
export declare const serializeAws_restJson1GetResourceLogLevelCommand: (input: GetResourceLogLevelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -141,6 +147,7 @@ export declare const serializeAws_restJson1ListFuotaTasksCommand: (input: ListFu
|
|
|
141
147
|
export declare const serializeAws_restJson1ListMulticastGroupsCommand: (input: ListMulticastGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
142
148
|
export declare const serializeAws_restJson1ListMulticastGroupsByFuotaTaskCommand: (input: ListMulticastGroupsByFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
143
149
|
export declare const serializeAws_restJson1ListPartnerAccountsCommand: (input: ListPartnerAccountsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_restJson1ListQueuedMessagesCommand: (input: ListQueuedMessagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
144
151
|
export declare const serializeAws_restJson1ListServiceProfilesCommand: (input: ListServiceProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
145
152
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
146
153
|
export declare const serializeAws_restJson1ListWirelessDevicesCommand: (input: ListWirelessDevicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -162,6 +169,7 @@ export declare const serializeAws_restJson1UpdateDestinationCommand: (input: Upd
|
|
|
162
169
|
export declare const serializeAws_restJson1UpdateFuotaTaskCommand: (input: UpdateFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
163
170
|
export declare const serializeAws_restJson1UpdateLogLevelsByResourceTypesCommand: (input: UpdateLogLevelsByResourceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
164
171
|
export declare const serializeAws_restJson1UpdateMulticastGroupCommand: (input: UpdateMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
172
|
+
export declare const serializeAws_restJson1UpdateNetworkAnalyzerConfigurationCommand: (input: UpdateNetworkAnalyzerConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
165
173
|
export declare const serializeAws_restJson1UpdatePartnerAccountCommand: (input: UpdatePartnerAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
166
174
|
export declare const serializeAws_restJson1UpdateResourceEventConfigurationCommand: (input: UpdateResourceEventConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
167
175
|
export declare const serializeAws_restJson1UpdateWirelessDeviceCommand: (input: UpdateWirelessDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -187,6 +195,7 @@ export declare const deserializeAws_restJson1DeleteDestinationCommand: (output:
|
|
|
187
195
|
export declare const deserializeAws_restJson1DeleteDeviceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDeviceProfileCommandOutput>;
|
|
188
196
|
export declare const deserializeAws_restJson1DeleteFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFuotaTaskCommandOutput>;
|
|
189
197
|
export declare const deserializeAws_restJson1DeleteMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMulticastGroupCommandOutput>;
|
|
198
|
+
export declare const deserializeAws_restJson1DeleteQueuedMessagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQueuedMessagesCommandOutput>;
|
|
190
199
|
export declare const deserializeAws_restJson1DeleteServiceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceProfileCommandOutput>;
|
|
191
200
|
export declare const deserializeAws_restJson1DeleteWirelessDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWirelessDeviceCommandOutput>;
|
|
192
201
|
export declare const deserializeAws_restJson1DeleteWirelessGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWirelessGatewayCommandOutput>;
|
|
@@ -205,6 +214,7 @@ export declare const deserializeAws_restJson1GetFuotaTaskCommand: (output: __Htt
|
|
|
205
214
|
export declare const deserializeAws_restJson1GetLogLevelsByResourceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLogLevelsByResourceTypesCommandOutput>;
|
|
206
215
|
export declare const deserializeAws_restJson1GetMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMulticastGroupCommandOutput>;
|
|
207
216
|
export declare const deserializeAws_restJson1GetMulticastGroupSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMulticastGroupSessionCommandOutput>;
|
|
217
|
+
export declare const deserializeAws_restJson1GetNetworkAnalyzerConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNetworkAnalyzerConfigurationCommandOutput>;
|
|
208
218
|
export declare const deserializeAws_restJson1GetPartnerAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPartnerAccountCommandOutput>;
|
|
209
219
|
export declare const deserializeAws_restJson1GetResourceEventConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceEventConfigurationCommandOutput>;
|
|
210
220
|
export declare const deserializeAws_restJson1GetResourceLogLevelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceLogLevelCommandOutput>;
|
|
@@ -224,6 +234,7 @@ export declare const deserializeAws_restJson1ListFuotaTasksCommand: (output: __H
|
|
|
224
234
|
export declare const deserializeAws_restJson1ListMulticastGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMulticastGroupsCommandOutput>;
|
|
225
235
|
export declare const deserializeAws_restJson1ListMulticastGroupsByFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMulticastGroupsByFuotaTaskCommandOutput>;
|
|
226
236
|
export declare const deserializeAws_restJson1ListPartnerAccountsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPartnerAccountsCommandOutput>;
|
|
237
|
+
export declare const deserializeAws_restJson1ListQueuedMessagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueuedMessagesCommandOutput>;
|
|
227
238
|
export declare const deserializeAws_restJson1ListServiceProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServiceProfilesCommandOutput>;
|
|
228
239
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
229
240
|
export declare const deserializeAws_restJson1ListWirelessDevicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWirelessDevicesCommandOutput>;
|
|
@@ -245,6 +256,7 @@ export declare const deserializeAws_restJson1UpdateDestinationCommand: (output:
|
|
|
245
256
|
export declare const deserializeAws_restJson1UpdateFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFuotaTaskCommandOutput>;
|
|
246
257
|
export declare const deserializeAws_restJson1UpdateLogLevelsByResourceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLogLevelsByResourceTypesCommandOutput>;
|
|
247
258
|
export declare const deserializeAws_restJson1UpdateMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMulticastGroupCommandOutput>;
|
|
259
|
+
export declare const deserializeAws_restJson1UpdateNetworkAnalyzerConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNetworkAnalyzerConfigurationCommandOutput>;
|
|
248
260
|
export declare const deserializeAws_restJson1UpdatePartnerAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePartnerAccountCommandOutput>;
|
|
249
261
|
export declare const deserializeAws_restJson1UpdateResourceEventConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateResourceEventConfigurationCommandOutput>;
|
|
250
262
|
export declare const deserializeAws_restJson1UpdateWirelessDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWirelessDeviceCommandOutput>;
|
|
@@ -20,6 +20,7 @@ import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from ".
|
|
|
20
20
|
import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "./commands/DeleteDeviceProfileCommand";
|
|
21
21
|
import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "./commands/DeleteFuotaTaskCommand";
|
|
22
22
|
import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "./commands/DeleteMulticastGroupCommand";
|
|
23
|
+
import { DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput } from "./commands/DeleteQueuedMessagesCommand";
|
|
23
24
|
import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "./commands/DeleteServiceProfileCommand";
|
|
24
25
|
import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "./commands/DeleteWirelessDeviceCommand";
|
|
25
26
|
import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "./commands/DeleteWirelessGatewayCommand";
|
|
@@ -38,6 +39,7 @@ import { GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput } from "./commands/
|
|
|
38
39
|
import { GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput } from "./commands/GetLogLevelsByResourceTypesCommand";
|
|
39
40
|
import { GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput } from "./commands/GetMulticastGroupCommand";
|
|
40
41
|
import { GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput } from "./commands/GetMulticastGroupSessionCommand";
|
|
42
|
+
import { GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput } from "./commands/GetNetworkAnalyzerConfigurationCommand";
|
|
41
43
|
import { GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput } from "./commands/GetPartnerAccountCommand";
|
|
42
44
|
import { GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput } from "./commands/GetResourceEventConfigurationCommand";
|
|
43
45
|
import { GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput } from "./commands/GetResourceLogLevelCommand";
|
|
@@ -57,6 +59,7 @@ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "./comma
|
|
|
57
59
|
import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "./commands/ListMulticastGroupsByFuotaTaskCommand";
|
|
58
60
|
import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "./commands/ListMulticastGroupsCommand";
|
|
59
61
|
import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "./commands/ListPartnerAccountsCommand";
|
|
62
|
+
import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "./commands/ListQueuedMessagesCommand";
|
|
60
63
|
import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "./commands/ListServiceProfilesCommand";
|
|
61
64
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
62
65
|
import { ListWirelessDevicesCommandInput, ListWirelessDevicesCommandOutput } from "./commands/ListWirelessDevicesCommand";
|
|
@@ -78,6 +81,7 @@ import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from ".
|
|
|
78
81
|
import { UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput } from "./commands/UpdateFuotaTaskCommand";
|
|
79
82
|
import { UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput } from "./commands/UpdateLogLevelsByResourceTypesCommand";
|
|
80
83
|
import { UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput } from "./commands/UpdateMulticastGroupCommand";
|
|
84
|
+
import { UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput } from "./commands/UpdateNetworkAnalyzerConfigurationCommand";
|
|
81
85
|
import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } from "./commands/UpdatePartnerAccountCommand";
|
|
82
86
|
import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "./commands/UpdateResourceEventConfigurationCommand";
|
|
83
87
|
import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "./commands/UpdateWirelessDeviceCommand";
|
|
@@ -170,6 +174,10 @@ export declare class IoTWireless extends IoTWirelessClient {
|
|
|
170
174
|
deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, cb: (err: any, data?: DeleteMulticastGroupCommandOutput) => void): void;
|
|
171
175
|
deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMulticastGroupCommandOutput) => void): void;
|
|
172
176
|
|
|
177
|
+
deleteQueuedMessages(args: DeleteQueuedMessagesCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQueuedMessagesCommandOutput>;
|
|
178
|
+
deleteQueuedMessages(args: DeleteQueuedMessagesCommandInput, cb: (err: any, data?: DeleteQueuedMessagesCommandOutput) => void): void;
|
|
179
|
+
deleteQueuedMessages(args: DeleteQueuedMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQueuedMessagesCommandOutput) => void): void;
|
|
180
|
+
|
|
173
181
|
deleteServiceProfile(args: DeleteServiceProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceProfileCommandOutput>;
|
|
174
182
|
deleteServiceProfile(args: DeleteServiceProfileCommandInput, cb: (err: any, data?: DeleteServiceProfileCommandOutput) => void): void;
|
|
175
183
|
deleteServiceProfile(args: DeleteServiceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceProfileCommandOutput) => void): void;
|
|
@@ -242,6 +250,10 @@ export declare class IoTWireless extends IoTWirelessClient {
|
|
|
242
250
|
getMulticastGroupSession(args: GetMulticastGroupSessionCommandInput, cb: (err: any, data?: GetMulticastGroupSessionCommandOutput) => void): void;
|
|
243
251
|
getMulticastGroupSession(args: GetMulticastGroupSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMulticastGroupSessionCommandOutput) => void): void;
|
|
244
252
|
|
|
253
|
+
getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetNetworkAnalyzerConfigurationCommandOutput>;
|
|
254
|
+
getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, cb: (err: any, data?: GetNetworkAnalyzerConfigurationCommandOutput) => void): void;
|
|
255
|
+
getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNetworkAnalyzerConfigurationCommandOutput) => void): void;
|
|
256
|
+
|
|
245
257
|
getPartnerAccount(args: GetPartnerAccountCommandInput, options?: __HttpHandlerOptions): Promise<GetPartnerAccountCommandOutput>;
|
|
246
258
|
getPartnerAccount(args: GetPartnerAccountCommandInput, cb: (err: any, data?: GetPartnerAccountCommandOutput) => void): void;
|
|
247
259
|
getPartnerAccount(args: GetPartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPartnerAccountCommandOutput) => void): void;
|
|
@@ -318,6 +330,10 @@ export declare class IoTWireless extends IoTWirelessClient {
|
|
|
318
330
|
listPartnerAccounts(args: ListPartnerAccountsCommandInput, cb: (err: any, data?: ListPartnerAccountsCommandOutput) => void): void;
|
|
319
331
|
listPartnerAccounts(args: ListPartnerAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPartnerAccountsCommandOutput) => void): void;
|
|
320
332
|
|
|
333
|
+
listQueuedMessages(args: ListQueuedMessagesCommandInput, options?: __HttpHandlerOptions): Promise<ListQueuedMessagesCommandOutput>;
|
|
334
|
+
listQueuedMessages(args: ListQueuedMessagesCommandInput, cb: (err: any, data?: ListQueuedMessagesCommandOutput) => void): void;
|
|
335
|
+
listQueuedMessages(args: ListQueuedMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueuedMessagesCommandOutput) => void): void;
|
|
336
|
+
|
|
321
337
|
listServiceProfiles(args: ListServiceProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceProfilesCommandOutput>;
|
|
322
338
|
listServiceProfiles(args: ListServiceProfilesCommandInput, cb: (err: any, data?: ListServiceProfilesCommandOutput) => void): void;
|
|
323
339
|
listServiceProfiles(args: ListServiceProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceProfilesCommandOutput) => void): void;
|
|
@@ -402,6 +418,10 @@ export declare class IoTWireless extends IoTWirelessClient {
|
|
|
402
418
|
updateMulticastGroup(args: UpdateMulticastGroupCommandInput, cb: (err: any, data?: UpdateMulticastGroupCommandOutput) => void): void;
|
|
403
419
|
updateMulticastGroup(args: UpdateMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMulticastGroupCommandOutput) => void): void;
|
|
404
420
|
|
|
421
|
+
updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNetworkAnalyzerConfigurationCommandOutput>;
|
|
422
|
+
updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, cb: (err: any, data?: UpdateNetworkAnalyzerConfigurationCommandOutput) => void): void;
|
|
423
|
+
updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNetworkAnalyzerConfigurationCommandOutput) => void): void;
|
|
424
|
+
|
|
405
425
|
updatePartnerAccount(args: UpdatePartnerAccountCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePartnerAccountCommandOutput>;
|
|
406
426
|
updatePartnerAccount(args: UpdatePartnerAccountCommandInput, cb: (err: any, data?: UpdatePartnerAccountCommandOutput) => void): void;
|
|
407
427
|
updatePartnerAccount(args: UpdatePartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePartnerAccountCommandOutput) => void): void;
|
|
@@ -27,6 +27,7 @@ import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from ".
|
|
|
27
27
|
import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "./commands/DeleteDeviceProfileCommand";
|
|
28
28
|
import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "./commands/DeleteFuotaTaskCommand";
|
|
29
29
|
import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "./commands/DeleteMulticastGroupCommand";
|
|
30
|
+
import { DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput } from "./commands/DeleteQueuedMessagesCommand";
|
|
30
31
|
import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "./commands/DeleteServiceProfileCommand";
|
|
31
32
|
import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "./commands/DeleteWirelessDeviceCommand";
|
|
32
33
|
import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "./commands/DeleteWirelessGatewayCommand";
|
|
@@ -45,6 +46,7 @@ import { GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput } from "./commands/
|
|
|
45
46
|
import { GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput } from "./commands/GetLogLevelsByResourceTypesCommand";
|
|
46
47
|
import { GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput } from "./commands/GetMulticastGroupCommand";
|
|
47
48
|
import { GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput } from "./commands/GetMulticastGroupSessionCommand";
|
|
49
|
+
import { GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput } from "./commands/GetNetworkAnalyzerConfigurationCommand";
|
|
48
50
|
import { GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput } from "./commands/GetPartnerAccountCommand";
|
|
49
51
|
import { GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput } from "./commands/GetResourceEventConfigurationCommand";
|
|
50
52
|
import { GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput } from "./commands/GetResourceLogLevelCommand";
|
|
@@ -64,6 +66,7 @@ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "./comma
|
|
|
64
66
|
import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "./commands/ListMulticastGroupsByFuotaTaskCommand";
|
|
65
67
|
import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "./commands/ListMulticastGroupsCommand";
|
|
66
68
|
import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "./commands/ListPartnerAccountsCommand";
|
|
69
|
+
import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "./commands/ListQueuedMessagesCommand";
|
|
67
70
|
import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "./commands/ListServiceProfilesCommand";
|
|
68
71
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
69
72
|
import { ListWirelessDevicesCommandInput, ListWirelessDevicesCommandOutput } from "./commands/ListWirelessDevicesCommand";
|
|
@@ -85,12 +88,13 @@ import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from ".
|
|
|
85
88
|
import { UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput } from "./commands/UpdateFuotaTaskCommand";
|
|
86
89
|
import { UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput } from "./commands/UpdateLogLevelsByResourceTypesCommand";
|
|
87
90
|
import { UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput } from "./commands/UpdateMulticastGroupCommand";
|
|
91
|
+
import { UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput } from "./commands/UpdateNetworkAnalyzerConfigurationCommand";
|
|
88
92
|
import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } from "./commands/UpdatePartnerAccountCommand";
|
|
89
93
|
import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "./commands/UpdateResourceEventConfigurationCommand";
|
|
90
94
|
import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "./commands/UpdateWirelessDeviceCommand";
|
|
91
95
|
import { UpdateWirelessGatewayCommandInput, UpdateWirelessGatewayCommandOutput } from "./commands/UpdateWirelessGatewayCommand";
|
|
92
|
-
export declare type ServiceInputTypes = AssociateAwsAccountWithPartnerAccountCommandInput | AssociateMulticastGroupWithFuotaTaskCommandInput | AssociateWirelessDeviceWithFuotaTaskCommandInput | AssociateWirelessDeviceWithMulticastGroupCommandInput | AssociateWirelessDeviceWithThingCommandInput | AssociateWirelessGatewayWithCertificateCommandInput | AssociateWirelessGatewayWithThingCommandInput | CancelMulticastGroupSessionCommandInput | CreateDestinationCommandInput | CreateDeviceProfileCommandInput | CreateFuotaTaskCommandInput | CreateMulticastGroupCommandInput | CreateServiceProfileCommandInput | CreateWirelessDeviceCommandInput | CreateWirelessGatewayCommandInput | CreateWirelessGatewayTaskCommandInput | CreateWirelessGatewayTaskDefinitionCommandInput | DeleteDestinationCommandInput | DeleteDeviceProfileCommandInput | DeleteFuotaTaskCommandInput | DeleteMulticastGroupCommandInput | DeleteServiceProfileCommandInput | DeleteWirelessDeviceCommandInput | DeleteWirelessGatewayCommandInput | DeleteWirelessGatewayTaskCommandInput | DeleteWirelessGatewayTaskDefinitionCommandInput | DisassociateAwsAccountFromPartnerAccountCommandInput | DisassociateMulticastGroupFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromMulticastGroupCommandInput | DisassociateWirelessDeviceFromThingCommandInput | DisassociateWirelessGatewayFromCertificateCommandInput | DisassociateWirelessGatewayFromThingCommandInput | GetDestinationCommandInput | GetDeviceProfileCommandInput | GetFuotaTaskCommandInput | GetLogLevelsByResourceTypesCommandInput | GetMulticastGroupCommandInput | GetMulticastGroupSessionCommandInput | GetPartnerAccountCommandInput | GetResourceEventConfigurationCommandInput | GetResourceLogLevelCommandInput | GetServiceEndpointCommandInput | GetServiceProfileCommandInput | GetWirelessDeviceCommandInput | GetWirelessDeviceStatisticsCommandInput | GetWirelessGatewayCertificateCommandInput | GetWirelessGatewayCommandInput | GetWirelessGatewayFirmwareInformationCommandInput | GetWirelessGatewayStatisticsCommandInput | GetWirelessGatewayTaskCommandInput | GetWirelessGatewayTaskDefinitionCommandInput | ListDestinationsCommandInput | ListDeviceProfilesCommandInput | ListFuotaTasksCommandInput | ListMulticastGroupsByFuotaTaskCommandInput | ListMulticastGroupsCommandInput | ListPartnerAccountsCommandInput | ListServiceProfilesCommandInput | ListTagsForResourceCommandInput | ListWirelessDevicesCommandInput | ListWirelessGatewayTaskDefinitionsCommandInput | ListWirelessGatewaysCommandInput | PutResourceLogLevelCommandInput | ResetAllResourceLogLevelsCommandInput | ResetResourceLogLevelCommandInput | SendDataToMulticastGroupCommandInput | SendDataToWirelessDeviceCommandInput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput | StartFuotaTaskCommandInput | StartMulticastGroupSessionCommandInput | TagResourceCommandInput | TestWirelessDeviceCommandInput | UntagResourceCommandInput | UpdateDestinationCommandInput | UpdateFuotaTaskCommandInput | UpdateLogLevelsByResourceTypesCommandInput | UpdateMulticastGroupCommandInput | UpdatePartnerAccountCommandInput | UpdateResourceEventConfigurationCommandInput | UpdateWirelessDeviceCommandInput | UpdateWirelessGatewayCommandInput;
|
|
93
|
-
export declare type ServiceOutputTypes = AssociateAwsAccountWithPartnerAccountCommandOutput | AssociateMulticastGroupWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithMulticastGroupCommandOutput | AssociateWirelessDeviceWithThingCommandOutput | AssociateWirelessGatewayWithCertificateCommandOutput | AssociateWirelessGatewayWithThingCommandOutput | CancelMulticastGroupSessionCommandOutput | CreateDestinationCommandOutput | CreateDeviceProfileCommandOutput | CreateFuotaTaskCommandOutput | CreateMulticastGroupCommandOutput | CreateServiceProfileCommandOutput | CreateWirelessDeviceCommandOutput | CreateWirelessGatewayCommandOutput | CreateWirelessGatewayTaskCommandOutput | CreateWirelessGatewayTaskDefinitionCommandOutput | DeleteDestinationCommandOutput | DeleteDeviceProfileCommandOutput | DeleteFuotaTaskCommandOutput | DeleteMulticastGroupCommandOutput | DeleteServiceProfileCommandOutput | DeleteWirelessDeviceCommandOutput | DeleteWirelessGatewayCommandOutput | DeleteWirelessGatewayTaskCommandOutput | DeleteWirelessGatewayTaskDefinitionCommandOutput | DisassociateAwsAccountFromPartnerAccountCommandOutput | DisassociateMulticastGroupFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromMulticastGroupCommandOutput | DisassociateWirelessDeviceFromThingCommandOutput | DisassociateWirelessGatewayFromCertificateCommandOutput | DisassociateWirelessGatewayFromThingCommandOutput | GetDestinationCommandOutput | GetDeviceProfileCommandOutput | GetFuotaTaskCommandOutput | GetLogLevelsByResourceTypesCommandOutput | GetMulticastGroupCommandOutput | GetMulticastGroupSessionCommandOutput | GetPartnerAccountCommandOutput | GetResourceEventConfigurationCommandOutput | GetResourceLogLevelCommandOutput | GetServiceEndpointCommandOutput | GetServiceProfileCommandOutput | GetWirelessDeviceCommandOutput | GetWirelessDeviceStatisticsCommandOutput | GetWirelessGatewayCertificateCommandOutput | GetWirelessGatewayCommandOutput | GetWirelessGatewayFirmwareInformationCommandOutput | GetWirelessGatewayStatisticsCommandOutput | GetWirelessGatewayTaskCommandOutput | GetWirelessGatewayTaskDefinitionCommandOutput | ListDestinationsCommandOutput | ListDeviceProfilesCommandOutput | ListFuotaTasksCommandOutput | ListMulticastGroupsByFuotaTaskCommandOutput | ListMulticastGroupsCommandOutput | ListPartnerAccountsCommandOutput | ListServiceProfilesCommandOutput | ListTagsForResourceCommandOutput | ListWirelessDevicesCommandOutput | ListWirelessGatewayTaskDefinitionsCommandOutput | ListWirelessGatewaysCommandOutput | PutResourceLogLevelCommandOutput | ResetAllResourceLogLevelsCommandOutput | ResetResourceLogLevelCommandOutput | SendDataToMulticastGroupCommandOutput | SendDataToWirelessDeviceCommandOutput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput | StartFuotaTaskCommandOutput | StartMulticastGroupSessionCommandOutput | TagResourceCommandOutput | TestWirelessDeviceCommandOutput | UntagResourceCommandOutput | UpdateDestinationCommandOutput | UpdateFuotaTaskCommandOutput | UpdateLogLevelsByResourceTypesCommandOutput | UpdateMulticastGroupCommandOutput | UpdatePartnerAccountCommandOutput | UpdateResourceEventConfigurationCommandOutput | UpdateWirelessDeviceCommandOutput | UpdateWirelessGatewayCommandOutput;
|
|
96
|
+
export declare type ServiceInputTypes = AssociateAwsAccountWithPartnerAccountCommandInput | AssociateMulticastGroupWithFuotaTaskCommandInput | AssociateWirelessDeviceWithFuotaTaskCommandInput | AssociateWirelessDeviceWithMulticastGroupCommandInput | AssociateWirelessDeviceWithThingCommandInput | AssociateWirelessGatewayWithCertificateCommandInput | AssociateWirelessGatewayWithThingCommandInput | CancelMulticastGroupSessionCommandInput | CreateDestinationCommandInput | CreateDeviceProfileCommandInput | CreateFuotaTaskCommandInput | CreateMulticastGroupCommandInput | CreateServiceProfileCommandInput | CreateWirelessDeviceCommandInput | CreateWirelessGatewayCommandInput | CreateWirelessGatewayTaskCommandInput | CreateWirelessGatewayTaskDefinitionCommandInput | DeleteDestinationCommandInput | DeleteDeviceProfileCommandInput | DeleteFuotaTaskCommandInput | DeleteMulticastGroupCommandInput | DeleteQueuedMessagesCommandInput | DeleteServiceProfileCommandInput | DeleteWirelessDeviceCommandInput | DeleteWirelessGatewayCommandInput | DeleteWirelessGatewayTaskCommandInput | DeleteWirelessGatewayTaskDefinitionCommandInput | DisassociateAwsAccountFromPartnerAccountCommandInput | DisassociateMulticastGroupFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromMulticastGroupCommandInput | DisassociateWirelessDeviceFromThingCommandInput | DisassociateWirelessGatewayFromCertificateCommandInput | DisassociateWirelessGatewayFromThingCommandInput | GetDestinationCommandInput | GetDeviceProfileCommandInput | GetFuotaTaskCommandInput | GetLogLevelsByResourceTypesCommandInput | GetMulticastGroupCommandInput | GetMulticastGroupSessionCommandInput | GetNetworkAnalyzerConfigurationCommandInput | GetPartnerAccountCommandInput | GetResourceEventConfigurationCommandInput | GetResourceLogLevelCommandInput | GetServiceEndpointCommandInput | GetServiceProfileCommandInput | GetWirelessDeviceCommandInput | GetWirelessDeviceStatisticsCommandInput | GetWirelessGatewayCertificateCommandInput | GetWirelessGatewayCommandInput | GetWirelessGatewayFirmwareInformationCommandInput | GetWirelessGatewayStatisticsCommandInput | GetWirelessGatewayTaskCommandInput | GetWirelessGatewayTaskDefinitionCommandInput | ListDestinationsCommandInput | ListDeviceProfilesCommandInput | ListFuotaTasksCommandInput | ListMulticastGroupsByFuotaTaskCommandInput | ListMulticastGroupsCommandInput | ListPartnerAccountsCommandInput | ListQueuedMessagesCommandInput | ListServiceProfilesCommandInput | ListTagsForResourceCommandInput | ListWirelessDevicesCommandInput | ListWirelessGatewayTaskDefinitionsCommandInput | ListWirelessGatewaysCommandInput | PutResourceLogLevelCommandInput | ResetAllResourceLogLevelsCommandInput | ResetResourceLogLevelCommandInput | SendDataToMulticastGroupCommandInput | SendDataToWirelessDeviceCommandInput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput | StartFuotaTaskCommandInput | StartMulticastGroupSessionCommandInput | TagResourceCommandInput | TestWirelessDeviceCommandInput | UntagResourceCommandInput | UpdateDestinationCommandInput | UpdateFuotaTaskCommandInput | UpdateLogLevelsByResourceTypesCommandInput | UpdateMulticastGroupCommandInput | UpdateNetworkAnalyzerConfigurationCommandInput | UpdatePartnerAccountCommandInput | UpdateResourceEventConfigurationCommandInput | UpdateWirelessDeviceCommandInput | UpdateWirelessGatewayCommandInput;
|
|
97
|
+
export declare type ServiceOutputTypes = AssociateAwsAccountWithPartnerAccountCommandOutput | AssociateMulticastGroupWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithMulticastGroupCommandOutput | AssociateWirelessDeviceWithThingCommandOutput | AssociateWirelessGatewayWithCertificateCommandOutput | AssociateWirelessGatewayWithThingCommandOutput | CancelMulticastGroupSessionCommandOutput | CreateDestinationCommandOutput | CreateDeviceProfileCommandOutput | CreateFuotaTaskCommandOutput | CreateMulticastGroupCommandOutput | CreateServiceProfileCommandOutput | CreateWirelessDeviceCommandOutput | CreateWirelessGatewayCommandOutput | CreateWirelessGatewayTaskCommandOutput | CreateWirelessGatewayTaskDefinitionCommandOutput | DeleteDestinationCommandOutput | DeleteDeviceProfileCommandOutput | DeleteFuotaTaskCommandOutput | DeleteMulticastGroupCommandOutput | DeleteQueuedMessagesCommandOutput | DeleteServiceProfileCommandOutput | DeleteWirelessDeviceCommandOutput | DeleteWirelessGatewayCommandOutput | DeleteWirelessGatewayTaskCommandOutput | DeleteWirelessGatewayTaskDefinitionCommandOutput | DisassociateAwsAccountFromPartnerAccountCommandOutput | DisassociateMulticastGroupFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromMulticastGroupCommandOutput | DisassociateWirelessDeviceFromThingCommandOutput | DisassociateWirelessGatewayFromCertificateCommandOutput | DisassociateWirelessGatewayFromThingCommandOutput | GetDestinationCommandOutput | GetDeviceProfileCommandOutput | GetFuotaTaskCommandOutput | GetLogLevelsByResourceTypesCommandOutput | GetMulticastGroupCommandOutput | GetMulticastGroupSessionCommandOutput | GetNetworkAnalyzerConfigurationCommandOutput | GetPartnerAccountCommandOutput | GetResourceEventConfigurationCommandOutput | GetResourceLogLevelCommandOutput | GetServiceEndpointCommandOutput | GetServiceProfileCommandOutput | GetWirelessDeviceCommandOutput | GetWirelessDeviceStatisticsCommandOutput | GetWirelessGatewayCertificateCommandOutput | GetWirelessGatewayCommandOutput | GetWirelessGatewayFirmwareInformationCommandOutput | GetWirelessGatewayStatisticsCommandOutput | GetWirelessGatewayTaskCommandOutput | GetWirelessGatewayTaskDefinitionCommandOutput | ListDestinationsCommandOutput | ListDeviceProfilesCommandOutput | ListFuotaTasksCommandOutput | ListMulticastGroupsByFuotaTaskCommandOutput | ListMulticastGroupsCommandOutput | ListPartnerAccountsCommandOutput | ListQueuedMessagesCommandOutput | ListServiceProfilesCommandOutput | ListTagsForResourceCommandOutput | ListWirelessDevicesCommandOutput | ListWirelessGatewayTaskDefinitionsCommandOutput | ListWirelessGatewaysCommandOutput | PutResourceLogLevelCommandOutput | ResetAllResourceLogLevelsCommandOutput | ResetResourceLogLevelCommandOutput | SendDataToMulticastGroupCommandOutput | SendDataToWirelessDeviceCommandOutput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput | StartFuotaTaskCommandOutput | StartMulticastGroupSessionCommandOutput | TagResourceCommandOutput | TestWirelessDeviceCommandOutput | UntagResourceCommandOutput | UpdateDestinationCommandOutput | UpdateFuotaTaskCommandOutput | UpdateLogLevelsByResourceTypesCommandOutput | UpdateMulticastGroupCommandOutput | UpdateNetworkAnalyzerConfigurationCommandOutput | UpdatePartnerAccountCommandOutput | UpdateResourceEventConfigurationCommandOutput | UpdateWirelessDeviceCommandOutput | UpdateWirelessGatewayCommandOutput;
|
|
94
98
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
95
99
|
|
|
96
100
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
|
|
4
|
+
import { DeleteQueuedMessagesRequest, DeleteQueuedMessagesResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteQueuedMessagesCommandInput extends DeleteQueuedMessagesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteQueuedMessagesCommandOutput extends DeleteQueuedMessagesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteQueuedMessagesCommand extends $Command<DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput, IoTWirelessClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteQueuedMessagesCommandInput;
|
|
12
|
+
constructor(input: DeleteQueuedMessagesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
|
|
4
|
+
import { GetNetworkAnalyzerConfigurationRequest, GetNetworkAnalyzerConfigurationResponse } from "../models/models_0";
|
|
5
|
+
export interface GetNetworkAnalyzerConfigurationCommandInput extends GetNetworkAnalyzerConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetNetworkAnalyzerConfigurationCommandOutput extends GetNetworkAnalyzerConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetNetworkAnalyzerConfigurationCommand extends $Command<GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput, IoTWirelessClientResolvedConfig> {
|
|
11
|
+
readonly input: GetNetworkAnalyzerConfigurationCommandInput;
|
|
12
|
+
constructor(input: GetNetworkAnalyzerConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
|
|
4
|
+
import { ListQueuedMessagesRequest, ListQueuedMessagesResponse } from "../models/models_0";
|
|
5
|
+
export interface ListQueuedMessagesCommandInput extends ListQueuedMessagesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListQueuedMessagesCommandOutput extends ListQueuedMessagesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListQueuedMessagesCommand extends $Command<ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput, IoTWirelessClientResolvedConfig> {
|
|
11
|
+
readonly input: ListQueuedMessagesCommandInput;
|
|
12
|
+
constructor(input: ListQueuedMessagesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
|
|
4
|
+
import { UpdateNetworkAnalyzerConfigurationRequest, UpdateNetworkAnalyzerConfigurationResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateNetworkAnalyzerConfigurationCommandInput extends UpdateNetworkAnalyzerConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateNetworkAnalyzerConfigurationCommandOutput extends UpdateNetworkAnalyzerConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateNetworkAnalyzerConfigurationCommand extends $Command<UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput, IoTWirelessClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateNetworkAnalyzerConfigurationCommandInput;
|
|
12
|
+
constructor(input: UpdateNetworkAnalyzerConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -19,6 +19,7 @@ export * from "./DeleteDestinationCommand";
|
|
|
19
19
|
export * from "./DeleteDeviceProfileCommand";
|
|
20
20
|
export * from "./DeleteFuotaTaskCommand";
|
|
21
21
|
export * from "./DeleteMulticastGroupCommand";
|
|
22
|
+
export * from "./DeleteQueuedMessagesCommand";
|
|
22
23
|
export * from "./DeleteServiceProfileCommand";
|
|
23
24
|
export * from "./DeleteWirelessDeviceCommand";
|
|
24
25
|
export * from "./DeleteWirelessGatewayCommand";
|
|
@@ -37,6 +38,7 @@ export * from "./GetFuotaTaskCommand";
|
|
|
37
38
|
export * from "./GetLogLevelsByResourceTypesCommand";
|
|
38
39
|
export * from "./GetMulticastGroupCommand";
|
|
39
40
|
export * from "./GetMulticastGroupSessionCommand";
|
|
41
|
+
export * from "./GetNetworkAnalyzerConfigurationCommand";
|
|
40
42
|
export * from "./GetPartnerAccountCommand";
|
|
41
43
|
export * from "./GetResourceEventConfigurationCommand";
|
|
42
44
|
export * from "./GetResourceLogLevelCommand";
|
|
@@ -56,6 +58,7 @@ export * from "./ListFuotaTasksCommand";
|
|
|
56
58
|
export * from "./ListMulticastGroupsByFuotaTaskCommand";
|
|
57
59
|
export * from "./ListMulticastGroupsCommand";
|
|
58
60
|
export * from "./ListPartnerAccountsCommand";
|
|
61
|
+
export * from "./ListQueuedMessagesCommand";
|
|
59
62
|
export * from "./ListServiceProfilesCommand";
|
|
60
63
|
export * from "./ListTagsForResourceCommand";
|
|
61
64
|
export * from "./ListWirelessDevicesCommand";
|
|
@@ -77,6 +80,7 @@ export * from "./UpdateDestinationCommand";
|
|
|
77
80
|
export * from "./UpdateFuotaTaskCommand";
|
|
78
81
|
export * from "./UpdateLogLevelsByResourceTypesCommand";
|
|
79
82
|
export * from "./UpdateMulticastGroupCommand";
|
|
83
|
+
export * from "./UpdateNetworkAnalyzerConfigurationCommand";
|
|
80
84
|
export * from "./UpdatePartnerAccountCommand";
|
|
81
85
|
export * from "./UpdateResourceEventConfigurationCommand";
|
|
82
86
|
export * from "./UpdateWirelessDeviceCommand";
|
|
@@ -807,6 +807,24 @@ export declare namespace DeleteMulticastGroupResponse {
|
|
|
807
807
|
|
|
808
808
|
const filterSensitiveLog: (obj: DeleteMulticastGroupResponse) => any;
|
|
809
809
|
}
|
|
810
|
+
export interface DeleteQueuedMessagesRequest {
|
|
811
|
+
|
|
812
|
+
Id: string | undefined;
|
|
813
|
+
|
|
814
|
+
MessageId: string | undefined;
|
|
815
|
+
|
|
816
|
+
WirelessDeviceType?: WirelessDeviceType | string;
|
|
817
|
+
}
|
|
818
|
+
export declare namespace DeleteQueuedMessagesRequest {
|
|
819
|
+
|
|
820
|
+
const filterSensitiveLog: (obj: DeleteQueuedMessagesRequest) => any;
|
|
821
|
+
}
|
|
822
|
+
export interface DeleteQueuedMessagesResponse {
|
|
823
|
+
}
|
|
824
|
+
export declare namespace DeleteQueuedMessagesResponse {
|
|
825
|
+
|
|
826
|
+
const filterSensitiveLog: (obj: DeleteQueuedMessagesResponse) => any;
|
|
827
|
+
}
|
|
810
828
|
export interface DeleteServiceProfileRequest {
|
|
811
829
|
|
|
812
830
|
Id: string | undefined;
|
|
@@ -1046,6 +1064,30 @@ export declare namespace DisassociateWirelessGatewayFromThingResponse {
|
|
|
1046
1064
|
|
|
1047
1065
|
const filterSensitiveLog: (obj: DisassociateWirelessGatewayFromThingResponse) => any;
|
|
1048
1066
|
}
|
|
1067
|
+
|
|
1068
|
+
export interface LoRaWANSendDataToDevice {
|
|
1069
|
+
|
|
1070
|
+
FPort?: number;
|
|
1071
|
+
}
|
|
1072
|
+
export declare namespace LoRaWANSendDataToDevice {
|
|
1073
|
+
|
|
1074
|
+
const filterSensitiveLog: (obj: LoRaWANSendDataToDevice) => any;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
export interface DownlinkQueueMessage {
|
|
1078
|
+
|
|
1079
|
+
MessageId?: string;
|
|
1080
|
+
|
|
1081
|
+
TransmitMode?: number;
|
|
1082
|
+
|
|
1083
|
+
ReceivedAt?: string;
|
|
1084
|
+
|
|
1085
|
+
LoRaWAN?: LoRaWANSendDataToDevice;
|
|
1086
|
+
}
|
|
1087
|
+
export declare namespace DownlinkQueueMessage {
|
|
1088
|
+
|
|
1089
|
+
const filterSensitiveLog: (obj: DownlinkQueueMessage) => any;
|
|
1090
|
+
}
|
|
1049
1091
|
export declare enum Event {
|
|
1050
1092
|
ACK = "ack",
|
|
1051
1093
|
DISCOVERED = "discovered",
|
|
@@ -1339,6 +1381,41 @@ export declare namespace GetMulticastGroupSessionResponse {
|
|
|
1339
1381
|
|
|
1340
1382
|
const filterSensitiveLog: (obj: GetMulticastGroupSessionResponse) => any;
|
|
1341
1383
|
}
|
|
1384
|
+
export interface GetNetworkAnalyzerConfigurationRequest {
|
|
1385
|
+
|
|
1386
|
+
ConfigurationName: string | undefined;
|
|
1387
|
+
}
|
|
1388
|
+
export declare namespace GetNetworkAnalyzerConfigurationRequest {
|
|
1389
|
+
|
|
1390
|
+
const filterSensitiveLog: (obj: GetNetworkAnalyzerConfigurationRequest) => any;
|
|
1391
|
+
}
|
|
1392
|
+
export declare enum WirelessDeviceFrameInfo {
|
|
1393
|
+
DISABLED = "DISABLED",
|
|
1394
|
+
ENABLED = "ENABLED"
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
export interface TraceContent {
|
|
1398
|
+
|
|
1399
|
+
WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo | string;
|
|
1400
|
+
|
|
1401
|
+
LogLevel?: LogLevel | string;
|
|
1402
|
+
}
|
|
1403
|
+
export declare namespace TraceContent {
|
|
1404
|
+
|
|
1405
|
+
const filterSensitiveLog: (obj: TraceContent) => any;
|
|
1406
|
+
}
|
|
1407
|
+
export interface GetNetworkAnalyzerConfigurationResponse {
|
|
1408
|
+
|
|
1409
|
+
TraceContent?: TraceContent;
|
|
1410
|
+
|
|
1411
|
+
WirelessDevices?: string[];
|
|
1412
|
+
|
|
1413
|
+
WirelessGateways?: string[];
|
|
1414
|
+
}
|
|
1415
|
+
export declare namespace GetNetworkAnalyzerConfigurationResponse {
|
|
1416
|
+
|
|
1417
|
+
const filterSensitiveLog: (obj: GetNetworkAnalyzerConfigurationResponse) => any;
|
|
1418
|
+
}
|
|
1342
1419
|
export interface GetPartnerAccountRequest {
|
|
1343
1420
|
|
|
1344
1421
|
PartnerAccountId: string | undefined;
|
|
@@ -1929,6 +2006,30 @@ export declare namespace ListPartnerAccountsResponse {
|
|
|
1929
2006
|
|
|
1930
2007
|
const filterSensitiveLog: (obj: ListPartnerAccountsResponse) => any;
|
|
1931
2008
|
}
|
|
2009
|
+
export interface ListQueuedMessagesRequest {
|
|
2010
|
+
|
|
2011
|
+
Id: string | undefined;
|
|
2012
|
+
|
|
2013
|
+
NextToken?: string;
|
|
2014
|
+
|
|
2015
|
+
MaxResults?: number;
|
|
2016
|
+
|
|
2017
|
+
WirelessDeviceType?: WirelessDeviceType | string;
|
|
2018
|
+
}
|
|
2019
|
+
export declare namespace ListQueuedMessagesRequest {
|
|
2020
|
+
|
|
2021
|
+
const filterSensitiveLog: (obj: ListQueuedMessagesRequest) => any;
|
|
2022
|
+
}
|
|
2023
|
+
export interface ListQueuedMessagesResponse {
|
|
2024
|
+
|
|
2025
|
+
NextToken?: string;
|
|
2026
|
+
|
|
2027
|
+
DownlinkQueueMessagesList?: DownlinkQueueMessage[];
|
|
2028
|
+
}
|
|
2029
|
+
export declare namespace ListQueuedMessagesResponse {
|
|
2030
|
+
|
|
2031
|
+
const filterSensitiveLog: (obj: ListQueuedMessagesResponse) => any;
|
|
2032
|
+
}
|
|
1932
2033
|
export interface ListServiceProfilesRequest {
|
|
1933
2034
|
|
|
1934
2035
|
NextToken?: string;
|
|
@@ -2235,15 +2336,6 @@ export declare namespace SendDataToMulticastGroupResponse {
|
|
|
2235
2336
|
|
|
2236
2337
|
const filterSensitiveLog: (obj: SendDataToMulticastGroupResponse) => any;
|
|
2237
2338
|
}
|
|
2238
|
-
|
|
2239
|
-
export interface LoRaWANSendDataToDevice {
|
|
2240
|
-
|
|
2241
|
-
FPort?: number;
|
|
2242
|
-
}
|
|
2243
|
-
export declare namespace LoRaWANSendDataToDevice {
|
|
2244
|
-
|
|
2245
|
-
const filterSensitiveLog: (obj: LoRaWANSendDataToDevice) => any;
|
|
2246
|
-
}
|
|
2247
2339
|
export declare enum MessageType {
|
|
2248
2340
|
CUSTOM_COMMAND_ID_GET = "CUSTOM_COMMAND_ID_GET",
|
|
2249
2341
|
CUSTOM_COMMAND_ID_NOTIFY = "CUSTOM_COMMAND_ID_NOTIFY",
|
|
@@ -2515,6 +2607,30 @@ export declare namespace UpdateMulticastGroupResponse {
|
|
|
2515
2607
|
|
|
2516
2608
|
const filterSensitiveLog: (obj: UpdateMulticastGroupResponse) => any;
|
|
2517
2609
|
}
|
|
2610
|
+
export interface UpdateNetworkAnalyzerConfigurationRequest {
|
|
2611
|
+
|
|
2612
|
+
ConfigurationName: string | undefined;
|
|
2613
|
+
|
|
2614
|
+
TraceContent?: TraceContent;
|
|
2615
|
+
|
|
2616
|
+
WirelessDevicesToAdd?: string[];
|
|
2617
|
+
|
|
2618
|
+
WirelessDevicesToRemove?: string[];
|
|
2619
|
+
|
|
2620
|
+
WirelessGatewaysToAdd?: string[];
|
|
2621
|
+
|
|
2622
|
+
WirelessGatewaysToRemove?: string[];
|
|
2623
|
+
}
|
|
2624
|
+
export declare namespace UpdateNetworkAnalyzerConfigurationRequest {
|
|
2625
|
+
|
|
2626
|
+
const filterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationRequest) => any;
|
|
2627
|
+
}
|
|
2628
|
+
export interface UpdateNetworkAnalyzerConfigurationResponse {
|
|
2629
|
+
}
|
|
2630
|
+
export declare namespace UpdateNetworkAnalyzerConfigurationResponse {
|
|
2631
|
+
|
|
2632
|
+
const filterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationResponse) => any;
|
|
2633
|
+
}
|
|
2518
2634
|
|
|
2519
2635
|
export interface SidewalkUpdateAccount {
|
|
2520
2636
|
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "../commands/ListQueuedMessagesCommand";
|
|
3
|
+
import { IoTWirelessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListQueuedMessages(config: IoTWirelessPaginationConfiguration, input: ListQueuedMessagesCommandInput, ...additionalArguments: any): Paginator<ListQueuedMessagesCommandOutput>;
|
|
@@ -4,6 +4,7 @@ export * from "./ListDeviceProfilesPaginator";
|
|
|
4
4
|
export * from "./ListFuotaTasksPaginator";
|
|
5
5
|
export * from "./ListMulticastGroupsByFuotaTaskPaginator";
|
|
6
6
|
export * from "./ListMulticastGroupsPaginator";
|
|
7
|
+
export * from "./ListQueuedMessagesPaginator";
|
|
7
8
|
export * from "./ListServiceProfilesPaginator";
|
|
8
9
|
export * from "./ListWirelessDevicesPaginator";
|
|
9
10
|
export * from "./ListWirelessGatewaysPaginator";
|