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