@aws-sdk/client-panorama 3.936.0 → 3.940.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.
@@ -0,0 +1,211 @@
1
+ export declare const ApplicationInstanceHealthStatus: {
2
+ readonly ERROR: "ERROR";
3
+ readonly NOT_AVAILABLE: "NOT_AVAILABLE";
4
+ readonly RUNNING: "RUNNING";
5
+ };
6
+ export type ApplicationInstanceHealthStatus =
7
+ (typeof ApplicationInstanceHealthStatus)[keyof typeof ApplicationInstanceHealthStatus];
8
+ export declare const DesiredState: {
9
+ readonly REMOVED: "REMOVED";
10
+ readonly RUNNING: "RUNNING";
11
+ readonly STOPPED: "STOPPED";
12
+ };
13
+ export type DesiredState = (typeof DesiredState)[keyof typeof DesiredState];
14
+ export declare const DeviceReportedStatus: {
15
+ readonly INSTALL_ERROR: "INSTALL_ERROR";
16
+ readonly INSTALL_IN_PROGRESS: "INSTALL_IN_PROGRESS";
17
+ readonly LAUNCHED: "LAUNCHED";
18
+ readonly LAUNCH_ERROR: "LAUNCH_ERROR";
19
+ readonly REMOVAL_FAILED: "REMOVAL_FAILED";
20
+ readonly REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS";
21
+ readonly RUNNING: "RUNNING";
22
+ readonly STARTING: "STARTING";
23
+ readonly STOPPED: "STOPPED";
24
+ readonly STOPPING: "STOPPING";
25
+ readonly STOP_ERROR: "STOP_ERROR";
26
+ };
27
+ export type DeviceReportedStatus =
28
+ (typeof DeviceReportedStatus)[keyof typeof DeviceReportedStatus];
29
+ export declare const ApplicationInstanceStatus: {
30
+ readonly DEPLOYMENT_ERROR: "DEPLOYMENT_ERROR";
31
+ readonly DEPLOYMENT_FAILED: "DEPLOYMENT_FAILED";
32
+ readonly DEPLOYMENT_IN_PROGRESS: "DEPLOYMENT_IN_PROGRESS";
33
+ readonly DEPLOYMENT_PENDING: "DEPLOYMENT_PENDING";
34
+ readonly DEPLOYMENT_REQUESTED: "DEPLOYMENT_REQUESTED";
35
+ readonly DEPLOYMENT_SUCCEEDED: "DEPLOYMENT_SUCCEEDED";
36
+ readonly REMOVAL_FAILED: "REMOVAL_FAILED";
37
+ readonly REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS";
38
+ readonly REMOVAL_PENDING: "REMOVAL_PENDING";
39
+ readonly REMOVAL_REQUESTED: "REMOVAL_REQUESTED";
40
+ readonly REMOVAL_SUCCEEDED: "REMOVAL_SUCCEEDED";
41
+ };
42
+ export type ApplicationInstanceStatus =
43
+ (typeof ApplicationInstanceStatus)[keyof typeof ApplicationInstanceStatus];
44
+ export declare const ConnectionType: {
45
+ readonly DHCP: "DHCP";
46
+ readonly STATIC_IP: "STATIC_IP";
47
+ };
48
+ export type ConnectionType =
49
+ (typeof ConnectionType)[keyof typeof ConnectionType];
50
+ export declare const ValidationExceptionReason: {
51
+ readonly CANNOT_PARSE: "CANNOT_PARSE";
52
+ readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
53
+ readonly OTHER: "OTHER";
54
+ readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
55
+ };
56
+ export type ValidationExceptionReason =
57
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
58
+ export declare const JobType: {
59
+ readonly OTA: "OTA";
60
+ readonly REBOOT: "REBOOT";
61
+ };
62
+ export type JobType = (typeof JobType)[keyof typeof JobType];
63
+ export declare const JobResourceType: {
64
+ readonly PACKAGE: "PACKAGE";
65
+ };
66
+ export type JobResourceType =
67
+ (typeof JobResourceType)[keyof typeof JobResourceType];
68
+ export declare const TemplateType: {
69
+ readonly RTSP_CAMERA_STREAM: "RTSP_CAMERA_STREAM";
70
+ };
71
+ export type TemplateType = (typeof TemplateType)[keyof typeof TemplateType];
72
+ export declare const PackageImportJobType: {
73
+ readonly MARKETPLACE_NODE_PACKAGE_VERSION: "MARKETPLACE_NODE_PACKAGE_VERSION";
74
+ readonly NODE_PACKAGE_VERSION: "NODE_PACKAGE_VERSION";
75
+ };
76
+ export type PackageImportJobType =
77
+ (typeof PackageImportJobType)[keyof typeof PackageImportJobType];
78
+ export declare const DeviceBrand: {
79
+ readonly AWS_PANORAMA: "AWS_PANORAMA";
80
+ readonly LENOVO: "LENOVO";
81
+ };
82
+ export type DeviceBrand = (typeof DeviceBrand)[keyof typeof DeviceBrand];
83
+ export declare const NetworkConnectionStatus: {
84
+ readonly CONNECTED: "CONNECTED";
85
+ readonly CONNECTING: "CONNECTING";
86
+ readonly NOT_CONNECTED: "NOT_CONNECTED";
87
+ };
88
+ export type NetworkConnectionStatus =
89
+ (typeof NetworkConnectionStatus)[keyof typeof NetworkConnectionStatus];
90
+ export declare const DeviceAggregatedStatus: {
91
+ readonly AWAITING_PROVISIONING: "AWAITING_PROVISIONING";
92
+ readonly DELETING: "DELETING";
93
+ readonly ERROR: "ERROR";
94
+ readonly FAILED: "FAILED";
95
+ readonly LEASE_EXPIRED: "LEASE_EXPIRED";
96
+ readonly OFFLINE: "OFFLINE";
97
+ readonly ONLINE: "ONLINE";
98
+ readonly PENDING: "PENDING";
99
+ readonly REBOOTING: "REBOOTING";
100
+ readonly UPDATE_NEEDED: "UPDATE_NEEDED";
101
+ };
102
+ export type DeviceAggregatedStatus =
103
+ (typeof DeviceAggregatedStatus)[keyof typeof DeviceAggregatedStatus];
104
+ export declare const DeviceConnectionStatus: {
105
+ readonly AWAITING_CREDENTIALS: "AWAITING_CREDENTIALS";
106
+ readonly ERROR: "ERROR";
107
+ readonly NOT_AVAILABLE: "NOT_AVAILABLE";
108
+ readonly OFFLINE: "OFFLINE";
109
+ readonly ONLINE: "ONLINE";
110
+ };
111
+ export type DeviceConnectionStatus =
112
+ (typeof DeviceConnectionStatus)[keyof typeof DeviceConnectionStatus];
113
+ export declare const UpdateProgress: {
114
+ readonly COMPLETED: "COMPLETED";
115
+ readonly DOWNLOADING: "DOWNLOADING";
116
+ readonly FAILED: "FAILED";
117
+ readonly IN_PROGRESS: "IN_PROGRESS";
118
+ readonly PENDING: "PENDING";
119
+ readonly REBOOTING: "REBOOTING";
120
+ readonly VERIFYING: "VERIFYING";
121
+ };
122
+ export type UpdateProgress =
123
+ (typeof UpdateProgress)[keyof typeof UpdateProgress];
124
+ export declare const DeviceStatus: {
125
+ readonly AWAITING_PROVISIONING: "AWAITING_PROVISIONING";
126
+ readonly DELETING: "DELETING";
127
+ readonly ERROR: "ERROR";
128
+ readonly FAILED: "FAILED";
129
+ readonly PENDING: "PENDING";
130
+ readonly SUCCEEDED: "SUCCEEDED";
131
+ };
132
+ export type DeviceStatus = (typeof DeviceStatus)[keyof typeof DeviceStatus];
133
+ export declare const DeviceType: {
134
+ readonly PANORAMA_APPLIANCE: "PANORAMA_APPLIANCE";
135
+ readonly PANORAMA_APPLIANCE_DEVELOPER_KIT: "PANORAMA_APPLIANCE_DEVELOPER_KIT";
136
+ };
137
+ export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
138
+ export declare const NodeCategory: {
139
+ readonly BUSINESS_LOGIC: "BUSINESS_LOGIC";
140
+ readonly MEDIA_SINK: "MEDIA_SINK";
141
+ readonly MEDIA_SOURCE: "MEDIA_SOURCE";
142
+ readonly ML_MODEL: "ML_MODEL";
143
+ };
144
+ export type NodeCategory = (typeof NodeCategory)[keyof typeof NodeCategory];
145
+ export declare const PortType: {
146
+ readonly BOOLEAN: "BOOLEAN";
147
+ readonly FLOAT32: "FLOAT32";
148
+ readonly INT32: "INT32";
149
+ readonly MEDIA: "MEDIA";
150
+ readonly STRING: "STRING";
151
+ };
152
+ export type PortType = (typeof PortType)[keyof typeof PortType];
153
+ export declare const NodeFromTemplateJobStatus: {
154
+ readonly FAILED: "FAILED";
155
+ readonly PENDING: "PENDING";
156
+ readonly SUCCEEDED: "SUCCEEDED";
157
+ };
158
+ export type NodeFromTemplateJobStatus =
159
+ (typeof NodeFromTemplateJobStatus)[keyof typeof NodeFromTemplateJobStatus];
160
+ export declare const PackageImportJobStatus: {
161
+ readonly FAILED: "FAILED";
162
+ readonly PENDING: "PENDING";
163
+ readonly SUCCEEDED: "SUCCEEDED";
164
+ };
165
+ export type PackageImportJobStatus =
166
+ (typeof PackageImportJobStatus)[keyof typeof PackageImportJobStatus];
167
+ export declare const PackageVersionStatus: {
168
+ readonly DELETING: "DELETING";
169
+ readonly FAILED: "FAILED";
170
+ readonly REGISTER_COMPLETED: "REGISTER_COMPLETED";
171
+ readonly REGISTER_PENDING: "REGISTER_PENDING";
172
+ };
173
+ export type PackageVersionStatus =
174
+ (typeof PackageVersionStatus)[keyof typeof PackageVersionStatus];
175
+ export declare const NodeInstanceStatus: {
176
+ readonly ERROR: "ERROR";
177
+ readonly NOT_AVAILABLE: "NOT_AVAILABLE";
178
+ readonly PAUSED: "PAUSED";
179
+ readonly RUNNING: "RUNNING";
180
+ };
181
+ export type NodeInstanceStatus =
182
+ (typeof NodeInstanceStatus)[keyof typeof NodeInstanceStatus];
183
+ export declare const StatusFilter: {
184
+ readonly DEPLOYMENT_ERROR: "DEPLOYMENT_ERROR";
185
+ readonly DEPLOYMENT_FAILED: "DEPLOYMENT_FAILED";
186
+ readonly DEPLOYMENT_SUCCEEDED: "DEPLOYMENT_SUCCEEDED";
187
+ readonly PROCESSING_DEPLOYMENT: "PROCESSING_DEPLOYMENT";
188
+ readonly PROCESSING_REMOVAL: "PROCESSING_REMOVAL";
189
+ readonly REMOVAL_FAILED: "REMOVAL_FAILED";
190
+ readonly REMOVAL_SUCCEEDED: "REMOVAL_SUCCEEDED";
191
+ };
192
+ export type StatusFilter = (typeof StatusFilter)[keyof typeof StatusFilter];
193
+ export declare const ListDevicesSortBy: {
194
+ readonly CREATED_TIME: "CREATED_TIME";
195
+ readonly DEVICE_AGGREGATED_STATUS: "DEVICE_AGGREGATED_STATUS";
196
+ readonly DEVICE_ID: "DEVICE_ID";
197
+ readonly NAME: "NAME";
198
+ };
199
+ export type ListDevicesSortBy =
200
+ (typeof ListDevicesSortBy)[keyof typeof ListDevicesSortBy];
201
+ export declare const SortOrder: {
202
+ readonly ASCENDING: "ASCENDING";
203
+ readonly DESCENDING: "DESCENDING";
204
+ };
205
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
206
+ export declare const NodeSignalValue: {
207
+ readonly PAUSE: "PAUSE";
208
+ readonly RESUME: "RESUME";
209
+ };
210
+ export type NodeSignalValue =
211
+ (typeof NodeSignalValue)[keyof typeof NodeSignalValue];
@@ -1,9 +1,9 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ValidationExceptionReason } from "./enums";
2
3
  import {
3
4
  ConflictExceptionErrorArgument,
4
5
  ValidationExceptionErrorArgument,
5
6
  ValidationExceptionField,
6
- ValidationExceptionReason,
7
7
  } from "./models_0";
