@aws-sdk/client-iot-wireless 3.686.0 → 3.691.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.
@@ -43,123 +43,123 @@ import {
43
43
  WirelessGatewayLogOption,
44
44
  } from "./models_0";
45
45
  export interface ListPositionConfigurationsRequest {
46
- ResourceType?: PositionResourceType;
47
- MaxResults?: number;
48
- NextToken?: string;
46
+ ResourceType?: PositionResourceType | undefined;
47
+ MaxResults?: number | undefined;
48
+ NextToken?: string | undefined;
49
49
  }
50
50
  export interface PositionConfigurationItem {
51
- ResourceIdentifier?: string;
52
- ResourceType?: PositionResourceType;
53
- Solvers?: PositionSolverDetails;
54
- Destination?: string;
51
+ ResourceIdentifier?: string | undefined;
52
+ ResourceType?: PositionResourceType | undefined;
53
+ Solvers?: PositionSolverDetails | undefined;
54
+ Destination?: string | undefined;
55
55
  }
56
56
  export interface ListPositionConfigurationsResponse {
57
- PositionConfigurationList?: PositionConfigurationItem[];
58
- NextToken?: string;
57
+ PositionConfigurationList?: PositionConfigurationItem[] | undefined;
58
+ NextToken?: string | undefined;
59
59
  }
60
60
  export interface ListQueuedMessagesRequest {
61
61
  Id: string | undefined;
62
- NextToken?: string;
63
- MaxResults?: number;
64
- WirelessDeviceType?: WirelessDeviceType;
62
+ NextToken?: string | undefined;
63
+ MaxResults?: number | undefined;
64
+ WirelessDeviceType?: WirelessDeviceType | undefined;
65
65
  }
66
66
  export interface ListQueuedMessagesResponse {
67
- NextToken?: string;
68
- DownlinkQueueMessagesList?: DownlinkQueueMessage[];
67
+ NextToken?: string | undefined;
68
+ DownlinkQueueMessagesList?: DownlinkQueueMessage[] | undefined;
69
69
  }
70
70
  export interface ListServiceProfilesRequest {
71
- NextToken?: string;
72
- MaxResults?: number;
71
+ NextToken?: string | undefined;
72
+ MaxResults?: number | undefined;
73
73
  }
74
74
  export interface ServiceProfile {
75
- Arn?: string;
76
- Name?: string;
77
- Id?: string;
75
+ Arn?: string | undefined;
76
+ Name?: string | undefined;
77
+ Id?: string | undefined;
78
78
  }
79
79
  export interface ListServiceProfilesResponse {
80
- NextToken?: string;
81
- ServiceProfileList?: ServiceProfile[];
80
+ NextToken?: string | undefined;
81
+ ServiceProfileList?: ServiceProfile[] | undefined;
82
82
  }
83
83
  export interface ListTagsForResourceRequest {
84
84
  ResourceArn: string | undefined;
85
85
  }
86
86
  export interface ListTagsForResourceResponse {
87
- Tags?: Tag[];
87
+ Tags?: Tag[] | undefined;
88
88
  }
89
89
  export interface ListWirelessDeviceImportTasksRequest {
90
- MaxResults?: number;
91
- NextToken?: string;
90
+ MaxResults?: number | undefined;
91
+ NextToken?: string | undefined;
92
92
  }
93
93
  export interface WirelessDeviceImportTask {
94
- Id?: string;
95
- Arn?: string;
96
- DestinationName?: string;
97
- Sidewalk?: SidewalkGetStartImportInfo;
98
- CreationTime?: Date;
99
- Status?: ImportTaskStatus;
100
- StatusReason?: string;
101
- InitializedImportedDeviceCount?: number;
102
- PendingImportedDeviceCount?: number;
103
- OnboardedImportedDeviceCount?: number;
104
- FailedImportedDeviceCount?: number;
94
+ Id?: string | undefined;
95
+ Arn?: string | undefined;
96
+ DestinationName?: string | undefined;
97
+ Sidewalk?: SidewalkGetStartImportInfo | undefined;
98
+ CreationTime?: Date | undefined;
99
+ Status?: ImportTaskStatus | undefined;
100
+ StatusReason?: string | undefined;
101
+ InitializedImportedDeviceCount?: number | undefined;
102
+ PendingImportedDeviceCount?: number | undefined;
103
+ OnboardedImportedDeviceCount?: number | undefined;
104
+ FailedImportedDeviceCount?: number | undefined;
105
105
  }
