@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.
- package/dist-cjs/index.js +195 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +167 -0
- package/dist-es/models/models_0.js +1 -167
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +383 -0
- package/dist-types/models/errors.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +1 -383
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +211 -0
- package/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +28 -211
- package/package.json +5 -5
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ApplicationInstanceHealthStatus, ApplicationInstanceStatus, ConnectionType, DesiredState, DeviceAggregatedStatus, DeviceBrand, DeviceConnectionStatus, DeviceReportedStatus, DeviceStatus, DeviceType, JobResourceType, JobType, ListDevicesSortBy, NetworkConnectionStatus, NodeCategory, NodeFromTemplateJobStatus, NodeInstanceStatus, NodeSignalValue, PackageImportJobStatus, PackageImportJobType, PackageVersionStatus, PortType, SortOrder, StatusFilter, TemplateType, UpdateProgress } from "./enums";
|
|
1
2
|
/**
|
|
2
3
|
* <p>Details about a beta appliance software update.</p>
|
|
3
4
|
* @public
|
|
@@ -9,53 +10,6 @@ export interface AlternateSoftwareMetadata {
|
|
|
9
10
|
*/
|
|
10
11
|
Version?: string | undefined;
|
|
11
12
|
}
|
|
12
|
-
/**
|
|
13
|
-
* @public
|
|
14
|
-
* @enum
|
|
15
|
-
*/
|
|
16
|
-
export declare const ApplicationInstanceHealthStatus: {
|
|
17
|
-
readonly ERROR: "ERROR";
|
|
18
|
-
readonly NOT_AVAILABLE: "NOT_AVAILABLE";
|
|
19
|
-
readonly RUNNING: "RUNNING";
|
|
20
|
-
};
|
|
21
|
-
/**
|
|
22
|
-
* @public
|
|
23
|
-
*/
|
|
24
|
-
export type ApplicationInstanceHealthStatus = (typeof ApplicationInstanceHealthStatus)[keyof typeof ApplicationInstanceHealthStatus];
|
|
25
|
-
/**
|
|
26
|
-
* @public
|
|
27
|
-
* @enum
|
|
28
|
-
*/
|
|
29
|
-
export declare const DesiredState: {
|
|
30
|
-
readonly REMOVED: "REMOVED";
|
|
31
|
-
readonly RUNNING: "RUNNING";
|
|
32
|
-
readonly STOPPED: "STOPPED";
|
|
33
|
-
};
|
|
34
|
-
/**
|
|
35
|
-
* @public
|
|
36
|
-
*/
|
|
37
|
-
export type DesiredState = (typeof DesiredState)[keyof typeof DesiredState];
|
|
38
|
-
/**
|
|
39
|
-
* @public
|
|
40
|
-
* @enum
|
|
41
|
-
*/
|
|
42
|
-
export declare const DeviceReportedStatus: {
|
|
43
|
-
readonly INSTALL_ERROR: "INSTALL_ERROR";
|
|
44
|
-
readonly INSTALL_IN_PROGRESS: "INSTALL_IN_PROGRESS";
|
|
45
|
-
readonly LAUNCHED: "LAUNCHED";
|
|
46
|
-
readonly LAUNCH_ERROR: "LAUNCH_ERROR";
|
|
47
|
-
readonly REMOVAL_FAILED: "REMOVAL_FAILED";
|
|
48
|
-
readonly REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS";
|
|
49
|
-
readonly RUNNING: "RUNNING";
|
|
50
|
-
readonly STARTING: "STARTING";
|
|
51
|
-
readonly STOPPED: "STOPPED";
|
|
52
|
-
readonly STOPPING: "STOPPING";
|
|
53
|
-
readonly STOP_ERROR: "STOP_ERROR";
|
|
54
|
-
};
|
|
55
|
-
/**
|
|
56
|
-
* @public
|
|
57
|
-
*/
|
|
58
|
-
export type DeviceReportedStatus = (typeof DeviceReportedStatus)[keyof typeof DeviceReportedStatus];
|
|
59
13
|
/**
|
|
60
14
|
* <p>An application instance's state.</p>
|
|
61
15
|
* @public
|
|
@@ -82,27 +36,6 @@ export interface ReportedRuntimeContextState {
|
|
|
82
36
|
*/
|
|
83
37
|
DeviceReportedTime: Date | undefined;
|
|
84
38
|
}
|
|
85
|
-
/**
|
|
86
|
-
* @public
|
|
87
|
-
* @enum
|
|
88
|
-
*/
|
|
89
|
-
export declare const ApplicationInstanceStatus: {
|
|
90
|
-
readonly DEPLOYMENT_ERROR: "DEPLOYMENT_ERROR";
|
|
91
|
-
readonly DEPLOYMENT_FAILED: "DEPLOYMENT_FAILED";
|
|
92
|
-
readonly DEPLOYMENT_IN_PROGRESS: "DEPLOYMENT_IN_PROGRESS";
|
|
93
|
-
readonly DEPLOYMENT_PENDING: "DEPLOYMENT_PENDING";
|
|
94
|
-
readonly DEPLOYMENT_REQUESTED: "DEPLOYMENT_REQUESTED";
|
|
95
|
-
readonly DEPLOYMENT_SUCCEEDED: "DEPLOYMENT_SUCCEEDED";
|
|
96
|
-
readonly REMOVAL_FAILED: "REMOVAL_FAILED";
|
|
97
|
-
readonly REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS";
|
|
98
|
-
readonly REMOVAL_PENDING: "REMOVAL_PENDING";
|
|
99
|
-
readonly REMOVAL_REQUESTED: "REMOVAL_REQUESTED";
|
|
100
|
-
readonly REMOVAL_SUCCEEDED: "REMOVAL_SUCCEEDED";
|
|
101
|
-
};
|
|
102
|
-
/**
|
|
103
|
-
* @public
|
|
104
|
-
*/
|
|
105
|
-
export type ApplicationInstanceStatus = (typeof ApplicationInstanceStatus)[keyof typeof ApplicationInstanceStatus];
|
|
106
39
|
/**
|
|
107
40
|
* <p>An application instance on a device.</p>
|
|
108
41
|
* @public
|
|
@@ -185,18 +118,6 @@ export interface ConflictExceptionErrorArgument {
|
|
|
185
118
|
*/
|
|
186
119
|
Value: string | undefined;
|
|
187
120
|
}
|
|
188
|
-
/**
|
|
189
|
-
* @public
|
|
190
|
-
* @enum
|
|
191
|
-
*/
|
|
192
|
-
export declare const ConnectionType: {
|
|
193
|
-
readonly DHCP: "DHCP";
|
|
194
|
-
readonly STATIC_IP: "STATIC_IP";
|
|
195
|
-
};
|
|
196
|
-
/**
|
|
197
|
-
* @public
|
|
198
|
-
*/
|
|
199
|
-
export type ConnectionType = (typeof ConnectionType)[keyof typeof ConnectionType];
|
|
200
121
|
/**
|
|
201
122
|
* <p>Parameter overrides for an application instance. This is a JSON document that has a single key
|
|
202
123
|
* (<code>PayloadData</code>) where the value is an escaped string representation of the overrides document.</p>
|
|
@@ -353,20 +274,6 @@ export interface ValidationExceptionField {
|
|
|
353
274
|
*/
|
|
354
275
|
Message: string | undefined;
|
|
355
276
|
}
|
|
356
|
-
/**
|
|
357
|
-
* @public
|
|
358
|
-
* @enum
|
|
359
|
-
*/
|
|
360
|
-
export declare const ValidationExceptionReason: {
|
|
361
|
-
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
362
|
-
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
363
|
-
readonly OTHER: "OTHER";
|
|
364
|
-
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
365
|
-
};
|
|
366
|
-
/**
|
|
367
|
-
* @public
|
|
368
|
-
*/
|
|
369
|
-
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
370
277
|
/**
|
|
371
278
|
* <p>An over-the-air update (OTA) job configuration.</p>
|
|
372
279
|
* @public
|
|
@@ -394,18 +301,6 @@ export interface DeviceJobConfig {
|
|
|
394
301
|
*/
|
|
395
302
|
OTAJobConfig?: OTAJobConfig | undefined;
|
|
396
303
|
}
|
|
397
|
-
/**
|
|
398
|
-
* @public
|
|
399
|
-
* @enum
|
|
400
|
-
*/
|
|
401
|
-
export declare const JobType: {
|
|
402
|
-
readonly OTA: "OTA";
|
|
403
|
-
readonly REBOOT: "REBOOT";
|
|
404
|
-
};
|
|
405
|
-
/**
|
|
406
|
-
* @public
|
|
407
|
-
*/
|
|
408
|
-
export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
409
304
|
/**
|
|
410
305
|
* @public
|
|
411
306
|
*/
|
|
@@ -452,17 +347,6 @@ export interface CreateJobForDevicesResponse {
|
|
|
452
347
|
*/
|
|
453
348
|
Jobs: Job[] | undefined;
|
|
454
349
|
}
|
|
455
|
-
/**
|
|
456
|
-
* @public
|
|
457
|
-
* @enum
|
|
458
|
-
*/
|
|
459
|
-
export declare const JobResourceType: {
|
|
460
|
-
readonly PACKAGE: "PACKAGE";
|
|
461
|
-
};
|
|
462
|
-
/**
|
|
463
|
-
* @public
|
|
464
|
-
*/
|
|
465
|
-
export type JobResourceType = (typeof JobResourceType)[keyof typeof JobResourceType];
|
|
466
350
|
/**
|
|
467
351
|
* <p>Tags for a job.</p>
|
|
468
352
|
* @public
|
|
@@ -479,17 +363,6 @@ export interface JobResourceTags {
|
|
|
479
363
|
*/
|
|
480
364
|
Tags: Record<string, string> | undefined;
|
|
481
365
|
}
|
|
482
|
-
/**
|
|
483
|
-
* @public
|
|
484
|
-
* @enum
|
|
485
|
-
*/
|
|
486
|
-
export declare const TemplateType: {
|
|
487
|
-
readonly RTSP_CAMERA_STREAM: "RTSP_CAMERA_STREAM";
|
|
488
|
-
};
|
|
489
|
-
/**
|
|
490
|
-
* @public
|
|
491
|
-
*/
|
|
492
|
-
export type TemplateType = (typeof TemplateType)[keyof typeof TemplateType];
|
|
493
366
|
/**
|
|
494
367
|
* @public
|
|
495
368
|
*/
|
|
@@ -649,18 +522,6 @@ export interface PackageImportJobInputConfig {
|
|
|
649
522
|
*/
|
|
650
523
|
PackageVersionInputConfig?: PackageVersionInputConfig | undefined;
|
|
651
524
|
}
|
|
652
|
-
/**
|
|
653
|
-
* @public
|
|
654
|
-
* @enum
|
|
655
|
-
*/
|
|
656
|
-
export declare const PackageImportJobType: {
|
|
657
|
-
readonly MARKETPLACE_NODE_PACKAGE_VERSION: "MARKETPLACE_NODE_PACKAGE_VERSION";
|
|
658
|
-
readonly NODE_PACKAGE_VERSION: "NODE_PACKAGE_VERSION";
|
|
659
|
-
};
|
|
660
|
-
/**
|
|
661
|
-
* @public
|
|
662
|
-
*/
|
|
663
|
-
export type PackageImportJobType = (typeof PackageImportJobType)[keyof typeof PackageImportJobType];
|
|
664
525
|
/**
|
|
665
526
|
* <p>A package version output configuration.</p>
|
|
666
527
|
* @public
|
|
@@ -964,31 +825,6 @@ export interface DescribeDeviceRequest {
|
|
|
964
825
|
*/
|
|
965
826
|
DeviceId: string | undefined;
|
|
966
827
|
}
|
|
967
|
-
/**
|
|
968
|
-
* @public
|
|
969
|
-
* @enum
|
|
970
|
-
*/
|
|
971
|
-
export declare const DeviceBrand: {
|
|
972
|
-
readonly AWS_PANORAMA: "AWS_PANORAMA";
|
|
973
|
-
readonly LENOVO: "LENOVO";
|
|
974
|
-
};
|
|
975
|
-
/**
|
|
976
|
-
* @public
|
|
977
|
-
*/
|
|
978
|
-
export type DeviceBrand = (typeof DeviceBrand)[keyof typeof DeviceBrand];
|
|
979
|
-
/**
|
|
980
|
-
* @public
|
|
981
|
-
* @enum
|
|
982
|
-
*/
|
|
983
|
-
export declare const NetworkConnectionStatus: {
|
|
984
|
-
readonly CONNECTED: "CONNECTED";
|
|
985
|
-
readonly CONNECTING: "CONNECTING";
|
|
986
|
-
readonly NOT_CONNECTED: "NOT_CONNECTED";
|
|
987
|
-
};
|
|
988
|
-
/**
|
|
989
|
-
* @public
|
|
990
|
-
*/
|
|
991
|
-
export type NetworkConnectionStatus = (typeof NetworkConnectionStatus)[keyof typeof NetworkConnectionStatus];
|
|
992
828
|
/**
|
|
993
829
|
* <p>A device's Ethernet status.</p>
|
|
994
830
|
* @public
|
|
@@ -1057,58 +893,6 @@ export interface NetworkStatus {
|
|
|
1057
893
|
*/
|
|
1058
894
|
LastUpdatedTime?: Date | undefined;
|
|
1059
895
|
}
|
|
1060
|
-
/**
|
|
1061
|
-
* @public
|
|
1062
|
-
* @enum
|
|
1063
|
-
*/
|
|
1064
|
-
export declare const DeviceAggregatedStatus: {
|
|
1065
|
-
readonly AWAITING_PROVISIONING: "AWAITING_PROVISIONING";
|
|
1066
|
-
readonly DELETING: "DELETING";
|
|
1067
|
-
readonly ERROR: "ERROR";
|
|
1068
|
-
readonly FAILED: "FAILED";
|
|
1069
|
-
readonly LEASE_EXPIRED: "LEASE_EXPIRED";
|
|
1070
|
-
readonly OFFLINE: "OFFLINE";
|
|
1071
|
-
readonly ONLINE: "ONLINE";
|
|
1072
|
-
readonly PENDING: "PENDING";
|
|
1073
|
-
readonly REBOOTING: "REBOOTING";
|
|
1074
|
-
readonly UPDATE_NEEDED: "UPDATE_NEEDED";
|
|
1075
|
-
};
|
|
1076
|
-
/**
|
|
1077
|
-
* @public
|
|
1078
|
-
*/
|
|
1079
|
-
export type DeviceAggregatedStatus = (typeof DeviceAggregatedStatus)[keyof typeof DeviceAggregatedStatus];
|
|
1080
|
-
/**
|
|
1081
|
-
* @public
|
|
1082
|
-
* @enum
|
|
1083
|
-
*/
|
|
1084
|
-
export declare const DeviceConnectionStatus: {
|
|
1085
|
-
readonly AWAITING_CREDENTIALS: "AWAITING_CREDENTIALS";
|
|
1086
|
-
readonly ERROR: "ERROR";
|
|
1087
|
-
readonly NOT_AVAILABLE: "NOT_AVAILABLE";
|
|
1088
|
-
readonly OFFLINE: "OFFLINE";
|
|
1089
|
-
readonly ONLINE: "ONLINE";
|
|
1090
|
-
};
|
|
1091
|
-
/**
|
|
1092
|
-
* @public
|
|
1093
|
-
*/
|
|
1094
|
-
export type DeviceConnectionStatus = (typeof DeviceConnectionStatus)[keyof typeof DeviceConnectionStatus];
|
|
1095
|
-
/**
|
|
1096
|
-
* @public
|
|
1097
|
-
* @enum
|
|
1098
|
-
*/
|
|
1099
|
-
export declare const UpdateProgress: {
|
|
1100
|
-
readonly COMPLETED: "COMPLETED";
|
|
1101
|
-
readonly DOWNLOADING: "DOWNLOADING";
|
|
1102
|
-
readonly FAILED: "FAILED";
|
|
1103
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1104
|
-
readonly PENDING: "PENDING";
|
|
1105
|
-
readonly REBOOTING: "REBOOTING";
|
|
1106
|
-
readonly VERIFYING: "VERIFYING";
|
|
1107
|
-
};
|
|
1108
|
-
/**
|
|
1109
|
-
* @public
|
|
1110
|
-
*/
|
|
1111
|
-
export type UpdateProgress = (typeof UpdateProgress)[keyof typeof UpdateProgress];
|
|
1112
896
|
/**
|
|
1113
897
|
* <p>Returns information about the latest device job.</p>
|
|
1114
898
|
* @public
|
|
@@ -1205,34 +989,6 @@ export interface NetworkPayload {
|
|
|
1205
989
|
*/
|
|
1206
990
|
Ntp?: NtpPayload | undefined;
|
|
1207
991
|
}
|
|
1208
|
-
/**
|
|
1209
|
-
* @public
|
|
1210
|
-
* @enum
|
|
1211
|
-
*/
|
|
1212
|
-
export declare const DeviceStatus: {
|
|
1213
|
-
readonly AWAITING_PROVISIONING: "AWAITING_PROVISIONING";
|
|
1214
|
-
readonly DELETING: "DELETING";
|
|
1215
|
-
readonly ERROR: "ERROR";
|
|
1216
|
-
readonly FAILED: "FAILED";
|
|
1217
|
-
readonly PENDING: "PENDING";
|
|
1218
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
1219
|
-
};
|
|
1220
|
-
/**
|
|
1221
|
-
* @public
|
|
1222
|
-
*/
|
|
1223
|
-
export type DeviceStatus = (typeof DeviceStatus)[keyof typeof DeviceStatus];
|
|
1224
|
-
/**
|
|
1225
|
-
* @public
|
|
1226
|
-
* @enum
|
|
1227
|
-
*/
|
|
1228
|
-
export declare const DeviceType: {
|
|
1229
|
-
readonly PANORAMA_APPLIANCE: "PANORAMA_APPLIANCE";
|
|
1230
|
-
readonly PANORAMA_APPLIANCE_DEVELOPER_KIT: "PANORAMA_APPLIANCE_DEVELOPER_KIT";
|
|
1231
|
-
};
|
|
1232
|
-
/**
|
|
1233
|
-
* @public
|
|
1234
|
-
*/
|
|
1235
|
-
export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
|
|
1236
992
|
/**
|
|
1237
993
|
* @public
|
|
1238
994
|
*/
|
|
@@ -1413,35 +1169,6 @@ export interface DescribeNodeRequest {
|
|
|
1413
1169
|
*/
|
|
1414
1170
|
OwnerAccount?: string | undefined;
|
|
1415
1171
|
}
|
|
1416
|
-
/**
|
|
1417
|
-
* @public
|
|
1418
|
-
* @enum
|
|
1419
|
-
*/
|
|
1420
|
-
export declare const NodeCategory: {
|
|
1421
|
-
readonly BUSINESS_LOGIC: "BUSINESS_LOGIC";
|
|
1422
|
-
readonly MEDIA_SINK: "MEDIA_SINK";
|
|
1423
|
-
readonly MEDIA_SOURCE: "MEDIA_SOURCE";
|
|
1424
|
-
readonly ML_MODEL: "ML_MODEL";
|
|
1425
|
-
};
|
|
1426
|
-
/**
|
|
1427
|
-
* @public
|
|
1428
|
-
*/
|
|
1429
|
-
export type NodeCategory = (typeof NodeCategory)[keyof typeof NodeCategory];
|
|
1430
|
-
/**
|
|
1431
|
-
* @public
|
|
1432
|
-
* @enum
|
|
1433
|
-
*/
|
|
1434
|
-
export declare const PortType: {
|
|
1435
|
-
readonly BOOLEAN: "BOOLEAN";
|
|
1436
|
-
readonly FLOAT32: "FLOAT32";
|
|
1437
|
-
readonly INT32: "INT32";
|
|
1438
|
-
readonly MEDIA: "MEDIA";
|
|
1439
|
-
readonly STRING: "STRING";
|
|
1440
|
-
};
|
|
1441
|
-
/**
|
|
1442
|
-
* @public
|
|
1443
|
-
*/
|
|
1444
|
-
export type PortType = (typeof PortType)[keyof typeof PortType];
|
|
1445
1172
|
/**
|
|
1446
1173
|
* <p>A node input port.</p>
|
|
1447
1174
|
* @public
|
|
@@ -1595,19 +1322,6 @@ export interface DescribeNodeFromTemplateJobRequest {
|
|
|
1595
1322
|
*/
|
|
1596
1323
|
JobId: string | undefined;
|
|
1597
1324
|
}
|
|
1598
|
-
/**
|
|
1599
|
-
* @public
|
|
1600
|
-
* @enum
|
|
1601
|
-
*/
|
|
1602
|
-
export declare const NodeFromTemplateJobStatus: {
|
|
1603
|
-
readonly FAILED: "FAILED";
|
|
1604
|
-
readonly PENDING: "PENDING";
|
|
1605
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
1606
|
-
};
|
|
1607
|
-
/**
|
|
1608
|
-
* @public
|
|
1609
|
-
*/
|
|
1610
|
-
export type NodeFromTemplateJobStatus = (typeof NodeFromTemplateJobStatus)[keyof typeof NodeFromTemplateJobStatus];
|
|
1611
1325
|
/**
|
|
1612
1326
|
* @public
|
|
1613
1327
|
*/
|
|
@@ -1780,19 +1494,6 @@ export interface PackageImportJobOutput {
|
|
|
1780
1494
|
*/
|
|
1781
1495
|
OutputS3Location: OutPutS3Location | undefined;
|
|
1782
1496
|
}
|
|
1783
|
-
/**
|
|
1784
|
-
* @public
|
|
1785
|
-
* @enum
|
|
1786
|
-
*/
|
|
1787
|
-
export declare const PackageImportJobStatus: {
|
|
1788
|
-
readonly FAILED: "FAILED";
|
|
1789
|
-
readonly PENDING: "PENDING";
|
|
1790
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
1791
|
-
};
|
|
1792
|
-
/**
|
|
1793
|
-
* @public
|
|
1794
|
-
*/
|
|
1795
|
-
export type PackageImportJobStatus = (typeof PackageImportJobStatus)[keyof typeof PackageImportJobStatus];
|
|
1796
1497
|
/**
|
|
1797
1498
|
* @public
|
|
1798
1499
|
*/
|
|
@@ -1878,20 +1579,6 @@ export interface DescribePackageVersionRequest {
|
|
|
1878
1579
|
*/
|
|
1879
1580
|
PatchVersion?: string | undefined;
|
|
1880
1581
|
}
|
|
1881
|
-
/**
|
|
1882
|
-
* @public
|
|
1883
|
-
* @enum
|
|
1884
|
-
*/
|
|
1885
|
-
export declare const PackageVersionStatus: {
|
|
1886
|
-
readonly DELETING: "DELETING";
|
|
1887
|
-
readonly FAILED: "FAILED";
|
|
1888
|
-
readonly REGISTER_COMPLETED: "REGISTER_COMPLETED";
|
|
1889
|
-
readonly REGISTER_PENDING: "REGISTER_PENDING";
|
|
1890
|
-
};
|
|
1891
|
-
/**
|
|
1892
|
-
* @public
|
|
1893
|
-
*/
|
|
1894
|
-
export type PackageVersionStatus = (typeof PackageVersionStatus)[keyof typeof PackageVersionStatus];
|
|
1895
1582
|
/**
|
|
1896
1583
|
* @public
|
|
1897
1584
|
*/
|
|
@@ -2125,20 +1812,6 @@ export interface ListApplicationInstanceNodeInstancesRequest {
|
|
|
2125
1812
|
*/
|
|
2126
1813
|
NextToken?: string | undefined;
|
|
2127
1814
|
}
|
|
2128
|
-
/**
|
|
2129
|
-
* @public
|
|
2130
|
-
* @enum
|
|
2131
|
-
*/
|
|
2132
|
-
export declare const NodeInstanceStatus: {
|
|
2133
|
-
readonly ERROR: "ERROR";
|
|
2134
|
-
readonly NOT_AVAILABLE: "NOT_AVAILABLE";
|
|
2135
|
-
readonly PAUSED: "PAUSED";
|
|
2136
|
-
readonly RUNNING: "RUNNING";
|
|
2137
|
-
};
|
|
2138
|
-
/**
|
|
2139
|
-
* @public
|
|
2140
|
-
*/
|
|
2141
|
-
export type NodeInstanceStatus = (typeof NodeInstanceStatus)[keyof typeof NodeInstanceStatus];
|
|
2142
1815
|
/**
|
|
2143
1816
|
* <p>A node instance.</p>
|
|
2144
1817
|
* @public
|
|
@@ -2195,23 +1868,6 @@ export interface ListApplicationInstanceNodeInstancesResponse {
|
|
|
2195
1868
|
*/
|
|
2196
1869
|
NextToken?: string | undefined;
|
|
2197
1870
|
}
|
|
2198
|
-
/**
|
|
2199
|
-
* @public
|
|
2200
|
-
* @enum
|
|
2201
|
-
*/
|
|
2202
|
-
export declare const StatusFilter: {
|
|
2203
|
-
readonly DEPLOYMENT_ERROR: "DEPLOYMENT_ERROR";
|
|
2204
|
-
readonly DEPLOYMENT_FAILED: "DEPLOYMENT_FAILED";
|
|
2205
|
-
readonly DEPLOYMENT_SUCCEEDED: "DEPLOYMENT_SUCCEEDED";
|
|
2206
|
-
readonly PROCESSING_DEPLOYMENT: "PROCESSING_DEPLOYMENT";
|
|
2207
|
-
readonly PROCESSING_REMOVAL: "PROCESSING_REMOVAL";
|
|
2208
|
-
readonly REMOVAL_FAILED: "REMOVAL_FAILED";
|
|
2209
|
-
readonly REMOVAL_SUCCEEDED: "REMOVAL_SUCCEEDED";
|
|
2210
|
-
};
|
|
2211
|
-
/**
|
|
2212
|
-
* @public
|
|
2213
|
-
*/
|
|
2214
|
-
export type StatusFilter = (typeof StatusFilter)[keyof typeof StatusFilter];
|
|
2215
1871
|
/**
|
|
2216
1872
|
* @public
|
|
2217
1873
|
*/
|
|
@@ -2252,32 +1908,6 @@ export interface ListApplicationInstancesResponse {
|
|
|
2252
1908
|
*/
|
|
2253
1909
|
NextToken?: string | undefined;
|
|
2254
1910
|
}
|
|
2255
|
-
/**
|
|
2256
|
-
* @public
|
|
2257
|
-
* @enum
|
|
2258
|
-
*/
|
|
2259
|
-
export declare const ListDevicesSortBy: {
|
|
2260
|
-
readonly CREATED_TIME: "CREATED_TIME";
|
|
2261
|
-
readonly DEVICE_AGGREGATED_STATUS: "DEVICE_AGGREGATED_STATUS";
|
|
2262
|
-
readonly DEVICE_ID: "DEVICE_ID";
|
|
2263
|
-
readonly NAME: "NAME";
|
|
2264
|
-
};
|
|
2265
|
-
/**
|
|
2266
|
-
* @public
|
|
2267
|
-
*/
|
|
2268
|
-
export type ListDevicesSortBy = (typeof ListDevicesSortBy)[keyof typeof ListDevicesSortBy];
|
|
2269
|
-
/**
|
|
2270
|
-
* @public
|
|
2271
|
-
* @enum
|
|
2272
|
-
*/
|
|
2273
|
-
export declare const SortOrder: {
|
|
2274
|
-
readonly ASCENDING: "ASCENDING";
|
|
2275
|
-
readonly DESCENDING: "DESCENDING";
|
|
2276
|
-
};
|
|
2277
|
-
/**
|
|
2278
|
-
* @public
|
|
2279
|
-
*/
|
|
2280
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
2281
1911
|
/**
|
|
2282
1912
|
* @public
|
|
2283
1913
|
*/
|
|
@@ -2692,18 +2322,6 @@ export interface ListTagsForResourceResponse {
|
|
|
2692
2322
|
*/
|
|
2693
2323
|
Tags?: Record<string, string> | undefined;
|
|
2694
2324
|
}
|
|
2695
|
-
/**
|
|
2696
|
-
* @public
|
|
2697
|
-
* @enum
|
|
2698
|
-
*/
|
|
2699
|
-
export declare const NodeSignalValue: {
|
|
2700
|
-
readonly PAUSE: "PAUSE";
|
|
2701
|
-
readonly RESUME: "RESUME";
|
|
2702
|
-
};
|
|
2703
|
-
/**
|
|
2704
|
-
* @public
|
|
2705
|
-
*/
|
|
2706
|
-
export type NodeSignalValue = (typeof NodeSignalValue)[keyof typeof NodeSignalValue];
|
|
2707
2325
|
/**
|
|
2708
2326
|
* <p>A signal to a camera node to start or stop processing video.</p>
|
|
2709
2327
|
* @public
|
|
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { PanoramaExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
+
export * from "./models/enums";
|
|
8
9
|
export * from "./models/errors";
|
|
9
10
|
export * from "./models/models_0";
|
|
10
11
|
export { PanoramaServiceException } from "./models/PanoramaServiceException";
|