@aws-sdk/client-iot-wireless 3.687.0 → 3.692.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/dist-cjs/index.js +24 -7
  2. package/dist-es/commands/ListPartnerAccountsCommand.js +1 -1
  3. package/dist-es/models/models_0.js +8 -6
  4. package/dist-es/models/models_1.js +7 -0
  5. package/dist-es/protocols/Aws_restJson1.js +5 -0
  6. package/dist-types/commands/CreateFuotaTaskCommand.d.ts +1 -0
  7. package/dist-types/commands/CreateMulticastGroupCommand.d.ts +6 -0
  8. package/dist-types/commands/GetFuotaTaskCommand.d.ts +1 -0
  9. package/dist-types/commands/GetLogLevelsByResourceTypesCommand.d.ts +12 -0
  10. package/dist-types/commands/GetMulticastGroupCommand.d.ts +7 -1
  11. package/dist-types/commands/GetResourceEventConfigurationCommand.d.ts +1 -1
  12. package/dist-types/commands/GetResourceLogLevelCommand.d.ts +1 -1
  13. package/dist-types/commands/ListEventConfigurationsCommand.d.ts +2 -2
  14. package/dist-types/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +1 -1
  15. package/dist-types/commands/ListPartnerAccountsCommand.d.ts +1 -1
  16. package/dist-types/commands/ResetAllResourceLogLevelsCommand.d.ts +2 -2
  17. package/dist-types/commands/ResetResourceLogLevelCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateFuotaTaskCommand.d.ts +1 -0
  19. package/dist-types/commands/UpdateLogLevelsByResourceTypesCommand.d.ts +12 -0
  20. package/dist-types/commands/UpdateMulticastGroupCommand.d.ts +6 -0
  21. package/dist-types/commands/UpdateResourceEventConfigurationCommand.d.ts +1 -1
  22. package/dist-types/models/models_0.d.ts +665 -631
  23. package/dist-types/models/models_1.d.ts +279 -184
  24. package/dist-types/ts3.4/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/commands/ListPartnerAccountsCommand.d.ts +1 -1
  26. package/dist-types/ts3.4/models/models_0.d.ts +582 -568
  27. package/dist-types/ts3.4/models/models_1.d.ts +214 -179
  28. package/package.json +36 -36
@@ -1,36 +1,36 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { IoTWirelessServiceException as __BaseException } from "./IoTWirelessServiceException";
3
3
  export interface SessionKeysAbpV1_0_x {
4
- NwkSKey?: string;
5
- AppSKey?: string;
4
+ NwkSKey?: string | undefined;
5
+ AppSKey?: string | undefined;
6
6
  }
7
7
  export interface AbpV1_0_x {
8
- DevAddr?: string;
9
- SessionKeys?: SessionKeysAbpV1_0_x;
10
- FCntStart?: number;
8
+ DevAddr?: string | undefined;
9
+ SessionKeys?: SessionKeysAbpV1_0_x | undefined;
10
+ FCntStart?: number | undefined;
11
11
  }
12
12
  export interface SessionKeysAbpV1_1 {
13
- FNwkSIntKey?: string;
14
- SNwkSIntKey?: string;
15
- NwkSEncKey?: string;
16
- AppSKey?: string;
13
+ FNwkSIntKey?: string | undefined;
14
+ SNwkSIntKey?: string | undefined;
15
+ NwkSEncKey?: string | undefined;
16
+ AppSKey?: string | undefined;
17
17
  }
18
18
  export interface AbpV1_1 {
19
- DevAddr?: string;
20
- SessionKeys?: SessionKeysAbpV1_1;
21
- FCntStart?: number;
19
+ DevAddr?: string | undefined;
20
+ SessionKeys?: SessionKeysAbpV1_1 | undefined;
21
+ FCntStart?: number | undefined;
22
22
  }
23
23
  export declare class AccessDeniedException extends __BaseException {
24
24
  readonly name: "AccessDeniedException";
25
25
  readonly $fault: "client";
26
- Message?: string;
26
+ Message?: string | undefined;
27
27
  constructor(
28
28
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
29
29
  );
30
30
  }
31
31
  export interface Accuracy {
32
- HorizontalAccuracy?: number;
33
- VerticalAccuracy?: number;
32
+ HorizontalAccuracy?: number | undefined;
33
+ VerticalAccuracy?: number | undefined;
34
34
  }