106
106
  export interface ListWirelessDeviceImportTasksResponse {
107
- NextToken?: string;
108
- WirelessDeviceImportTaskList?: WirelessDeviceImportTask[];
107
+ NextToken?: string | undefined;
108
+ WirelessDeviceImportTaskList?: WirelessDeviceImportTask[] | undefined;
109
109
  }
110
110
  export interface ListWirelessDevicesRequest {
111
- MaxResults?: number;
112
- NextToken?: string;
113
- DestinationName?: string;
114
- DeviceProfileId?: string;
115
- ServiceProfileId?: string;
116
- WirelessDeviceType?: WirelessDeviceType;
117
- FuotaTaskId?: string;
118
- MulticastGroupId?: string;
111
+ MaxResults?: number | undefined;
112
+ NextToken?: string | undefined;
113
+ DestinationName?: string | undefined;
114
+ DeviceProfileId?: string | undefined;
115
+ ServiceProfileId?: string | undefined;
116
+ WirelessDeviceType?: WirelessDeviceType | undefined;
117
+ FuotaTaskId?: string | undefined;
118
+ MulticastGroupId?: string | undefined;
119
119
  }
120
120
  export interface LoRaWANListDevice {
121
- DevEui?: string;
121
+ DevEui?: string | undefined;
122
122
  }
123
123
  export interface SidewalkListDevice {
124
- AmazonId?: string;
125
- SidewalkId?: string;
126
- SidewalkManufacturingSn?: string;
127
- DeviceCertificates?: CertificateList[];
128
- DeviceProfileId?: string;
129
- Status?: WirelessDeviceSidewalkStatus;
124
+ AmazonId?: string | undefined;
125
+ SidewalkId?: string | undefined;
126
+ SidewalkManufacturingSn?: string | undefined;
127
+ DeviceCertificates?: CertificateList[] | undefined;
128
+ DeviceProfileId?: string | undefined;
129
+ Status?: WirelessDeviceSidewalkStatus | undefined;
130
130
  }
131
131
  export interface WirelessDeviceStatistics {
132
- Arn?: string;
133
- Id?: string;
134
- Type?: WirelessDeviceType;
135
- Name?: string;
136
- DestinationName?: string;
137
- LastUplinkReceivedAt?: string;
138
- LoRaWAN?: LoRaWANListDevice;
139
- Sidewalk?: SidewalkListDevice;
140
- FuotaDeviceStatus?: FuotaDeviceStatus;
141
- MulticastDeviceStatus?: string;
142
- McGroupId?: number;
132
+ Arn?: string | undefined;
133
+ Id?: string | undefined;
134
+ Type?: WirelessDeviceType | undefined;
135
+ Name?: string | undefined;
136
+ DestinationName?: string | undefined;
137
+ LastUplinkReceivedAt?: string | undefined;
138
+ LoRaWAN?: LoRaWANListDevice | undefined;
139
+ Sidewalk?: SidewalkListDevice | undefined;
140
+ FuotaDeviceStatus?: FuotaDeviceStatus | undefined;
141
+ MulticastDeviceStatus?: string | undefined;
142
+ McGroupId?: number | undefined;
143
143
  }
144
144
  export interface ListWirelessDevicesResponse {
145
- NextToken?: string;
146
- WirelessDeviceList?: WirelessDeviceStatistics[];
145
+ NextToken?: string | undefined;
146
+ WirelessDeviceList?: WirelessDeviceStatistics[] | undefined;
147
147
  }
148
148
  export interface ListWirelessGatewaysRequest {
149
- NextToken?: string;
150
- MaxResults?: number;
149
+ NextToken?: string | undefined;
150
+ MaxResults?: number | undefined;
151
151
  }