8
8
  import { PanoramaServiceException as __BaseException } from "./PanoramaServiceException";
9
9
  export declare class AccessDeniedException extends __BaseException {
@@ -1,55 +1,40 @@
1
+ import {
2
+ ApplicationInstanceHealthStatus,
3
+ ApplicationInstanceStatus,
4
+ ConnectionType,
5
+ DesiredState,
6
+ DeviceAggregatedStatus,
7
+ DeviceBrand,
8
+ DeviceConnectionStatus,
9
+ DeviceReportedStatus,
10
+ DeviceStatus,
11
+ DeviceType,
12
+ JobResourceType,
13
+ JobType,
14
+ ListDevicesSortBy,
15
+ NetworkConnectionStatus,
16
+ NodeCategory,
17
+ NodeFromTemplateJobStatus,
18
+ NodeInstanceStatus,
19
+ NodeSignalValue,
20
+ PackageImportJobStatus,
21
+ PackageImportJobType,
22
+ PackageVersionStatus,
23
+ PortType,
24
+ SortOrder,
25
+ StatusFilter,
26
+ TemplateType,
27
+ UpdateProgress,
28
+ } from "./enums";
1
29
  export interface AlternateSoftwareMetadata {
2
30
  Version?: string | undefined;
3
31
  }
4
- export declare const ApplicationInstanceHealthStatus: {
5
- readonly ERROR: "ERROR";
6
- readonly NOT_AVAILABLE: "NOT_AVAILABLE";
7
- readonly RUNNING: "RUNNING";
8
- };
9
- export type ApplicationInstanceHealthStatus =
10
- (typeof ApplicationInstanceHealthStatus)[keyof typeof ApplicationInstanceHealthStatus];
11
- export declare const DesiredState: {
12
- readonly REMOVED: "REMOVED";
13
- readonly RUNNING: "RUNNING";
14
- readonly STOPPED: "STOPPED";
15
- };
16
- export type DesiredState = (typeof DesiredState)[keyof typeof DesiredState];
17
- export declare const DeviceReportedStatus: {
18
- readonly INSTALL_ERROR: "INSTALL_ERROR";
19
- readonly INSTALL_IN_PROGRESS: "INSTALL_IN_PROGRESS";
20
- readonly LAUNCHED: "LAUNCHED";
21
- readonly LAUNCH_ERROR: "LAUNCH_ERROR";
22
- readonly REMOVAL_FAILED: "REMOVAL_FAILED";
23
- readonly REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS";
24
- readonly RUNNING: "RUNNING";
25
- readonly STARTING: "STARTING";
26
- readonly STOPPED: "STOPPED";
27
- readonly STOPPING: "STOPPING";
28
- readonly STOP_ERROR: "STOP_ERROR";
29
- };
30
- export type DeviceReportedStatus =
31
- (typeof DeviceReportedStatus)[keyof typeof DeviceReportedStatus];
32
32
  export interface ReportedRuntimeContextState {
33
33
  DesiredState: DesiredState | undefined;
34
34
  RuntimeContextName: string | undefined;
35
35
  DeviceReportedStatus: DeviceReportedStatus | undefined;
36
36
  DeviceReportedTime: Date | undefined;
37
37
  }
38
- export declare const ApplicationInstanceStatus: {
39
- readonly DEPLOYMENT_ERROR: "DEPLOYMENT_ERROR";
40
- readonly DEPLOYMENT_FAILED: "DEPLOYMENT_FAILED";
41
- readonly DEPLOYMENT_IN_PROGRESS: "DEPLOYMENT_IN_PROGRESS";
42
- readonly DEPLOYMENT_PENDING: "DEPLOYMENT_PENDING";
43
- readonly DEPLOYMENT_REQUESTED: "DEPLOYMENT_REQUESTED";
44
- readonly DEPLOYMENT_SUCCEEDED: "DEPLOYMENT_SUCCEEDED";
45
- readonly REMOVAL_FAILED: "REMOVAL_FAILED";
46
- readonly REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS";
47
- readonly REMOVAL_PENDING: "REMOVAL_PENDING";
48
- readonly REMOVAL_REQUESTED: "REMOVAL_REQUESTED";
49
- readonly REMOVAL_SUCCEEDED: "REMOVAL_SUCCEEDED";
50
- };
51
- export type ApplicationInstanceStatus =
52
- (typeof ApplicationInstanceStatus)[keyof typeof ApplicationInstanceStatus];
53
38
  export interface ApplicationInstance {
54
39
  Name?: string | undefined;
55
40
  ApplicationInstanceId?: string | undefined;
@@ -68,12 +53,6 @@ export interface ConflictExceptionErrorArgument {
68
53
  Name: string | undefined;
69
54
  Value: string | undefined;
70
55
  }
71
- export declare const ConnectionType: {
72
- readonly DHCP: "DHCP";
73
- readonly STATIC_IP: "STATIC_IP";
74
- };
75
- export type ConnectionType =
76
- (typeof ConnectionType)[keyof typeof ConnectionType];
77
56
  export type ManifestOverridesPayload =
78
57
  | ManifestOverridesPayload.PayloadDataMember
79
58
  | ManifestOverridesPayload.$UnknownMember;
@@ -129,14 +108,6 @@ export interface ValidationExceptionField {
129
108
  Name: string | undefined;
130
109
  Message: string | undefined;
131
110
  }
132
- export declare const ValidationExceptionReason: {
133
- readonly CANNOT_PARSE: "CANNOT_PARSE";
134
- readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
135
- readonly OTHER: "OTHER";
136
- readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
137
- };
138
- export type ValidationExceptionReason =
139
- (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
140
111
  export interface OTAJobConfig {
141
112
  ImageVersion: string | undefined;
142
113
  AllowMajorVersionUpdate?: boolean | undefined;
@@ -144,11 +115,6 @@ export interface OTAJobConfig {
144
115
  export interface DeviceJobConfig {
145
116
  OTAJobConfig?: OTAJobConfig | undefined;
146
117
  }
147
- export declare const JobType: {
148
- readonly OTA: "OTA";
149
- readonly REBOOT: "REBOOT";
150
- };
151
- export type JobType = (typeof JobType)[keyof typeof JobType];
152
118
  export interface CreateJobForDevicesRequest {
153
119
  DeviceIds: string[] | undefined;
154
120
  DeviceJobConfig?: DeviceJobConfig | undefined;
@@ -161,19 +127,10 @@ export interface Job {
161
127
  export interface CreateJobForDevicesResponse {
162
128
  Jobs: Job[] | undefined;
163
129
  }
164
- export declare const JobResourceType: {
165
- readonly PACKAGE: "PACKAGE";
166
- };
167
- export type JobResourceType =
168
- (typeof JobResourceType)[keyof typeof JobResourceType];
169
130
  export interface JobResourceTags {
170
131
  ResourceType: JobResourceType | undefined;
171
132
  Tags: Record<string, string> | undefined;
172
133
  }
173
- export declare const TemplateType: {
174
- readonly RTSP_CAMERA_STREAM: "RTSP_CAMERA_STREAM";
175
- };
176
- export type TemplateType = (typeof TemplateType)[keyof typeof TemplateType];
177
134
  export interface CreateNodeFromTemplateJobRequest {
178
135
  TemplateType: TemplateType | undefined;
179
136
  OutputPackageName: string | undefined;
@@ -213,12 +170,6 @@ export interface PackageVersionInputConfig {
213
170
  export interface PackageImportJobInputConfig {
214
171
  PackageVersionInputConfig?: PackageVersionInputConfig | undefined;
215
172
  }
216
- export declare const PackageImportJobType: {
217
- readonly MARKETPLACE_NODE_PACKAGE_VERSION: "MARKETPLACE_NODE_PACKAGE_VERSION";
218
- readonly NODE_PACKAGE_VERSION: "NODE_PACKAGE_VERSION";
219
- };
220
- export type PackageImportJobType =
221
- (typeof PackageImportJobType)[keyof typeof PackageImportJobType];
222
173
  export interface PackageVersionOutputConfig {
223
174
  PackageName: string | undefined;
224
175
  PackageVersion: string | undefined;
@@ -292,18 +243,6 @@ export interface DescribeApplicationInstanceDetailsResponse {
292
243
  export interface DescribeDeviceRequest {
293
244
  DeviceId: string | undefined;
294
245
  }
295
- export declare const DeviceBrand: {
296
- readonly AWS_PANORAMA: "AWS_PANORAMA";
297
- readonly LENOVO: "LENOVO";
298
- };
299
- export type DeviceBrand = (typeof DeviceBrand)[keyof typeof DeviceBrand];
300
- export declare const NetworkConnectionStatus: {
301
- readonly CONNECTED: "CONNECTED";
302
- readonly CONNECTING: "CONNECTING";
303
- readonly NOT_CONNECTED: "NOT_CONNECTED";
304
- };
305
- export type NetworkConnectionStatus =
306
- (typeof NetworkConnectionStatus)[keyof typeof NetworkConnectionStatus];
307
246
  export interface EthernetStatus {
308
247
  IpAddress?: string | undefined;
309
248
  ConnectionStatus?: NetworkConnectionStatus | undefined;
@@ -320,40 +259,6 @@ export interface NetworkStatus {
320
259
  NtpStatus?: NtpStatus | undefined;
321
260
  LastUpdatedTime?: Date | undefined;
322
261
  }
323
- export declare const DeviceAggregatedStatus: {
324
- readonly AWAITING_PROVISIONING: "AWAITING_PROVISIONING";
325
- readonly DELETING: "DELETING";
326
- readonly ERROR: "ERROR";
327
- readonly FAILED: "FAILED";
328
- readonly LEASE_EXPIRED: "LEASE_EXPIRED";
329
- readonly OFFLINE: "OFFLINE";
330
- readonly ONLINE: "ONLINE";
331
- readonly PENDING: "PENDING";
332
- readonly REBOOTING: "REBOOTING";
333
- readonly UPDATE_NEEDED: "UPDATE_NEEDED";
334
- };
335
- export type DeviceAggregatedStatus =
336
- (typeof DeviceAggregatedStatus)[keyof typeof DeviceAggregatedStatus];
337
- export declare const DeviceConnectionStatus: {
338
- readonly AWAITING_CREDENTIALS: "AWAITING_CREDENTIALS";
339
- readonly ERROR: "ERROR";
340
- readonly NOT_AVAILABLE: "NOT_AVAILABLE";
341
- readonly OFFLINE: "OFFLINE";
342
- readonly ONLINE: "ONLINE";
343
- };
344
- export type DeviceConnectionStatus =
345
- (typeof DeviceConnectionStatus)[keyof typeof DeviceConnectionStatus];
346
- export declare const UpdateProgress: {
347
- readonly COMPLETED: "COMPLETED";
348
- readonly DOWNLOADING: "DOWNLOADING";
349
- readonly FAILED: "FAILED";
350
- readonly IN_PROGRESS: "IN_PROGRESS";
351
- readonly PENDING: "PENDING";
352
- readonly REBOOTING: "REBOOTING";
353
- readonly VERIFYING: "VERIFYING";
354
- };
355
- export type UpdateProgress =
356
- (typeof UpdateProgress)[keyof typeof UpdateProgress];
357
262
  export interface LatestDeviceJob {
358
263
  ImageVersion?: string | undefined;
359
264
  Status?: UpdateProgress | undefined;
@@ -377,20 +282,6 @@ export interface NetworkPayload {
377
282
  Ethernet1?: EthernetPayload | undefined;
378
283
  Ntp?: NtpPayload | undefined;
379
284
  }
380
- export declare const DeviceStatus: {
381
- readonly AWAITING_PROVISIONING: "AWAITING_PROVISIONING";
382
- readonly DELETING: "DELETING";
383
- readonly ERROR: "ERROR";
384
- readonly FAILED: "FAILED";
385
- readonly PENDING: "PENDING";
386
- readonly SUCCEEDED: "SUCCEEDED";
387
- };
388
- export type DeviceStatus = (typeof DeviceStatus)[keyof typeof DeviceStatus];
389
- export declare const DeviceType: {
390
- readonly PANORAMA_APPLIANCE: "PANORAMA_APPLIANCE";
391
- readonly PANORAMA_APPLIANCE_DEVELOPER_KIT: "PANORAMA_APPLIANCE_DEVELOPER_KIT";
392
- };
393
- export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
394
285
  export interface DescribeDeviceResponse {
395
286
  DeviceId?: string | undefined;
396
287
  Name?: string | undefined;
@@ -431,21 +322,6 @@ export interface DescribeNodeRequest {
431
322
  NodeId: string | undefined;
432
323
  OwnerAccount?: string | undefined;
433
324
  }
434
- export declare const NodeCategory: {
435
- readonly BUSINESS_LOGIC: "BUSINESS_LOGIC";
436
- readonly MEDIA_SINK: "MEDIA_SINK";
437
- readonly MEDIA_SOURCE: "MEDIA_SOURCE";
438
- readonly ML_MODEL: "ML_MODEL";
439
- };
440
- export type NodeCategory = (typeof NodeCategory)[keyof typeof NodeCategory];
441
- export declare const PortType: {
442
- readonly BOOLEAN: "BOOLEAN";
443
- readonly FLOAT32: "FLOAT32";
444
- readonly INT32: "INT32";
445
- readonly MEDIA: "MEDIA";
446
- readonly STRING: "STRING";
447
- };
448
- export type PortType = (typeof PortType)[keyof typeof PortType];
449
325
  export interface NodeInputPort {
450
326
  Name?: string | undefined;
451
327
  Description?: string | undefined;
@@ -481,13 +357,6 @@ export interface DescribeNodeResponse {
481
357
  export interface DescribeNodeFromTemplateJobRequest {
482
358
  JobId: string | undefined;
483
359
  }
484
- export declare const NodeFromTemplateJobStatus: {
485
- readonly FAILED: "FAILED";
486
- readonly PENDING: "PENDING";
487
- readonly SUCCEEDED: "SUCCEEDED";
488
- };
489
- export type NodeFromTemplateJobStatus =
490
- (typeof NodeFromTemplateJobStatus)[keyof typeof NodeFromTemplateJobStatus];
491
360
  export interface DescribeNodeFromTemplateJobResponse {
492
361
  JobId: string | undefined;
493
362
  Status: NodeFromTemplateJobStatus | undefined;
@@ -528,13 +397,6 @@ export interface PackageImportJobOutput {
528
397
  PatchVersion: string | undefined;
529
398
  OutputS3Location: OutPutS3Location | undefined;
530
399
  }
531
- export declare const PackageImportJobStatus: {
532
- readonly FAILED: "FAILED";
533
- readonly PENDING: "PENDING";
534
- readonly SUCCEEDED: "SUCCEEDED";
535
- };
536
- export type PackageImportJobStatus =
537
- (typeof PackageImportJobStatus)[keyof typeof PackageImportJobStatus];
538
400
  export interface DescribePackageImportJobResponse {
539
401
  JobId: string | undefined;
540
402
  ClientToken?: string | undefined;
@@ -554,14 +416,6 @@ export interface DescribePackageVersionRequest {
554
416
  PackageVersion: string | undefined;
555
417
  PatchVersion?: string | undefined;
556
418
  }
557
- export declare const PackageVersionStatus: {
558
- readonly DELETING: "DELETING";
559
- readonly FAILED: "FAILED";
560
- readonly REGISTER_COMPLETED: "REGISTER_COMPLETED";
561
- readonly REGISTER_PENDING: "REGISTER_PENDING";
562
- };
563
- export type PackageVersionStatus =
564
- (typeof PackageVersionStatus)[keyof typeof PackageVersionStatus];
565
419
  export interface DescribePackageVersionResponse {
566
420
  OwnerAccount?: string | undefined;
567
421
  PackageId: string | undefined;
@@ -615,14 +469,6 @@ export interface ListApplicationInstanceNodeInstancesRequest {
615
469
  MaxResults?: number | undefined;
616
470
  NextToken?: string | undefined;
617
471
  }
618
- export declare const NodeInstanceStatus: {
619
- readonly ERROR: "ERROR";
620
- readonly NOT_AVAILABLE: "NOT_AVAILABLE";
621
- readonly PAUSED: "PAUSED";
622
- readonly RUNNING: "RUNNING";
623
- };
624
- export type NodeInstanceStatus =
625
- (typeof NodeInstanceStatus)[keyof typeof NodeInstanceStatus];
626
472
  export interface NodeInstance {
627
473
  NodeInstanceId: string | undefined;
628
474
  NodeId?: string | undefined;
@@ -636,16 +482,6 @@ export interface ListApplicationInstanceNodeInstancesResponse {
636
482
  NodeInstances?: NodeInstance[] | undefined;
637
483
  NextToken?: string | undefined;
638
484
  }
639
- export declare const StatusFilter: {
640
- readonly DEPLOYMENT_ERROR: "DEPLOYMENT_ERROR";
641
- readonly DEPLOYMENT_FAILED: "DEPLOYMENT_FAILED";
642
- readonly DEPLOYMENT_SUCCEEDED: "DEPLOYMENT_SUCCEEDED";
643
- readonly PROCESSING_DEPLOYMENT: "PROCESSING_DEPLOYMENT";
644
- readonly PROCESSING_REMOVAL: "PROCESSING_REMOVAL";
645
- readonly REMOVAL_FAILED: "REMOVAL_FAILED";
646
- readonly REMOVAL_SUCCEEDED: "REMOVAL_SUCCEEDED";
647
- };
648
- export type StatusFilter = (typeof StatusFilter)[keyof typeof StatusFilter];
649
485
  export interface ListApplicationInstancesRequest {
650
486
  DeviceId?: string | undefined;
651
487
  StatusFilter?: StatusFilter | undefined;
@@ -656,19 +492,6 @@ export interface ListApplicationInstancesResponse {
656
492
  ApplicationInstances?: ApplicationInstance[] | undefined;
657
493
  NextToken?: string | undefined;
658
494
  }
659
- export declare const ListDevicesSortBy: {
660
- readonly CREATED_TIME: "CREATED_TIME";
661
- readonly DEVICE_AGGREGATED_STATUS: "DEVICE_AGGREGATED_STATUS";
662
- readonly DEVICE_ID: "DEVICE_ID";
663
- readonly NAME: "NAME";
664
- };
665
- export type ListDevicesSortBy =
666
- (typeof ListDevicesSortBy)[keyof typeof ListDevicesSortBy];
667
- export declare const SortOrder: {
668
- readonly ASCENDING: "ASCENDING";
669
- readonly DESCENDING: "DESCENDING";
670
- };
671
- export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
672
495
  export interface ListDevicesRequest {
673
496
  NextToken?: string | undefined;
674
497
  MaxResults?: number | undefined;
@@ -769,12 +592,6 @@ export interface ListTagsForResourceRequest {
769
592
  export interface ListTagsForResourceResponse {
770
593
  Tags?: Record<string, string> | undefined;
771
594
  }
772
- export declare const NodeSignalValue: {
773
- readonly PAUSE: "PAUSE";
774
- readonly RESUME: "RESUME";
775
- };
776
- export type NodeSignalValue =
777
- (typeof NodeSignalValue)[keyof typeof NodeSignalValue];
778
595
  export interface NodeSignal {
779
596
  NodeInstanceId: string | undefined;
780
597
  Signal: NodeSignalValue | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-panorama",
3
3
  "description": "AWS SDK for JavaScript Panorama Client for Node.js, Browser and React Native",
4
- "version": "3.936.0",
4
+ "version": "3.940.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-panorama",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.936.0",
24
- "@aws-sdk/credential-provider-node": "3.936.0",
23
+ "@aws-sdk/core": "3.940.0",
24
+ "@aws-sdk/credential-provider-node": "3.940.0",
25
25
  "@aws-sdk/middleware-host-header": "3.936.0",
26
26
  "@aws-sdk/middleware-logger": "3.936.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.936.0",
28
- "@aws-sdk/middleware-user-agent": "3.936.0",
28
+ "@aws-sdk/middleware-user-agent": "3.940.0",
29
29
  "@aws-sdk/region-config-resolver": "3.936.0",
30
30
  "@aws-sdk/types": "3.936.0",
31
31
  "@aws-sdk/util-endpoints": "3.936.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.936.0",
33
- "@aws-sdk/util-user-agent-node": "3.936.0",
33
+ "@aws-sdk/util-user-agent-node": "3.940.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
35
  "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",