@aws-sdk/client-iot-wireless 3.312.0 → 3.316.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/dist-cjs/IoTWireless.js +113 -1526
- package/dist-cjs/protocols/Aws_restJson1.js +1032 -2922
- package/dist-es/IoTWireless.js +113 -1526
- package/dist-es/protocols/Aws_restJson1.js +879 -2769
- package/dist-types/IoTWireless.d.ts +126 -277
- package/dist-types/commands/CreateServiceProfileCommand.d.ts +2 -0
- package/dist-types/commands/CreateWirelessGatewayCommand.d.ts +1 -0
- package/dist-types/commands/StartMulticastGroupSessionCommand.d.ts +1 -0
- package/dist-types/commands/UpdateWirelessGatewayCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +16 -0
- package/dist-types/models/models_1.d.ts +4 -0
- package/dist-types/ts3.4/IoTWireless.d.ts +4 -1
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/dist-types/ts3.4/models/models_1.d.ts +1 -0
- package/package.json +6 -6
|
@@ -109,826 +109,675 @@ import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } f
|
|
|
109
109
|
import { UpdateWirelessDeviceImportTaskCommandInput, UpdateWirelessDeviceImportTaskCommandOutput } from "./commands/UpdateWirelessDeviceImportTaskCommand";
|
|
110
110
|
import { UpdateWirelessGatewayCommandInput, UpdateWirelessGatewayCommandOutput } from "./commands/UpdateWirelessGatewayCommand";
|
|
111
111
|
import { IoTWirelessClient } from "./IoTWirelessClient";
|
|
112
|
-
|
|
113
|
-
* @public
|
|
114
|
-
* <p>AWS IoT Wireless provides bi-directional communication between internet-connected wireless
|
|
115
|
-
* devices and the AWS Cloud. To onboard both LoRaWAN and Sidewalk devices to AWS IoT, use the
|
|
116
|
-
* IoT Wireless API. These wireless devices use the Low Power Wide Area Networking (LPWAN)
|
|
117
|
-
* communication protocol to communicate with AWS IoT.</p>
|
|
118
|
-
* <p>Using the API, you can perform create, read, update, and delete operations for your wireless
|
|
119
|
-
* devices, gateways, destinations, and profiles. After onboarding your devices, you
|
|
120
|
-
* can use the API operations to set log levels and monitor your devices with CloudWatch.</p>
|
|
121
|
-
* <p>You can also use the API operations to create multicast groups and schedule a multicast session for
|
|
122
|
-
* sending a downlink message to devices in the group. By using Firmware Updates Over-The-Air
|
|
123
|
-
* (FUOTA) API operations, you can create a FUOTA task and schedule a session to update the firmware
|
|
124
|
-
* of individual devices or an entire group of devices in a multicast group.</p>
|
|
125
|
-
*/
|
|
126
|
-
export declare class IoTWireless extends IoTWirelessClient {
|
|
112
|
+
export interface IoTWireless {
|
|
127
113
|
/**
|
|
128
|
-
* @
|
|
129
|
-
* <p>Associates a partner account with your AWS account.</p>
|
|
114
|
+
* @see {@link AssociateAwsAccountWithPartnerAccountCommand}
|
|
130
115
|
*/
|
|
131
116
|
associateAwsAccountWithPartnerAccount(args: AssociateAwsAccountWithPartnerAccountCommandInput, options?: __HttpHandlerOptions): Promise<AssociateAwsAccountWithPartnerAccountCommandOutput>;
|
|
132
117
|
associateAwsAccountWithPartnerAccount(args: AssociateAwsAccountWithPartnerAccountCommandInput, cb: (err: any, data?: AssociateAwsAccountWithPartnerAccountCommandOutput) => void): void;
|
|
133
118
|
associateAwsAccountWithPartnerAccount(args: AssociateAwsAccountWithPartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateAwsAccountWithPartnerAccountCommandOutput) => void): void;
|
|
134
119
|
/**
|
|
135
|
-
* @
|
|
136
|
-
* <p>Associate a multicast group with a FUOTA task.</p>
|
|
120
|
+
* @see {@link AssociateMulticastGroupWithFuotaTaskCommand}
|
|
137
121
|
*/
|
|
138
122
|
associateMulticastGroupWithFuotaTask(args: AssociateMulticastGroupWithFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<AssociateMulticastGroupWithFuotaTaskCommandOutput>;
|
|
139
123
|
associateMulticastGroupWithFuotaTask(args: AssociateMulticastGroupWithFuotaTaskCommandInput, cb: (err: any, data?: AssociateMulticastGroupWithFuotaTaskCommandOutput) => void): void;
|
|
140
124
|
associateMulticastGroupWithFuotaTask(args: AssociateMulticastGroupWithFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateMulticastGroupWithFuotaTaskCommandOutput) => void): void;
|
|
141
125
|
/**
|
|
142
|
-
* @
|
|
143
|
-
* <p>Associate a wireless device with a FUOTA task.</p>
|
|
126
|
+
* @see {@link AssociateWirelessDeviceWithFuotaTaskCommand}
|
|
144
127
|
*/
|
|
145
128
|
associateWirelessDeviceWithFuotaTask(args: AssociateWirelessDeviceWithFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<AssociateWirelessDeviceWithFuotaTaskCommandOutput>;
|
|
146
129
|
associateWirelessDeviceWithFuotaTask(args: AssociateWirelessDeviceWithFuotaTaskCommandInput, cb: (err: any, data?: AssociateWirelessDeviceWithFuotaTaskCommandOutput) => void): void;
|
|
147
130
|
associateWirelessDeviceWithFuotaTask(args: AssociateWirelessDeviceWithFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateWirelessDeviceWithFuotaTaskCommandOutput) => void): void;
|
|
148
131
|
/**
|
|
149
|
-
* @
|
|
150
|
-
* <p>Associates a wireless device with a multicast group.</p>
|
|
132
|
+
* @see {@link AssociateWirelessDeviceWithMulticastGroupCommand}
|
|
151
133
|
*/
|
|
152
134
|
associateWirelessDeviceWithMulticastGroup(args: AssociateWirelessDeviceWithMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<AssociateWirelessDeviceWithMulticastGroupCommandOutput>;
|
|
153
135
|
associateWirelessDeviceWithMulticastGroup(args: AssociateWirelessDeviceWithMulticastGroupCommandInput, cb: (err: any, data?: AssociateWirelessDeviceWithMulticastGroupCommandOutput) => void): void;
|
|
154
136
|
associateWirelessDeviceWithMulticastGroup(args: AssociateWirelessDeviceWithMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateWirelessDeviceWithMulticastGroupCommandOutput) => void): void;
|
|
155
137
|
/**
|
|
156
|
-
* @
|
|
157
|
-
* <p>Associates a wireless device with a thing.</p>
|
|
138
|
+
* @see {@link AssociateWirelessDeviceWithThingCommand}
|
|
158
139
|
*/
|
|
159
140
|
associateWirelessDeviceWithThing(args: AssociateWirelessDeviceWithThingCommandInput, options?: __HttpHandlerOptions): Promise<AssociateWirelessDeviceWithThingCommandOutput>;
|
|
160
141
|
associateWirelessDeviceWithThing(args: AssociateWirelessDeviceWithThingCommandInput, cb: (err: any, data?: AssociateWirelessDeviceWithThingCommandOutput) => void): void;
|
|
161
142
|
associateWirelessDeviceWithThing(args: AssociateWirelessDeviceWithThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateWirelessDeviceWithThingCommandOutput) => void): void;
|
|
162
143
|
/**
|
|
163
|
-
* @
|
|
164
|
-
* <p>Associates a wireless gateway with a certificate.</p>
|
|
144
|
+
* @see {@link AssociateWirelessGatewayWithCertificateCommand}
|
|
165
145
|
*/
|
|
166
146
|
associateWirelessGatewayWithCertificate(args: AssociateWirelessGatewayWithCertificateCommandInput, options?: __HttpHandlerOptions): Promise<AssociateWirelessGatewayWithCertificateCommandOutput>;
|
|
167
147
|
associateWirelessGatewayWithCertificate(args: AssociateWirelessGatewayWithCertificateCommandInput, cb: (err: any, data?: AssociateWirelessGatewayWithCertificateCommandOutput) => void): void;
|
|
168
148
|
associateWirelessGatewayWithCertificate(args: AssociateWirelessGatewayWithCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateWirelessGatewayWithCertificateCommandOutput) => void): void;
|
|
169
149
|
/**
|
|
170
|
-
* @
|
|
171
|
-
* <p>Associates a wireless gateway with a thing.</p>
|
|
150
|
+
* @see {@link AssociateWirelessGatewayWithThingCommand}
|
|
172
151
|
*/
|
|
173
152
|
associateWirelessGatewayWithThing(args: AssociateWirelessGatewayWithThingCommandInput, options?: __HttpHandlerOptions): Promise<AssociateWirelessGatewayWithThingCommandOutput>;
|
|
174
153
|
associateWirelessGatewayWithThing(args: AssociateWirelessGatewayWithThingCommandInput, cb: (err: any, data?: AssociateWirelessGatewayWithThingCommandOutput) => void): void;
|
|
175
154
|
associateWirelessGatewayWithThing(args: AssociateWirelessGatewayWithThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateWirelessGatewayWithThingCommandOutput) => void): void;
|
|
176
155
|
/**
|
|
177
|
-
* @
|
|
178
|
-
* <p>Cancels an existing multicast group session.</p>
|
|
156
|
+
* @see {@link CancelMulticastGroupSessionCommand}
|
|
179
157
|
*/
|
|
180
158
|
cancelMulticastGroupSession(args: CancelMulticastGroupSessionCommandInput, options?: __HttpHandlerOptions): Promise<CancelMulticastGroupSessionCommandOutput>;
|
|
181
159
|
cancelMulticastGroupSession(args: CancelMulticastGroupSessionCommandInput, cb: (err: any, data?: CancelMulticastGroupSessionCommandOutput) => void): void;
|
|
182
160
|
cancelMulticastGroupSession(args: CancelMulticastGroupSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelMulticastGroupSessionCommandOutput) => void): void;
|
|
183
161
|
/**
|
|
184
|
-
* @
|
|
185
|
-
* <p>Creates a new destination that maps a device message to an AWS IoT rule.</p>
|
|
162
|
+
* @see {@link CreateDestinationCommand}
|
|
186
163
|
*/
|
|
187
164
|
createDestination(args: CreateDestinationCommandInput, options?: __HttpHandlerOptions): Promise<CreateDestinationCommandOutput>;
|
|
188
165
|
createDestination(args: CreateDestinationCommandInput, cb: (err: any, data?: CreateDestinationCommandOutput) => void): void;
|
|
189
166
|
createDestination(args: CreateDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDestinationCommandOutput) => void): void;
|
|
190
167
|
/**
|
|
191
|
-
* @
|
|
192
|
-
* <p>Creates a new device profile.</p>
|
|
168
|
+
* @see {@link CreateDeviceProfileCommand}
|
|
193
169
|
*/
|
|
194
170
|
createDeviceProfile(args: CreateDeviceProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateDeviceProfileCommandOutput>;
|
|
195
171
|
createDeviceProfile(args: CreateDeviceProfileCommandInput, cb: (err: any, data?: CreateDeviceProfileCommandOutput) => void): void;
|
|
196
172
|
createDeviceProfile(args: CreateDeviceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeviceProfileCommandOutput) => void): void;
|
|
197
173
|
/**
|
|
198
|
-
* @
|
|
199
|
-
* <p>Creates a FUOTA task.</p>
|
|
174
|
+
* @see {@link CreateFuotaTaskCommand}
|
|
200
175
|
*/
|
|
201
176
|
createFuotaTask(args: CreateFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateFuotaTaskCommandOutput>;
|
|
202
177
|
createFuotaTask(args: CreateFuotaTaskCommandInput, cb: (err: any, data?: CreateFuotaTaskCommandOutput) => void): void;
|
|
203
178
|
createFuotaTask(args: CreateFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFuotaTaskCommandOutput) => void): void;
|
|
204
179
|
/**
|
|
205
|
-
* @
|
|
206
|
-
* <p>Creates a multicast group.</p>
|
|
180
|
+
* @see {@link CreateMulticastGroupCommand}
|
|
207
181
|
*/
|
|
208
182
|
createMulticastGroup(args: CreateMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateMulticastGroupCommandOutput>;
|
|
209
183
|
createMulticastGroup(args: CreateMulticastGroupCommandInput, cb: (err: any, data?: CreateMulticastGroupCommandOutput) => void): void;
|
|
210
184
|
createMulticastGroup(args: CreateMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMulticastGroupCommandOutput) => void): void;
|
|
211
185
|
/**
|
|
212
|
-
* @
|
|
213
|
-
* <p>Creates a new network analyzer configuration.</p>
|
|
186
|
+
* @see {@link CreateNetworkAnalyzerConfigurationCommand}
|
|
214
187
|
*/
|
|
215
188
|
createNetworkAnalyzerConfiguration(args: CreateNetworkAnalyzerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateNetworkAnalyzerConfigurationCommandOutput>;
|
|
216
189
|
createNetworkAnalyzerConfiguration(args: CreateNetworkAnalyzerConfigurationCommandInput, cb: (err: any, data?: CreateNetworkAnalyzerConfigurationCommandOutput) => void): void;
|
|
217
190
|
createNetworkAnalyzerConfiguration(args: CreateNetworkAnalyzerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNetworkAnalyzerConfigurationCommandOutput) => void): void;
|
|
218
191
|
/**
|
|
219
|
-
* @
|
|
220
|
-
* <p>Creates a new service profile.</p>
|
|
192
|
+
* @see {@link CreateServiceProfileCommand}
|
|
221
193
|
*/
|
|
222
194
|
createServiceProfile(args: CreateServiceProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateServiceProfileCommandOutput>;
|
|
223
195
|
createServiceProfile(args: CreateServiceProfileCommandInput, cb: (err: any, data?: CreateServiceProfileCommandOutput) => void): void;
|
|
224
196
|
createServiceProfile(args: CreateServiceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceProfileCommandOutput) => void): void;
|
|
225
197
|
/**
|
|
226
|
-
* @
|
|
227
|
-
* <p>Provisions a wireless device.</p>
|
|
198
|
+
* @see {@link CreateWirelessDeviceCommand}
|
|
228
199
|
*/
|
|
229
200
|
createWirelessDevice(args: CreateWirelessDeviceCommandInput, options?: __HttpHandlerOptions): Promise<CreateWirelessDeviceCommandOutput>;
|
|
230
201
|
createWirelessDevice(args: CreateWirelessDeviceCommandInput, cb: (err: any, data?: CreateWirelessDeviceCommandOutput) => void): void;
|
|
231
202
|
createWirelessDevice(args: CreateWirelessDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWirelessDeviceCommandOutput) => void): void;
|
|
232
203
|
/**
|
|
233
|
-
* @
|
|
234
|
-
* <p>Provisions a wireless gateway.</p>
|
|
204
|
+
* @see {@link CreateWirelessGatewayCommand}
|
|
235
205
|
*/
|
|
236
206
|
createWirelessGateway(args: CreateWirelessGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateWirelessGatewayCommandOutput>;
|
|
237
207
|
createWirelessGateway(args: CreateWirelessGatewayCommandInput, cb: (err: any, data?: CreateWirelessGatewayCommandOutput) => void): void;
|
|
238
208
|
createWirelessGateway(args: CreateWirelessGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWirelessGatewayCommandOutput) => void): void;
|
|
239
209
|
/**
|
|
240
|
-
* @
|
|
241
|
-
* <p>Creates a task for a wireless gateway.</p>
|
|
210
|
+
* @see {@link CreateWirelessGatewayTaskCommand}
|
|
242
211
|
*/
|
|
243
212
|
createWirelessGatewayTask(args: CreateWirelessGatewayTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateWirelessGatewayTaskCommandOutput>;
|
|
244
213
|
createWirelessGatewayTask(args: CreateWirelessGatewayTaskCommandInput, cb: (err: any, data?: CreateWirelessGatewayTaskCommandOutput) => void): void;
|
|
245
214
|
createWirelessGatewayTask(args: CreateWirelessGatewayTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWirelessGatewayTaskCommandOutput) => void): void;
|
|
246
215
|
/**
|
|
247
|
-
* @
|
|
248
|
-
* <p>Creates a gateway task definition.</p>
|
|
216
|
+
* @see {@link CreateWirelessGatewayTaskDefinitionCommand}
|
|
249
217
|
*/
|
|
250
218
|
createWirelessGatewayTaskDefinition(args: CreateWirelessGatewayTaskDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateWirelessGatewayTaskDefinitionCommandOutput>;
|
|
251
219
|
createWirelessGatewayTaskDefinition(args: CreateWirelessGatewayTaskDefinitionCommandInput, cb: (err: any, data?: CreateWirelessGatewayTaskDefinitionCommandOutput) => void): void;
|
|
252
220
|
createWirelessGatewayTaskDefinition(args: CreateWirelessGatewayTaskDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWirelessGatewayTaskDefinitionCommandOutput) => void): void;
|
|
253
221
|
/**
|
|
254
|
-
* @
|
|
255
|
-
* <p>Deletes a destination.</p>
|
|
222
|
+
* @see {@link DeleteDestinationCommand}
|
|
256
223
|
*/
|
|
257
224
|
deleteDestination(args: DeleteDestinationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDestinationCommandOutput>;
|
|
258
225
|
deleteDestination(args: DeleteDestinationCommandInput, cb: (err: any, data?: DeleteDestinationCommandOutput) => void): void;
|
|
259
226
|
deleteDestination(args: DeleteDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDestinationCommandOutput) => void): void;
|
|
260
227
|
/**
|
|
261
|
-
* @
|
|
262
|
-
* <p>Deletes a device profile.</p>
|
|
228
|
+
* @see {@link DeleteDeviceProfileCommand}
|
|
263
229
|
*/
|
|
264
230
|
deleteDeviceProfile(args: DeleteDeviceProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDeviceProfileCommandOutput>;
|
|
265
231
|
deleteDeviceProfile(args: DeleteDeviceProfileCommandInput, cb: (err: any, data?: DeleteDeviceProfileCommandOutput) => void): void;
|
|
266
232
|
deleteDeviceProfile(args: DeleteDeviceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDeviceProfileCommandOutput) => void): void;
|
|
267
233
|
/**
|
|
268
|
-
* @
|
|
269
|
-
* <p>Deletes a FUOTA task.</p>
|
|
234
|
+
* @see {@link DeleteFuotaTaskCommand}
|
|
270
235
|
*/
|
|
271
236
|
deleteFuotaTask(args: DeleteFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFuotaTaskCommandOutput>;
|
|
272
237
|
deleteFuotaTask(args: DeleteFuotaTaskCommandInput, cb: (err: any, data?: DeleteFuotaTaskCommandOutput) => void): void;
|
|
273
238
|
deleteFuotaTask(args: DeleteFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFuotaTaskCommandOutput) => void): void;
|
|
274
239
|
/**
|
|
275
|
-
* @
|
|
276
|
-
* <p>Deletes a multicast group if it is not in use by a fuota task.</p>
|
|
240
|
+
* @see {@link DeleteMulticastGroupCommand}
|
|
277
241
|
*/
|
|
278
242
|
deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMulticastGroupCommandOutput>;
|
|
279
243
|
deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, cb: (err: any, data?: DeleteMulticastGroupCommandOutput) => void): void;
|
|
280
244
|
deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMulticastGroupCommandOutput) => void): void;
|
|
281
245
|
/**
|
|
282
|
-
* @
|
|
283
|
-
* <p>Deletes a network analyzer configuration.</p>
|
|
246
|
+
* @see {@link DeleteNetworkAnalyzerConfigurationCommand}
|
|
284
247
|
*/
|
|
285
248
|
deleteNetworkAnalyzerConfiguration(args: DeleteNetworkAnalyzerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkAnalyzerConfigurationCommandOutput>;
|
|
286
249
|
deleteNetworkAnalyzerConfiguration(args: DeleteNetworkAnalyzerConfigurationCommandInput, cb: (err: any, data?: DeleteNetworkAnalyzerConfigurationCommandOutput) => void): void;
|
|
287
250
|
deleteNetworkAnalyzerConfiguration(args: DeleteNetworkAnalyzerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkAnalyzerConfigurationCommandOutput) => void): void;
|
|
288
251
|
/**
|
|
289
|
-
* @
|
|
290
|
-
* <p>Remove queued messages from the downlink queue.</p>
|
|
252
|
+
* @see {@link DeleteQueuedMessagesCommand}
|
|
291
253
|
*/
|
|
292
254
|
deleteQueuedMessages(args: DeleteQueuedMessagesCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQueuedMessagesCommandOutput>;
|
|
293
255
|
deleteQueuedMessages(args: DeleteQueuedMessagesCommandInput, cb: (err: any, data?: DeleteQueuedMessagesCommandOutput) => void): void;
|
|
294
256
|
deleteQueuedMessages(args: DeleteQueuedMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQueuedMessagesCommandOutput) => void): void;
|
|
295
257
|
/**
|
|
296
|
-
* @
|
|
297
|
-
* <p>Deletes a service profile.</p>
|
|
258
|
+
* @see {@link DeleteServiceProfileCommand}
|
|
298
259
|
*/
|
|
299
260
|
deleteServiceProfile(args: DeleteServiceProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceProfileCommandOutput>;
|
|
300
261
|
deleteServiceProfile(args: DeleteServiceProfileCommandInput, cb: (err: any, data?: DeleteServiceProfileCommandOutput) => void): void;
|
|
301
262
|
deleteServiceProfile(args: DeleteServiceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceProfileCommandOutput) => void): void;
|
|
302
263
|
/**
|
|
303
|
-
* @
|
|
304
|
-
* <p>Deletes a wireless device.</p>
|
|
264
|
+
* @see {@link DeleteWirelessDeviceCommand}
|
|
305
265
|
*/
|
|
306
266
|
deleteWirelessDevice(args: DeleteWirelessDeviceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWirelessDeviceCommandOutput>;
|
|
307
267
|
deleteWirelessDevice(args: DeleteWirelessDeviceCommandInput, cb: (err: any, data?: DeleteWirelessDeviceCommandOutput) => void): void;
|
|
308
268
|
deleteWirelessDevice(args: DeleteWirelessDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWirelessDeviceCommandOutput) => void): void;
|
|
309
269
|
/**
|
|
310
|
-
* @
|
|
311
|
-
* <p>Delete an import task.</p>
|
|
270
|
+
* @see {@link DeleteWirelessDeviceImportTaskCommand}
|
|
312
271
|
*/
|
|
313
272
|
deleteWirelessDeviceImportTask(args: DeleteWirelessDeviceImportTaskCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWirelessDeviceImportTaskCommandOutput>;
|
|
314
273
|
deleteWirelessDeviceImportTask(args: DeleteWirelessDeviceImportTaskCommandInput, cb: (err: any, data?: DeleteWirelessDeviceImportTaskCommandOutput) => void): void;
|
|
315
274
|
deleteWirelessDeviceImportTask(args: DeleteWirelessDeviceImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWirelessDeviceImportTaskCommandOutput) => void): void;
|
|
316
275
|
/**
|
|
317
|
-
* @
|
|
318
|
-
* <p>Deletes a wireless gateway.</p>
|
|
276
|
+
* @see {@link DeleteWirelessGatewayCommand}
|
|
319
277
|
*/
|
|
320
278
|
deleteWirelessGateway(args: DeleteWirelessGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWirelessGatewayCommandOutput>;
|
|
321
279
|
deleteWirelessGateway(args: DeleteWirelessGatewayCommandInput, cb: (err: any, data?: DeleteWirelessGatewayCommandOutput) => void): void;
|
|
322
280
|
deleteWirelessGateway(args: DeleteWirelessGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWirelessGatewayCommandOutput) => void): void;
|
|
323
281
|
/**
|
|
324
|
-
* @
|
|
325
|
-
* <p>Deletes a wireless gateway task.</p>
|
|
282
|
+
* @see {@link DeleteWirelessGatewayTaskCommand}
|
|
326
283
|
*/
|
|
327
284
|
deleteWirelessGatewayTask(args: DeleteWirelessGatewayTaskCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWirelessGatewayTaskCommandOutput>;
|
|
328
285
|
deleteWirelessGatewayTask(args: DeleteWirelessGatewayTaskCommandInput, cb: (err: any, data?: DeleteWirelessGatewayTaskCommandOutput) => void): void;
|
|
329
286
|
deleteWirelessGatewayTask(args: DeleteWirelessGatewayTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWirelessGatewayTaskCommandOutput) => void): void;
|
|
330
287
|
/**
|
|
331
|
-
* @
|
|
332
|
-
* <p>Deletes a wireless gateway task definition. Deleting this task definition does not affect tasks that are currently in progress.</p>
|
|
288
|
+
* @see {@link DeleteWirelessGatewayTaskDefinitionCommand}
|
|
333
289
|
*/
|
|
334
290
|
deleteWirelessGatewayTaskDefinition(args: DeleteWirelessGatewayTaskDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWirelessGatewayTaskDefinitionCommandOutput>;
|
|
335
291
|
deleteWirelessGatewayTaskDefinition(args: DeleteWirelessGatewayTaskDefinitionCommandInput, cb: (err: any, data?: DeleteWirelessGatewayTaskDefinitionCommandOutput) => void): void;
|
|
336
292
|
deleteWirelessGatewayTaskDefinition(args: DeleteWirelessGatewayTaskDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWirelessGatewayTaskDefinitionCommandOutput) => void): void;
|
|
337
293
|
/**
|
|
338
|
-
* @
|
|
339
|
-
* <p>Deregister a wireless device from AWS IoT Wireless.</p>
|
|
294
|
+
* @see {@link DeregisterWirelessDeviceCommand}
|
|
340
295
|
*/
|
|
341
296
|
deregisterWirelessDevice(args: DeregisterWirelessDeviceCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterWirelessDeviceCommandOutput>;
|
|
342
297
|
deregisterWirelessDevice(args: DeregisterWirelessDeviceCommandInput, cb: (err: any, data?: DeregisterWirelessDeviceCommandOutput) => void): void;
|
|
343
298
|
deregisterWirelessDevice(args: DeregisterWirelessDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterWirelessDeviceCommandOutput) => void): void;
|
|
344
299
|
/**
|
|
345
|
-
* @
|
|
346
|
-
* <p>Disassociates your AWS account from a partner account. If <code>PartnerAccountId</code> and <code>PartnerType</code> are <code>null</code>, disassociates your AWS account from all partner accounts.</p>
|
|
300
|
+
* @see {@link DisassociateAwsAccountFromPartnerAccountCommand}
|
|
347
301
|
*/
|
|
348
302
|
disassociateAwsAccountFromPartnerAccount(args: DisassociateAwsAccountFromPartnerAccountCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateAwsAccountFromPartnerAccountCommandOutput>;
|
|
349
303
|
disassociateAwsAccountFromPartnerAccount(args: DisassociateAwsAccountFromPartnerAccountCommandInput, cb: (err: any, data?: DisassociateAwsAccountFromPartnerAccountCommandOutput) => void): void;
|
|
350
304
|
disassociateAwsAccountFromPartnerAccount(args: DisassociateAwsAccountFromPartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateAwsAccountFromPartnerAccountCommandOutput) => void): void;
|
|
351
305
|
/**
|
|
352
|
-
* @
|
|
353
|
-
* <p>Disassociates a multicast group from a fuota task.</p>
|
|
306
|
+
* @see {@link DisassociateMulticastGroupFromFuotaTaskCommand}
|
|
354
307
|
*/
|
|
355
308
|
disassociateMulticastGroupFromFuotaTask(args: DisassociateMulticastGroupFromFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateMulticastGroupFromFuotaTaskCommandOutput>;
|
|
356
309
|
disassociateMulticastGroupFromFuotaTask(args: DisassociateMulticastGroupFromFuotaTaskCommandInput, cb: (err: any, data?: DisassociateMulticastGroupFromFuotaTaskCommandOutput) => void): void;
|
|
357
310
|
disassociateMulticastGroupFromFuotaTask(args: DisassociateMulticastGroupFromFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateMulticastGroupFromFuotaTaskCommandOutput) => void): void;
|
|
358
311
|
/**
|
|
359
|
-
* @
|
|
360
|
-
* <p>Disassociates a wireless device from a FUOTA task.</p>
|
|
312
|
+
* @see {@link DisassociateWirelessDeviceFromFuotaTaskCommand}
|
|
361
313
|
*/
|
|
362
314
|
disassociateWirelessDeviceFromFuotaTask(args: DisassociateWirelessDeviceFromFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateWirelessDeviceFromFuotaTaskCommandOutput>;
|
|
363
315
|
disassociateWirelessDeviceFromFuotaTask(args: DisassociateWirelessDeviceFromFuotaTaskCommandInput, cb: (err: any, data?: DisassociateWirelessDeviceFromFuotaTaskCommandOutput) => void): void;
|
|
364
316
|
disassociateWirelessDeviceFromFuotaTask(args: DisassociateWirelessDeviceFromFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateWirelessDeviceFromFuotaTaskCommandOutput) => void): void;
|
|
365
317
|
/**
|
|
366
|
-
* @
|
|
367
|
-
* <p>Disassociates a wireless device from a multicast group.</p>
|
|
318
|
+
* @see {@link DisassociateWirelessDeviceFromMulticastGroupCommand}
|
|
368
319
|
*/
|
|
369
320
|
disassociateWirelessDeviceFromMulticastGroup(args: DisassociateWirelessDeviceFromMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateWirelessDeviceFromMulticastGroupCommandOutput>;
|
|
370
321
|
disassociateWirelessDeviceFromMulticastGroup(args: DisassociateWirelessDeviceFromMulticastGroupCommandInput, cb: (err: any, data?: DisassociateWirelessDeviceFromMulticastGroupCommandOutput) => void): void;
|
|
371
322
|
disassociateWirelessDeviceFromMulticastGroup(args: DisassociateWirelessDeviceFromMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateWirelessDeviceFromMulticastGroupCommandOutput) => void): void;
|
|
372
323
|
/**
|
|
373
|
-
* @
|
|
374
|
-
* <p>Disassociates a wireless device from its currently associated thing.</p>
|
|
324
|
+
* @see {@link DisassociateWirelessDeviceFromThingCommand}
|
|
375
325
|
*/
|
|
376
326
|
disassociateWirelessDeviceFromThing(args: DisassociateWirelessDeviceFromThingCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateWirelessDeviceFromThingCommandOutput>;
|
|
377
327
|
disassociateWirelessDeviceFromThing(args: DisassociateWirelessDeviceFromThingCommandInput, cb: (err: any, data?: DisassociateWirelessDeviceFromThingCommandOutput) => void): void;
|
|
378
328
|
disassociateWirelessDeviceFromThing(args: DisassociateWirelessDeviceFromThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateWirelessDeviceFromThingCommandOutput) => void): void;
|
|
379
329
|
/**
|
|
380
|
-
* @
|
|
381
|
-
* <p>Disassociates a wireless gateway from its currently associated certificate.</p>
|
|
330
|
+
* @see {@link DisassociateWirelessGatewayFromCertificateCommand}
|
|
382
331
|
*/
|
|
383
332
|
disassociateWirelessGatewayFromCertificate(args: DisassociateWirelessGatewayFromCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateWirelessGatewayFromCertificateCommandOutput>;
|
|
384
333
|
disassociateWirelessGatewayFromCertificate(args: DisassociateWirelessGatewayFromCertificateCommandInput, cb: (err: any, data?: DisassociateWirelessGatewayFromCertificateCommandOutput) => void): void;
|
|
385
334
|
disassociateWirelessGatewayFromCertificate(args: DisassociateWirelessGatewayFromCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateWirelessGatewayFromCertificateCommandOutput) => void): void;
|
|
386
335
|
/**
|
|
387
|
-
* @
|
|
388
|
-
* <p>Disassociates a wireless gateway from its currently associated thing.</p>
|
|
336
|
+
* @see {@link DisassociateWirelessGatewayFromThingCommand}
|
|
389
337
|
*/
|
|
390
338
|
disassociateWirelessGatewayFromThing(args: DisassociateWirelessGatewayFromThingCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateWirelessGatewayFromThingCommandOutput>;
|
|
391
339
|
disassociateWirelessGatewayFromThing(args: DisassociateWirelessGatewayFromThingCommandInput, cb: (err: any, data?: DisassociateWirelessGatewayFromThingCommandOutput) => void): void;
|
|
392
340
|
disassociateWirelessGatewayFromThing(args: DisassociateWirelessGatewayFromThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateWirelessGatewayFromThingCommandOutput) => void): void;
|
|
393
341
|
/**
|
|
394
|
-
* @
|
|
395
|
-
* <p>Gets information about a destination.</p>
|
|
342
|
+
* @see {@link GetDestinationCommand}
|
|
396
343
|
*/
|
|
397
344
|
getDestination(args: GetDestinationCommandInput, options?: __HttpHandlerOptions): Promise<GetDestinationCommandOutput>;
|
|
398
345
|
getDestination(args: GetDestinationCommandInput, cb: (err: any, data?: GetDestinationCommandOutput) => void): void;
|
|
399
346
|
getDestination(args: GetDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDestinationCommandOutput) => void): void;
|
|
400
347
|
/**
|
|
401
|
-
* @
|
|
402
|
-
* <p>Gets information about a device profile.</p>
|
|
348
|
+
* @see {@link GetDeviceProfileCommand}
|
|
403
349
|
*/
|
|
404
350
|
getDeviceProfile(args: GetDeviceProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetDeviceProfileCommandOutput>;
|
|
405
351
|
getDeviceProfile(args: GetDeviceProfileCommandInput, cb: (err: any, data?: GetDeviceProfileCommandOutput) => void): void;
|
|
406
352
|
getDeviceProfile(args: GetDeviceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeviceProfileCommandOutput) => void): void;
|
|
407
353
|
/**
|
|
408
|
-
* @
|
|
409
|
-
* <p>Get the event configuration based on resource types.</p>
|
|
354
|
+
* @see {@link GetEventConfigurationByResourceTypesCommand}
|
|
410
355
|
*/
|
|
411
356
|
getEventConfigurationByResourceTypes(args: GetEventConfigurationByResourceTypesCommandInput, options?: __HttpHandlerOptions): Promise<GetEventConfigurationByResourceTypesCommandOutput>;
|
|
412
357
|
getEventConfigurationByResourceTypes(args: GetEventConfigurationByResourceTypesCommandInput, cb: (err: any, data?: GetEventConfigurationByResourceTypesCommandOutput) => void): void;
|
|
413
358
|
getEventConfigurationByResourceTypes(args: GetEventConfigurationByResourceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEventConfigurationByResourceTypesCommandOutput) => void): void;
|
|
414
359
|
/**
|
|
415
|
-
* @
|
|
416
|
-
* <p>Gets information about a FUOTA task.</p>
|
|
360
|
+
* @see {@link GetFuotaTaskCommand}
|
|
417
361
|
*/
|
|
418
362
|
getFuotaTask(args: GetFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetFuotaTaskCommandOutput>;
|
|
419
363
|
getFuotaTask(args: GetFuotaTaskCommandInput, cb: (err: any, data?: GetFuotaTaskCommandOutput) => void): void;
|
|
420
364
|
getFuotaTask(args: GetFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFuotaTaskCommandOutput) => void): void;
|
|
421
365
|
/**
|
|
422
|
-
* @
|
|
423
|
-
* <p>Returns current default log levels or log levels by resource types. Based on resource types, log levels can be
|
|
424
|
-
* for wireless device log options or wireless gateway log options.</p>
|
|
366
|
+
* @see {@link GetLogLevelsByResourceTypesCommand}
|
|
425
367
|
*/
|
|
426
368
|
getLogLevelsByResourceTypes(args: GetLogLevelsByResourceTypesCommandInput, options?: __HttpHandlerOptions): Promise<GetLogLevelsByResourceTypesCommandOutput>;
|
|
427
369
|
getLogLevelsByResourceTypes(args: GetLogLevelsByResourceTypesCommandInput, cb: (err: any, data?: GetLogLevelsByResourceTypesCommandOutput) => void): void;
|
|
428
370
|
getLogLevelsByResourceTypes(args: GetLogLevelsByResourceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLogLevelsByResourceTypesCommandOutput) => void): void;
|
|
429
371
|
/**
|
|
430
|
-
* @
|
|
431
|
-
* <p>Gets information about a multicast group.</p>
|
|
372
|
+
* @see {@link GetMulticastGroupCommand}
|
|
432
373
|
*/
|
|
433
374
|
getMulticastGroup(args: GetMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetMulticastGroupCommandOutput>;
|
|
434
375
|
getMulticastGroup(args: GetMulticastGroupCommandInput, cb: (err: any, data?: GetMulticastGroupCommandOutput) => void): void;
|
|
435
376
|
getMulticastGroup(args: GetMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMulticastGroupCommandOutput) => void): void;
|
|
436
377
|
/**
|
|
437
|
-
* @
|
|
438
|
-
* <p>Gets information about a multicast group session.</p>
|
|
378
|
+
* @see {@link GetMulticastGroupSessionCommand}
|
|
439
379
|
*/
|
|
440
380
|
getMulticastGroupSession(args: GetMulticastGroupSessionCommandInput, options?: __HttpHandlerOptions): Promise<GetMulticastGroupSessionCommandOutput>;
|
|
441
381
|
getMulticastGroupSession(args: GetMulticastGroupSessionCommandInput, cb: (err: any, data?: GetMulticastGroupSessionCommandOutput) => void): void;
|
|
442
382
|
getMulticastGroupSession(args: GetMulticastGroupSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMulticastGroupSessionCommandOutput) => void): void;
|
|
443
383
|
/**
|
|
444
|
-
* @
|
|
445
|
-
* <p>Get network analyzer configuration.</p>
|
|
384
|
+
* @see {@link GetNetworkAnalyzerConfigurationCommand}
|
|
446
385
|
*/
|
|
447
386
|
getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetNetworkAnalyzerConfigurationCommandOutput>;
|
|
448
387
|
getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, cb: (err: any, data?: GetNetworkAnalyzerConfigurationCommandOutput) => void): void;
|
|
449
388
|
getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNetworkAnalyzerConfigurationCommandOutput) => void): void;
|
|
450
389
|
/**
|
|
451
|
-
* @
|
|
452
|
-
* <p>Gets information about a partner account. If <code>PartnerAccountId</code> and <code>PartnerType</code> are <code>null</code>, returns all partner accounts.</p>
|
|
390
|
+
* @see {@link GetPartnerAccountCommand}
|
|
453
391
|
*/
|
|
454
392
|
getPartnerAccount(args: GetPartnerAccountCommandInput, options?: __HttpHandlerOptions): Promise<GetPartnerAccountCommandOutput>;
|
|
455
393
|
getPartnerAccount(args: GetPartnerAccountCommandInput, cb: (err: any, data?: GetPartnerAccountCommandOutput) => void): void;
|
|
456
394
|
getPartnerAccount(args: GetPartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPartnerAccountCommandOutput) => void): void;
|
|
457
395
|
/**
|
|
458
|
-
* @
|
|
459
|
-
* @deprecated
|
|
460
|
-
*
|
|
461
|
-
* <p>Get the position information for a given resource.</p>
|
|
462
|
-
* <important>
|
|
463
|
-
* <p>This action is no longer supported. Calls to retrieve the position information
|
|
464
|
-
* should use the <a href="https://docs.aws.amazon.com/iot-wireless/2020-11-22/apireference/API_GetResourcePosition.html">GetResourcePosition</a>
|
|
465
|
-
* API operation instead.</p>
|
|
466
|
-
* </important>
|
|
396
|
+
* @see {@link GetPositionCommand}
|
|
467
397
|
*/
|
|
468
398
|
getPosition(args: GetPositionCommandInput, options?: __HttpHandlerOptions): Promise<GetPositionCommandOutput>;
|
|
469
399
|
getPosition(args: GetPositionCommandInput, cb: (err: any, data?: GetPositionCommandOutput) => void): void;
|
|
470
400
|
getPosition(args: GetPositionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPositionCommandOutput) => void): void;
|
|
471
401
|
/**
|
|
472
|
-
* @
|
|
473
|
-
* @deprecated
|
|
474
|
-
*
|
|
475
|
-
* <p>Get position configuration for a given resource.</p>
|
|
476
|
-
* <important>
|
|
477
|
-
* <p>This action is no longer supported. Calls to retrieve the position configuration
|
|
478
|
-
* should use the <a href="https://docs.aws.amazon.com/iot-wireless/2020-11-22/apireference/API_GetResourcePosition.html">GetResourcePosition</a>
|
|
479
|
-
* API operation instead.</p>
|
|
480
|
-
* </important>
|
|
402
|
+
* @see {@link GetPositionConfigurationCommand}
|
|
481
403
|
*/
|
|
482
404
|
getPositionConfiguration(args: GetPositionConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetPositionConfigurationCommandOutput>;
|
|
483
405
|
getPositionConfiguration(args: GetPositionConfigurationCommandInput, cb: (err: any, data?: GetPositionConfigurationCommandOutput) => void): void;
|
|
484
406
|
getPositionConfiguration(args: GetPositionConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPositionConfigurationCommandOutput) => void): void;
|
|
485
407
|
/**
|
|
486
|
-
* @
|
|
487
|
-
* <p>Get estimated position information as a payload in GeoJSON format. The payload measurement data is
|
|
488
|
-
* resolved using solvers that are provided by third-party vendors.</p>
|
|
408
|
+
* @see {@link GetPositionEstimateCommand}
|
|
489
409
|
*/
|
|
490
410
|
getPositionEstimate(args: GetPositionEstimateCommandInput, options?: __HttpHandlerOptions): Promise<GetPositionEstimateCommandOutput>;
|
|
491
411
|
getPositionEstimate(args: GetPositionEstimateCommandInput, cb: (err: any, data?: GetPositionEstimateCommandOutput) => void): void;
|
|
492
412
|
getPositionEstimate(args: GetPositionEstimateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPositionEstimateCommandOutput) => void): void;
|
|
493
413
|
/**
|
|
494
|
-
* @
|
|
495
|
-
* <p>Get the event configuration for a particular resource identifier.</p>
|
|
414
|
+
* @see {@link GetResourceEventConfigurationCommand}
|
|
496
415
|
*/
|
|
497
416
|
getResourceEventConfiguration(args: GetResourceEventConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceEventConfigurationCommandOutput>;
|
|
498
417
|
getResourceEventConfiguration(args: GetResourceEventConfigurationCommandInput, cb: (err: any, data?: GetResourceEventConfigurationCommandOutput) => void): void;
|
|
499
418
|
getResourceEventConfiguration(args: GetResourceEventConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceEventConfigurationCommandOutput) => void): void;
|
|
500
419
|
/**
|
|
501
|
-
* @
|
|
502
|
-
* <p>Fetches the log-level override, if any, for a given resource-ID and resource-type. It can be used for
|
|
503
|
-
* a wireless device or a wireless gateway.</p>
|
|
420
|
+
* @see {@link GetResourceLogLevelCommand}
|
|
504
421
|
*/
|
|
505
422
|
getResourceLogLevel(args: GetResourceLogLevelCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceLogLevelCommandOutput>;
|
|
506
423
|
getResourceLogLevel(args: GetResourceLogLevelCommandInput, cb: (err: any, data?: GetResourceLogLevelCommandOutput) => void): void;
|
|
507
424
|
getResourceLogLevel(args: GetResourceLogLevelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceLogLevelCommandOutput) => void): void;
|
|
508
425
|
/**
|
|
509
|
-
* @
|
|
510
|
-
* <p>Get the position information for a given wireless device or a wireless gateway resource.
|
|
511
|
-
* The position information uses the <a href="https://gisgeography.com/wgs84-world-geodetic-system/"> World Geodetic System
|
|
512
|
-
* (WGS84)</a>.</p>
|
|
426
|
+
* @see {@link GetResourcePositionCommand}
|
|
513
427
|
*/
|
|
514
428
|
getResourcePosition(args: GetResourcePositionCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcePositionCommandOutput>;
|
|
515
429
|
getResourcePosition(args: GetResourcePositionCommandInput, cb: (err: any, data?: GetResourcePositionCommandOutput) => void): void;
|
|
516
430
|
getResourcePosition(args: GetResourcePositionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcePositionCommandOutput) => void): void;
|
|
517
431
|
/**
|
|
518
|
-
* @
|
|
519
|
-
* <p>Gets the account-specific endpoint for Configuration and Update Server (CUPS) protocol or LoRaWAN Network Server (LNS) connections.</p>
|
|
432
|
+
* @see {@link GetServiceEndpointCommand}
|
|
520
433
|
*/
|
|
521
434
|
getServiceEndpoint(args: GetServiceEndpointCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceEndpointCommandOutput>;
|
|
522
435
|
getServiceEndpoint(args: GetServiceEndpointCommandInput, cb: (err: any, data?: GetServiceEndpointCommandOutput) => void): void;
|
|
523
436
|
getServiceEndpoint(args: GetServiceEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceEndpointCommandOutput) => void): void;
|
|
524
437
|
/**
|
|
525
|
-
* @
|
|
526
|
-
* <p>Gets information about a service profile.</p>
|
|
438
|
+
* @see {@link GetServiceProfileCommand}
|
|
527
439
|
*/
|
|
528
440
|
getServiceProfile(args: GetServiceProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceProfileCommandOutput>;
|
|
529
441
|
getServiceProfile(args: GetServiceProfileCommandInput, cb: (err: any, data?: GetServiceProfileCommandOutput) => void): void;
|
|
530
442
|
getServiceProfile(args: GetServiceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceProfileCommandOutput) => void): void;
|
|
531
443
|
/**
|
|
532
|
-
* @
|
|
533
|
-
* <p>Gets information about a wireless device.</p>
|
|
444
|
+
* @see {@link GetWirelessDeviceCommand}
|
|
534
445
|
*/
|
|
535
446
|
getWirelessDevice(args: GetWirelessDeviceCommandInput, options?: __HttpHandlerOptions): Promise<GetWirelessDeviceCommandOutput>;
|
|
536
447
|
getWirelessDevice(args: GetWirelessDeviceCommandInput, cb: (err: any, data?: GetWirelessDeviceCommandOutput) => void): void;
|
|
537
448
|
getWirelessDevice(args: GetWirelessDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWirelessDeviceCommandOutput) => void): void;
|
|
538
449
|
/**
|
|
539
|
-
* @
|
|
540
|
-
* <p>Get information about an import task and count of device onboarding summary information for the
|
|
541
|
-
* import task.</p>
|
|
450
|
+
* @see {@link GetWirelessDeviceImportTaskCommand}
|
|
542
451
|
*/
|
|
543
452
|
getWirelessDeviceImportTask(args: GetWirelessDeviceImportTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetWirelessDeviceImportTaskCommandOutput>;
|
|
544
453
|
getWirelessDeviceImportTask(args: GetWirelessDeviceImportTaskCommandInput, cb: (err: any, data?: GetWirelessDeviceImportTaskCommandOutput) => void): void;
|
|
545
454
|
getWirelessDeviceImportTask(args: GetWirelessDeviceImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWirelessDeviceImportTaskCommandOutput) => void): void;
|
|
546
455
|
/**
|
|
547
|
-
* @
|
|
548
|
-
* <p>Gets operating information about a wireless device.</p>
|
|
456
|
+
* @see {@link GetWirelessDeviceStatisticsCommand}
|
|
549
457
|
*/
|
|
550
458
|
getWirelessDeviceStatistics(args: GetWirelessDeviceStatisticsCommandInput, options?: __HttpHandlerOptions): Promise<GetWirelessDeviceStatisticsCommandOutput>;
|
|
551
459
|
getWirelessDeviceStatistics(args: GetWirelessDeviceStatisticsCommandInput, cb: (err: any, data?: GetWirelessDeviceStatisticsCommandOutput) => void): void;
|
|
552
460
|
getWirelessDeviceStatistics(args: GetWirelessDeviceStatisticsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWirelessDeviceStatisticsCommandOutput) => void): void;
|
|
553
461
|
/**
|
|
554
|
-
* @
|
|
555
|
-
* <p>Gets information about a wireless gateway.</p>
|
|
462
|
+
* @see {@link GetWirelessGatewayCommand}
|
|
556
463
|
*/
|
|
557
464
|
getWirelessGateway(args: GetWirelessGatewayCommandInput, options?: __HttpHandlerOptions): Promise<GetWirelessGatewayCommandOutput>;
|
|
558
465
|
getWirelessGateway(args: GetWirelessGatewayCommandInput, cb: (err: any, data?: GetWirelessGatewayCommandOutput) => void): void;
|
|
559
466
|
getWirelessGateway(args: GetWirelessGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWirelessGatewayCommandOutput) => void): void;
|
|
560
467
|
/**
|
|
561
|
-
* @
|
|
562
|
-
* <p>Gets the ID of the certificate that is currently associated with a wireless gateway.</p>
|
|
468
|
+
* @see {@link GetWirelessGatewayCertificateCommand}
|
|
563
469
|
*/
|
|
564
470
|
getWirelessGatewayCertificate(args: GetWirelessGatewayCertificateCommandInput, options?: __HttpHandlerOptions): Promise<GetWirelessGatewayCertificateCommandOutput>;
|
|
565
471
|
getWirelessGatewayCertificate(args: GetWirelessGatewayCertificateCommandInput, cb: (err: any, data?: GetWirelessGatewayCertificateCommandOutput) => void): void;
|
|
566
472
|
getWirelessGatewayCertificate(args: GetWirelessGatewayCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWirelessGatewayCertificateCommandOutput) => void): void;
|
|
567
473
|
/**
|
|
568
|
-
* @
|
|
569
|
-
* <p>Gets the firmware version and other information about a wireless gateway.</p>
|
|
474
|
+
* @see {@link GetWirelessGatewayFirmwareInformationCommand}
|
|
570
475
|
*/
|
|
571
476
|
getWirelessGatewayFirmwareInformation(args: GetWirelessGatewayFirmwareInformationCommandInput, options?: __HttpHandlerOptions): Promise<GetWirelessGatewayFirmwareInformationCommandOutput>;
|
|
572
477
|
getWirelessGatewayFirmwareInformation(args: GetWirelessGatewayFirmwareInformationCommandInput, cb: (err: any, data?: GetWirelessGatewayFirmwareInformationCommandOutput) => void): void;
|
|
573
478
|
getWirelessGatewayFirmwareInformation(args: GetWirelessGatewayFirmwareInformationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWirelessGatewayFirmwareInformationCommandOutput) => void): void;
|
|
574
479
|
/**
|
|
575
|
-
* @
|
|
576
|
-
* <p>Gets operating information about a wireless gateway.</p>
|
|
480
|
+
* @see {@link GetWirelessGatewayStatisticsCommand}
|
|
577
481
|
*/
|
|
578
482
|
getWirelessGatewayStatistics(args: GetWirelessGatewayStatisticsCommandInput, options?: __HttpHandlerOptions): Promise<GetWirelessGatewayStatisticsCommandOutput>;
|
|
579
483
|
getWirelessGatewayStatistics(args: GetWirelessGatewayStatisticsCommandInput, cb: (err: any, data?: GetWirelessGatewayStatisticsCommandOutput) => void): void;
|
|
580
484
|
getWirelessGatewayStatistics(args: GetWirelessGatewayStatisticsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWirelessGatewayStatisticsCommandOutput) => void): void;
|
|
581
485
|
/**
|
|
582
|
-
* @
|
|
583
|
-
* <p>Gets information about a wireless gateway task.</p>
|
|
486
|
+
* @see {@link GetWirelessGatewayTaskCommand}
|
|
584
487
|
*/
|
|
585
488
|
getWirelessGatewayTask(args: GetWirelessGatewayTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetWirelessGatewayTaskCommandOutput>;
|
|
586
489
|
getWirelessGatewayTask(args: GetWirelessGatewayTaskCommandInput, cb: (err: any, data?: GetWirelessGatewayTaskCommandOutput) => void): void;
|
|
587
490
|
getWirelessGatewayTask(args: GetWirelessGatewayTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWirelessGatewayTaskCommandOutput) => void): void;
|
|
588
491
|
/**
|
|
589
|
-
* @
|
|
590
|
-
* <p>Gets information about a wireless gateway task definition.</p>
|
|
492
|
+
* @see {@link GetWirelessGatewayTaskDefinitionCommand}
|
|
591
493
|
*/
|
|
592
494
|
getWirelessGatewayTaskDefinition(args: GetWirelessGatewayTaskDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<GetWirelessGatewayTaskDefinitionCommandOutput>;
|
|
593
495
|
getWirelessGatewayTaskDefinition(args: GetWirelessGatewayTaskDefinitionCommandInput, cb: (err: any, data?: GetWirelessGatewayTaskDefinitionCommandOutput) => void): void;
|
|
594
496
|
getWirelessGatewayTaskDefinition(args: GetWirelessGatewayTaskDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWirelessGatewayTaskDefinitionCommandOutput) => void): void;
|
|
595
497
|
/**
|
|
596
|
-
* @
|
|
597
|
-
* <p>Lists the destinations registered to your AWS account.</p>
|
|
498
|
+
* @see {@link ListDestinationsCommand}
|
|
598
499
|
*/
|
|
599
500
|
listDestinations(args: ListDestinationsCommandInput, options?: __HttpHandlerOptions): Promise<ListDestinationsCommandOutput>;
|
|
600
501
|
listDestinations(args: ListDestinationsCommandInput, cb: (err: any, data?: ListDestinationsCommandOutput) => void): void;
|
|
601
502
|
listDestinations(args: ListDestinationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDestinationsCommandOutput) => void): void;
|
|
602
503
|
/**
|
|
603
|
-
* @
|
|
604
|
-
* <p>Lists the device profiles registered to your AWS account.</p>
|
|
504
|
+
* @see {@link ListDeviceProfilesCommand}
|
|
605
505
|
*/
|
|
606
506
|
listDeviceProfiles(args: ListDeviceProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListDeviceProfilesCommandOutput>;
|
|
607
507
|
listDeviceProfiles(args: ListDeviceProfilesCommandInput, cb: (err: any, data?: ListDeviceProfilesCommandOutput) => void): void;
|
|
608
508
|
listDeviceProfiles(args: ListDeviceProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeviceProfilesCommandOutput) => void): void;
|
|
609
509
|
/**
|
|
610
|
-
* @
|
|
611
|
-
* <p>List the Sidewalk devices in an import task and their onboarding status.</p>
|
|
510
|
+
* @see {@link ListDevicesForWirelessDeviceImportTaskCommand}
|
|
612
511
|
*/
|
|
613
512
|
listDevicesForWirelessDeviceImportTask(args: ListDevicesForWirelessDeviceImportTaskCommandInput, options?: __HttpHandlerOptions): Promise<ListDevicesForWirelessDeviceImportTaskCommandOutput>;
|
|
614
513
|
listDevicesForWirelessDeviceImportTask(args: ListDevicesForWirelessDeviceImportTaskCommandInput, cb: (err: any, data?: ListDevicesForWirelessDeviceImportTaskCommandOutput) => void): void;
|
|
615
514
|
listDevicesForWirelessDeviceImportTask(args: ListDevicesForWirelessDeviceImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDevicesForWirelessDeviceImportTaskCommandOutput) => void): void;
|
|
616
515
|
/**
|
|
617
|
-
* @
|
|
618
|
-
* <p>List event configurations where at least one event topic has been enabled.</p>
|
|
516
|
+
* @see {@link ListEventConfigurationsCommand}
|
|
619
517
|
*/
|
|
620
518
|
listEventConfigurations(args: ListEventConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventConfigurationsCommandOutput>;
|
|
621
519
|
listEventConfigurations(args: ListEventConfigurationsCommandInput, cb: (err: any, data?: ListEventConfigurationsCommandOutput) => void): void;
|
|
622
520
|
listEventConfigurations(args: ListEventConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventConfigurationsCommandOutput) => void): void;
|
|
623
521
|
/**
|
|
624
|
-
* @
|
|
625
|
-
* <p>Lists the FUOTA tasks registered to your AWS account.</p>
|
|
522
|
+
* @see {@link ListFuotaTasksCommand}
|
|
626
523
|
*/
|
|
627
524
|
listFuotaTasks(args: ListFuotaTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListFuotaTasksCommandOutput>;
|
|
628
525
|
listFuotaTasks(args: ListFuotaTasksCommandInput, cb: (err: any, data?: ListFuotaTasksCommandOutput) => void): void;
|
|
629
526
|
listFuotaTasks(args: ListFuotaTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFuotaTasksCommandOutput) => void): void;
|
|
630
527
|
/**
|
|
631
|
-
* @
|
|
632
|
-
* <p>Lists the multicast groups registered to your AWS account.</p>
|
|
528
|
+
* @see {@link ListMulticastGroupsCommand}
|
|
633
529
|
*/
|
|
634
530
|
listMulticastGroups(args: ListMulticastGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListMulticastGroupsCommandOutput>;
|
|
635
531
|
listMulticastGroups(args: ListMulticastGroupsCommandInput, cb: (err: any, data?: ListMulticastGroupsCommandOutput) => void): void;
|
|
636
532
|
listMulticastGroups(args: ListMulticastGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMulticastGroupsCommandOutput) => void): void;
|
|
637
533
|
/**
|
|
638
|
-
* @
|
|
639
|
-
* <p>List all multicast groups associated with a fuota task.</p>
|
|
534
|
+
* @see {@link ListMulticastGroupsByFuotaTaskCommand}
|
|
640
535
|
*/
|
|
641
536
|
listMulticastGroupsByFuotaTask(args: ListMulticastGroupsByFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<ListMulticastGroupsByFuotaTaskCommandOutput>;
|
|
642
537
|
listMulticastGroupsByFuotaTask(args: ListMulticastGroupsByFuotaTaskCommandInput, cb: (err: any, data?: ListMulticastGroupsByFuotaTaskCommandOutput) => void): void;
|
|
643
538
|
listMulticastGroupsByFuotaTask(args: ListMulticastGroupsByFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMulticastGroupsByFuotaTaskCommandOutput) => void): void;
|
|
644
539
|
/**
|
|
645
|
-
* @
|
|
646
|
-
* <p>Lists the network analyzer configurations.</p>
|
|
540
|
+
* @see {@link ListNetworkAnalyzerConfigurationsCommand}
|
|
647
541
|
*/
|
|
648
542
|
listNetworkAnalyzerConfigurations(args: ListNetworkAnalyzerConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListNetworkAnalyzerConfigurationsCommandOutput>;
|
|
649
543
|
listNetworkAnalyzerConfigurations(args: ListNetworkAnalyzerConfigurationsCommandInput, cb: (err: any, data?: ListNetworkAnalyzerConfigurationsCommandOutput) => void): void;
|
|
650
544
|
listNetworkAnalyzerConfigurations(args: ListNetworkAnalyzerConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNetworkAnalyzerConfigurationsCommandOutput) => void): void;
|
|
651
545
|
/**
|
|
652
|
-
* @
|
|
653
|
-
* <p>Lists the partner accounts associated with your AWS account.</p>
|
|
546
|
+
* @see {@link ListPartnerAccountsCommand}
|
|
654
547
|
*/
|
|
655
548
|
listPartnerAccounts(args: ListPartnerAccountsCommandInput, options?: __HttpHandlerOptions): Promise<ListPartnerAccountsCommandOutput>;
|
|
656
549
|
listPartnerAccounts(args: ListPartnerAccountsCommandInput, cb: (err: any, data?: ListPartnerAccountsCommandOutput) => void): void;
|
|
657
550
|
listPartnerAccounts(args: ListPartnerAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPartnerAccountsCommandOutput) => void): void;
|
|
658
551
|
/**
|
|
659
|
-
* @
|
|
660
|
-
* @deprecated
|
|
661
|
-
*
|
|
662
|
-
* <p>List position configurations for a given resource, such as positioning solvers.</p>
|
|
663
|
-
* <important>
|
|
664
|
-
* <p>This action is no longer supported. Calls to retrieve position information
|
|
665
|
-
* should use the <a href="https://docs.aws.amazon.com/iot-wireless/2020-11-22/apireference/API_GetResourcePosition.html">GetResourcePosition</a>
|
|
666
|
-
* API operation instead.</p>
|
|
667
|
-
* </important>
|
|
552
|
+
* @see {@link ListPositionConfigurationsCommand}
|
|
668
553
|
*/
|
|
669
554
|
listPositionConfigurations(args: ListPositionConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListPositionConfigurationsCommandOutput>;
|
|
670
555
|
listPositionConfigurations(args: ListPositionConfigurationsCommandInput, cb: (err: any, data?: ListPositionConfigurationsCommandOutput) => void): void;
|
|
671
556
|
listPositionConfigurations(args: ListPositionConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPositionConfigurationsCommandOutput) => void): void;
|
|
672
557
|
/**
|
|
673
|
-
* @
|
|
674
|
-
* <p>List queued messages in the downlink queue.</p>
|
|
558
|
+
* @see {@link ListQueuedMessagesCommand}
|
|
675
559
|
*/
|
|
676
560
|
listQueuedMessages(args: ListQueuedMessagesCommandInput, options?: __HttpHandlerOptions): Promise<ListQueuedMessagesCommandOutput>;
|
|
677
561
|
listQueuedMessages(args: ListQueuedMessagesCommandInput, cb: (err: any, data?: ListQueuedMessagesCommandOutput) => void): void;
|
|
678
562
|
listQueuedMessages(args: ListQueuedMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueuedMessagesCommandOutput) => void): void;
|
|
679
563
|
/**
|
|
680
|
-
* @
|
|
681
|
-
* <p>Lists the service profiles registered to your AWS account.</p>
|
|
564
|
+
* @see {@link ListServiceProfilesCommand}
|
|
682
565
|
*/
|
|
683
566
|
listServiceProfiles(args: ListServiceProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceProfilesCommandOutput>;
|
|
684
567
|
listServiceProfiles(args: ListServiceProfilesCommandInput, cb: (err: any, data?: ListServiceProfilesCommandOutput) => void): void;
|
|
685
568
|
listServiceProfiles(args: ListServiceProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceProfilesCommandOutput) => void): void;
|
|
686
569
|
/**
|
|
687
|
-
* @
|
|
688
|
-
* <p>Lists the tags (metadata) you have assigned to the resource.</p>
|
|
570
|
+
* @see {@link ListTagsForResourceCommand}
|
|
689
571
|
*/
|
|
690
572
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
691
573
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
692
574
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
693
575
|
/**
|
|
694
|
-
* @
|
|
695
|
-
* <p>List wireless devices that have been added to an import task.</p>
|
|
576
|
+
* @see {@link ListWirelessDeviceImportTasksCommand}
|
|
696
577
|
*/
|
|
697
578
|
listWirelessDeviceImportTasks(args: ListWirelessDeviceImportTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListWirelessDeviceImportTasksCommandOutput>;
|
|
698
579
|
listWirelessDeviceImportTasks(args: ListWirelessDeviceImportTasksCommandInput, cb: (err: any, data?: ListWirelessDeviceImportTasksCommandOutput) => void): void;
|
|
699
580
|
listWirelessDeviceImportTasks(args: ListWirelessDeviceImportTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWirelessDeviceImportTasksCommandOutput) => void): void;
|
|
700
581
|
/**
|
|
701
|
-
* @
|
|
702
|
-
* <p>Lists the wireless devices registered to your AWS account.</p>
|
|
582
|
+
* @see {@link ListWirelessDevicesCommand}
|
|
703
583
|
*/
|
|
704
584
|
listWirelessDevices(args: ListWirelessDevicesCommandInput, options?: __HttpHandlerOptions): Promise<ListWirelessDevicesCommandOutput>;
|
|
705
585
|
listWirelessDevices(args: ListWirelessDevicesCommandInput, cb: (err: any, data?: ListWirelessDevicesCommandOutput) => void): void;
|
|
706
586
|
listWirelessDevices(args: ListWirelessDevicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWirelessDevicesCommandOutput) => void): void;
|
|
707
587
|
/**
|
|
708
|
-
* @
|
|
709
|
-
* <p>Lists the wireless gateways registered to your AWS account.</p>
|
|
588
|
+
* @see {@link ListWirelessGatewaysCommand}
|
|
710
589
|
*/
|
|
711
590
|
listWirelessGateways(args: ListWirelessGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<ListWirelessGatewaysCommandOutput>;
|
|
712
591
|
listWirelessGateways(args: ListWirelessGatewaysCommandInput, cb: (err: any, data?: ListWirelessGatewaysCommandOutput) => void): void;
|
|
713
592
|
listWirelessGateways(args: ListWirelessGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWirelessGatewaysCommandOutput) => void): void;
|
|
714
593
|
/**
|
|
715
|
-
* @
|
|
716
|
-
* <p>List the wireless gateway tasks definitions registered to your AWS account.</p>
|
|
594
|
+
* @see {@link ListWirelessGatewayTaskDefinitionsCommand}
|
|
717
595
|
*/
|
|
718
596
|
listWirelessGatewayTaskDefinitions(args: ListWirelessGatewayTaskDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListWirelessGatewayTaskDefinitionsCommandOutput>;
|
|
719
597
|
listWirelessGatewayTaskDefinitions(args: ListWirelessGatewayTaskDefinitionsCommandInput, cb: (err: any, data?: ListWirelessGatewayTaskDefinitionsCommandOutput) => void): void;
|
|
720
598
|
listWirelessGatewayTaskDefinitions(args: ListWirelessGatewayTaskDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWirelessGatewayTaskDefinitionsCommandOutput) => void): void;
|
|
721
599
|
/**
|
|
722
|
-
* @
|
|
723
|
-
* @deprecated
|
|
724
|
-
*
|
|
725
|
-
* <p>Put position configuration for a given resource.</p>
|
|
726
|
-
* <important>
|
|
727
|
-
* <p>This action is no longer supported. Calls to update the position configuration
|
|
728
|
-
* should use the <a href="https://docs.aws.amazon.com/iot-wireless/2020-11-22/apireference/API_UpdateResourcePosition.html">UpdateResourcePosition</a> API operation instead.</p>
|
|
729
|
-
* </important>
|
|
600
|
+
* @see {@link PutPositionConfigurationCommand}
|
|
730
601
|
*/
|
|
731
602
|
putPositionConfiguration(args: PutPositionConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutPositionConfigurationCommandOutput>;
|
|
732
603
|
putPositionConfiguration(args: PutPositionConfigurationCommandInput, cb: (err: any, data?: PutPositionConfigurationCommandOutput) => void): void;
|
|
733
604
|
putPositionConfiguration(args: PutPositionConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPositionConfigurationCommandOutput) => void): void;
|
|
734
605
|
/**
|
|
735
|
-
* @
|
|
736
|
-
* <p>Sets the log-level override for a resource-ID and resource-type. This option can be specified for a wireless gateway
|
|
737
|
-
* or a wireless device. A limit of 200 log level override can be set per account.</p>
|
|
606
|
+
* @see {@link PutResourceLogLevelCommand}
|
|
738
607
|
*/
|
|
739
608
|
putResourceLogLevel(args: PutResourceLogLevelCommandInput, options?: __HttpHandlerOptions): Promise<PutResourceLogLevelCommandOutput>;
|
|
740
609
|
putResourceLogLevel(args: PutResourceLogLevelCommandInput, cb: (err: any, data?: PutResourceLogLevelCommandOutput) => void): void;
|
|
741
610
|
putResourceLogLevel(args: PutResourceLogLevelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourceLogLevelCommandOutput) => void): void;
|
|
742
611
|
/**
|
|
743
|
-
* @
|
|
744
|
-
* <p>Removes the log-level overrides for all resources; both wireless devices and wireless gateways.</p>
|
|
612
|
+
* @see {@link ResetAllResourceLogLevelsCommand}
|
|
745
613
|
*/
|
|
746
614
|
resetAllResourceLogLevels(args: ResetAllResourceLogLevelsCommandInput, options?: __HttpHandlerOptions): Promise<ResetAllResourceLogLevelsCommandOutput>;
|
|
747
615
|
resetAllResourceLogLevels(args: ResetAllResourceLogLevelsCommandInput, cb: (err: any, data?: ResetAllResourceLogLevelsCommandOutput) => void): void;
|
|
748
616
|
resetAllResourceLogLevels(args: ResetAllResourceLogLevelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetAllResourceLogLevelsCommandOutput) => void): void;
|
|
749
617
|
/**
|
|
750
|
-
* @
|
|
751
|
-
* <p>Removes the log-level override, if any, for a specific resource-ID and resource-type. It can be used for
|
|
752
|
-
* a wireless device or a wireless gateway.</p>
|
|
618
|
+
* @see {@link ResetResourceLogLevelCommand}
|
|
753
619
|
*/
|
|
754
620
|
resetResourceLogLevel(args: ResetResourceLogLevelCommandInput, options?: __HttpHandlerOptions): Promise<ResetResourceLogLevelCommandOutput>;
|
|
755
621
|
resetResourceLogLevel(args: ResetResourceLogLevelCommandInput, cb: (err: any, data?: ResetResourceLogLevelCommandOutput) => void): void;
|
|
756
622
|
resetResourceLogLevel(args: ResetResourceLogLevelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetResourceLogLevelCommandOutput) => void): void;
|
|
757
623
|
/**
|
|
758
|
-
* @
|
|
759
|
-
* <p>Sends the specified data to a multicast group.</p>
|
|
624
|
+
* @see {@link SendDataToMulticastGroupCommand}
|
|
760
625
|
*/
|
|
761
626
|
sendDataToMulticastGroup(args: SendDataToMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<SendDataToMulticastGroupCommandOutput>;
|
|
762
627
|
sendDataToMulticastGroup(args: SendDataToMulticastGroupCommandInput, cb: (err: any, data?: SendDataToMulticastGroupCommandOutput) => void): void;
|
|
763
628
|
sendDataToMulticastGroup(args: SendDataToMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendDataToMulticastGroupCommandOutput) => void): void;
|
|
764
629
|
/**
|
|
765
|
-
* @
|
|
766
|
-
* <p>Sends a decrypted application data frame to a device.</p>
|
|
630
|
+
* @see {@link SendDataToWirelessDeviceCommand}
|
|
767
631
|
*/
|
|
768
632
|
sendDataToWirelessDevice(args: SendDataToWirelessDeviceCommandInput, options?: __HttpHandlerOptions): Promise<SendDataToWirelessDeviceCommandOutput>;
|
|
769
633
|
sendDataToWirelessDevice(args: SendDataToWirelessDeviceCommandInput, cb: (err: any, data?: SendDataToWirelessDeviceCommandOutput) => void): void;
|
|
770
634
|
sendDataToWirelessDevice(args: SendDataToWirelessDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendDataToWirelessDeviceCommandOutput) => void): void;
|
|
771
635
|
/**
|
|
772
|
-
* @
|
|
773
|
-
* <p>Starts a bulk association of all qualifying wireless devices with a multicast group.</p>
|
|
636
|
+
* @see {@link StartBulkAssociateWirelessDeviceWithMulticastGroupCommand}
|
|
774
637
|
*/
|
|
775
638
|
startBulkAssociateWirelessDeviceWithMulticastGroup(args: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput>;
|
|
776
639
|
startBulkAssociateWirelessDeviceWithMulticastGroup(args: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, cb: (err: any, data?: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput) => void): void;
|
|
777
640
|
startBulkAssociateWirelessDeviceWithMulticastGroup(args: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput) => void): void;
|
|
778
641
|
/**
|
|
779
|
-
* @
|
|
780
|
-
* <p>Starts a bulk disassociatin of all qualifying wireless devices from a multicast group.</p>
|
|
642
|
+
* @see {@link StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand}
|
|
781
643
|
*/
|
|
782
644
|
startBulkDisassociateWirelessDeviceFromMulticastGroup(args: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput>;
|
|
783
645
|
startBulkDisassociateWirelessDeviceFromMulticastGroup(args: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, cb: (err: any, data?: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput) => void): void;
|
|
784
646
|
startBulkDisassociateWirelessDeviceFromMulticastGroup(args: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput) => void): void;
|
|
785
647
|
/**
|
|
786
|
-
* @
|
|
787
|
-
* <p>Starts a FUOTA task.</p>
|
|
648
|
+
* @see {@link StartFuotaTaskCommand}
|
|
788
649
|
*/
|
|
789
650
|
startFuotaTask(args: StartFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<StartFuotaTaskCommandOutput>;
|
|
790
651
|
startFuotaTask(args: StartFuotaTaskCommandInput, cb: (err: any, data?: StartFuotaTaskCommandOutput) => void): void;
|
|
791
652
|
startFuotaTask(args: StartFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFuotaTaskCommandOutput) => void): void;
|
|
792
653
|
/**
|
|
793
|
-
* @
|
|
794
|
-
* <p>Starts a multicast group session.</p>
|
|
654
|
+
* @see {@link StartMulticastGroupSessionCommand}
|
|
795
655
|
*/
|
|
796
656
|
startMulticastGroupSession(args: StartMulticastGroupSessionCommandInput, options?: __HttpHandlerOptions): Promise<StartMulticastGroupSessionCommandOutput>;
|
|
797
657
|
startMulticastGroupSession(args: StartMulticastGroupSessionCommandInput, cb: (err: any, data?: StartMulticastGroupSessionCommandOutput) => void): void;
|
|
798
658
|
startMulticastGroupSession(args: StartMulticastGroupSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMulticastGroupSessionCommandOutput) => void): void;
|
|
799
659
|
/**
|
|
800
|
-
* @
|
|
801
|
-
* <p>Start import task for a single wireless device.</p>
|
|
660
|
+
* @see {@link StartSingleWirelessDeviceImportTaskCommand}
|
|
802
661
|
*/
|
|
803
662
|
startSingleWirelessDeviceImportTask(args: StartSingleWirelessDeviceImportTaskCommandInput, options?: __HttpHandlerOptions): Promise<StartSingleWirelessDeviceImportTaskCommandOutput>;
|
|
804
663
|
startSingleWirelessDeviceImportTask(args: StartSingleWirelessDeviceImportTaskCommandInput, cb: (err: any, data?: StartSingleWirelessDeviceImportTaskCommandOutput) => void): void;
|
|
805
664
|
startSingleWirelessDeviceImportTask(args: StartSingleWirelessDeviceImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSingleWirelessDeviceImportTaskCommandOutput) => void): void;
|
|
806
665
|
/**
|
|
807
|
-
* @
|
|
808
|
-
* <p>Start import task for provisioning Sidewalk devices in bulk using an S3 CSV file.</p>
|
|
666
|
+
* @see {@link StartWirelessDeviceImportTaskCommand}
|
|
809
667
|
*/
|
|
810
668
|
startWirelessDeviceImportTask(args: StartWirelessDeviceImportTaskCommandInput, options?: __HttpHandlerOptions): Promise<StartWirelessDeviceImportTaskCommandOutput>;
|
|
811
669
|
startWirelessDeviceImportTask(args: StartWirelessDeviceImportTaskCommandInput, cb: (err: any, data?: StartWirelessDeviceImportTaskCommandOutput) => void): void;
|
|
812
670
|
startWirelessDeviceImportTask(args: StartWirelessDeviceImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartWirelessDeviceImportTaskCommandOutput) => void): void;
|
|
813
671
|
/**
|
|
814
|
-
* @
|
|
815
|
-
* <p>Adds a tag to a resource.</p>
|
|
672
|
+
* @see {@link TagResourceCommand}
|
|
816
673
|
*/
|
|
817
674
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
818
675
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
819
676
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
820
677
|
/**
|
|
821
|
-
* @
|
|
822
|
-
* <p>Simulates a provisioned device by sending an uplink data payload of <code>Hello</code>.</p>
|
|
678
|
+
* @see {@link TestWirelessDeviceCommand}
|
|
823
679
|
*/
|
|
824
680
|
testWirelessDevice(args: TestWirelessDeviceCommandInput, options?: __HttpHandlerOptions): Promise<TestWirelessDeviceCommandOutput>;
|
|
825
681
|
testWirelessDevice(args: TestWirelessDeviceCommandInput, cb: (err: any, data?: TestWirelessDeviceCommandOutput) => void): void;
|
|
826
682
|
testWirelessDevice(args: TestWirelessDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TestWirelessDeviceCommandOutput) => void): void;
|
|
827
683
|
/**
|
|
828
|
-
* @
|
|
829
|
-
* <p>Removes one or more tags from a resource.</p>
|
|
684
|
+
* @see {@link UntagResourceCommand}
|
|
830
685
|
*/
|
|
831
686
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
832
687
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
833
688
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
834
689
|
/**
|
|
835
|
-
* @
|
|
836
|
-
* <p>Updates properties of a destination.</p>
|
|
690
|
+
* @see {@link UpdateDestinationCommand}
|
|
837
691
|
*/
|
|
838
692
|
updateDestination(args: UpdateDestinationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDestinationCommandOutput>;
|
|
839
693
|
updateDestination(args: UpdateDestinationCommandInput, cb: (err: any, data?: UpdateDestinationCommandOutput) => void): void;
|
|
840
694
|
updateDestination(args: UpdateDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDestinationCommandOutput) => void): void;
|
|
841
695
|
/**
|
|
842
|
-
* @
|
|
843
|
-
* <p>Update the event configuration based on resource types.</p>
|
|
696
|
+
* @see {@link UpdateEventConfigurationByResourceTypesCommand}
|
|
844
697
|
*/
|
|
845
698
|
updateEventConfigurationByResourceTypes(args: UpdateEventConfigurationByResourceTypesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEventConfigurationByResourceTypesCommandOutput>;
|
|
846
699
|
updateEventConfigurationByResourceTypes(args: UpdateEventConfigurationByResourceTypesCommandInput, cb: (err: any, data?: UpdateEventConfigurationByResourceTypesCommandOutput) => void): void;
|
|
847
700
|
updateEventConfigurationByResourceTypes(args: UpdateEventConfigurationByResourceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEventConfigurationByResourceTypesCommandOutput) => void): void;
|
|
848
701
|
/**
|
|
849
|
-
* @
|
|
850
|
-
* <p>Updates properties of a FUOTA task.</p>
|
|
702
|
+
* @see {@link UpdateFuotaTaskCommand}
|
|
851
703
|
*/
|
|
852
704
|
updateFuotaTask(args: UpdateFuotaTaskCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFuotaTaskCommandOutput>;
|
|
853
705
|
updateFuotaTask(args: UpdateFuotaTaskCommandInput, cb: (err: any, data?: UpdateFuotaTaskCommandOutput) => void): void;
|
|
854
706
|
updateFuotaTask(args: UpdateFuotaTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFuotaTaskCommandOutput) => void): void;
|
|
855
707
|
/**
|
|
856
|
-
* @
|
|
857
|
-
* <p>Set default log level, or log levels by resource types. This can be for wireless device log options or
|
|
858
|
-
* wireless gateways log options and is used to control the log messages that'll be displayed in CloudWatch.</p>
|
|
708
|
+
* @see {@link UpdateLogLevelsByResourceTypesCommand}
|
|
859
709
|
*/
|
|
860
710
|
updateLogLevelsByResourceTypes(args: UpdateLogLevelsByResourceTypesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLogLevelsByResourceTypesCommandOutput>;
|
|
861
711
|
updateLogLevelsByResourceTypes(args: UpdateLogLevelsByResourceTypesCommandInput, cb: (err: any, data?: UpdateLogLevelsByResourceTypesCommandOutput) => void): void;
|
|
862
712
|
updateLogLevelsByResourceTypes(args: UpdateLogLevelsByResourceTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLogLevelsByResourceTypesCommandOutput) => void): void;
|
|
863
713
|
/**
|
|
864
|
-
* @
|
|
865
|
-
* <p>Updates properties of a multicast group session.</p>
|
|
714
|
+
* @see {@link UpdateMulticastGroupCommand}
|
|
866
715
|
*/
|
|
867
716
|
updateMulticastGroup(args: UpdateMulticastGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMulticastGroupCommandOutput>;
|
|
868
717
|
updateMulticastGroup(args: UpdateMulticastGroupCommandInput, cb: (err: any, data?: UpdateMulticastGroupCommandOutput) => void): void;
|
|
869
718
|
updateMulticastGroup(args: UpdateMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMulticastGroupCommandOutput) => void): void;
|
|
870
719
|
/**
|
|
871
|
-
* @
|
|
872
|
-
* <p>Update network analyzer configuration.</p>
|
|
720
|
+
* @see {@link UpdateNetworkAnalyzerConfigurationCommand}
|
|
873
721
|
*/
|
|
874
722
|
updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNetworkAnalyzerConfigurationCommandOutput>;
|
|
875
723
|
updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, cb: (err: any, data?: UpdateNetworkAnalyzerConfigurationCommandOutput) => void): void;
|
|
876
724
|
updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNetworkAnalyzerConfigurationCommandOutput) => void): void;
|
|
877
725
|
/**
|
|
878
|
-
* @
|
|
879
|
-
* <p>Updates properties of a partner account.</p>
|
|
726
|
+
* @see {@link UpdatePartnerAccountCommand}
|
|
880
727
|
*/
|
|
881
728
|
updatePartnerAccount(args: UpdatePartnerAccountCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePartnerAccountCommandOutput>;
|
|
882
729
|
updatePartnerAccount(args: UpdatePartnerAccountCommandInput, cb: (err: any, data?: UpdatePartnerAccountCommandOutput) => void): void;
|
|
883
730
|
updatePartnerAccount(args: UpdatePartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePartnerAccountCommandOutput) => void): void;
|
|
884
731
|
/**
|
|
885
|
-
* @
|
|
886
|
-
* @deprecated
|
|
887
|
-
*
|
|
888
|
-
* <p>Update the position information of a resource.</p>
|
|
889
|
-
* <important>
|
|
890
|
-
* <p>This action is no longer supported. Calls to update the position information
|
|
891
|
-
* should use the <a href="https://docs.aws.amazon.com/iot-wireless/2020-11-22/apireference/API_UpdateResourcePosition.html">UpdateResourcePosition</a> API operation instead.</p>
|
|
892
|
-
* </important>
|
|
732
|
+
* @see {@link UpdatePositionCommand}
|
|
893
733
|
*/
|
|
894
734
|
updatePosition(args: UpdatePositionCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePositionCommandOutput>;
|
|
895
735
|
updatePosition(args: UpdatePositionCommandInput, cb: (err: any, data?: UpdatePositionCommandOutput) => void): void;
|
|
896
736
|
updatePosition(args: UpdatePositionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePositionCommandOutput) => void): void;
|
|
897
737
|
/**
|
|
898
|
-
* @
|
|
899
|
-
* <p>Update the event configuration for a particular resource identifier.</p>
|
|
738
|
+
* @see {@link UpdateResourceEventConfigurationCommand}
|
|
900
739
|
*/
|
|
901
740
|
updateResourceEventConfiguration(args: UpdateResourceEventConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResourceEventConfigurationCommandOutput>;
|
|
902
741
|
updateResourceEventConfiguration(args: UpdateResourceEventConfigurationCommandInput, cb: (err: any, data?: UpdateResourceEventConfigurationCommandOutput) => void): void;
|
|
903
742
|
updateResourceEventConfiguration(args: UpdateResourceEventConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResourceEventConfigurationCommandOutput) => void): void;
|
|
904
743
|
/**
|
|
905
|
-
* @
|
|
906
|
-
* <p>Update the position information of a given wireless device or a wireless gateway
|
|
907
|
-
* resource. The position coordinates are based on the <a href="https://gisgeography.com/wgs84-world-geodetic-system/"> World Geodetic System
|
|
908
|
-
* (WGS84)</a>.</p>
|
|
744
|
+
* @see {@link UpdateResourcePositionCommand}
|
|
909
745
|
*/
|
|
910
746
|
updateResourcePosition(args: UpdateResourcePositionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResourcePositionCommandOutput>;
|
|
911
747
|
updateResourcePosition(args: UpdateResourcePositionCommandInput, cb: (err: any, data?: UpdateResourcePositionCommandOutput) => void): void;
|
|
912
748
|
updateResourcePosition(args: UpdateResourcePositionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResourcePositionCommandOutput) => void): void;
|
|
913
749
|
/**
|
|
914
|
-
* @
|
|
915
|
-
* <p>Updates properties of a wireless device.</p>
|
|
750
|
+
* @see {@link UpdateWirelessDeviceCommand}
|
|
916
751
|
*/
|
|
917
752
|
updateWirelessDevice(args: UpdateWirelessDeviceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWirelessDeviceCommandOutput>;
|
|
918
753
|
updateWirelessDevice(args: UpdateWirelessDeviceCommandInput, cb: (err: any, data?: UpdateWirelessDeviceCommandOutput) => void): void;
|
|
919
754
|
updateWirelessDevice(args: UpdateWirelessDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWirelessDeviceCommandOutput) => void): void;
|
|
920
755
|
/**
|
|
921
|
-
* @
|
|
922
|
-
* <p>Update an import task to add more devices to the task.</p>
|
|
756
|
+
* @see {@link UpdateWirelessDeviceImportTaskCommand}
|
|
923
757
|
*/
|
|
924
758
|
updateWirelessDeviceImportTask(args: UpdateWirelessDeviceImportTaskCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWirelessDeviceImportTaskCommandOutput>;
|
|
925
759
|
updateWirelessDeviceImportTask(args: UpdateWirelessDeviceImportTaskCommandInput, cb: (err: any, data?: UpdateWirelessDeviceImportTaskCommandOutput) => void): void;
|
|
926
760
|
updateWirelessDeviceImportTask(args: UpdateWirelessDeviceImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWirelessDeviceImportTaskCommandOutput) => void): void;
|
|
927
761
|
/**
|
|
928
|
-
* @
|
|
929
|
-
* <p>Updates properties of a wireless gateway.</p>
|
|
762
|
+
* @see {@link UpdateWirelessGatewayCommand}
|
|
930
763
|
*/
|
|
931
764
|
updateWirelessGateway(args: UpdateWirelessGatewayCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWirelessGatewayCommandOutput>;
|
|
932
765
|
updateWirelessGateway(args: UpdateWirelessGatewayCommandInput, cb: (err: any, data?: UpdateWirelessGatewayCommandOutput) => void): void;
|
|
933
766
|
updateWirelessGateway(args: UpdateWirelessGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWirelessGatewayCommandOutput) => void): void;
|
|
934
767
|
}
|
|
768
|
+
/**
|
|
769
|
+
* @public
|
|
770
|
+
* <p>AWS IoT Wireless provides bi-directional communication between internet-connected wireless
|
|
771
|
+
* devices and the AWS Cloud. To onboard both LoRaWAN and Sidewalk devices to AWS IoT, use the
|
|
772
|
+
* IoT Wireless API. These wireless devices use the Low Power Wide Area Networking (LPWAN)
|
|
773
|
+
* communication protocol to communicate with AWS IoT.</p>
|
|
774
|
+
* <p>Using the API, you can perform create, read, update, and delete operations for your wireless
|
|
775
|
+
* devices, gateways, destinations, and profiles. After onboarding your devices, you
|
|
776
|
+
* can use the API operations to set log levels and monitor your devices with CloudWatch.</p>
|
|
777
|
+
* <p>You can also use the API operations to create multicast groups and schedule a multicast session for
|
|
778
|
+
* sending a downlink message to devices in the group. By using Firmware Updates Over-The-Air
|
|
779
|
+
* (FUOTA) API operations, you can create a FUOTA task and schedule a session to update the firmware
|
|
780
|
+
* of individual devices or an entire group of devices in a multicast group.</p>
|
|
781
|
+
*/
|
|
782
|
+
export declare class IoTWireless extends IoTWirelessClient implements IoTWireless {
|
|
783
|
+
}
|