152
152
  export interface WirelessGatewayStatistics {
153
- Arn?: string;
154
- Id?: string;
155
- Name?: string;
156
- Description?: string;
157
- LoRaWAN?: LoRaWANGateway;
158
- LastUplinkReceivedAt?: string;
153
+ Arn?: string | undefined;
154
+ Id?: string | undefined;
155
+ Name?: string | undefined;
156
+ Description?: string | undefined;
157
+ LoRaWAN?: LoRaWANGateway | undefined;
158
+ LastUplinkReceivedAt?: string | undefined;
159
159
  }
160
160
  export interface ListWirelessGatewaysResponse {
161
- NextToken?: string;
162
- WirelessGatewayList?: WirelessGatewayStatistics[];
161
+ NextToken?: string | undefined;
162
+ WirelessGatewayList?: WirelessGatewayStatistics[] | undefined;
163
163
  }
164
164
  export declare const WirelessGatewayTaskDefinitionType: {
165
165
  readonly UPDATE: "UPDATE";
@@ -167,35 +167,35 @@ export declare const WirelessGatewayTaskDefinitionType: {
167
167
  export type WirelessGatewayTaskDefinitionType =
168
168
  (typeof WirelessGatewayTaskDefinitionType)[keyof typeof WirelessGatewayTaskDefinitionType];
169
169
  export interface ListWirelessGatewayTaskDefinitionsRequest {
170
- MaxResults?: number;
171
- NextToken?: string;
172
- TaskDefinitionType?: WirelessGatewayTaskDefinitionType;
170
+ MaxResults?: number | undefined;
171
+ NextToken?: string | undefined;
172
+ TaskDefinitionType?: WirelessGatewayTaskDefinitionType | undefined;
173
173
  }
174
174
  export interface LoRaWANUpdateGatewayTaskEntry {
175
- CurrentVersion?: LoRaWANGatewayVersion;
176
- UpdateVersion?: LoRaWANGatewayVersion;
175
+ CurrentVersion?: LoRaWANGatewayVersion | undefined;
176
+ UpdateVersion?: LoRaWANGatewayVersion | undefined;
177
177
  }
178
178
  export interface UpdateWirelessGatewayTaskEntry {
179
- Id?: string;
180
- LoRaWAN?: LoRaWANUpdateGatewayTaskEntry;
181
- Arn?: string;
179
+ Id?: string | undefined;
180
+ LoRaWAN?: LoRaWANUpdateGatewayTaskEntry | undefined;
181
+ Arn?: string | undefined;
182
182
  }
183
183
  export interface ListWirelessGatewayTaskDefinitionsResponse {
184
- NextToken?: string;
185
- TaskDefinitions?: UpdateWirelessGatewayTaskEntry[];
184
+ NextToken?: string | undefined;
185
+ TaskDefinitions?: UpdateWirelessGatewayTaskEntry[] | undefined;
186
186
  }
187
187
  export interface SemtechGnssConfiguration {
188
188
  Status: PositionConfigurationStatus | undefined;
189
189
  Fec: PositionConfigurationFec | undefined;
190
190
  }
191
191
  export interface PositionSolverConfigurations {
192
- SemtechGnss?: SemtechGnssConfiguration;
192
+ SemtechGnss?: SemtechGnssConfiguration | undefined;
193
193
  }
194
194
  export interface PutPositionConfigurationRequest {
195
195
  ResourceIdentifier: string | undefined;
196
196
  ResourceType: PositionResourceType | undefined;
197
- Solvers?: PositionSolverConfigurations;
198
- Destination?: string;
197
+ Solvers?: PositionSolverConfigurations | undefined;
198
+ Destination?: string | undefined;
199
199
  }
200
200
  export interface PutPositionConfigurationResponse {}
201
201
  export interface PutResourceLogLevelRequest {
@@ -212,10 +212,10 @@ export interface ResetResourceLogLevelRequest {
212
212
  }
213
213
  export interface ResetResourceLogLevelResponse {}
214
214
  export interface LoRaWANMulticastMetadata {
215
- FPort?: number;
215
+ FPort?: number | undefined;
216
216
  }
217
217
  export interface MulticastWirelessMetadata {
218
- LoRaWAN?: LoRaWANMulticastMetadata;
218
+ LoRaWAN?: LoRaWANMulticastMetadata | undefined;
219
219
  }
220
220
  export interface SendDataToMulticastGroupRequest {
221
221
  Id: string | undefined;
@@ -223,7 +223,7 @@ export interface SendDataToMulticastGroupRequest {
223
223
  WirelessMetadata: MulticastWirelessMetadata | undefined;
224
224
  }
225
225
  export interface SendDataToMulticastGroupResponse {
226
- MessageId?: string;
226
+ MessageId?: string | undefined;
227
227
  }
228
228
  export declare const MessageType: {
229
229
  readonly CUSTOM_COMMAND_ID_GET: "CUSTOM_COMMAND_ID_GET";
@@ -233,41 +233,41 @@ export declare const MessageType: {
233
233
  };
234
234
  export type MessageType = (typeof MessageType)[keyof typeof MessageType];
235
235
  export interface SidewalkSendDataToDevice {
236
- Seq?: number;
237
- MessageType?: MessageType;
238
- AckModeRetryDurationSecs?: number;
236
+ Seq?: number | undefined;
237
+ MessageType?: MessageType | undefined;
238
+ AckModeRetryDurationSecs?: number | undefined;
239
239
  }
240
240
  export interface WirelessMetadata {
241
- LoRaWAN?: LoRaWANSendDataToDevice;
242
- Sidewalk?: SidewalkSendDataToDevice;
241
+ LoRaWAN?: LoRaWANSendDataToDevice | undefined;
242
+ Sidewalk?: SidewalkSendDataToDevice | undefined;
243
243
  }
244
244
  export interface SendDataToWirelessDeviceRequest {
245
245
  Id: string | undefined;
246
246
  TransmitMode: number | undefined;
247
247
  PayloadData: string | undefined;
248
- WirelessMetadata?: WirelessMetadata;
248
+ WirelessMetadata?: WirelessMetadata | undefined;
249
249
  }
250
250
  export interface SendDataToWirelessDeviceResponse {
251
- MessageId?: string;
251
+ MessageId?: string | undefined;
252
252
  }
253
253
  export interface StartBulkAssociateWirelessDeviceWithMulticastGroupRequest {
254
254
  Id: string | undefined;
255
- QueryString?: string;
256
- Tags?: Tag[];
255
+ QueryString?: string | undefined;
256
+ Tags?: Tag[] | undefined;
257
257
  }
258
258
  export interface StartBulkAssociateWirelessDeviceWithMulticastGroupResponse {}
259
259
  export interface StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest {
260
260
  Id: string | undefined;
261
- QueryString?: string;
262
- Tags?: Tag[];
261
+ QueryString?: string | undefined;
262
+ Tags?: Tag[] | undefined;
263
263
  }
264
264
  export interface StartBulkDisassociateWirelessDeviceFromMulticastGroupResponse {}
265
265
  export interface LoRaWANStartFuotaTask {
266
- StartTime?: Date;
266
+ StartTime?: Date | undefined;
267
267
  }
268
268
  export interface StartFuotaTaskRequest {
269
269
  Id: string | undefined;
270
- LoRaWAN?: LoRaWANStartFuotaTask;
270
+ LoRaWAN?: LoRaWANStartFuotaTask | undefined;
271
271
  }
272
272
  export interface StartFuotaTaskResponse {}
273
273
  export interface StartMulticastGroupSessionRequest {
@@ -276,32 +276,32 @@ export interface StartMulticastGroupSessionRequest {
276
276
  }
277
277
  export interface StartMulticastGroupSessionResponse {}
278
278
  export interface SidewalkSingleStartImportInfo {
279
- SidewalkManufacturingSn?: string;
279
+ SidewalkManufacturingSn?: string | undefined;
280
280
  }
281
281
  export interface StartSingleWirelessDeviceImportTaskRequest {
282
282
  DestinationName: string | undefined;
283
- ClientRequestToken?: string;
284
- DeviceName?: string;
285
- Tags?: Tag[];
283
+ ClientRequestToken?: string | undefined;
284
+ DeviceName?: string | undefined;
285
+ Tags?: Tag[] | undefined;
286
286
  Sidewalk: SidewalkSingleStartImportInfo | undefined;
287
287
  }
288
288
  export interface StartSingleWirelessDeviceImportTaskResponse {
289
- Id?: string;
290
- Arn?: string;
289
+ Id?: string | undefined;
290
+ Arn?: string | undefined;
291
291
  }
292
292
  export interface SidewalkStartImportInfo {
293
- DeviceCreationFile?: string;
294
- Role?: string;
293
+ DeviceCreationFile?: string | undefined;
294
+ Role?: string | undefined;
295
295
  }
296
296
  export interface StartWirelessDeviceImportTaskRequest {
297
297
  DestinationName: string | undefined;
298
- ClientRequestToken?: string;
299
- Tags?: Tag[];
298
+ ClientRequestToken?: string | undefined;
299
+ Tags?: Tag[] | undefined;
300
300
  Sidewalk: SidewalkStartImportInfo | undefined;
301
301
  }
302
302
  export interface StartWirelessDeviceImportTaskResponse {
303
- Id?: string;
304
- Arn?: string;
303
+ Id?: string | undefined;
304
+ Arn?: string | undefined;
305
305
  }
306
306
  export interface TagResourceRequest {
307
307
  ResourceArn: string | undefined;
@@ -311,8 +311,8 @@ export interface TagResourceResponse {}
311
311
  export declare class TooManyTagsException extends __BaseException {
312
312
  readonly name: "TooManyTagsException";
313
313
  readonly $fault: "client";
314
- Message?: string;
315
- ResourceName?: string;
314
+ Message?: string | undefined;
315
+ ResourceName?: string | undefined;
316
316
  constructor(
317
317
  opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
318
318
  );
@@ -321,7 +321,7 @@ export interface TestWirelessDeviceRequest {
321
321
  Id: string | undefined;
322
322
  }
323
323
  export interface TestWirelessDeviceResponse {
324
- Result?: string;
324
+ Result?: string | undefined;
325
325
  }
326
326
  export interface UntagResourceRequest {
327
327
  ResourceArn: string | undefined;
@@ -330,63 +330,67 @@ export interface UntagResourceRequest {
330
330
  export interface UntagResourceResponse {}
331
331
  export interface UpdateDestinationRequest {
332
332
  Name: string | undefined;
333
- ExpressionType?: ExpressionType;
334
- Expression?: string;
335
- Description?: string;
336
- RoleArn?: string;
333
+ ExpressionType?: ExpressionType | undefined;
334
+ Expression?: string | undefined;
335
+ Description?: string | undefined;
336
+ RoleArn?: string | undefined;
337
337
  }
338
338
  export interface UpdateDestinationResponse {}
339
339
  export interface UpdateEventConfigurationByResourceTypesRequest {
340
- DeviceRegistrationState?: DeviceRegistrationStateResourceTypeEventConfiguration;
341
- Proximity?: ProximityResourceTypeEventConfiguration;
342
- Join?: JoinResourceTypeEventConfiguration;
343
- ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
344
- MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration;
340
+ DeviceRegistrationState?:
341
+ | DeviceRegistrationStateResourceTypeEventConfiguration
342
+ | undefined;
343
+ Proximity?: ProximityResourceTypeEventConfiguration | undefined;
344
+ Join?: JoinResourceTypeEventConfiguration | undefined;
345
+ ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration | undefined;
346
+ MessageDeliveryStatus?:
347
+ | MessageDeliveryStatusResourceTypeEventConfiguration
348
+ | undefined;
345
349
  }
346
350
  export interface UpdateEventConfigurationByResourceTypesResponse {}
347
351
  export interface UpdateFuotaTaskRequest {
348
352
  Id: string | undefined;
349
- Name?: string;
350
- Description?: string;
351
- LoRaWAN?: LoRaWANFuotaTask;
352
- FirmwareUpdateImage?: string;
353
- FirmwareUpdateRole?: string;
354
- RedundancyPercent?: number;
355
- FragmentSizeBytes?: number;
356
- FragmentIntervalMS?: number;
353
+ Name?: string | undefined;
354
+ Description?: string | undefined;
355
+ LoRaWAN?: LoRaWANFuotaTask | undefined;
356
+ FirmwareUpdateImage?: string | undefined;
357
+ FirmwareUpdateRole?: string | undefined;
358
+ RedundancyPercent?: number | undefined;
359
+ FragmentSizeBytes?: number | undefined;
360
+ FragmentIntervalMS?: number | undefined;
357
361
  }
358
362
  export interface UpdateFuotaTaskResponse {}
359
363
  export interface UpdateLogLevelsByResourceTypesRequest {
360
- DefaultLogLevel?: LogLevel;
361
- WirelessDeviceLogOptions?: WirelessDeviceLogOption[];
362
- WirelessGatewayLogOptions?: WirelessGatewayLogOption[];
364
+ DefaultLogLevel?: LogLevel | undefined;
365
+ WirelessDeviceLogOptions?: WirelessDeviceLogOption[] | undefined;
366
+ WirelessGatewayLogOptions?: WirelessGatewayLogOption[] | undefined;
363
367
  }
364
368
  export interface UpdateLogLevelsByResourceTypesResponse {}
365
369
  export interface UpdateMetricConfigurationRequest {
366
- SummaryMetric?: SummaryMetricConfiguration;
370
+ SummaryMetric?: SummaryMetricConfiguration | undefined;
367
371
  }
368
372
  export interface UpdateMetricConfigurationResponse {}
369
373
  export interface UpdateMulticastGroupRequest {
370
374
  Id: string | undefined;
371
- Name?: string;
372
- Description?: string;
373
- LoRaWAN?: LoRaWANMulticast;
375
+ Name?: string | undefined;
376
+ Description?: string | undefined;
377
+ LoRaWAN?: LoRaWANMulticast | undefined;
374
378
  }
375
379
  export interface UpdateMulticastGroupResponse {}
376
380
  export interface UpdateNetworkAnalyzerConfigurationRequest {
377
381
  ConfigurationName: string | undefined;
378
- TraceContent?: TraceContent;
379
- WirelessDevicesToAdd?: string[];
380
- WirelessDevicesToRemove?: string[];
381
- WirelessGatewaysToAdd?: string[];
382
- WirelessGatewaysToRemove?: string[];
383
- Description?: string;
384
- MulticastGroupsToAdd?: string[];
385
- MulticastGroupsToRemove?: string[];
382
+ TraceContent?: TraceContent | undefined;
383
+ WirelessDevicesToAdd?: string[] | undefined;
384
+ WirelessDevicesToRemove?: string[] | undefined;
385
+ WirelessGatewaysToAdd?: string[] | undefined;
386
+ WirelessGatewaysToRemove?: string[] | undefined;
387
+ Description?: string | undefined;
388
+ MulticastGroupsToAdd?: string[] | undefined;
389
+ MulticastGroupsToRemove?: string[] | undefined;
386
390
  }
387
391
  export interface UpdateNetworkAnalyzerConfigurationResponse {}
388
392
  export interface SidewalkUpdateAccount {
389
- AppServerPrivateKey?: string;
393
+ AppServerPrivateKey?: string | undefined;
390
394
  }
391
395
  export interface UpdatePartnerAccountRequest {
392
396
  Sidewalk: SidewalkUpdateAccount | undefined;
@@ -403,48 +407,50 @@ export interface UpdatePositionResponse {}
403
407
  export interface UpdateResourceEventConfigurationRequest {
404
408
  Identifier: string | undefined;
405
409
  IdentifierType: IdentifierType | undefined;
406
- PartnerType?: EventNotificationPartnerType;
407
- DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
408
- Proximity?: ProximityEventConfiguration;
409
- Join?: JoinEventConfiguration;
410
- ConnectionStatus?: ConnectionStatusEventConfiguration;
411
- MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
410
+ PartnerType?: EventNotificationPartnerType | undefined;
411
+ DeviceRegistrationState?:
412
+ | DeviceRegistrationStateEventConfiguration
413
+ | undefined;
414
+ Proximity?: ProximityEventConfiguration | undefined;
415
+ Join?: JoinEventConfiguration | undefined;
416
+ ConnectionStatus?: ConnectionStatusEventConfiguration | undefined;
417
+ MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration | undefined;
412
418
  }
413
419
  export interface UpdateResourceEventConfigurationResponse {}
414
420
  export interface UpdateResourcePositionRequest {
415
421
  ResourceIdentifier: string | undefined;
416
422
  ResourceType: PositionResourceType | undefined;
417
- GeoJsonPayload?: Uint8Array;
423
+ GeoJsonPayload?: Uint8Array | undefined;
418
424
  }
419
425
  export interface UpdateResourcePositionResponse {}
420
426
  export interface UpdateAbpV1_0_x {
421
- FCntStart?: number;
427
+ FCntStart?: number | undefined;
422
428
  }
423
429
  export interface UpdateAbpV1_1 {
424
- FCntStart?: number;
430
+ FCntStart?: number | undefined;
425
431
  }
426
432
  export interface UpdateFPorts {
427
- Positioning?: Positioning;
428
- Applications?: ApplicationConfig[];
433
+ Positioning?: Positioning | undefined;
434
+ Applications?: ApplicationConfig[] | undefined;
429
435
  }
430
436
  export interface LoRaWANUpdateDevice {
431
- DeviceProfileId?: string;
432
- ServiceProfileId?: string;
433
- AbpV1_1?: UpdateAbpV1_1;
434
- AbpV1_0_x?: UpdateAbpV1_0_x;
435
- FPorts?: UpdateFPorts;
437
+ DeviceProfileId?: string | undefined;
438
+ ServiceProfileId?: string | undefined;
439
+ AbpV1_1?: UpdateAbpV1_1 | undefined;
440
+ AbpV1_0_x?: UpdateAbpV1_0_x | undefined;
441
+ FPorts?: UpdateFPorts | undefined;
436
442
  }
437
443
  export interface UpdateWirelessDeviceRequest {
438
444
  Id: string | undefined;
439
- DestinationName?: string;
440
- Name?: string;
441
- Description?: string;
442
- LoRaWAN?: LoRaWANUpdateDevice;
443
- Positioning?: PositioningConfigStatus;
445
+ DestinationName?: string | undefined;
446
+ Name?: string | undefined;
447
+ Description?: string | undefined;
448
+ LoRaWAN?: LoRaWANUpdateDevice | undefined;
449
+ Positioning?: PositioningConfigStatus | undefined;
444
450
  }
445
451
  export interface UpdateWirelessDeviceResponse {}
446
452
  export interface SidewalkUpdateImportInfo {
447
- DeviceCreationFile?: string;
453
+ DeviceCreationFile?: string | undefined;
448
454
  }
449
455
  export interface UpdateWirelessDeviceImportTaskRequest {
450
456
  Id: string | undefined;
@@ -453,11 +459,11 @@ export interface UpdateWirelessDeviceImportTaskRequest {
453
459
  export interface UpdateWirelessDeviceImportTaskResponse {}
454
460
  export interface UpdateWirelessGatewayRequest {
455
461
  Id: string | undefined;
456
- Name?: string;
457
- Description?: string;
458
- JoinEuiFilters?: string[][];
459
- NetIdFilters?: string[];
460
- MaxEirp?: number;
462
+ Name?: string | undefined;
463
+ Description?: string | undefined;
464
+ JoinEuiFilters?: string[][] | undefined;
465
+ NetIdFilters?: string[] | undefined;
466
+ MaxEirp?: number | undefined;
461
467
  }
462
468
  export interface UpdateWirelessGatewayResponse {}
463
469
  export declare const SidewalkUpdateAccountFilterSensitiveLog: (
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iot-wireless",
3
3
  "description": "AWS SDK for JavaScript Iot Wireless Client for Node.js, Browser and React Native",
4
- "version": "3.686.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-iot-wireless",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",