@aws-sdk/client-panorama 3.686.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,7 +9,7 @@ export declare class AccessDeniedException extends __BaseException {
9
9
  );
10
10
  }
11
11
  export interface AlternateSoftwareMetadata {
12
- Version?: string;
12
+ Version?: string | undefined;
13
13
  }
14
14
  export declare const ApplicationInstanceHealthStatus: {
15
15
  readonly ERROR: "ERROR";
@@ -61,18 +61,18 @@ export declare const ApplicationInstanceStatus: {
61
61
  export type ApplicationInstanceStatus =
62
62
  (typeof ApplicationInstanceStatus)[keyof typeof ApplicationInstanceStatus];
63
63
  export interface ApplicationInstance {
64
- Name?: string;
65
- ApplicationInstanceId?: string;
66
- DefaultRuntimeContextDevice?: string;
67
- DefaultRuntimeContextDeviceName?: string;
68
- Description?: string;
69
- Status?: ApplicationInstanceStatus;
70
- HealthStatus?: ApplicationInstanceHealthStatus;
71
- StatusDescription?: string;
72
- CreatedTime?: Date;
73
- Arn?: string;
74
- Tags?: Record<string, string>;
75
- RuntimeContextStates?: ReportedRuntimeContextState[];
64
+ Name?: string | undefined;
65
+ ApplicationInstanceId?: string | undefined;
66
+ DefaultRuntimeContextDevice?: string | undefined;
67
+ DefaultRuntimeContextDeviceName?: string | undefined;
68
+ Description?: string | undefined;
69
+ Status?: ApplicationInstanceStatus | undefined;
70
+ HealthStatus?: ApplicationInstanceHealthStatus | undefined;
71
+ StatusDescription?: string | undefined;
72
+ CreatedTime?: Date | undefined;
73
+ Arn?: string | undefined;
74
+ Tags?: Record<string, string> | undefined;
75
+ RuntimeContextStates?: ReportedRuntimeContextState[] | undefined;
76
76
  }
77
77
  export interface ConflictExceptionErrorArgument {
78
78
  Name: string | undefined;
@@ -84,8 +84,8 @@ export declare class ConflictException extends __BaseException {
84
84
  Message: string | undefined;
85
85
  ResourceId: string | undefined;
86
86
  ResourceType: string | undefined;
87
- ErrorId?: string;
88
- ErrorArguments?: ConflictExceptionErrorArgument[];
87
+ ErrorId?: string | undefined;
88
+ ErrorArguments?: ConflictExceptionErrorArgument[] | undefined;
89
89
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
90
90
  }
91
91
  export declare const ConnectionType: {
@@ -131,14 +131,14 @@ export declare namespace ManifestPayload {
131
131
  const visit: <T>(value: ManifestPayload, visitor: Visitor<T>) => T;
132
132
  }
133
133
  export interface CreateApplicationInstanceRequest {
134
- Name?: string;
135
- Description?: string;
134
+ Name?: string | undefined;
135
+ Description?: string | undefined;
136
136
  ManifestPayload: ManifestPayload | undefined;
137
- ManifestOverridesPayload?: ManifestOverridesPayload;
138
- ApplicationInstanceIdToReplace?: string;
139
- RuntimeRoleArn?: string;
137
+ ManifestOverridesPayload?: ManifestOverridesPayload | undefined;
138
+ ApplicationInstanceIdToReplace?: string | undefined;
139
+ RuntimeRoleArn?: string | undefined;
140
140
  DefaultRuntimeContextDevice: string | undefined;
141
- Tags?: Record<string, string>;
141
+ Tags?: Record<string, string> | undefined;
142
142
  }
143
143
  export interface CreateApplicationInstanceResponse {
144
144
  ApplicationInstanceId: string | undefined;
@@ -147,7 +147,7 @@ export declare class InternalServerException extends __BaseException {
147
147
  readonly name: "InternalServerException";
148
148
  readonly $fault: "server";
149
149
  Message: string | undefined;
150
- RetryAfterSeconds?: number;
150
+ RetryAfterSeconds?: number | undefined;
151
151
  constructor(
152
152
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
153
153
  );
@@ -156,8 +156,8 @@ export declare class ServiceQuotaExceededException extends __BaseException {
156
156
  readonly name: "ServiceQuotaExceededException";
157
157
  readonly $fault: "client";
158
158
  Message: string | undefined;
159
- ResourceId?: string;
160
- ResourceType?: string;
159
+ ResourceId?: string | undefined;
160
+ ResourceType?: string | undefined;
161
161
  QuotaCode: string | undefined;
162
162
  ServiceCode: string | undefined;
163
163
  constructor(
@@ -184,20 +184,20 @@ export declare class ValidationException extends __BaseException {
184
184
  readonly name: "ValidationException";
185
185
  readonly $fault: "client";
186
186
  Message: string | undefined;
187
- Reason?: ValidationExceptionReason;
188
- ErrorId?: string;
189
- ErrorArguments?: ValidationExceptionErrorArgument[];
190
- Fields?: ValidationExceptionField[];
187
+ Reason?: ValidationExceptionReason | undefined;
188
+ ErrorId?: string | undefined;
189
+ ErrorArguments?: ValidationExceptionErrorArgument[] | undefined;
190
+ Fields?: ValidationExceptionField[] | undefined;
191
191
  constructor(
192
192
  opts: __ExceptionOptionType<ValidationException, __BaseException>
193
193
  );
194
194
  }
195
195
  export interface OTAJobConfig {
196
196
  ImageVersion: string | undefined;
197
- AllowMajorVersionUpdate?: boolean;
197
+ AllowMajorVersionUpdate?: boolean | undefined;
198
198
  }
199
199
  export interface DeviceJobConfig {
200
- OTAJobConfig?: OTAJobConfig;
200
+ OTAJobConfig?: OTAJobConfig | undefined;
201
201
  }
202
202
  export declare const JobType: {
203
203
  readonly OTA: "OTA";
@@ -206,12 +206,12 @@ export declare const JobType: {
206
206
  export type JobType = (typeof JobType)[keyof typeof JobType];
207
207
  export interface CreateJobForDevicesRequest {
208
208
  DeviceIds: string[] | undefined;
209
- DeviceJobConfig?: DeviceJobConfig;
209
+ DeviceJobConfig?: DeviceJobConfig | undefined;
210
210
  JobType: JobType | undefined;
211
211
  }
212
212
  export interface Job {
213
- JobId?: string;
214
- DeviceId?: string;
213
+ JobId?: string | undefined;
214
+ DeviceId?: string | undefined;
215
215
  }
216
216
  export interface CreateJobForDevicesResponse {
217
217
  Jobs: Job[] | undefined;
@@ -244,16 +244,16 @@ export interface CreateNodeFromTemplateJobRequest {
244
244
  OutputPackageName: string | undefined;
245
245
  OutputPackageVersion: string | undefined;
246
246
  NodeName: string | undefined;
247
- NodeDescription?: string;
247
+ NodeDescription?: string | undefined;
248
248
  TemplateParameters: Record<string, string> | undefined;
249
- JobTags?: JobResourceTags[];
249
+ JobTags?: JobResourceTags[] | undefined;
250
250
  }
251
251
  export interface CreateNodeFromTemplateJobResponse {
252
252
  JobId: string | undefined;
253
253
  }
254
254
  export interface CreatePackageRequest {
255
255
  PackageName: string | undefined;
256
- Tags?: Record<string, string>;
256
+ Tags?: Record<string, string> | undefined;
257
257
  }
258
258
  export interface StorageLocation {
259
259
  Bucket: string | undefined;
@@ -263,12 +263,12 @@ export interface StorageLocation {
263
263
  ManifestPrefixLocation: string | undefined;
264
264
  }
265
265
  export interface CreatePackageResponse {
266
- PackageId?: string;
267
- Arn?: string;
266
+ PackageId?: string | undefined;
267
+ Arn?: string | undefined;
268
268
  StorageLocation: StorageLocation | undefined;
269
269
  }
270
270
  export interface S3Location {
271
- Region?: string;
271
+ Region?: string | undefined;
272
272
  BucketName: string | undefined;
273
273
  ObjectKey: string | undefined;
274
274
  }
@@ -276,7 +276,7 @@ export interface PackageVersionInputConfig {
276
276
  S3Location: S3Location | undefined;
277
277
  }
278
278
  export interface PackageImportJobInputConfig {
279
- PackageVersionInputConfig?: PackageVersionInputConfig;
279
+ PackageVersionInputConfig?: PackageVersionInputConfig | undefined;
280
280
  }
281
281
  export declare const PackageImportJobType: {
282
282
  readonly MARKETPLACE_NODE_PACKAGE_VERSION: "MARKETPLACE_NODE_PACKAGE_VERSION";
@@ -287,17 +287,17 @@ export type PackageImportJobType =
287
287
  export interface PackageVersionOutputConfig {
288
288
  PackageName: string | undefined;
289
289
  PackageVersion: string | undefined;
290
- MarkLatest?: boolean;
290
+ MarkLatest?: boolean | undefined;
291
291
  }
292
292
  export interface PackageImportJobOutputConfig {
293
- PackageVersionOutputConfig?: PackageVersionOutputConfig;
293
+ PackageVersionOutputConfig?: PackageVersionOutputConfig | undefined;
294
294
  }
295
295
  export interface CreatePackageImportJobRequest {
296
296
  JobType: PackageImportJobType | undefined;
297
297
  InputConfig: PackageImportJobInputConfig | undefined;
298
298
  OutputConfig: PackageImportJobOutputConfig | undefined;
299
299
  ClientToken: string | undefined;
300
- JobTags?: JobResourceTags[];
300
+ JobTags?: JobResourceTags[] | undefined;
301
301
  }
302
302
  export interface CreatePackageImportJobResponse {
303
303
  JobId: string | undefined;
@@ -306,53 +306,53 @@ export interface DeleteDeviceRequest {
306
306
  DeviceId: string | undefined;
307
307
  }
308
308
  export interface DeleteDeviceResponse {
309
- DeviceId?: string;
309
+ DeviceId?: string | undefined;
310
310
  }
311
311
  export interface DeletePackageRequest {
312
312
  PackageId: string | undefined;
313
- ForceDelete?: boolean;
313
+ ForceDelete?: boolean | undefined;
314
314
  }
315
315
  export interface DeletePackageResponse {}
316
316
  export interface DeregisterPackageVersionRequest {
317
- OwnerAccount?: string;
317
+ OwnerAccount?: string | undefined;
318
318
  PackageId: string | undefined;
319
319
  PackageVersion: string | undefined;
320
320
  PatchVersion: string | undefined;
321
- UpdatedLatestPatchVersion?: string;
321
+ UpdatedLatestPatchVersion?: string | undefined;
322
322
  }
323
323
  export interface DeregisterPackageVersionResponse {}
324
324
  export interface DescribeApplicationInstanceRequest {
325
325
  ApplicationInstanceId: string | undefined;
326
326
  }
327
327
  export interface DescribeApplicationInstanceResponse {
328
- Name?: string;
329
- Description?: string;
330
- DefaultRuntimeContextDevice?: string;
331
- DefaultRuntimeContextDeviceName?: string;
332
- ApplicationInstanceIdToReplace?: string;
333
- RuntimeRoleArn?: string;
334
- Status?: ApplicationInstanceStatus;
335
- HealthStatus?: ApplicationInstanceHealthStatus;
336
- StatusDescription?: string;
337
- CreatedTime?: Date;
338
- LastUpdatedTime?: Date;
339
- ApplicationInstanceId?: string;
340
- Arn?: string;
341
- Tags?: Record<string, string>;
342
- RuntimeContextStates?: ReportedRuntimeContextState[];
328
+ Name?: string | undefined;
329
+ Description?: string | undefined;
330
+ DefaultRuntimeContextDevice?: string | undefined;
331
+ DefaultRuntimeContextDeviceName?: string | undefined;
332
+ ApplicationInstanceIdToReplace?: string | undefined;
333
+ RuntimeRoleArn?: string | undefined;
334
+ Status?: ApplicationInstanceStatus | undefined;
335
+ HealthStatus?: ApplicationInstanceHealthStatus | undefined;
336
+ StatusDescription?: string | undefined;
337
+ CreatedTime?: Date | undefined;
338
+ LastUpdatedTime?: Date | undefined;
339
+ ApplicationInstanceId?: string | undefined;
340
+ Arn?: string | undefined;
341
+ Tags?: Record<string, string> | undefined;
342
+ RuntimeContextStates?: ReportedRuntimeContextState[] | undefined;
343
343
  }
344
344
  export interface DescribeApplicationInstanceDetailsRequest {
345
345
  ApplicationInstanceId: string | undefined;
346
346
  }
347
347
  export interface DescribeApplicationInstanceDetailsResponse {
348
- Name?: string;
349
- Description?: string;
350
- DefaultRuntimeContextDevice?: string;
351
- ManifestPayload?: ManifestPayload;
352
- ManifestOverridesPayload?: ManifestOverridesPayload;
353
- ApplicationInstanceIdToReplace?: string;
354
- CreatedTime?: Date;
355
- ApplicationInstanceId?: string;
348
+ Name?: string | undefined;
349
+ Description?: string | undefined;
350
+ DefaultRuntimeContextDevice?: string | undefined;
351
+ ManifestPayload?: ManifestPayload | undefined;
352
+ ManifestOverridesPayload?: ManifestOverridesPayload | undefined;
353
+ ApplicationInstanceIdToReplace?: string | undefined;
354
+ CreatedTime?: Date | undefined;
355
+ ApplicationInstanceId?: string | undefined;
356
356
  }
357
357
  export interface DescribeDeviceRequest {
358
358
  DeviceId: string | undefined;
@@ -370,20 +370,20 @@ export declare const NetworkConnectionStatus: {
370
370
  export type NetworkConnectionStatus =
371
371
  (typeof NetworkConnectionStatus)[keyof typeof NetworkConnectionStatus];
372
372
  export interface EthernetStatus {
373
- IpAddress?: string;
374
- ConnectionStatus?: NetworkConnectionStatus;
375
- HwAddress?: string;
373
+ IpAddress?: string | undefined;
374
+ ConnectionStatus?: NetworkConnectionStatus | undefined;
375
+ HwAddress?: string | undefined;
376
376
  }
377
377
  export interface NtpStatus {
378
- ConnectionStatus?: NetworkConnectionStatus;
379
- IpAddress?: string;
380
- NtpServerName?: string;
378
+ ConnectionStatus?: NetworkConnectionStatus | undefined;
379
+ IpAddress?: string | undefined;
380
+ NtpServerName?: string | undefined;
381
381
  }
382
382
  export interface NetworkStatus {
383
- Ethernet0Status?: EthernetStatus;
384
- Ethernet1Status?: EthernetStatus;
385
- NtpStatus?: NtpStatus;
386
- LastUpdatedTime?: Date;
383
+ Ethernet0Status?: EthernetStatus | undefined;
384
+ Ethernet1Status?: EthernetStatus | undefined;
385
+ NtpStatus?: NtpStatus | undefined;
386
+ LastUpdatedTime?: Date | undefined;
387
387
  }
388
388
  export declare const DeviceAggregatedStatus: {
389
389
  readonly AWAITING_PROVISIONING: "AWAITING_PROVISIONING";
@@ -420,9 +420,9 @@ export declare const UpdateProgress: {
420
420
  export type UpdateProgress =
421
421
  (typeof UpdateProgress)[keyof typeof UpdateProgress];
422
422
  export interface LatestDeviceJob {
423
- ImageVersion?: string;
424
- Status?: UpdateProgress;
425
- JobType?: JobType;
423
+ ImageVersion?: string | undefined;
424
+ Status?: UpdateProgress | undefined;
425
+ JobType?: JobType | undefined;
426
426
  }
427
427
  export interface StaticIpConnectionInfo {
428
428
  IpAddress: string | undefined;
@@ -432,15 +432,15 @@ export interface StaticIpConnectionInfo {
432
432
  }
433
433
  export interface EthernetPayload {
434
434
  ConnectionType: ConnectionType | undefined;
435
- StaticIpConnectionInfo?: StaticIpConnectionInfo;
435
+ StaticIpConnectionInfo?: StaticIpConnectionInfo | undefined;
436
436
  }
437
437
  export interface NtpPayload {
438
438
  NtpServers: string[] | undefined;
439
439
  }
440
440
  export interface NetworkPayload {
441
- Ethernet0?: EthernetPayload;
442
- Ethernet1?: EthernetPayload;
443
- Ntp?: NtpPayload;
441
+ Ethernet0?: EthernetPayload | undefined;
442
+ Ethernet1?: EthernetPayload | undefined;
443
+ Ntp?: NtpPayload | undefined;
444
444
  }
445
445
  export declare const DeviceStatus: {
446
446
  readonly AWAITING_PROVISIONING: "AWAITING_PROVISIONING";
@@ -457,44 +457,44 @@ export declare const DeviceType: {
457
457
  };
458
458
  export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
459
459
  export interface DescribeDeviceResponse {
460
- DeviceId?: string;
461
- Name?: string;
462
- Arn?: string;
463
- Description?: string;
464
- Type?: DeviceType;
465
- DeviceConnectionStatus?: DeviceConnectionStatus;
466
- CreatedTime?: Date;
467
- ProvisioningStatus?: DeviceStatus;
468
- LatestSoftware?: string;
469
- CurrentSoftware?: string;
470
- SerialNumber?: string;
471
- Tags?: Record<string, string>;
472
- NetworkingConfiguration?: NetworkPayload;
473
- CurrentNetworkingStatus?: NetworkStatus;
474
- LeaseExpirationTime?: Date;
475
- AlternateSoftwares?: AlternateSoftwareMetadata[];
476
- LatestAlternateSoftware?: string;
477
- Brand?: DeviceBrand;
478
- LatestDeviceJob?: LatestDeviceJob;
479
- DeviceAggregatedStatus?: DeviceAggregatedStatus;
460
+ DeviceId?: string | undefined;
461
+ Name?: string | undefined;
462
+ Arn?: string | undefined;
463
+ Description?: string | undefined;
464
+ Type?: DeviceType | undefined;
465
+ DeviceConnectionStatus?: DeviceConnectionStatus | undefined;
466
+ CreatedTime?: Date | undefined;
467
+ ProvisioningStatus?: DeviceStatus | undefined;
468
+ LatestSoftware?: string | undefined;
469
+ CurrentSoftware?: string | undefined;
470
+ SerialNumber?: string | undefined;
471
+ Tags?: Record<string, string> | undefined;
472
+ NetworkingConfiguration?: NetworkPayload | undefined;
473
+ CurrentNetworkingStatus?: NetworkStatus | undefined;
474
+ LeaseExpirationTime?: Date | undefined;
475
+ AlternateSoftwares?: AlternateSoftwareMetadata[] | undefined;
476
+ LatestAlternateSoftware?: string | undefined;
477
+ Brand?: DeviceBrand | undefined;
478
+ LatestDeviceJob?: LatestDeviceJob | undefined;
479
+ DeviceAggregatedStatus?: DeviceAggregatedStatus | undefined;
480
480
  }
481
481
  export interface DescribeDeviceJobRequest {
482
482
  JobId: string | undefined;
483
483
  }
484
484
  export interface DescribeDeviceJobResponse {
485
- JobId?: string;
486
- DeviceId?: string;
487
- DeviceArn?: string;
488
- DeviceName?: string;
489
- DeviceType?: DeviceType;
490
- ImageVersion?: string;
491
- Status?: UpdateProgress;
492
- CreatedTime?: Date;
493
- JobType?: JobType;
485
+ JobId?: string | undefined;
486
+ DeviceId?: string | undefined;
487
+ DeviceArn?: string | undefined;
488
+ DeviceName?: string | undefined;
489
+ DeviceType?: DeviceType | undefined;
490
+ ImageVersion?: string | undefined;
491
+ Status?: UpdateProgress | undefined;
492
+ CreatedTime?: Date | undefined;
493
+ JobType?: JobType | undefined;
494
494
  }
495
495
  export interface DescribeNodeRequest {
496
496
  NodeId: string | undefined;
497
- OwnerAccount?: string;
497
+ OwnerAccount?: string | undefined;
498
498
  }
499
499
  export declare const NodeCategory: {
500
500
  readonly BUSINESS_LOGIC: "BUSINESS_LOGIC";
@@ -512,16 +512,16 @@ export declare const PortType: {
512
512
  };
513
513
  export type PortType = (typeof PortType)[keyof typeof PortType];
514
514
  export interface NodeInputPort {
515
- Name?: string;
516
- Description?: string;
517
- Type?: PortType;
518
- DefaultValue?: string;
519
- MaxConnections?: number;
515
+ Name?: string | undefined;
516
+ Description?: string | undefined;
517
+ Type?: PortType | undefined;
518
+ DefaultValue?: string | undefined;
519
+ MaxConnections?: number | undefined;
520
520
  }
521
521
  export interface NodeOutputPort {
522
- Name?: string;
523
- Description?: string;
524
- Type?: PortType;
522
+ Name?: string | undefined;
523
+ Description?: string | undefined;
524
+ Type?: PortType | undefined;
525
525
  }
526
526
  export interface NodeInterface {
527
527
  Inputs: NodeInputPort[] | undefined;
@@ -534,11 +534,11 @@ export interface DescribeNodeResponse {
534
534
  OwnerAccount: string | undefined;
535
535
  PackageName: string | undefined;
536
536
  PackageId: string | undefined;
537
- PackageArn?: string;
537
+ PackageArn?: string | undefined;
538
538
  PackageVersion: string | undefined;
539
539
  PatchVersion: string | undefined;
540
540
  NodeInterface: NodeInterface | undefined;
541
- AssetName?: string;
541
+ AssetName?: string | undefined;
542
542
  Description: string | undefined;
543
543
  CreatedTime: Date | undefined;
544
544
  LastUpdatedTime: Date | undefined;
@@ -562,10 +562,10 @@ export interface DescribeNodeFromTemplateJobResponse {
562
562
  OutputPackageName: string | undefined;
563
563
  OutputPackageVersion: string | undefined;
564
564
  NodeName: string | undefined;
565
- NodeDescription?: string;
565
+ NodeDescription?: string | undefined;
566
566
  TemplateType: TemplateType | undefined;
567
567
  TemplateParameters: Record<string, string> | undefined;
568
- JobTags?: JobResourceTags[];
568
+ JobTags?: JobResourceTags[] | undefined;
569
569
  }
570
570
  export interface DescribePackageRequest {
571
571
  PackageId: string | undefined;
@@ -575,8 +575,8 @@ export interface DescribePackageResponse {
575
575
  PackageName: string | undefined;
576
576
  Arn: string | undefined;
577
577
  StorageLocation: StorageLocation | undefined;
578
- ReadAccessPrincipalArns?: string[];
579
- WriteAccessPrincipalArns?: string[];
578
+ ReadAccessPrincipalArns?: string[] | undefined;
579
+ WriteAccessPrincipalArns?: string[] | undefined;
580
580
  CreatedTime: Date | undefined;
581
581
  Tags: Record<string, string> | undefined;
582
582
  }
@@ -602,7 +602,7 @@ export type PackageImportJobStatus =
602
602
  (typeof PackageImportJobStatus)[keyof typeof PackageImportJobStatus];
603
603
  export interface DescribePackageImportJobResponse {
604
604
  JobId: string | undefined;
605
- ClientToken?: string;
605
+ ClientToken?: string | undefined;
606
606
  JobType: PackageImportJobType | undefined;
607
607
  InputConfig: PackageImportJobInputConfig | undefined;
608
608
  OutputConfig: PackageImportJobOutputConfig | undefined;
@@ -611,13 +611,13 @@ export interface DescribePackageImportJobResponse {
611
611
  LastUpdatedTime: Date | undefined;
612
612
  Status: PackageImportJobStatus | undefined;
613
613
  StatusMessage: string | undefined;
614
- JobTags?: JobResourceTags[];
614
+ JobTags?: JobResourceTags[] | undefined;
615
615
  }
616
616
  export interface DescribePackageVersionRequest {
617
- OwnerAccount?: string;
617
+ OwnerAccount?: string | undefined;
618
618
  PackageId: string | undefined;
619
619
  PackageVersion: string | undefined;
620
- PatchVersion?: string;
620
+ PatchVersion?: string | undefined;
621
621
  }
622
622
  export declare const PackageVersionStatus: {
623
623
  readonly DELETING: "DELETING";
@@ -628,43 +628,43 @@ export declare const PackageVersionStatus: {
628
628
  export type PackageVersionStatus =
629
629
  (typeof PackageVersionStatus)[keyof typeof PackageVersionStatus];
630
630
  export interface DescribePackageVersionResponse {
631
- OwnerAccount?: string;
631
+ OwnerAccount?: string | undefined;
632
632
  PackageId: string | undefined;
633
- PackageArn?: string;
633
+ PackageArn?: string | undefined;
634
634
  PackageName: string | undefined;
635
635
  PackageVersion: string | undefined;
636
636
  PatchVersion: string | undefined;
637
637
  IsLatestPatch: boolean | undefined;
638
638
  Status: PackageVersionStatus | undefined;
639
- StatusDescription?: string;
640
- RegisteredTime?: Date;
639
+ StatusDescription?: string | undefined;
640
+ RegisteredTime?: Date | undefined;
641
641
  }
642
642
  export interface Device {
643
- DeviceId?: string;
644
- Name?: string;
645
- CreatedTime?: Date;
646
- ProvisioningStatus?: DeviceStatus;
647
- LastUpdatedTime?: Date;
648
- LeaseExpirationTime?: Date;
649
- Brand?: DeviceBrand;
650
- CurrentSoftware?: string;
651
- Description?: string;
652
- Tags?: Record<string, string>;
653
- Type?: DeviceType;
654
- LatestDeviceJob?: LatestDeviceJob;
655
- DeviceAggregatedStatus?: DeviceAggregatedStatus;
643
+ DeviceId?: string | undefined;
644
+ Name?: string | undefined;
645
+ CreatedTime?: Date | undefined;
646
+ ProvisioningStatus?: DeviceStatus | undefined;
647
+ LastUpdatedTime?: Date | undefined;
648
+ LeaseExpirationTime?: Date | undefined;
649
+ Brand?: DeviceBrand | undefined;
650
+ CurrentSoftware?: string | undefined;
651
+ Description?: string | undefined;
652
+ Tags?: Record<string, string> | undefined;
653
+ Type?: DeviceType | undefined;
654
+ LatestDeviceJob?: LatestDeviceJob | undefined;
655
+ DeviceAggregatedStatus?: DeviceAggregatedStatus | undefined;
656
656
  }
657
657
  export interface DeviceJob {
658
- DeviceName?: string;
659
- DeviceId?: string;
660
- JobId?: string;
661
- CreatedTime?: Date;
662
- JobType?: JobType;
658
+ DeviceName?: string | undefined;
659
+ DeviceId?: string | undefined;
660
+ JobId?: string | undefined;
661
+ CreatedTime?: Date | undefined;
662
+ JobType?: JobType | undefined;
663
663
  }
664
664
  export interface ListApplicationInstanceDependenciesRequest {
665
665
  ApplicationInstanceId: string | undefined;
666
- MaxResults?: number;
667
- NextToken?: string;
666
+ MaxResults?: number | undefined;
667
+ NextToken?: string | undefined;
668
668
  }
669
669
  export interface PackageObject {
670
670
  Name: string | undefined;
@@ -672,13 +672,13 @@ export interface PackageObject {
672
672
  PatchVersion: string | undefined;
673
673
  }
674
674
  export interface ListApplicationInstanceDependenciesResponse {
675
- PackageObjects?: PackageObject[];
676
- NextToken?: string;
675
+ PackageObjects?: PackageObject[] | undefined;
676
+ NextToken?: string | undefined;
677
677
  }
678
678
  export interface ListApplicationInstanceNodeInstancesRequest {
679
679
  ApplicationInstanceId: string | undefined;
680
- MaxResults?: number;
681
- NextToken?: string;
680
+ MaxResults?: number | undefined;
681
+ NextToken?: string | undefined;
682
682
  }
683
683
  export declare const NodeInstanceStatus: {
684
684
  readonly ERROR: "ERROR";
@@ -690,16 +690,16 @@ export type NodeInstanceStatus =
690
690
  (typeof NodeInstanceStatus)[keyof typeof NodeInstanceStatus];
691
691
  export interface NodeInstance {
692
692
  NodeInstanceId: string | undefined;
693
- NodeId?: string;
694
- PackageName?: string;
695
- PackageVersion?: string;
696
- PackagePatchVersion?: string;
697
- NodeName?: string;
693
+ NodeId?: string | undefined;
694
+ PackageName?: string | undefined;
695
+ PackageVersion?: string | undefined;
696
+ PackagePatchVersion?: string | undefined;
697
+ NodeName?: string | undefined;
698
698
  CurrentStatus: NodeInstanceStatus | undefined;
699
699
  }
700
700
  export interface ListApplicationInstanceNodeInstancesResponse {
701
- NodeInstances?: NodeInstance[];
702
- NextToken?: string;
701
+ NodeInstances?: NodeInstance[] | undefined;
702
+ NextToken?: string | undefined;
703
703
  }
704
704
  export declare const StatusFilter: {
705
705
  readonly DEPLOYMENT_ERROR: "DEPLOYMENT_ERROR";
@@ -712,14 +712,14 @@ export declare const StatusFilter: {
712
712
  };
713
713
  export type StatusFilter = (typeof StatusFilter)[keyof typeof StatusFilter];
714
714
  export interface ListApplicationInstancesRequest {
715
- DeviceId?: string;
716
- StatusFilter?: StatusFilter;
717
- MaxResults?: number;
718
- NextToken?: string;
715
+ DeviceId?: string | undefined;
716
+ StatusFilter?: StatusFilter | undefined;
717
+ MaxResults?: number | undefined;
718
+ NextToken?: string | undefined;
719
719
  }
720
720
  export interface ListApplicationInstancesResponse {
721
- ApplicationInstances?: ApplicationInstance[];
722
- NextToken?: string;
721
+ ApplicationInstances?: ApplicationInstance[] | undefined;
722
+ NextToken?: string | undefined;
723
723
  }
724
724
  export declare const ListDevicesSortBy: {
725
725
  readonly CREATED_TIME: "CREATED_TIME";
@@ -735,104 +735,104 @@ export declare const SortOrder: {
735
735
  };
736
736
  export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
737
737
  export interface ListDevicesRequest {
738
- NextToken?: string;
739
- MaxResults?: number;
740
- SortBy?: ListDevicesSortBy;
741
- SortOrder?: SortOrder;
742
- NameFilter?: string;
743
- DeviceAggregatedStatusFilter?: DeviceAggregatedStatus;
738
+ NextToken?: string | undefined;
739
+ MaxResults?: number | undefined;
740
+ SortBy?: ListDevicesSortBy | undefined;
741
+ SortOrder?: SortOrder | undefined;
742
+ NameFilter?: string | undefined;
743
+ DeviceAggregatedStatusFilter?: DeviceAggregatedStatus | undefined;
744
744
  }
745
745
  export interface ListDevicesResponse {
746
746
  Devices: Device[] | undefined;
747
- NextToken?: string;
747
+ NextToken?: string | undefined;
748
748
  }
749
749
  export interface ListDevicesJobsRequest {
750
- DeviceId?: string;
751
- NextToken?: string;
752
- MaxResults?: number;
750
+ DeviceId?: string | undefined;
751
+ NextToken?: string | undefined;
752
+ MaxResults?: number | undefined;
753
753
  }
754
754
  export interface ListDevicesJobsResponse {
755
- DeviceJobs?: DeviceJob[];
756
- NextToken?: string;
755
+ DeviceJobs?: DeviceJob[] | undefined;
756
+ NextToken?: string | undefined;
757
757
  }
758
758
  export interface ListNodeFromTemplateJobsRequest {
759
- NextToken?: string;
760
- MaxResults?: number;
759
+ NextToken?: string | undefined;
760
+ MaxResults?: number | undefined;
761
761
  }
762
762
  export interface NodeFromTemplateJob {
763
- JobId?: string;
764
- TemplateType?: TemplateType;
765
- Status?: NodeFromTemplateJobStatus;
766
- StatusMessage?: string;
767
- CreatedTime?: Date;
768
- NodeName?: string;
763
+ JobId?: string | undefined;
764
+ TemplateType?: TemplateType | undefined;
765
+ Status?: NodeFromTemplateJobStatus | undefined;
766
+ StatusMessage?: string | undefined;
767
+ CreatedTime?: Date | undefined;
768
+ NodeName?: string | undefined;
769
769
  }
770
770
  export interface ListNodeFromTemplateJobsResponse {
771
771
  NodeFromTemplateJobs: NodeFromTemplateJob[] | undefined;
772
- NextToken?: string;
772
+ NextToken?: string | undefined;
773
773
  }
774
774
  export interface ListNodesRequest {
775
- Category?: NodeCategory;
776
- OwnerAccount?: string;
777
- PackageName?: string;
778
- PackageVersion?: string;
779
- PatchVersion?: string;
780
- NextToken?: string;
781
- MaxResults?: number;
775
+ Category?: NodeCategory | undefined;
776
+ OwnerAccount?: string | undefined;
777
+ PackageName?: string | undefined;
778
+ PackageVersion?: string | undefined;
779
+ PatchVersion?: string | undefined;
780
+ NextToken?: string | undefined;
781
+ MaxResults?: number | undefined;
782
782
  }
783
783
  export interface Node {
784
784
  NodeId: string | undefined;
785
785
  Name: string | undefined;
786
786
  Category: NodeCategory | undefined;
787
- OwnerAccount?: string;
787
+ OwnerAccount?: string | undefined;
788
788
  PackageName: string | undefined;
789
789
  PackageId: string | undefined;
790
- PackageArn?: string;
790
+ PackageArn?: string | undefined;
791
791
  PackageVersion: string | undefined;
792
792
  PatchVersion: string | undefined;
793
- Description?: string;
793
+ Description?: string | undefined;
794
794
  CreatedTime: Date | undefined;
795
795
  }
796
796
  export interface ListNodesResponse {
797
- Nodes?: Node[];
798
- NextToken?: string;
797
+ Nodes?: Node[] | undefined;
798
+ NextToken?: string | undefined;
799
799
  }
800
800
  export interface ListPackageImportJobsRequest {
801
- NextToken?: string;
802
- MaxResults?: number;
801
+ NextToken?: string | undefined;
802
+ MaxResults?: number | undefined;
803
803
  }
804
804
  export interface PackageImportJob {
805
- JobId?: string;
806
- JobType?: PackageImportJobType;
807
- Status?: PackageImportJobStatus;
808
- StatusMessage?: string;
809
- CreatedTime?: Date;
810
- LastUpdatedTime?: Date;
805
+ JobId?: string | undefined;
806
+ JobType?: PackageImportJobType | undefined;
807
+ Status?: PackageImportJobStatus | undefined;
808
+ StatusMessage?: string | undefined;
809
+ CreatedTime?: Date | undefined;
810
+ LastUpdatedTime?: Date | undefined;
811
811
  }
812
812
  export interface ListPackageImportJobsResponse {
813
813
  PackageImportJobs: PackageImportJob[] | undefined;
814
- NextToken?: string;
814
+ NextToken?: string | undefined;
815
815
  }
816
816
  export interface ListPackagesRequest {
817
- MaxResults?: number;
818
- NextToken?: string;
817
+ MaxResults?: number | undefined;
818
+ NextToken?: string | undefined;
819
819
  }
820
820
  export interface PackageListItem {
821
- PackageId?: string;
822
- PackageName?: string;
823
- Arn?: string;
824
- CreatedTime?: Date;
825
- Tags?: Record<string, string>;
821
+ PackageId?: string | undefined;
822
+ PackageName?: string | undefined;
823
+ Arn?: string | undefined;
824
+ CreatedTime?: Date | undefined;
825
+ Tags?: Record<string, string> | undefined;
826
826
  }
827
827
  export interface ListPackagesResponse {
828
- Packages?: PackageListItem[];
829
- NextToken?: string;
828
+ Packages?: PackageListItem[] | undefined;
829
+ NextToken?: string | undefined;
830
830
  }
831
831
  export interface ListTagsForResourceRequest {
832
832
  ResourceArn: string | undefined;
833
833
  }
834
834
  export interface ListTagsForResourceResponse {
835
- Tags?: Record<string, string>;
835
+ Tags?: Record<string, string> | undefined;
836
836
  }
837
837
  export declare const NodeSignalValue: {
838
838
  readonly PAUSE: "PAUSE";
@@ -846,23 +846,23 @@ export interface NodeSignal {
846
846
  }
847
847
  export interface ProvisionDeviceRequest {
848
848
  Name: string | undefined;
849
- Description?: string;
850
- Tags?: Record<string, string>;
851
- NetworkingConfiguration?: NetworkPayload;
849
+ Description?: string | undefined;
850
+ Tags?: Record<string, string> | undefined;
851
+ NetworkingConfiguration?: NetworkPayload | undefined;
852
852
  }
853
853
  export interface ProvisionDeviceResponse {
854
- DeviceId?: string;
854
+ DeviceId?: string | undefined;
855
855
  Arn: string | undefined;
856
856
  Status: DeviceStatus | undefined;
857
- Certificates?: Uint8Array;
858
- IotThingName?: string;
857
+ Certificates?: Uint8Array | undefined;
858
+ IotThingName?: string | undefined;
859
859
  }
860
860
  export interface RegisterPackageVersionRequest {
861
- OwnerAccount?: string;
861
+ OwnerAccount?: string | undefined;
862
862
  PackageId: string | undefined;
863
863
  PackageVersion: string | undefined;
864
864
  PatchVersion: string | undefined;
865
- MarkLatest?: boolean;
865
+ MarkLatest?: boolean | undefined;
866
866
  }
867
867
  export interface RegisterPackageVersionResponse {}
868
868
  export interface RemoveApplicationInstanceRequest {
@@ -888,10 +888,10 @@ export interface UntagResourceRequest {
888
888
  export interface UntagResourceResponse {}
889
889
  export interface UpdateDeviceMetadataRequest {
890
890
  DeviceId: string | undefined;
891
- Description?: string;
891
+ Description?: string | undefined;
892
892
  }
893
893
  export interface UpdateDeviceMetadataResponse {
894
- DeviceId?: string;
894
+ DeviceId?: string | undefined;
895
895
  }
896
896
  export declare const CreateNodeFromTemplateJobRequestFilterSensitiveLog: (
897
897
  obj: CreateNodeFromTemplateJobRequest