35
35
  export declare const AggregationPeriod: {
36
36
  readonly OneDay: "OneDay";
@@ -45,13 +45,13 @@ export declare const ApplicationConfigType: {
45
45
  export type ApplicationConfigType =
46
46
  (typeof ApplicationConfigType)[keyof typeof ApplicationConfigType];
47
47
  export interface ApplicationConfig {
48
- FPort?: number;
49
- Type?: ApplicationConfigType;
50
- DestinationName?: string;
48
+ FPort?: number | undefined;
49
+ Type?: ApplicationConfigType | undefined;
50
+ DestinationName?: string | undefined;
51
51
  }
52
52
  export interface SidewalkAccountInfo {
53
- AmazonId?: string;
54
- AppServerPrivateKey?: string;
53
+ AmazonId?: string | undefined;
54
+ AppServerPrivateKey?: string | undefined;
55
55
  }
56
56
  export interface Tag {
57
57
  Key: string | undefined;
@@ -59,25 +59,25 @@ export interface Tag {
59
59
  }
60
60
  export interface AssociateAwsAccountWithPartnerAccountRequest {
61
61
  Sidewalk: SidewalkAccountInfo | undefined;
62
- ClientRequestToken?: string;
63
- Tags?: Tag[];
62
+ ClientRequestToken?: string | undefined;
63
+ Tags?: Tag[] | undefined;
64
64
  }
65
65
  export interface AssociateAwsAccountWithPartnerAccountResponse {
66
- Sidewalk?: SidewalkAccountInfo;
67
- Arn?: string;
66
+ Sidewalk?: SidewalkAccountInfo | undefined;
67
+ Arn?: string | undefined;
68
68
  }
69
69
  export declare class ConflictException extends __BaseException {
70
70
  readonly name: "ConflictException";
71
71
  readonly $fault: "client";
72
- Message?: string;
73
- ResourceId?: string;
74
- ResourceType?: string;
72
+ Message?: string | undefined;
73
+ ResourceId?: string | undefined;
74
+ ResourceType?: string | undefined;
75
75
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
76
76
  }
77
77
  export declare class InternalServerException extends __BaseException {
78
78
  readonly name: "InternalServerException";
79
79
  readonly $fault: "server";
80
- Message?: string;
80
+ Message?: string | undefined;
81
81
  constructor(
82
82
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
83
83
  );
@@ -85,9 +85,9 @@ export declare class InternalServerException extends __BaseException {
85
85
  export declare class ResourceNotFoundException extends __BaseException {
86
86
  readonly name: "ResourceNotFoundException";
87
87
  readonly $fault: "client";
88
- Message?: string;
89
- ResourceId?: string;
90
- ResourceType?: string;
88
+ Message?: string | undefined;
89
+ ResourceId?: string | undefined;
90
+ ResourceType?: string | undefined;
91
91
  constructor(
92
92
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
93
93
  );
@@ -95,7 +95,7 @@ export declare class ResourceNotFoundException extends __BaseException {
95
95
  export declare class ThrottlingException extends __BaseException {
96
96
  readonly name: "ThrottlingException";
97
97
  readonly $fault: "client";
98
- Message?: string;
98
+ Message?: string | undefined;
99
99
  constructor(
100
100
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
101
101
  );
@@ -103,7 +103,7 @@ export declare class ThrottlingException extends __BaseException {
103
103
  export declare class ValidationException extends __BaseException {
104
104
  readonly name: "ValidationException";
105
105
  readonly $fault: "client";
106
- Message?: string;
106
+ Message?: string | undefined;
107
107
  constructor(
108
108
  opts: __ExceptionOptionType<ValidationException, __BaseException>
109
109
  );
@@ -133,7 +133,7 @@ export interface AssociateWirelessGatewayWithCertificateRequest {
133
133
  IotCertificateId: string | undefined;
134
134
  }
135
135
  export interface AssociateWirelessGatewayWithCertificateResponse {
136
- IotCertificateId?: string;
136
+ IotCertificateId?: string | undefined;
137
137
  }
138
138
  export interface AssociateWirelessGatewayWithThingRequest {
139
139
  Id: string | undefined;
@@ -147,8 +147,8 @@ export declare const BatteryLevel: {
147
147
  };
148
148
  export type BatteryLevel = (typeof BatteryLevel)[keyof typeof BatteryLevel];
149
149
  export interface Beaconing {
150
- DataRate?: number;
151
- Frequencies?: number[];
150
+ DataRate?: number | undefined;
151
+ Frequencies?: number[] | undefined;
152
152
  }
153
153
  export interface CancelMulticastGroupSessionRequest {
154
154
  Id: string | undefined;
@@ -161,19 +161,19 @@ export interface CdmaLocalId {
161
161
  export interface CdmaNmrObj {
162
162
  PnOffset: number | undefined;
163
163
  CdmaChannel: number | undefined;
164
- PilotPower?: number;
165
- BaseStationId?: number;
164
+ PilotPower?: number | undefined;
165
+ BaseStationId?: number | undefined;
166
166
  }
167
167
  export interface CdmaObj {
168
168
  SystemId: number | undefined;
169
169
  NetworkId: number | undefined;
170
170
  BaseStationId: number | undefined;
171
- RegistrationZone?: number;
172
- CdmaLocalId?: CdmaLocalId;
173
- PilotPower?: number;
174
- BaseLat?: number;
175
- BaseLng?: number;
176
- CdmaNmr?: CdmaNmrObj[];
171
+ RegistrationZone?: number | undefined;
172
+ CdmaLocalId?: CdmaLocalId | undefined;
173
+ PilotPower?: number | undefined;
174
+ BaseLat?: number | undefined;
175
+ BaseLng?: number | undefined;
176
+ CdmaNmr?: CdmaNmrObj[] | undefined;
177
177
  }
178
178
  export interface GsmLocalId {
179
179
  Bsic: number | undefined;
@@ -186,18 +186,18 @@ export interface GlobalIdentity {
186
186
  export interface GsmNmrObj {
187
187
  Bsic: number | undefined;
188
188
  Bcch: number | undefined;
189
- RxLevel?: number;
190
- GlobalIdentity?: GlobalIdentity;
189
+ RxLevel?: number | undefined;
190
+ GlobalIdentity?: GlobalIdentity | undefined;
191
191
  }
192
192
  export interface GsmObj {
193
193
  Mcc: number | undefined;
194
194
  Mnc: number | undefined;
195
195
  Lac: number | undefined;
196
196
  GeranCid: number | undefined;
197
- GsmLocalId?: GsmLocalId;
198
- GsmTimingAdvance?: number;
199
- RxLevel?: number;
200
- GsmNmr?: GsmNmrObj[];
197
+ GsmLocalId?: GsmLocalId | undefined;
198
+ GsmTimingAdvance?: number | undefined;
199
+ RxLevel?: number | undefined;
200
+ GsmNmr?: GsmNmrObj[] | undefined;
201
201
  }
202
202
  export interface LteLocalId {
203
203
  Pci: number | undefined;
@@ -207,20 +207,20 @@ export interface LteNmrObj {
207
207
  Pci: number | undefined;
208
208
  Earfcn: number | undefined;
209
209
  EutranCid: number | undefined;
210
- Rsrp?: number;
211
- Rsrq?: number;
210
+ Rsrp?: number | undefined;
211
+ Rsrq?: number | undefined;
212
212
  }
213
213
  export interface LteObj {
214
214
  Mcc: number | undefined;
215
215
  Mnc: number | undefined;
216
216
  EutranCid: number | undefined;
217
- Tac?: number;
218
- LteLocalId?: LteLocalId;
219
- LteTimingAdvance?: number;
220
- Rsrp?: number;
221
- Rsrq?: number;
222
- NrCapable?: boolean;
223
- LteNmr?: LteNmrObj[];
217
+ Tac?: number | undefined;
218
+ LteLocalId?: LteLocalId | undefined;
219
+ LteTimingAdvance?: number | undefined;
220
+ Rsrp?: number | undefined;
221
+ Rsrq?: number | undefined;
222
+ NrCapable?: boolean | undefined;
223
+ LteNmr?: LteNmrObj[] | undefined;
224
224
  }
225
225
  export interface TdscdmaLocalId {
226
226
  Uarfcn: number | undefined;
@@ -229,20 +229,20 @@ export interface TdscdmaLocalId {
229
229
  export interface TdscdmaNmrObj {
230
230
  Uarfcn: number | undefined;
231
231
  CellParams: number | undefined;
232
- UtranCid?: number;
233
- Rscp?: number;
234
- PathLoss?: number;
232
+ UtranCid?: number | undefined;
233
+ Rscp?: number | undefined;
234
+ PathLoss?: number | undefined;
235
235
  }
236
236
  export interface TdscdmaObj {
237
237
  Mcc: number | undefined;
238
238
  Mnc: number | undefined;
239
- Lac?: number;
239
+ Lac?: number | undefined;
240
240
  UtranCid: number | undefined;
241
- TdscdmaLocalId?: TdscdmaLocalId;
242
- TdscdmaTimingAdvance?: number;
243
- Rscp?: number;
244
- PathLoss?: number;
245
- TdscdmaNmr?: TdscdmaNmrObj[];
241
+ TdscdmaLocalId?: TdscdmaLocalId | undefined;
242
+ TdscdmaTimingAdvance?: number | undefined;
243
+ Rscp?: number | undefined;
244
+ PathLoss?: number | undefined;
245
+ TdscdmaNmr?: TdscdmaNmrObj[] | undefined;
246
246
  }
247
247
  export interface WcdmaLocalId {
248
248
  Uarfcndl: number | undefined;
@@ -252,25 +252,25 @@ export interface WcdmaNmrObj {
252
252
  Uarfcndl: number | undefined;
253
253
  Psc: number | undefined;
254
254
  UtranCid: number | undefined;
255
- Rscp?: number;
256
- PathLoss?: number;
255
+ Rscp?: number | undefined;
256
+ PathLoss?: number | undefined;
257
257
  }
258
258
  export interface WcdmaObj {
259
259
  Mcc: number | undefined;
260
260
  Mnc: number | undefined;
261
- Lac?: number;
261
+ Lac?: number | undefined;
262
262
  UtranCid: number | undefined;
263
- WcdmaLocalId?: WcdmaLocalId;
264
- Rscp?: number;
265
- PathLoss?: number;
266
- WcdmaNmr?: WcdmaNmrObj[];
263
+ WcdmaLocalId?: WcdmaLocalId | undefined;
264
+ Rscp?: number | undefined;
265
+ PathLoss?: number | undefined;
266
+ WcdmaNmr?: WcdmaNmrObj[] | undefined;
267
267
  }
268
268
  export interface CellTowers {
269
- Gsm?: GsmObj[];
270
- Wcdma?: WcdmaObj[];
271
- Tdscdma?: TdscdmaObj[];
272
- Lte?: LteObj[];
273
- Cdma?: CdmaObj[];
269
+ Gsm?: GsmObj[] | undefined;
270
+ Wcdma?: WcdmaObj[] | undefined;
271
+ Tdscdma?: TdscdmaObj[] | undefined;
272
+ Lte?: LteObj[] | undefined;
273
+ Cdma?: CdmaObj[] | undefined;
274
274
  }
275
275
  export declare const SigningAlg: {
276
276
  readonly Ed25519: "Ed25519";
@@ -294,17 +294,17 @@ export declare const EventNotificationTopicStatus: {
294
294
  export type EventNotificationTopicStatus =
295
295
  (typeof EventNotificationTopicStatus)[keyof typeof EventNotificationTopicStatus];
296
296
  export interface LoRaWANConnectionStatusEventNotificationConfigurations {
297
- GatewayEuiEventTopic?: EventNotificationTopicStatus;
297
+ GatewayEuiEventTopic?: EventNotificationTopicStatus | undefined;
298
298
  }
299
299
  export interface ConnectionStatusEventConfiguration {
300
- LoRaWAN?: LoRaWANConnectionStatusEventNotificationConfigurations;
301
- WirelessGatewayIdEventTopic?: EventNotificationTopicStatus;
300
+ LoRaWAN?: LoRaWANConnectionStatusEventNotificationConfigurations | undefined;
301
+ WirelessGatewayIdEventTopic?: EventNotificationTopicStatus | undefined;
302
302
  }
303
303
  export interface LoRaWANConnectionStatusResourceTypeEventConfiguration {
304
- WirelessGatewayEventTopic?: EventNotificationTopicStatus;
304
+ WirelessGatewayEventTopic?: EventNotificationTopicStatus | undefined;
305
305
  }
306
306
  export interface ConnectionStatusResourceTypeEventConfiguration {
307
- LoRaWAN?: LoRaWANConnectionStatusResourceTypeEventConfiguration;
307
+ LoRaWAN?: LoRaWANConnectionStatusResourceTypeEventConfiguration | undefined;
308
308
  }
309
309
  export declare const ExpressionType: {
310
310
  readonly MqttTopic: "MqttTopic";
@@ -316,47 +316,47 @@ export interface CreateDestinationRequest {
316
316
  Name: string | undefined;
317
317
  ExpressionType: ExpressionType | undefined;
318
318
  Expression: string | undefined;
319
- Description?: string;
319
+ Description?: string | undefined;
320
320
  RoleArn: string | undefined;
321
- Tags?: Tag[];
322
- ClientRequestToken?: string;
321
+ Tags?: Tag[] | undefined;
322
+ ClientRequestToken?: string | undefined;
323
323
  }
324
324
  export interface CreateDestinationResponse {
325
- Arn?: string;
326
- Name?: string;
325
+ Arn?: string | undefined;
326
+ Name?: string | undefined;
327
327
  }
328
328
  export interface LoRaWANDeviceProfile {
329
- SupportsClassB?: boolean;
330
- ClassBTimeout?: number;
331
- PingSlotPeriod?: number;
332
- PingSlotDr?: number;
333
- PingSlotFreq?: number;
334
- SupportsClassC?: boolean;
335
- ClassCTimeout?: number;
336
- MacVersion?: string;
337
- RegParamsRevision?: string;
338
- RxDelay1?: number;
339
- RxDrOffset1?: number;
340
- RxDataRate2?: number;
341
- RxFreq2?: number;
342
- FactoryPresetFreqsList?: number[];
343
- MaxEirp?: number;
344
- MaxDutyCycle?: number;
345
- RfRegion?: string;
346
- SupportsJoin?: boolean;
347
- Supports32BitFCnt?: boolean;
329
+ SupportsClassB?: boolean | undefined;
330
+ ClassBTimeout?: number | undefined;
331
+ PingSlotPeriod?: number | undefined;
332
+ PingSlotDr?: number | undefined;
333
+ PingSlotFreq?: number | undefined;
334
+ SupportsClassC?: boolean | undefined;
335
+ ClassCTimeout?: number | undefined;
336
+ MacVersion?: string | undefined;
337
+ RegParamsRevision?: string | undefined;
338
+ RxDelay1?: number | undefined;
339
+ RxDrOffset1?: number | undefined;
340
+ RxDataRate2?: number | undefined;
341
+ RxFreq2?: number | undefined;
342
+ FactoryPresetFreqsList?: number[] | undefined;
343
+ MaxEirp?: number | undefined;
344
+ MaxDutyCycle?: number | undefined;
345
+ RfRegion?: string | undefined;
346
+ SupportsJoin?: boolean | undefined;
347
+ Supports32BitFCnt?: boolean | undefined;
348
348
  }
349
349
  export interface SidewalkCreateDeviceProfile {}
350
350
  export interface CreateDeviceProfileRequest {
351
- Name?: string;
352
- LoRaWAN?: LoRaWANDeviceProfile;
353
- Tags?: Tag[];
354
- ClientRequestToken?: string;
355
- Sidewalk?: SidewalkCreateDeviceProfile;
351
+ Name?: string | undefined;
352
+ LoRaWAN?: LoRaWANDeviceProfile | undefined;
353
+ Tags?: Tag[] | undefined;
354
+ ClientRequestToken?: string | undefined;
355
+ Sidewalk?: SidewalkCreateDeviceProfile | undefined;
356
356
  }
357
357
  export interface CreateDeviceProfileResponse {
358
- Arn?: string;
359
- Id?: string;
358
+ Arn?: string | undefined;
359
+ Id?: string | undefined;
360
360
  }
361
361
  export declare const SupportedRfRegion: {
362
362
  readonly AS923_1: "AS923-1";
@@ -376,43 +376,49 @@ export declare const SupportedRfRegion: {
376
376
  export type SupportedRfRegion =
377
377
  (typeof SupportedRfRegion)[keyof typeof SupportedRfRegion];
378
378
  export interface LoRaWANFuotaTask {
379
- RfRegion?: SupportedRfRegion;
379
+ RfRegion?: SupportedRfRegion | undefined;
380
380
  }
381
381
  export interface CreateFuotaTaskRequest {
382
- Name?: string;
383
- Description?: string;
384
- ClientRequestToken?: string;
385
- LoRaWAN?: LoRaWANFuotaTask;
382
+ Name?: string | undefined;
383
+ Description?: string | undefined;
384
+ ClientRequestToken?: string | undefined;
385
+ LoRaWAN?: LoRaWANFuotaTask | undefined;
386
386
  FirmwareUpdateImage: string | undefined;
387
387
  FirmwareUpdateRole: string | undefined;
388
- Tags?: Tag[];
389
- RedundancyPercent?: number;
390
- FragmentSizeBytes?: number;
391
- FragmentIntervalMS?: number;
388
+ Tags?: Tag[] | undefined;
389
+ RedundancyPercent?: number | undefined;
390
+ FragmentSizeBytes?: number | undefined;
391
+ FragmentIntervalMS?: number | undefined;
392
+ Descriptor?: string | undefined;
392
393
  }
393
394
  export interface CreateFuotaTaskResponse {
394
- Arn?: string;
395
- Id?: string;
395
+ Arn?: string | undefined;
396
+ Id?: string | undefined;
396
397
  }
397
398
  export declare const DlClass: {
398
399
  readonly ClassB: "ClassB";
399
400
  readonly ClassC: "ClassC";
400
401
  };
401
402
  export type DlClass = (typeof DlClass)[keyof typeof DlClass];
403
+ export interface ParticipatingGatewaysMulticast {
404
+ GatewayList?: string[] | undefined;
405
+ TransmissionInterval?: number | undefined;
406
+ }
402
407
  export interface LoRaWANMulticast {
403
- RfRegion?: SupportedRfRegion;
404
- DlClass?: DlClass;
408
+ RfRegion?: SupportedRfRegion | undefined;
409
+ DlClass?: DlClass | undefined;
410
+ ParticipatingGateways?: ParticipatingGatewaysMulticast | undefined;
405
411
  }
406
412
  export interface CreateMulticastGroupRequest {
407
- Name?: string;
408
- Description?: string;
409
- ClientRequestToken?: string;
413
+ Name?: string | undefined;
414
+ Description?: string | undefined;
415
+ ClientRequestToken?: string | undefined;
410
416
  LoRaWAN: LoRaWANMulticast | undefined;
411
- Tags?: Tag[];
417
+ Tags?: Tag[] | undefined;
412
418
  }
413
419
  export interface CreateMulticastGroupResponse {
414
- Arn?: string;
415
- Id?: string;
420
+ Arn?: string | undefined;
421
+ Id?: string | undefined;
416
422
  }
417
423
  export declare const LogLevel: {
418
424
  readonly DISABLED: "DISABLED";
@@ -433,73 +439,73 @@ export declare const WirelessDeviceFrameInfo: {
433
439
  export type WirelessDeviceFrameInfo =
434
440
  (typeof WirelessDeviceFrameInfo)[keyof typeof WirelessDeviceFrameInfo];
435
441
  export interface TraceContent {
436
- WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo;
437
- LogLevel?: LogLevel;
438
- MulticastFrameInfo?: MulticastFrameInfo;
442
+ WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo | undefined;
443
+ LogLevel?: LogLevel | undefined;
444
+ MulticastFrameInfo?: MulticastFrameInfo | undefined;
439
445
  }
440
446
  export interface CreateNetworkAnalyzerConfigurationRequest {
441
447
  Name: string | undefined;
442
- TraceContent?: TraceContent;
443
- WirelessDevices?: string[];
444
- WirelessGateways?: string[];
445
- Description?: string;
446
- Tags?: Tag[];
447
- ClientRequestToken?: string;
448
- MulticastGroups?: string[];
448
+ TraceContent?: TraceContent | undefined;
449
+ WirelessDevices?: string[] | undefined;
450
+ WirelessGateways?: string[] | undefined;
451
+ Description?: string | undefined;
452
+ Tags?: Tag[] | undefined;
453
+ ClientRequestToken?: string | undefined;
454
+ MulticastGroups?: string[] | undefined;
449
455
  }
450
456
  export interface CreateNetworkAnalyzerConfigurationResponse {
451
- Arn?: string;
452
- Name?: string;
457
+ Arn?: string | undefined;
458
+ Name?: string | undefined;
453
459
  }
454
460
  export interface LoRaWANServiceProfile {
455
- AddGwMetadata?: boolean;
456
- DrMin?: number;
457
- DrMax?: number;
458
- PrAllowed?: boolean;
459
- RaAllowed?: boolean;
461
+ AddGwMetadata?: boolean | undefined;
462
+ DrMin?: number | undefined;
463
+ DrMax?: number | undefined;
464
+ PrAllowed?: boolean | undefined;
465
+ RaAllowed?: boolean | undefined;
460
466
  }
461
467
  export interface CreateServiceProfileRequest {
462
- Name?: string;
463
- LoRaWAN?: LoRaWANServiceProfile;
464
- Tags?: Tag[];
465
- ClientRequestToken?: string;
468
+ Name?: string | undefined;
469
+ LoRaWAN?: LoRaWANServiceProfile | undefined;
470
+ Tags?: Tag[] | undefined;
471
+ ClientRequestToken?: string | undefined;
466
472
  }
467
473
  export interface CreateServiceProfileResponse {
468
- Arn?: string;
469
- Id?: string;
474
+ Arn?: string | undefined;
475
+ Id?: string | undefined;
470
476
  }
471
477
  export interface Positioning {
472
- ClockSync?: number;
473
- Stream?: number;
474
- Gnss?: number;
478
+ ClockSync?: number | undefined;
479
+ Stream?: number | undefined;
480
+ Gnss?: number | undefined;
475
481
  }
476
482
  export interface FPorts {
477
- Fuota?: number;
478
- Multicast?: number;
479
- ClockSync?: number;
480
- Positioning?: Positioning;
481
- Applications?: ApplicationConfig[];
483
+ Fuota?: number | undefined;
484
+ Multicast?: number | undefined;
485
+ ClockSync?: number | undefined;
486
+ Positioning?: Positioning | undefined;
487
+ Applications?: ApplicationConfig[] | undefined;
482
488
  }
483
489
  export interface OtaaV1_0_x {
484
- AppKey?: string;
485
- AppEui?: string;
486
- JoinEui?: string;
487
- GenAppKey?: string;
490
+ AppKey?: string | undefined;
491
+ AppEui?: string | undefined;
492
+ JoinEui?: string | undefined;
493
+ GenAppKey?: string | undefined;
488
494
  }
489
495
  export interface OtaaV1_1 {
490
- AppKey?: string;
491
- NwkKey?: string;
492
- JoinEui?: string;
496
+ AppKey?: string | undefined;
497
+ NwkKey?: string | undefined;
498
+ JoinEui?: string | undefined;
493
499
  }
494
500
  export interface LoRaWANDevice {
495
- DevEui?: string;
496
- DeviceProfileId?: string;
497
- ServiceProfileId?: string;
498
- OtaaV1_1?: OtaaV1_1;
499
- OtaaV1_0_x?: OtaaV1_0_x;
500
- AbpV1_1?: AbpV1_1;
501
- AbpV1_0_x?: AbpV1_0_x;
502
- FPorts?: FPorts;
501
+ DevEui?: string | undefined;
502
+ DeviceProfileId?: string | undefined;
503
+ ServiceProfileId?: string | undefined;
504
+ OtaaV1_1?: OtaaV1_1 | undefined;
505
+ OtaaV1_0_x?: OtaaV1_0_x | undefined;
506
+ AbpV1_1?: AbpV1_1 | undefined;
507
+ AbpV1_0_x?: AbpV1_0_x | undefined;
508
+ FPorts?: FPorts | undefined;
503
509
  }
504
510
  export declare const PositioningConfigStatus: {
505
511
  readonly Disabled: "Disabled";
@@ -508,7 +514,7 @@ export declare const PositioningConfigStatus: {
508
514
  export type PositioningConfigStatus =
509
515
  (typeof PositioningConfigStatus)[keyof typeof PositioningConfigStatus];
510
516
  export interface SidewalkCreateWirelessDevice {
511
- DeviceProfileId?: string;
517
+ DeviceProfileId?: string | undefined;
512
518
  }
513
519
  export declare const WirelessDeviceType: {
514
520
  readonly LoRaWAN: "LoRaWAN";
@@ -518,38 +524,38 @@ export type WirelessDeviceType =
518
524
  (typeof WirelessDeviceType)[keyof typeof WirelessDeviceType];
519
525
  export interface CreateWirelessDeviceRequest {
520
526
  Type: WirelessDeviceType | undefined;
521
- Name?: string;
522
- Description?: string;
527
+ Name?: string | undefined;
528
+ Description?: string | undefined;
523
529
  DestinationName: string | undefined;
524
- ClientRequestToken?: string;
525
- LoRaWAN?: LoRaWANDevice;
526
- Tags?: Tag[];
527
- Positioning?: PositioningConfigStatus;
528
- Sidewalk?: SidewalkCreateWirelessDevice;
530
+ ClientRequestToken?: string | undefined;
531
+ LoRaWAN?: LoRaWANDevice | undefined;
532
+ Tags?: Tag[] | undefined;
533
+ Positioning?: PositioningConfigStatus | undefined;
534
+ Sidewalk?: SidewalkCreateWirelessDevice | undefined;
529
535
  }
530
536
  export interface CreateWirelessDeviceResponse {
531
- Arn?: string;
532
- Id?: string;
537
+ Arn?: string | undefined;
538
+ Id?: string | undefined;
533
539
  }
534
540
  export interface LoRaWANGateway {
535
- GatewayEui?: string;
536
- RfRegion?: string;
537
- JoinEuiFilters?: string[][];
538
- NetIdFilters?: string[];
539
- SubBands?: number[];
540
- Beaconing?: Beaconing;
541
- MaxEirp?: number;
541
+ GatewayEui?: string | undefined;
542
+ RfRegion?: string | undefined;
543
+ JoinEuiFilters?: string[][] | undefined;
544
+ NetIdFilters?: string[] | undefined;
545
+ SubBands?: number[] | undefined;
546
+ Beaconing?: Beaconing | undefined;
547
+ MaxEirp?: number | undefined;
542
548
  }
543
549
  export interface CreateWirelessGatewayRequest {
544
- Name?: string;
545
- Description?: string;
550
+ Name?: string | undefined;
551
+ Description?: string | undefined;
546
552
  LoRaWAN: LoRaWANGateway | undefined;
547
- Tags?: Tag[];
548
- ClientRequestToken?: string;
553
+ Tags?: Tag[] | undefined;
554
+ ClientRequestToken?: string | undefined;
549
555
  }
550
556
  export interface CreateWirelessGatewayResponse {
551
- Arn?: string;
552
- Id?: string;
557
+ Arn?: string | undefined;
558
+ Id?: string | undefined;
553
559
  }
554
560
  export interface CreateWirelessGatewayTaskRequest {
555
561
  Id: string | undefined;
@@ -566,42 +572,42 @@ export declare const WirelessGatewayTaskStatus: {
566
572
  export type WirelessGatewayTaskStatus =
567
573
  (typeof WirelessGatewayTaskStatus)[keyof typeof WirelessGatewayTaskStatus];
568
574
  export interface CreateWirelessGatewayTaskResponse {
569
- WirelessGatewayTaskDefinitionId?: string;
570
- Status?: WirelessGatewayTaskStatus;
575
+ WirelessGatewayTaskDefinitionId?: string | undefined;
576
+ Status?: WirelessGatewayTaskStatus | undefined;
571
577
  }
572
578
  export interface LoRaWANGatewayVersion {
573
- PackageVersion?: string;
574
- Model?: string;
575
- Station?: string;
579
+ PackageVersion?: string | undefined;
580
+ Model?: string | undefined;
581
+ Station?: string | undefined;
576
582
  }
577
583
  export interface LoRaWANUpdateGatewayTaskCreate {
578
- UpdateSignature?: string;
579
- SigKeyCrc?: number;
580
- CurrentVersion?: LoRaWANGatewayVersion;
581
- UpdateVersion?: LoRaWANGatewayVersion;
584
+ UpdateSignature?: string | undefined;
585
+ SigKeyCrc?: number | undefined;
586
+ CurrentVersion?: LoRaWANGatewayVersion | undefined;
587
+ UpdateVersion?: LoRaWANGatewayVersion | undefined;
582
588
  }
583
589
  export interface UpdateWirelessGatewayTaskCreate {
584
- UpdateDataSource?: string;
585
- UpdateDataRole?: string;
586
- LoRaWAN?: LoRaWANUpdateGatewayTaskCreate;
590
+ UpdateDataSource?: string | undefined;
591
+ UpdateDataRole?: string | undefined;
592
+ LoRaWAN?: LoRaWANUpdateGatewayTaskCreate | undefined;
587
593
  }
588
594
  export interface CreateWirelessGatewayTaskDefinitionRequest {
589
595
  AutoCreateTasks: boolean | undefined;
590
- Name?: string;
591
- Update?: UpdateWirelessGatewayTaskCreate;
592
- ClientRequestToken?: string;
593
- Tags?: Tag[];
596
+ Name?: string | undefined;
597
+ Update?: UpdateWirelessGatewayTaskCreate | undefined;
598
+ ClientRequestToken?: string | undefined;
599
+ Tags?: Tag[] | undefined;
594
600
  }
595
601
  export interface CreateWirelessGatewayTaskDefinitionResponse {
596
- Id?: string;
597
- Arn?: string;
602
+ Id?: string | undefined;
603
+ Arn?: string | undefined;
598
604
  }
599
605
  export interface DakCertificateMetadata {
600
606
  CertificateId: string | undefined;
601
- MaxAllowedSignature?: number;
602
- FactorySupport?: boolean;
603
- ApId?: string;
604
- DeviceTypeId?: string;
607
+ MaxAllowedSignature?: number | undefined;
608
+ FactorySupport?: boolean | undefined;
609
+ ApId?: string | undefined;
610
+ DeviceTypeId?: string | undefined;
605
611
  }
606
612
  export interface DeleteDestinationRequest {
607
613
  Name: string | undefined;
@@ -626,7 +632,7 @@ export interface DeleteNetworkAnalyzerConfigurationResponse {}
626
632
  export interface DeleteQueuedMessagesRequest {
627
633
  Id: string | undefined;
628
634
  MessageId: string | undefined;
629
- WirelessDeviceType?: WirelessDeviceType;
635
+ WirelessDeviceType?: WirelessDeviceType | undefined;
630
636
  }
631
637
  export interface DeleteQueuedMessagesResponse {}
632
638
  export interface DeleteServiceProfileRequest {
@@ -655,21 +661,21 @@ export interface DeleteWirelessGatewayTaskDefinitionRequest {
655
661
  export interface DeleteWirelessGatewayTaskDefinitionResponse {}
656
662
  export interface DeregisterWirelessDeviceRequest {
657
663
  Identifier: string | undefined;
658
- WirelessDeviceType?: WirelessDeviceType;
664
+ WirelessDeviceType?: WirelessDeviceType | undefined;
659
665
  }
660
666
  export interface DeregisterWirelessDeviceResponse {}
661
667
  export interface Destinations {
662
- Arn?: string;
663
- Name?: string;
664
- ExpressionType?: ExpressionType;
665
- Expression?: string;
666
- Description?: string;
667
- RoleArn?: string;
668
+ Arn?: string | undefined;
669
+ Name?: string | undefined;
670
+ ExpressionType?: ExpressionType | undefined;
671
+ Expression?: string | undefined;
672
+ Description?: string | undefined;
673
+ RoleArn?: string | undefined;
668
674
  }
669
675
  export interface DeviceProfile {
670
- Arn?: string;
671
- Name?: string;
672
- Id?: string;
676
+ Arn?: string | undefined;
677
+ Name?: string | undefined;
678
+ Id?: string | undefined;
673
679
  }
674
680
  export declare const DeviceProfileType: {
675
681
  readonly LoRaWAN: "LoRaWAN";
@@ -678,17 +684,17 @@ export declare const DeviceProfileType: {
678
684
  export type DeviceProfileType =
679
685
  (typeof DeviceProfileType)[keyof typeof DeviceProfileType];
680
686
  export interface SidewalkEventNotificationConfigurations {
681
- AmazonIdEventTopic?: EventNotificationTopicStatus;
687
+ AmazonIdEventTopic?: EventNotificationTopicStatus | undefined;
682
688
  }
683
689
  export interface DeviceRegistrationStateEventConfiguration {
684
- Sidewalk?: SidewalkEventNotificationConfigurations;
685
- WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
690
+ Sidewalk?: SidewalkEventNotificationConfigurations | undefined;
691
+ WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | undefined;
686
692
  }
687
693
  export interface SidewalkResourceTypeEventConfiguration {
688
- WirelessDeviceEventTopic?: EventNotificationTopicStatus;
694
+ WirelessDeviceEventTopic?: EventNotificationTopicStatus | undefined;
689
695
  }
690
696
  export interface DeviceRegistrationStateResourceTypeEventConfiguration {
691
- Sidewalk?: SidewalkResourceTypeEventConfiguration;
697
+ Sidewalk?: SidewalkResourceTypeEventConfiguration | undefined;
692
698
  }
693
699
  export declare const DeviceState: {
694
700
  readonly PROVISIONED: "Provisioned";
@@ -703,8 +709,8 @@ export declare const DimensionName: {
703
709
  };
704
710
  export type DimensionName = (typeof DimensionName)[keyof typeof DimensionName];
705
711
  export interface Dimension {
706
- name?: DimensionName;
707
- value?: string;
712
+ name?: DimensionName | undefined;
713
+ value?: string | undefined;
708
714
  }
709
715
  export declare const PartnerType: {
710
716
  readonly Sidewalk: "Sidewalk";
@@ -758,14 +764,14 @@ export interface ParticipatingGateways {
758
764
  TransmissionInterval: number | undefined;
759
765
  }
760
766
  export interface LoRaWANSendDataToDevice {
761
- FPort?: number;
762
- ParticipatingGateways?: ParticipatingGateways;
767
+ FPort?: number | undefined;
768
+ ParticipatingGateways?: ParticipatingGateways | undefined;
763
769
  }
764
770
  export interface DownlinkQueueMessage {
765
- MessageId?: string;
766
- TransmitMode?: number;
767
- ReceivedAt?: string;
768
- LoRaWAN?: LoRaWANSendDataToDevice;
771
+ MessageId?: string | undefined;
772
+ TransmitMode?: number | undefined;
773
+ ReceivedAt?: string | undefined;
774
+ LoRaWAN?: LoRaWANSendDataToDevice | undefined;
769
775
  }
770
776
  export declare const Event: {
771
777
  readonly ACK: "ack";
@@ -776,29 +782,32 @@ export declare const Event: {
776
782
  };
777
783
  export type Event = (typeof Event)[keyof typeof Event];
778
784
  export interface LoRaWANJoinEventNotificationConfigurations {
779
- DevEuiEventTopic?: EventNotificationTopicStatus;
785
+ DevEuiEventTopic?: EventNotificationTopicStatus | undefined;
780
786
  }
781
787
  export interface JoinEventConfiguration {
782
- LoRaWAN?: LoRaWANJoinEventNotificationConfigurations;
783
- WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
788
+ LoRaWAN?: LoRaWANJoinEventNotificationConfigurations | undefined;
789
+ WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | undefined;
784
790
  }
785
791
  export interface MessageDeliveryStatusEventConfiguration {
786
- Sidewalk?: SidewalkEventNotificationConfigurations;
787
- WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
792
+ Sidewalk?: SidewalkEventNotificationConfigurations | undefined;
793
+ WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | undefined;
788
794
  }
789
795
  export interface ProximityEventConfiguration {
790
- Sidewalk?: SidewalkEventNotificationConfigurations;
791
- WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
796
+ Sidewalk?: SidewalkEventNotificationConfigurations | undefined;
797
+ WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | undefined;
792
798
  }
793
799
  export interface EventNotificationItemConfigurations {
794
- DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
795
- Proximity?: ProximityEventConfiguration;
796
- Join?: JoinEventConfiguration;
797
- ConnectionStatus?: ConnectionStatusEventConfiguration;
798
- MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
800
+ DeviceRegistrationState?:
801
+ | DeviceRegistrationStateEventConfiguration
802
+ | undefined;
803
+ Proximity?: ProximityEventConfiguration | undefined;
804
+ Join?: JoinEventConfiguration | undefined;
805
+ ConnectionStatus?: ConnectionStatusEventConfiguration | undefined;
806
+ MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration | undefined;
799
807
  }
800
808
  export declare const IdentifierType: {
801
809
  readonly DevEui: "DevEui";
810
+ readonly FuotaTaskId: "FuotaTaskId";
802
811
  readonly GatewayEui: "GatewayEui";
803
812
  readonly PartnerAccountId: "PartnerAccountId";
804
813
  readonly WirelessDeviceId: "WirelessDeviceId";
@@ -812,12 +821,13 @@ export declare const EventNotificationPartnerType: {
812
821
  export type EventNotificationPartnerType =
813
822
  (typeof EventNotificationPartnerType)[keyof typeof EventNotificationPartnerType];
814
823
  export interface EventConfigurationItem {
815
- Identifier?: string;
816
- IdentifierType?: IdentifierType;
817
- PartnerType?: EventNotificationPartnerType;
818
- Events?: EventNotificationItemConfigurations;
824
+ Identifier?: string | undefined;
825
+ IdentifierType?: IdentifierType | undefined;
826
+ PartnerType?: EventNotificationPartnerType | undefined;
827
+ Events?: EventNotificationItemConfigurations | undefined;
819
828
  }
820
829
  export declare const EventNotificationResourceType: {
830
+ readonly FuotaTask: "FuotaTask";
821
831
  readonly SidewalkAccount: "SidewalkAccount";
822
832
  readonly WirelessDevice: "WirelessDevice";
823
833
  readonly WirelessGateway: "WirelessGateway";
@@ -841,9 +851,27 @@ export declare const FuotaDeviceStatus: {
841
851
  export type FuotaDeviceStatus =
842
852
  (typeof FuotaDeviceStatus)[keyof typeof FuotaDeviceStatus];
843
853
  export interface FuotaTask {
844
- Id?: string;
845
- Arn?: string;
846
- Name?: string;
854
+ Id?: string | undefined;
855
+ Arn?: string | undefined;
856
+ Name?: string | undefined;
857
+ }
858
+ export declare const FuotaTaskEvent: {
859
+ readonly Fuota: "Fuota";
860
+ };
861
+ export type FuotaTaskEvent =
862
+ (typeof FuotaTaskEvent)[keyof typeof FuotaTaskEvent];
863
+ export interface FuotaTaskEventLogOption {
864
+ Event: FuotaTaskEvent | undefined;
865
+ LogLevel: LogLevel | undefined;
866
+ }
867
+ export declare const FuotaTaskType: {
868
+ readonly LoRaWAN: "LoRaWAN";
869
+ };
870
+ export type FuotaTaskType = (typeof FuotaTaskType)[keyof typeof FuotaTaskType];
871
+ export interface FuotaTaskLogOption {
872
+ Type: FuotaTaskType | undefined;
873
+ LogLevel: LogLevel | undefined;
874
+ Events?: FuotaTaskEventLogOption[] | undefined;
847
875
  }
848
876
  export declare const FuotaTaskStatus: {
849
877
  readonly Delete_Waiting: "Delete_Waiting";
@@ -858,68 +886,73 @@ export interface GetDestinationRequest {
858
886
  Name: string | undefined;
859
887
  }
860
888
  export interface GetDestinationResponse {
861
- Arn?: string;
862
- Name?: string;
863
- Expression?: string;
864
- ExpressionType?: ExpressionType;
865
- Description?: string;
866
- RoleArn?: string;
889
+ Arn?: string | undefined;
890
+ Name?: string | undefined;
891
+ Expression?: string | undefined;
892
+ ExpressionType?: ExpressionType | undefined;
893
+ Description?: string | undefined;
894
+ RoleArn?: string | undefined;
867
895
  }
868
896
  export interface GetDeviceProfileRequest {
869
897
  Id: string | undefined;
870
898
  }
871
899
  export interface SidewalkGetDeviceProfile {
872
- ApplicationServerPublicKey?: string;
873
- QualificationStatus?: boolean;
874
- DakCertificateMetadata?: DakCertificateMetadata[];
900
+ ApplicationServerPublicKey?: string | undefined;
901
+ QualificationStatus?: boolean | undefined;
902
+ DakCertificateMetadata?: DakCertificateMetadata[] | undefined;
875
903
  }
876
904
  export interface GetDeviceProfileResponse {
877
- Arn?: string;
878
- Name?: string;
879
- Id?: string;
880
- LoRaWAN?: LoRaWANDeviceProfile;
881
- Sidewalk?: SidewalkGetDeviceProfile;
905
+ Arn?: string | undefined;
906
+ Name?: string | undefined;
907
+ Id?: string | undefined;
908
+ LoRaWAN?: LoRaWANDeviceProfile | undefined;
909
+ Sidewalk?: SidewalkGetDeviceProfile | undefined;
882
910
  }
883
911
  export interface GetEventConfigurationByResourceTypesRequest {}
884
912
  export interface LoRaWANJoinResourceTypeEventConfiguration {
885
- WirelessDeviceEventTopic?: EventNotificationTopicStatus;
913
+ WirelessDeviceEventTopic?: EventNotificationTopicStatus | undefined;
886
914
  }
887
915
  export interface JoinResourceTypeEventConfiguration {
888
- LoRaWAN?: LoRaWANJoinResourceTypeEventConfiguration;
916
+ LoRaWAN?: LoRaWANJoinResourceTypeEventConfiguration | undefined;
889
917
  }
890
918
  export interface MessageDeliveryStatusResourceTypeEventConfiguration {
891
- Sidewalk?: SidewalkResourceTypeEventConfiguration;
919
+ Sidewalk?: SidewalkResourceTypeEventConfiguration | undefined;
892
920
  }
893
921
  export interface ProximityResourceTypeEventConfiguration {
894
- Sidewalk?: SidewalkResourceTypeEventConfiguration;
922
+ Sidewalk?: SidewalkResourceTypeEventConfiguration | undefined;
895
923
  }
896
924
  export interface GetEventConfigurationByResourceTypesResponse {
897
- DeviceRegistrationState?: DeviceRegistrationStateResourceTypeEventConfiguration;
898
- Proximity?: ProximityResourceTypeEventConfiguration;
899
- Join?: JoinResourceTypeEventConfiguration;
900
- ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
901
- MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration;
925
+ DeviceRegistrationState?:
926
+ | DeviceRegistrationStateResourceTypeEventConfiguration
927
+ | undefined;
928
+ Proximity?: ProximityResourceTypeEventConfiguration | undefined;
929
+ Join?: JoinResourceTypeEventConfiguration | undefined;
930
+ ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration | undefined;
931
+ MessageDeliveryStatus?:
932
+ | MessageDeliveryStatusResourceTypeEventConfiguration
933
+ | undefined;
902
934
  }
903
935
  export interface GetFuotaTaskRequest {
904
936
  Id: string | undefined;
905
937
  }
906
938
  export interface LoRaWANFuotaTaskGetInfo {
907
- RfRegion?: string;
908
- StartTime?: Date;
939
+ RfRegion?: string | undefined;
940
+ StartTime?: Date | undefined;
909
941
  }
910
942
  export interface GetFuotaTaskResponse {
911
- Arn?: string;
912
- Id?: string;
913
- Status?: FuotaTaskStatus;
914
- Name?: string;
915
- Description?: string;
916
- LoRaWAN?: LoRaWANFuotaTaskGetInfo;
917
- FirmwareUpdateImage?: string;
918
- FirmwareUpdateRole?: string;
919
- CreatedAt?: Date;
920
- RedundancyPercent?: number;
921
- FragmentSizeBytes?: number;
922
- FragmentIntervalMS?: number;
943
+ Arn?: string | undefined;
944
+ Id?: string | undefined;
945
+ Status?: FuotaTaskStatus | undefined;
946
+ Name?: string | undefined;
947
+ Description?: string | undefined;
948
+ LoRaWAN?: LoRaWANFuotaTaskGetInfo | undefined;
949
+ FirmwareUpdateImage?: string | undefined;
950
+ FirmwareUpdateRole?: string | undefined;
951
+ CreatedAt?: Date | undefined;
952
+ RedundancyPercent?: number | undefined;
953
+ FragmentSizeBytes?: number | undefined;
954
+ FragmentIntervalMS?: number | undefined;
955
+ Descriptor?: string | undefined;
923
956
  }
924
957
  export interface GetLogLevelsByResourceTypesRequest {}
925
958
  export declare const WirelessDeviceEvent: {
@@ -938,7 +971,7 @@ export interface WirelessDeviceEventLogOption {
938
971
  export interface WirelessDeviceLogOption {
939
972
  Type: WirelessDeviceType | undefined;
940
973
  LogLevel: LogLevel | undefined;
941
- Events?: WirelessDeviceEventLogOption[];
974
+ Events?: WirelessDeviceEventLogOption[] | undefined;
942
975
  }
943
976
  export declare const WirelessGatewayEvent: {
944
977
  readonly CUPS_Request: "CUPS_Request";
@@ -958,12 +991,13 @@ export type WirelessGatewayType =
958
991
  export interface WirelessGatewayLogOption {
959
992
  Type: WirelessGatewayType | undefined;
960
993
  LogLevel: LogLevel | undefined;
961
- Events?: WirelessGatewayEventLogOption[];
994
+ Events?: WirelessGatewayEventLogOption[] | undefined;
962
995
  }
963
996
  export interface GetLogLevelsByResourceTypesResponse {
964
- DefaultLogLevel?: LogLevel;
965
- WirelessGatewayLogOptions?: WirelessGatewayLogOption[];
966
- WirelessDeviceLogOptions?: WirelessDeviceLogOption[];
997
+ DefaultLogLevel?: LogLevel | undefined;
998
+ WirelessGatewayLogOptions?: WirelessGatewayLogOption[] | undefined;
999
+ WirelessDeviceLogOptions?: WirelessDeviceLogOption[] | undefined;
1000
+ FuotaTaskLogOptions?: FuotaTaskLogOption[] | undefined;
967
1001
  }
968
1002
  export interface GetMetricConfigurationRequest {}
969
1003
  export declare const SummaryMetricConfigurationStatus: {
@@ -973,10 +1007,10 @@ export declare const SummaryMetricConfigurationStatus: {
973
1007
  export type SummaryMetricConfigurationStatus =
974
1008
  (typeof SummaryMetricConfigurationStatus)[keyof typeof SummaryMetricConfigurationStatus];
975
1009
  export interface SummaryMetricConfiguration {
976
- Status?: SummaryMetricConfigurationStatus;
1010
+ Status?: SummaryMetricConfigurationStatus | undefined;
977
1011
  }
978
1012
  export interface GetMetricConfigurationResponse {
979
- SummaryMetric?: SummaryMetricConfiguration;
1013
+ SummaryMetric?: SummaryMetricConfiguration | undefined;
980
1014
  }
981
1015
  export declare const MetricName: {
982
1016
  readonly AwsAccountActiveDeviceCount: "AwsAccountActiveDeviceCount";
@@ -1014,15 +1048,15 @@ export declare const MetricName: {
1014
1048
  };
1015
1049
  export type MetricName = (typeof MetricName)[keyof typeof MetricName];
1016
1050
  export interface SummaryMetricQuery {
1017
- QueryId?: string;
1018
- MetricName?: MetricName;
1019
- Dimensions?: Dimension[];
1020
- AggregationPeriod?: AggregationPeriod;
1021
- StartTimestamp?: Date;
1022
- EndTimestamp?: Date;
1051
+ QueryId?: string | undefined;
1052
+ MetricName?: MetricName | undefined;
1053
+ Dimensions?: Dimension[] | undefined;
1054
+ AggregationPeriod?: AggregationPeriod | undefined;
1055
+ StartTimestamp?: Date | undefined;
1056
+ EndTimestamp?: Date | undefined;
1023
1057
  }
1024
1058
  export interface GetMetricsRequest {
1025
- SummaryMetricQueries?: SummaryMetricQuery[];
1059
+ SummaryMetricQueries?: SummaryMetricQuery[] | undefined;
1026
1060
  }
1027
1061
  export declare const MetricQueryStatus: {
1028
1062
  readonly Failed: "Failed";
@@ -1031,84 +1065,85 @@ export declare const MetricQueryStatus: {
1031
1065
  export type MetricQueryStatus =
1032
1066
  (typeof MetricQueryStatus)[keyof typeof MetricQueryStatus];
1033
1067
  export interface MetricQueryValue {
1034
- Min?: number;
1035
- Max?: number;
1036
- Sum?: number;
1037
- Avg?: number;
1038
- Std?: number;
1039
- P90?: number;
1068
+ Min?: number | undefined;
1069
+ Max?: number | undefined;
1070
+ Sum?: number | undefined;
1071
+ Avg?: number | undefined;
1072
+ Std?: number | undefined;
1073
+ P90?: number | undefined;
1040
1074
  }
1041
1075
  export interface SummaryMetricQueryResult {
1042
- QueryId?: string;
1043
- QueryStatus?: MetricQueryStatus;
1044
- Error?: string;
1045
- MetricName?: MetricName;
1046
- Dimensions?: Dimension[];
1047
- AggregationPeriod?: AggregationPeriod;
1048
- StartTimestamp?: Date;
1049
- EndTimestamp?: Date;
1050
- Timestamps?: Date[];
1051
- Values?: MetricQueryValue[];
1052
- Unit?: string;
1076
+ QueryId?: string | undefined;
1077
+ QueryStatus?: MetricQueryStatus | undefined;
1078
+ Error?: string | undefined;
1079
+ MetricName?: MetricName | undefined;
1080
+ Dimensions?: Dimension[] | undefined;
1081
+ AggregationPeriod?: AggregationPeriod | undefined;
1082
+ StartTimestamp?: Date | undefined;
1083
+ EndTimestamp?: Date | undefined;
1084
+ Timestamps?: Date[] | undefined;
1085
+ Values?: MetricQueryValue[] | undefined;
1086
+ Unit?: string | undefined;
1053
1087
  }
1054
1088
  export interface GetMetricsResponse {
1055
- SummaryMetricQueryResults?: SummaryMetricQueryResult[];
1089
+ SummaryMetricQueryResults?: SummaryMetricQueryResult[] | undefined;
1056
1090
  }
1057
1091
  export interface GetMulticastGroupRequest {
1058
1092
  Id: string | undefined;
1059
1093
  }
1060
1094
  export interface LoRaWANMulticastGet {
1061
- RfRegion?: SupportedRfRegion;
1062
- DlClass?: DlClass;
1063
- NumberOfDevicesRequested?: number;
1064
- NumberOfDevicesInGroup?: number;
1095
+ RfRegion?: SupportedRfRegion | undefined;
1096
+ DlClass?: DlClass | undefined;
1097
+ NumberOfDevicesRequested?: number | undefined;
1098
+ NumberOfDevicesInGroup?: number | undefined;
1099
+ ParticipatingGateways?: ParticipatingGatewaysMulticast | undefined;
1065
1100
  }
1066
1101
  export interface GetMulticastGroupResponse {
1067
- Arn?: string;
1068
- Id?: string;
1069
- Name?: string;
1070
- Description?: string;
1071
- Status?: string;
1072
- LoRaWAN?: LoRaWANMulticastGet;
1073
- CreatedAt?: Date;
1102
+ Arn?: string | undefined;
1103
+ Id?: string | undefined;
1104
+ Name?: string | undefined;
1105
+ Description?: string | undefined;
1106
+ Status?: string | undefined;
1107
+ LoRaWAN?: LoRaWANMulticastGet | undefined;
1108
+ CreatedAt?: Date | undefined;
1074
1109
  }
1075
1110
  export interface GetMulticastGroupSessionRequest {
1076
1111
  Id: string | undefined;
1077
1112
  }
1078
1113
  export interface LoRaWANMulticastSession {
1079
- DlDr?: number;
1080
- DlFreq?: number;
1081
- SessionStartTime?: Date;
1082
- SessionTimeout?: number;
1083
- PingSlotPeriod?: number;
1114
+ DlDr?: number | undefined;
1115
+ DlFreq?: number | undefined;
1116
+ SessionStartTime?: Date | undefined;
1117
+ SessionTimeout?: number | undefined;
1118
+ PingSlotPeriod?: number | undefined;
1084
1119
  }
1085
1120
  export interface GetMulticastGroupSessionResponse {
1086
- LoRaWAN?: LoRaWANMulticastSession;
1121
+ LoRaWAN?: LoRaWANMulticastSession | undefined;
1087
1122
  }
1088
1123
  export interface GetNetworkAnalyzerConfigurationRequest {
1089
1124
  ConfigurationName: string | undefined;
1090
1125
  }
1091
1126
  export interface GetNetworkAnalyzerConfigurationResponse {
1092
- TraceContent?: TraceContent;
1093
- WirelessDevices?: string[];
1094
- WirelessGateways?: string[];
1095
- Description?: string;
1096
- Arn?: string;
1097
- Name?: string;
1098
- MulticastGroups?: string[];
1127
+ TraceContent?: TraceContent | undefined;
1128
+ WirelessDevices?: string[] | undefined;
1129
+ WirelessGateways?: string[] | undefined;
1130
+ Description?: string | undefined;
1131
+ Arn?: string | undefined;
1132
+ Name?: string | undefined;
1133
+ MulticastGroups?: string[] | undefined;
1099
1134
  }
1100
1135
  export interface GetPartnerAccountRequest {
1101
1136
  PartnerAccountId: string | undefined;
1102
1137
  PartnerType: PartnerType | undefined;
1103
1138
  }
1104
1139
  export interface SidewalkAccountInfoWithFingerprint {
1105
- AmazonId?: string;
1106
- Fingerprint?: string;
1107
- Arn?: string;
1140
+ AmazonId?: string | undefined;
1141
+ Fingerprint?: string | undefined;
1142
+ Arn?: string | undefined;
1108
1143
  }
1109
1144
  export interface GetPartnerAccountResponse {
1110
- Sidewalk?: SidewalkAccountInfoWithFingerprint;
1111
- AccountLinked?: boolean;
1145
+ Sidewalk?: SidewalkAccountInfoWithFingerprint | undefined;
1146
+ AccountLinked?: boolean | undefined;
1112
1147
  }
1113
1148
  export declare const PositionResourceType: {
1114
1149
  readonly WirelessDevice: "WirelessDevice";
@@ -1131,12 +1166,12 @@ export declare const PositionSolverType: {
1131
1166
  export type PositionSolverType =
1132
1167
  (typeof PositionSolverType)[keyof typeof PositionSolverType];
1133
1168
  export interface GetPositionResponse {
1134
- Position?: number[];
1135
- Accuracy?: Accuracy;
1136
- SolverType?: PositionSolverType;
1137
- SolverProvider?: PositionSolverProvider;
1138
- SolverVersion?: string;
1139
- Timestamp?: string;
1169
+ Position?: number[] | undefined;
1170
+ Accuracy?: Accuracy | undefined;
1171
+ SolverType?: PositionSolverType | undefined;
1172
+ SolverProvider?: PositionSolverProvider | undefined;
1173
+ SolverVersion?: string | undefined;
1174
+ Timestamp?: string | undefined;
1140
1175
  }
1141
1176
  export interface GetPositionConfigurationRequest {
1142
1177
  ResourceIdentifier: string | undefined;
@@ -1155,25 +1190,25 @@ export declare const PositionConfigurationStatus: {
1155
1190
  export type PositionConfigurationStatus =
1156
1191
  (typeof PositionConfigurationStatus)[keyof typeof PositionConfigurationStatus];
1157
1192
  export interface SemtechGnssDetail {
1158
- Provider?: PositionSolverProvider;
1159
- Type?: PositionSolverType;
1160
- Status?: PositionConfigurationStatus;
1161
- Fec?: PositionConfigurationFec;
1193
+ Provider?: PositionSolverProvider | undefined;
1194
+ Type?: PositionSolverType | undefined;
1195
+ Status?: PositionConfigurationStatus | undefined;
1196
+ Fec?: PositionConfigurationFec | undefined;
1162
1197
  }
1163
1198
  export interface PositionSolverDetails {
1164
- SemtechGnss?: SemtechGnssDetail;
1199
+ SemtechGnss?: SemtechGnssDetail | undefined;
1165
1200
  }
1166
1201
  export interface GetPositionConfigurationResponse {
1167
- Solvers?: PositionSolverDetails;
1168
- Destination?: string;
1202
+ Solvers?: PositionSolverDetails | undefined;
1203
+ Destination?: string | undefined;
1169
1204
  }
1170
1205
  export interface Gnss {
1171
1206
  Payload: string | undefined;
1172
- CaptureTime?: number;
1173
- CaptureTimeAccuracy?: number;
1174
- AssistPosition?: number[];
1175
- AssistAltitude?: number;
1176
- Use2DSolver?: boolean;
1207
+ CaptureTime?: number | undefined;
1208
+ CaptureTimeAccuracy?: number | undefined;
1209
+ AssistPosition?: number[] | undefined;
1210
+ AssistAltitude?: number | undefined;
1211
+ Use2DSolver?: boolean | undefined;
1177
1212
  }
1178
1213
  export interface Ip {
1179
1214
  IpAddress: string | undefined;
@@ -1183,40 +1218,42 @@ export interface WiFiAccessPoint {
1183
1218
  Rss: number | undefined;
1184
1219
  }
1185
1220
  export interface GetPositionEstimateRequest {
1186
- WiFiAccessPoints?: WiFiAccessPoint[];
1187
- CellTowers?: CellTowers;
1188
- Ip?: Ip;
1189
- Gnss?: Gnss;
1190
- Timestamp?: Date;
1221
+ WiFiAccessPoints?: WiFiAccessPoint[] | undefined;
1222
+ CellTowers?: CellTowers | undefined;
1223
+ Ip?: Ip | undefined;
1224
+ Gnss?: Gnss | undefined;
1225
+ Timestamp?: Date | undefined;
1191
1226
  }
1192
1227
  export interface GetPositionEstimateResponse {
1193
- GeoJsonPayload?: Uint8Array;
1228
+ GeoJsonPayload?: Uint8Array | undefined;
1194
1229
  }
1195
1230
  export interface GetResourceEventConfigurationRequest {
1196
1231
  Identifier: string | undefined;
1197
1232
  IdentifierType: IdentifierType | undefined;
1198
- PartnerType?: EventNotificationPartnerType;
1233
+ PartnerType?: EventNotificationPartnerType | undefined;
1199
1234
  }
1200
1235
  export interface GetResourceEventConfigurationResponse {
1201
- DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
1202
- Proximity?: ProximityEventConfiguration;
1203
- Join?: JoinEventConfiguration;
1204
- ConnectionStatus?: ConnectionStatusEventConfiguration;
1205
- MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
1236
+ DeviceRegistrationState?:
1237
+ | DeviceRegistrationStateEventConfiguration
1238
+ | undefined;
1239
+ Proximity?: ProximityEventConfiguration | undefined;
1240
+ Join?: JoinEventConfiguration | undefined;
1241
+ ConnectionStatus?: ConnectionStatusEventConfiguration | undefined;
1242
+ MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration | undefined;
1206
1243
  }
1207
1244
  export interface GetResourceLogLevelRequest {
1208
1245
  ResourceIdentifier: string | undefined;
1209
1246
  ResourceType: string | undefined;
1210
1247
  }
1211
1248
  export interface GetResourceLogLevelResponse {
1212
- LogLevel?: LogLevel;
1249
+ LogLevel?: LogLevel | undefined;
1213
1250
  }
1214
1251
  export interface GetResourcePositionRequest {
1215
1252
  ResourceIdentifier: string | undefined;
1216
1253
  ResourceType: PositionResourceType | undefined;
1217
1254
  }
1218
1255
  export interface GetResourcePositionResponse {
1219
- GeoJsonPayload?: Uint8Array;
1256
+ GeoJsonPayload?: Uint8Array | undefined;
1220
1257
  }
1221
1258
  export declare const WirelessGatewayServiceType: {
1222
1259
  readonly CUPS: "CUPS";
@@ -1225,42 +1262,42 @@ export declare const WirelessGatewayServiceType: {
1225
1262
  export type WirelessGatewayServiceType =
1226
1263
  (typeof WirelessGatewayServiceType)[keyof typeof WirelessGatewayServiceType];
1227
1264
  export interface GetServiceEndpointRequest {
1228
- ServiceType?: WirelessGatewayServiceType;
1265
+ ServiceType?: WirelessGatewayServiceType | undefined;
1229
1266
  }
1230
1267
  export interface GetServiceEndpointResponse {
1231
- ServiceType?: WirelessGatewayServiceType;
1232
- ServiceEndpoint?: string;
1233
- ServerTrust?: string;
1268
+ ServiceType?: WirelessGatewayServiceType | undefined;
1269
+ ServiceEndpoint?: string | undefined;
1270
+ ServerTrust?: string | undefined;
1234
1271
  }
1235
1272
  export interface GetServiceProfileRequest {
1236
1273
  Id: string | undefined;
1237
1274
  }
1238
1275
  export interface LoRaWANGetServiceProfileInfo {
1239
- UlRate?: number;
1240
- UlBucketSize?: number;
1241
- UlRatePolicy?: string;
1242
- DlRate?: number;
1243
- DlBucketSize?: number;
1244
- DlRatePolicy?: string;
1245
- AddGwMetadata?: boolean;
1246
- DevStatusReqFreq?: number;
1247
- ReportDevStatusBattery?: boolean;
1248
- ReportDevStatusMargin?: boolean;
1249
- DrMin?: number;
1250
- DrMax?: number;
1251
- ChannelMask?: string;
1252
- PrAllowed?: boolean;
1253
- HrAllowed?: boolean;
1254
- RaAllowed?: boolean;
1255
- NwkGeoLoc?: boolean;
1256
- TargetPer?: number;
1257
- MinGwDiversity?: number;
1276
+ UlRate?: number | undefined;
1277
+ UlBucketSize?: number | undefined;
1278
+ UlRatePolicy?: string | undefined;
1279
+ DlRate?: number | undefined;
1280
+ DlBucketSize?: number | undefined;
1281
+ DlRatePolicy?: string | undefined;
1282
+ AddGwMetadata?: boolean | undefined;
1283
+ DevStatusReqFreq?: number | undefined;
1284
+ ReportDevStatusBattery?: boolean | undefined;
1285
+ ReportDevStatusMargin?: boolean | undefined;
1286
+ DrMin?: number | undefined;
1287
+ DrMax?: number | undefined;
1288
+ ChannelMask?: string | undefined;
1289
+ PrAllowed?: boolean | undefined;
1290
+ HrAllowed?: boolean | undefined;
1291
+ RaAllowed?: boolean | undefined;
1292
+ NwkGeoLoc?: boolean | undefined;
1293
+ TargetPer?: number | undefined;
1294
+ MinGwDiversity?: number | undefined;
1258
1295
  }
1259
1296
  export interface GetServiceProfileResponse {
1260
- Arn?: string;
1261
- Name?: string;
1262
- Id?: string;
1263
- LoRaWAN?: LoRaWANGetServiceProfileInfo;
1297
+ Arn?: string | undefined;
1298
+ Name?: string | undefined;
1299
+ Id?: string | undefined;
1300
+ LoRaWAN?: LoRaWANGetServiceProfileInfo | undefined;
1264
1301
  }
1265
1302
  export declare const WirelessDeviceIdType: {
1266
1303
  readonly DevEui: "DevEui";
@@ -1283,34 +1320,34 @@ export declare const WirelessDeviceSidewalkStatus: {
1283
1320
  export type WirelessDeviceSidewalkStatus =
1284
1321
  (typeof WirelessDeviceSidewalkStatus)[keyof typeof WirelessDeviceSidewalkStatus];
1285
1322
  export interface SidewalkDevice {
1286
- AmazonId?: string;
1287
- SidewalkId?: string;
1288
- SidewalkManufacturingSn?: string;
1289
- DeviceCertificates?: CertificateList[];
1290
- PrivateKeys?: CertificateList[];
1291
- DeviceProfileId?: string;
1292
- CertificateId?: string;
1293
- Status?: WirelessDeviceSidewalkStatus;
1323
+ AmazonId?: string | undefined;
1324
+ SidewalkId?: string | undefined;
1325
+ SidewalkManufacturingSn?: string | undefined;
1326
+ DeviceCertificates?: CertificateList[] | undefined;
1327
+ PrivateKeys?: CertificateList[] | undefined;
1328
+ DeviceProfileId?: string | undefined;
1329
+ CertificateId?: string | undefined;
1330
+ Status?: WirelessDeviceSidewalkStatus | undefined;
1294
1331
  }
1295
1332
  export interface GetWirelessDeviceResponse {
1296
- Type?: WirelessDeviceType;
1297
- Name?: string;
1298
- Description?: string;
1299
- DestinationName?: string;
1300
- Id?: string;
1301
- Arn?: string;
1302
- ThingName?: string;
1303
- ThingArn?: string;
1304
- LoRaWAN?: LoRaWANDevice;
1305
- Sidewalk?: SidewalkDevice;
1306
- Positioning?: PositioningConfigStatus;
1333
+ Type?: WirelessDeviceType | undefined;
1334
+ Name?: string | undefined;
1335
+ Description?: string | undefined;
1336
+ DestinationName?: string | undefined;
1337
+ Id?: string | undefined;
1338
+ Arn?: string | undefined;
1339
+ ThingName?: string | undefined;
1340
+ ThingArn?: string | undefined;
1341
+ LoRaWAN?: LoRaWANDevice | undefined;
1342
+ Sidewalk?: SidewalkDevice | undefined;
1343
+ Positioning?: PositioningConfigStatus | undefined;
1307
1344
  }
1308
1345
  export interface GetWirelessDeviceImportTaskRequest {
1309
1346
  Id: string | undefined;
1310
1347
  }
1311
1348
  export interface SidewalkGetStartImportInfo {
1312
- DeviceCreationFileList?: string[];
1313
- Role?: string;
1349
+ DeviceCreationFileList?: string[] | undefined;
1350
+ Role?: string | undefined;
1314
1351
  }
1315
1352
  export declare const ImportTaskStatus: {
1316
1353
  readonly COMPLETE: "COMPLETE";
@@ -1323,54 +1360,54 @@ export declare const ImportTaskStatus: {
1323
1360
  export type ImportTaskStatus =
1324
1361
  (typeof ImportTaskStatus)[keyof typeof ImportTaskStatus];
1325
1362
  export interface GetWirelessDeviceImportTaskResponse {
1326
- Id?: string;
1327
- Arn?: string;
1328
- DestinationName?: string;
1329
- Sidewalk?: SidewalkGetStartImportInfo;
1330
- CreationTime?: Date;
1331
- Status?: ImportTaskStatus;
1332
- StatusReason?: string;
1333
- InitializedImportedDeviceCount?: number;
1334
- PendingImportedDeviceCount?: number;
1335
- OnboardedImportedDeviceCount?: number;
1336
- FailedImportedDeviceCount?: number;
1363
+ Id?: string | undefined;
1364
+ Arn?: string | undefined;
1365
+ DestinationName?: string | undefined;
1366
+ Sidewalk?: SidewalkGetStartImportInfo | undefined;
1367
+ CreationTime?: Date | undefined;
1368
+ Status?: ImportTaskStatus | undefined;
1369
+ StatusReason?: string | undefined;
1370
+ InitializedImportedDeviceCount?: number | undefined;
1371
+ PendingImportedDeviceCount?: number | undefined;
1372
+ OnboardedImportedDeviceCount?: number | undefined;
1373
+ FailedImportedDeviceCount?: number | undefined;
1337
1374
  }
1338
1375
  export interface GetWirelessDeviceStatisticsRequest {
1339
1376
  WirelessDeviceId: string | undefined;
1340
1377
  }
1341
1378
  export interface LoRaWANGatewayMetadata {
1342
- GatewayEui?: string;
1343
- Snr?: number;
1344
- Rssi?: number;
1379
+ GatewayEui?: string | undefined;
1380
+ Snr?: number | undefined;
1381
+ Rssi?: number | undefined;
1345
1382
  }
1346
1383
  export interface LoRaWANPublicGatewayMetadata {
1347
- ProviderNetId?: string;
1348
- Id?: string;
1349
- Rssi?: number;
1350
- Snr?: number;
1351
- RfRegion?: string;
1352
- DlAllowed?: boolean;
1384
+ ProviderNetId?: string | undefined;
1385
+ Id?: string | undefined;
1386
+ Rssi?: number | undefined;
1387
+ Snr?: number | undefined;
1388
+ RfRegion?: string | undefined;
1389
+ DlAllowed?: boolean | undefined;
1353
1390
  }
1354
1391
  export interface LoRaWANDeviceMetadata {
1355
- DevEui?: string;
1356
- FPort?: number;
1357
- DataRate?: number;
1358
- Frequency?: number;
1359
- Timestamp?: string;
1360
- Gateways?: LoRaWANGatewayMetadata[];
1361
- PublicGateways?: LoRaWANPublicGatewayMetadata[];
1392
+ DevEui?: string | undefined;
1393
+ FPort?: number | undefined;
1394
+ DataRate?: number | undefined;
1395
+ Frequency?: number | undefined;
1396
+ Timestamp?: string | undefined;
1397
+ Gateways?: LoRaWANGatewayMetadata[] | undefined;
1398
+ PublicGateways?: LoRaWANPublicGatewayMetadata[] | undefined;
1362
1399
  }
1363
1400
  export interface SidewalkDeviceMetadata {
1364
- Rssi?: number;
1365
- BatteryLevel?: BatteryLevel;
1366
- Event?: Event;
1367
- DeviceState?: DeviceState;
1401
+ Rssi?: number | undefined;
1402
+ BatteryLevel?: BatteryLevel | undefined;
1403
+ Event?: Event | undefined;
1404
+ DeviceState?: DeviceState | undefined;
1368
1405
  }
1369
1406
  export interface GetWirelessDeviceStatisticsResponse {
1370
- WirelessDeviceId?: string;
1371
- LastUplinkReceivedAt?: string;
1372
- LoRaWAN?: LoRaWANDeviceMetadata;
1373
- Sidewalk?: SidewalkDeviceMetadata;
1407
+ WirelessDeviceId?: string | undefined;
1408
+ LastUplinkReceivedAt?: string | undefined;
1409
+ LoRaWAN?: LoRaWANDeviceMetadata | undefined;
1410
+ Sidewalk?: SidewalkDeviceMetadata | undefined;
1374
1411
  }
1375
1412
  export declare const WirelessGatewayIdType: {
1376
1413
  readonly GatewayEui: "GatewayEui";
@@ -1384,56 +1421,56 @@ export interface GetWirelessGatewayRequest {
1384
1421
  IdentifierType: WirelessGatewayIdType | undefined;
1385
1422
  }
1386
1423
  export interface GetWirelessGatewayResponse {
1387
- Name?: string;
1388
- Id?: string;
1389
- Description?: string;
1390
- LoRaWAN?: LoRaWANGateway;
1391
- Arn?: string;
1392
- ThingName?: string;
1393
- ThingArn?: string;
1424
+ Name?: string | undefined;
1425
+ Id?: string | undefined;
1426
+ Description?: string | undefined;
1427
+ LoRaWAN?: LoRaWANGateway | undefined;
1428
+ Arn?: string | undefined;
1429
+ ThingName?: string | undefined;
1430
+ ThingArn?: string | undefined;
1394
1431
  }
1395
1432
  export interface GetWirelessGatewayCertificateRequest {
1396
1433
  Id: string | undefined;
1397
1434
  }
1398
1435
  export interface GetWirelessGatewayCertificateResponse {
1399
- IotCertificateId?: string;
1400
- LoRaWANNetworkServerCertificateId?: string;
1436
+ IotCertificateId?: string | undefined;
1437
+ LoRaWANNetworkServerCertificateId?: string | undefined;
1401
1438
  }
1402
1439
  export interface GetWirelessGatewayFirmwareInformationRequest {
1403
1440
  Id: string | undefined;
1404
1441
  }
1405
1442
  export interface LoRaWANGatewayCurrentVersion {
1406
- CurrentVersion?: LoRaWANGatewayVersion;
1443
+ CurrentVersion?: LoRaWANGatewayVersion | undefined;
1407
1444
  }
1408
1445
  export interface GetWirelessGatewayFirmwareInformationResponse {
1409
- LoRaWAN?: LoRaWANGatewayCurrentVersion;
1446
+ LoRaWAN?: LoRaWANGatewayCurrentVersion | undefined;
1410
1447
  }
1411
1448
  export interface GetWirelessGatewayStatisticsRequest {
1412
1449
  WirelessGatewayId: string | undefined;
1413
1450
  }
1414
1451
  export interface GetWirelessGatewayStatisticsResponse {
1415
- WirelessGatewayId?: string;
1416
- LastUplinkReceivedAt?: string;
1417
- ConnectionStatus?: ConnectionStatus;
1452
+ WirelessGatewayId?: string | undefined;
1453
+ LastUplinkReceivedAt?: string | undefined;
1454
+ ConnectionStatus?: ConnectionStatus | undefined;
1418
1455
  }
1419
1456
  export interface GetWirelessGatewayTaskRequest {
1420
1457
  Id: string | undefined;
1421
1458
  }
1422
1459
  export interface GetWirelessGatewayTaskResponse {
1423
- WirelessGatewayId?: string;
1424
- WirelessGatewayTaskDefinitionId?: string;
1425
- LastUplinkReceivedAt?: string;
1426
- TaskCreatedAt?: string;
1427
- Status?: WirelessGatewayTaskStatus;
1460
+ WirelessGatewayId?: string | undefined;
1461
+ WirelessGatewayTaskDefinitionId?: string | undefined;
1462
+ LastUplinkReceivedAt?: string | undefined;
1463
+ TaskCreatedAt?: string | undefined;
1464
+ Status?: WirelessGatewayTaskStatus | undefined;
1428
1465
  }
1429
1466
  export interface GetWirelessGatewayTaskDefinitionRequest {
1430
1467
  Id: string | undefined;
1431
1468
  }
1432
1469
  export interface GetWirelessGatewayTaskDefinitionResponse {
1433
- AutoCreateTasks?: boolean;
1434
- Name?: string;
1435
- Update?: UpdateWirelessGatewayTaskCreate;
1436
- Arn?: string;
1470
+ AutoCreateTasks?: boolean | undefined;
1471
+ Name?: string | undefined;
1472
+ Update?: UpdateWirelessGatewayTaskCreate | undefined;
1473
+ Arn?: string | undefined;
1437
1474
  }
1438
1475
  export declare const OnboardStatus: {
1439
1476
  readonly FAILED: "FAILED";
@@ -1443,103 +1480,83 @@ export declare const OnboardStatus: {
1443
1480
  };
1444
1481
  export type OnboardStatus = (typeof OnboardStatus)[keyof typeof OnboardStatus];
1445
1482
  export interface ImportedSidewalkDevice {
1446
- SidewalkManufacturingSn?: string;
1447
- OnboardingStatus?: OnboardStatus;
1448
- OnboardingStatusReason?: string;
1449
- LastUpdateTime?: Date;
1483
+ SidewalkManufacturingSn?: string | undefined;
1484
+ OnboardingStatus?: OnboardStatus | undefined;
1485
+ OnboardingStatusReason?: string | undefined;
1486
+ LastUpdateTime?: Date | undefined;
1450
1487
  }
1451
1488
  export interface ImportedWirelessDevice {
1452
- Sidewalk?: ImportedSidewalkDevice;
1489
+ Sidewalk?: ImportedSidewalkDevice | undefined;
1453
1490
  }
1454
1491
  export interface ListDestinationsRequest {
1455
- MaxResults?: number;
1456
- NextToken?: string;
1492
+ MaxResults?: number | undefined;
1493
+ NextToken?: string | undefined;
1457
1494
  }
1458
1495
  export interface ListDestinationsResponse {
1459
- NextToken?: string;
1460
- DestinationList?: Destinations[];
1496
+ NextToken?: string | undefined;
1497
+ DestinationList?: Destinations[] | undefined;
1461
1498
  }
1462
1499
  export interface ListDeviceProfilesRequest {
1463
- NextToken?: string;
1464
- MaxResults?: number;
1465
- DeviceProfileType?: DeviceProfileType;
1500
+ NextToken?: string | undefined;
1501
+ MaxResults?: number | undefined;
1502
+ DeviceProfileType?: DeviceProfileType | undefined;
1466
1503
  }
1467
1504
  export interface ListDeviceProfilesResponse {
1468
- NextToken?: string;
1469
- DeviceProfileList?: DeviceProfile[];
1505
+ NextToken?: string | undefined;
1506
+ DeviceProfileList?: DeviceProfile[] | undefined;
1470
1507
  }
1471
1508
  export interface ListDevicesForWirelessDeviceImportTaskRequest {
1472
1509
  Id: string | undefined;
1473
- MaxResults?: number;
1474
- NextToken?: string;
1475
- Status?: OnboardStatus;
1510
+ MaxResults?: number | undefined;
1511
+ NextToken?: string | undefined;
1512
+ Status?: OnboardStatus | undefined;
1476
1513
  }
1477
1514
  export interface ListDevicesForWirelessDeviceImportTaskResponse {
1478
- NextToken?: string;
1479
- DestinationName?: string;
1480
- ImportedWirelessDeviceList?: ImportedWirelessDevice[];
1515
+ NextToken?: string | undefined;
1516
+ DestinationName?: string | undefined;
1517
+ ImportedWirelessDeviceList?: ImportedWirelessDevice[] | undefined;
1481
1518
  }
1482
1519
  export interface ListEventConfigurationsRequest {
1483
1520
  ResourceType: EventNotificationResourceType | undefined;
1484
- MaxResults?: number;
1485
- NextToken?: string;
1521
+ MaxResults?: number | undefined;
1522
+ NextToken?: string | undefined;
1486
1523
  }
1487
1524
  export interface ListEventConfigurationsResponse {
1488
- NextToken?: string;
1489
- EventConfigurationsList?: EventConfigurationItem[];
1525
+ NextToken?: string | undefined;
1526
+ EventConfigurationsList?: EventConfigurationItem[] | undefined;
1490
1527
  }
1491
1528
  export interface ListFuotaTasksRequest {
1492
- NextToken?: string;
1493
- MaxResults?: number;
1529
+ NextToken?: string | undefined;
1530
+ MaxResults?: number | undefined;
1494
1531
  }
1495
1532
  export interface ListFuotaTasksResponse {
1496
- NextToken?: string;
1497
- FuotaTaskList?: FuotaTask[];
1533
+ NextToken?: string | undefined;
1534
+ FuotaTaskList?: FuotaTask[] | undefined;
1498
1535
  }
1499
1536
  export interface ListMulticastGroupsRequest {
1500
- NextToken?: string;
1501
- MaxResults?: number;
1537
+ NextToken?: string | undefined;
1538
+ MaxResults?: number | undefined;
1502
1539
  }
1503
1540
  export interface MulticastGroup {
1504
- Id?: string;
1505
- Arn?: string;
1506
- Name?: string;
1541
+ Id?: string | undefined;
1542
+ Arn?: string | undefined;
1543
+ Name?: string | undefined;
1507
1544
  }
1508
1545
  export interface ListMulticastGroupsResponse {
1509
- NextToken?: string;
1510
- MulticastGroupList?: MulticastGroup[];
1546
+ NextToken?: string | undefined;
1547
+ MulticastGroupList?: MulticastGroup[] | undefined;
1511
1548
  }
1512
1549
  export interface ListMulticastGroupsByFuotaTaskRequest {
1513
1550
  Id: string | undefined;
1514
- NextToken?: string;
1515
- MaxResults?: number;
1551
+ NextToken?: string | undefined;
1552
+ MaxResults?: number | undefined;
1516
1553
  }
1517
1554
  export interface MulticastGroupByFuotaTask {
1518
- Id?: string;
1555
+ Id?: string | undefined;
1519
1556
  }
1520
1557
  export interface ListMulticastGroupsByFuotaTaskResponse {
1521
- NextToken?: string;
1522
- MulticastGroupList?: MulticastGroupByFuotaTask[];
1523
- }
1524
- export interface ListNetworkAnalyzerConfigurationsRequest {
1525
- MaxResults?: number;
1526
- NextToken?: string;
1527
- }
1528
- export interface NetworkAnalyzerConfigurations {
1529
- Arn?: string;
1530
- Name?: string;
1531
- }
1532
- export interface ListNetworkAnalyzerConfigurationsResponse {
1533
- NextToken?: string;
1534
- NetworkAnalyzerConfigurationList?: NetworkAnalyzerConfigurations[];
1535
- }
1536
- export interface ListPartnerAccountsRequest {
1537
- NextToken?: string;
1538
- MaxResults?: number;
1539
- }
1540
- export interface ListPartnerAccountsResponse {
1541
- NextToken?: string;
1542
- Sidewalk?: SidewalkAccountInfoWithFingerprint[];
1558
+ NextToken?: string | undefined;
1559
+ MulticastGroupList?: MulticastGroupByFuotaTask[] | undefined;
1543
1560
  }
1544
1561
  export declare const SidewalkAccountInfoFilterSensitiveLog: (
1545
1562
  obj: SidewalkAccountInfo
@@ -1562,6 +1579,3 @@ export declare const SidewalkAccountInfoWithFingerprintFilterSensitiveLog: (
1562
1579
  export declare const GetPartnerAccountResponseFilterSensitiveLog: (
1563
1580
  obj: GetPartnerAccountResponse
1564
1581
  ) => any;
1565
- export declare const ListPartnerAccountsResponseFilterSensitiveLog: (
1566
- obj: ListPartnerAccountsResponse
1567
- ) => any;