@aws-sdk/client-iotsitewise 3.301.0 → 3.303.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.
@@ -18,10 +18,11 @@ export interface Identity {
18
18
  iamUser?: IAMUserIdentity;
19
19
  iamRole?: IAMRoleIdentity;
20
20
  }
21
- export declare enum Permission {
22
- ADMINISTRATOR = "ADMINISTRATOR",
23
- VIEWER = "VIEWER",
24
- }
21
+ export declare const Permission: {
22
+ readonly ADMINISTRATOR: "ADMINISTRATOR";
23
+ readonly VIEWER: "VIEWER";
24
+ };
25
+ export type Permission = (typeof Permission)[keyof typeof Permission];
25
26
  export interface PortalResource {
26
27
  id: string | undefined;
27
28
  }
@@ -40,11 +41,12 @@ export interface AccessPolicySummary {
40
41
  creationDate?: Date;
41
42
  lastUpdateDate?: Date;
42
43
  }
43
- export declare enum Quality {
44
- BAD = "BAD",
45
- GOOD = "GOOD",
46
- UNCERTAIN = "UNCERTAIN",
47
- }
44
+ export declare const Quality: {
45
+ readonly BAD: "BAD";
46
+ readonly GOOD: "GOOD";
47
+ readonly UNCERTAIN: "UNCERTAIN";
48
+ };
49
+ export type Quality = (typeof Quality)[keyof typeof Quality];
48
50
  export interface Aggregates {
49
51
  average?: number;
50
52
  count?: number;
@@ -58,29 +60,34 @@ export interface AggregatedValue {
58
60
  quality?: Quality | string;
59
61
  value: Aggregates | undefined;
60
62
  }
61
- export declare enum AggregateType {
62
- AVERAGE = "AVERAGE",
63
- COUNT = "COUNT",
64
- MAXIMUM = "MAXIMUM",
65
- MINIMUM = "MINIMUM",
66
- STANDARD_DEVIATION = "STANDARD_DEVIATION",
67
- SUM = "SUM",
68
- }
63
+ export declare const AggregateType: {
64
+ readonly AVERAGE: "AVERAGE";
65
+ readonly COUNT: "COUNT";
66
+ readonly MAXIMUM: "MAXIMUM";
67
+ readonly MINIMUM: "MINIMUM";
68
+ readonly STANDARD_DEVIATION: "STANDARD_DEVIATION";
69
+ readonly SUM: "SUM";
70
+ };
71
+ export type AggregateType = (typeof AggregateType)[keyof typeof AggregateType];
69
72
  export interface Alarms {
70
73
  alarmRoleArn: string | undefined;
71
74
  notificationLambdaArn?: string;
72
75
  }
73
- export declare enum PropertyDataType {
74
- BOOLEAN = "BOOLEAN",
75
- DOUBLE = "DOUBLE",
76
- INTEGER = "INTEGER",
77
- STRING = "STRING",
78
- STRUCT = "STRUCT",
79
- }
80
- export declare enum PropertyNotificationState {
81
- DISABLED = "DISABLED",
82
- ENABLED = "ENABLED",
83
- }
76
+ export declare const PropertyDataType: {
77
+ readonly BOOLEAN: "BOOLEAN";
78
+ readonly DOUBLE: "DOUBLE";
79
+ readonly INTEGER: "INTEGER";
80
+ readonly STRING: "STRING";
81
+ readonly STRUCT: "STRUCT";
82
+ };
83
+ export type PropertyDataType =
84
+ (typeof PropertyDataType)[keyof typeof PropertyDataType];
85
+ export declare const PropertyNotificationState: {
86
+ readonly DISABLED: "DISABLED";
87
+ readonly ENABLED: "ENABLED";
88
+ };
89
+ export type PropertyNotificationState =
90
+ (typeof PropertyNotificationState)[keyof typeof PropertyNotificationState];
84
91
  export interface PropertyNotification {
85
92
  topic: string | undefined;
86
93
  state: PropertyNotificationState | string | undefined;
@@ -101,9 +108,11 @@ export interface AssetCompositeModel {
101
108
  properties: AssetProperty[] | undefined;
102
109
  id?: string;
103
110
  }
104
- export declare enum AssetErrorCode {
105
- INTERNAL_FAILURE = "INTERNAL_FAILURE",
106
- }
111
+ export declare const AssetErrorCode: {
112
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
113
+ };
114
+ export type AssetErrorCode =
115
+ (typeof AssetErrorCode)[keyof typeof AssetErrorCode];
107
116
  export interface AssetErrorDetails {
108
117
  assetId: string | undefined;
109
118
  code: AssetErrorCode | string | undefined;
@@ -120,10 +129,12 @@ export interface AssetHierarchyInfo {
120
129
  export interface Attribute {
121
130
  defaultValue?: string;
122
131
  }
123
- export declare enum ForwardingConfigState {
124
- DISABLED = "DISABLED",
125
- ENABLED = "ENABLED",
126
- }
132
+ export declare const ForwardingConfigState: {
133
+ readonly DISABLED: "DISABLED";
134
+ readonly ENABLED: "ENABLED";
135
+ };
136
+ export type ForwardingConfigState =
137
+ (typeof ForwardingConfigState)[keyof typeof ForwardingConfigState];
127
138
  export interface ForwardingConfig {
128
139
  state: ForwardingConfigState | string | undefined;
129
140
  }
@@ -133,10 +144,12 @@ export interface MeasurementProcessingConfig {
133
144
  export interface Measurement {
134
145
  processingConfig?: MeasurementProcessingConfig;
135
146
  }
136
- export declare enum ComputeLocation {
137
- CLOUD = "CLOUD",
138
- EDGE = "EDGE",
139
- }
147
+ export declare const ComputeLocation: {
148
+ readonly CLOUD: "CLOUD";
149
+ readonly EDGE: "EDGE";
150
+ };
151
+ export type ComputeLocation =
152
+ (typeof ComputeLocation)[keyof typeof ComputeLocation];
140
153
  export interface MetricProcessingConfig {
141
154
  computeLocation: ComputeLocation | string | undefined;
142
155
  }
@@ -222,22 +235,27 @@ export interface AssetModelPropertySummary {
222
235
  type: PropertyType | undefined;
223
236
  assetModelCompositeModelId?: string;
224
237
  }
225
- export declare enum AssetModelState {
226
- ACTIVE = "ACTIVE",
227
- CREATING = "CREATING",
228
- DELETING = "DELETING",
229
- FAILED = "FAILED",
230
- PROPAGATING = "PROPAGATING",
231
- UPDATING = "UPDATING",
232
- }
233
- export declare enum ErrorCode {
234
- INTERNAL_FAILURE = "INTERNAL_FAILURE",
235
- VALIDATION_ERROR = "VALIDATION_ERROR",
236
- }
237
- export declare enum DetailedErrorCode {
238
- INCOMPATIBLE_COMPUTE_LOCATION = "INCOMPATIBLE_COMPUTE_LOCATION",
239
- INCOMPATIBLE_FORWARDING_CONFIGURATION = "INCOMPATIBLE_FORWARDING_CONFIGURATION",
240
- }
238
+ export declare const AssetModelState: {
239
+ readonly ACTIVE: "ACTIVE";
240
+ readonly CREATING: "CREATING";
241
+ readonly DELETING: "DELETING";
242
+ readonly FAILED: "FAILED";
243
+ readonly PROPAGATING: "PROPAGATING";
244
+ readonly UPDATING: "UPDATING";
245
+ };
246
+ export type AssetModelState =
247
+ (typeof AssetModelState)[keyof typeof AssetModelState];
248
+ export declare const ErrorCode: {
249
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
250
+ readonly VALIDATION_ERROR: "VALIDATION_ERROR";
251
+ };
252
+ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
253
+ export declare const DetailedErrorCode: {
254
+ readonly INCOMPATIBLE_COMPUTE_LOCATION: "INCOMPATIBLE_COMPUTE_LOCATION";
255
+ readonly INCOMPATIBLE_FORWARDING_CONFIGURATION: "INCOMPATIBLE_FORWARDING_CONFIGURATION";
256
+ };
257
+ export type DetailedErrorCode =
258
+ (typeof DetailedErrorCode)[keyof typeof DetailedErrorCode];
241
259
  export interface DetailedError {
242
260
  code: DetailedErrorCode | string | undefined;
243
261
  message: string | undefined;
@@ -282,20 +300,23 @@ export interface AssetPropertyValue {
282
300
  timestamp: TimeInNanos | undefined;
283
301
  quality?: Quality | string;
284
302
  }
285
- export declare enum AssetRelationshipType {
286
- HIERARCHY = "HIERARCHY",
287
- }
303
+ export declare const AssetRelationshipType: {
304
+ readonly HIERARCHY: "HIERARCHY";
305
+ };
306
+ export type AssetRelationshipType =
307
+ (typeof AssetRelationshipType)[keyof typeof AssetRelationshipType];
288
308
  export interface AssetRelationshipSummary {
289
309
  hierarchyInfo?: AssetHierarchyInfo;
290
310
  relationshipType: AssetRelationshipType | string | undefined;
291
311
  }
292
- export declare enum AssetState {
293
- ACTIVE = "ACTIVE",
294
- CREATING = "CREATING",
295
- DELETING = "DELETING",
296
- FAILED = "FAILED",
297
- UPDATING = "UPDATING",
298
- }
312
+ export declare const AssetState: {
313
+ readonly ACTIVE: "ACTIVE";
314
+ readonly CREATING: "CREATING";
315
+ readonly DELETING: "DELETING";
316
+ readonly FAILED: "FAILED";
317
+ readonly UPDATING: "UPDATING";
318
+ };
319
+ export type AssetState = (typeof AssetState)[keyof typeof AssetState];
299
320
  export interface AssetStatus {
300
321
  state: AssetState | string | undefined;
301
322
  error?: ErrorDetails;
@@ -387,10 +408,11 @@ export interface AssociateTimeSeriesToAssetPropertyRequest {
387
408
  propertyId: string | undefined;
388
409
  clientToken?: string;
389
410
  }
390
- export declare enum AuthMode {
391
- IAM = "IAM",
392
- SSO = "SSO",
393
- }
411
+ export declare const AuthMode: {
412
+ readonly IAM: "IAM";
413
+ readonly SSO: "SSO";
414
+ };
415
+ export type AuthMode = (typeof AuthMode)[keyof typeof AuthMode];
394
416
  export interface BatchAssociateProjectAssetsRequest {
395
417
  projectId: string | undefined;
396
418
  assetIds: string[] | undefined;
@@ -407,10 +429,11 @@ export interface BatchDisassociateProjectAssetsRequest {
407
429
  export interface BatchDisassociateProjectAssetsResponse {
408
430
  errors?: AssetErrorDetails[];
409
431
  }
410
- export declare enum TimeOrdering {
411
- ASCENDING = "ASCENDING",
412
- DESCENDING = "DESCENDING",
413
- }
432
+ export declare const TimeOrdering: {
433
+ readonly ASCENDING: "ASCENDING";
434
+ readonly DESCENDING: "DESCENDING";
435
+ };
436
+ export type TimeOrdering = (typeof TimeOrdering)[keyof typeof TimeOrdering];
414
437
  export interface BatchGetAssetPropertyAggregatesEntry {
415
438
  entryId: string | undefined;
416
439
  assetId?: string;
@@ -428,20 +451,24 @@ export interface BatchGetAssetPropertyAggregatesRequest {
428
451
  nextToken?: string;
429
452
  maxResults?: number;
430
453
  }
431
- export declare enum BatchGetAssetPropertyAggregatesErrorCode {
432
- AccessDeniedException = "AccessDeniedException",
433
- InvalidRequestException = "InvalidRequestException",
434
- ResourceNotFoundException = "ResourceNotFoundException",
435
- }
454
+ export declare const BatchGetAssetPropertyAggregatesErrorCode: {
455
+ readonly AccessDeniedException: "AccessDeniedException";
456
+ readonly InvalidRequestException: "InvalidRequestException";
457
+ readonly ResourceNotFoundException: "ResourceNotFoundException";
458
+ };
459
+ export type BatchGetAssetPropertyAggregatesErrorCode =
460
+ (typeof BatchGetAssetPropertyAggregatesErrorCode)[keyof typeof BatchGetAssetPropertyAggregatesErrorCode];
436
461
  export interface BatchGetAssetPropertyAggregatesErrorEntry {
437
462
  errorCode: BatchGetAssetPropertyAggregatesErrorCode | string | undefined;
438
463
  errorMessage: string | undefined;
439
464
  entryId: string | undefined;
440
465
  }
441
- export declare enum BatchEntryCompletionStatus {
442
- ERROR = "ERROR",
443
- SUCCESS = "SUCCESS",
444
- }
466
+ export declare const BatchEntryCompletionStatus: {
467
+ readonly ERROR: "ERROR";
468
+ readonly SUCCESS: "SUCCESS";
469
+ };
470
+ export type BatchEntryCompletionStatus =
471
+ (typeof BatchEntryCompletionStatus)[keyof typeof BatchEntryCompletionStatus];
445
472
  export interface BatchGetAssetPropertyAggregatesErrorInfo {
446
473
  errorCode: BatchGetAssetPropertyAggregatesErrorCode | string | undefined;
447
474
  errorTimestamp: Date | undefined;
@@ -478,11 +505,13 @@ export interface BatchGetAssetPropertyValueRequest {
478
505
  entries: BatchGetAssetPropertyValueEntry[] | undefined;
479
506
  nextToken?: string;
480
507
  }
481
- export declare enum BatchGetAssetPropertyValueErrorCode {
482
- AccessDeniedException = "AccessDeniedException",
483
- InvalidRequestException = "InvalidRequestException",
484
- ResourceNotFoundException = "ResourceNotFoundException",
485
- }
508
+ export declare const BatchGetAssetPropertyValueErrorCode: {
509
+ readonly AccessDeniedException: "AccessDeniedException";
510
+ readonly InvalidRequestException: "InvalidRequestException";
511
+ readonly ResourceNotFoundException: "ResourceNotFoundException";
512
+ };
513
+ export type BatchGetAssetPropertyValueErrorCode =
514
+ (typeof BatchGetAssetPropertyValueErrorCode)[keyof typeof BatchGetAssetPropertyValueErrorCode];
486
515
  export interface BatchGetAssetPropertyValueErrorEntry {
487
516
  errorCode: BatchGetAssetPropertyValueErrorCode | string | undefined;
488
517
  errorMessage: string | undefined;
@@ -522,11 +551,13 @@ export interface BatchGetAssetPropertyValueHistoryRequest {
522
551
  nextToken?: string;
523
552
  maxResults?: number;
524
553
  }
525
- export declare enum BatchGetAssetPropertyValueHistoryErrorCode {
526
- AccessDeniedException = "AccessDeniedException",
527
- InvalidRequestException = "InvalidRequestException",
528
- ResourceNotFoundException = "ResourceNotFoundException",
529
- }
554
+ export declare const BatchGetAssetPropertyValueHistoryErrorCode: {
555
+ readonly AccessDeniedException: "AccessDeniedException";
556
+ readonly InvalidRequestException: "InvalidRequestException";
557
+ readonly ResourceNotFoundException: "ResourceNotFoundException";
558
+ };
559
+ export type BatchGetAssetPropertyValueHistoryErrorCode =
560
+ (typeof BatchGetAssetPropertyValueHistoryErrorCode)[keyof typeof BatchGetAssetPropertyValueHistoryErrorCode];
530
561
  export interface BatchGetAssetPropertyValueHistoryErrorEntry {
531
562
  errorCode: BatchGetAssetPropertyValueHistoryErrorCode | string | undefined;
532
563
  errorMessage: string | undefined;
@@ -561,17 +592,19 @@ export interface PutAssetPropertyValueEntry {
561
592
  export interface BatchPutAssetPropertyValueRequest {
562
593
  entries: PutAssetPropertyValueEntry[] | undefined;
563
594
  }
564
- export declare enum BatchPutAssetPropertyValueErrorCode {
565
- AccessDeniedException = "AccessDeniedException",
566
- ConflictingOperationException = "ConflictingOperationException",
567
- InternalFailureException = "InternalFailureException",
568
- InvalidRequestException = "InvalidRequestException",
569
- LimitExceededException = "LimitExceededException",
570
- ResourceNotFoundException = "ResourceNotFoundException",
571
- ServiceUnavailableException = "ServiceUnavailableException",
572
- ThrottlingException = "ThrottlingException",
573
- TimestampOutOfRangeException = "TimestampOutOfRangeException",
574
- }
595
+ export declare const BatchPutAssetPropertyValueErrorCode: {
596
+ readonly AccessDeniedException: "AccessDeniedException";
597
+ readonly ConflictingOperationException: "ConflictingOperationException";
598
+ readonly InternalFailureException: "InternalFailureException";
599
+ readonly InvalidRequestException: "InvalidRequestException";
600
+ readonly LimitExceededException: "LimitExceededException";
601
+ readonly ResourceNotFoundException: "ResourceNotFoundException";
602
+ readonly ServiceUnavailableException: "ServiceUnavailableException";
603
+ readonly ThrottlingException: "ThrottlingException";
604
+ readonly TimestampOutOfRangeException: "TimestampOutOfRangeException";
605
+ };
606
+ export type BatchPutAssetPropertyValueErrorCode =
607
+ (typeof BatchPutAssetPropertyValueErrorCode)[keyof typeof BatchPutAssetPropertyValueErrorCode];
575
608
  export interface BatchPutAssetPropertyError {
576
609
  errorCode: BatchPutAssetPropertyValueErrorCode | string | undefined;
577
610
  errorMessage: string | undefined;
@@ -630,16 +663,17 @@ export interface File {
630
663
  key: string | undefined;
631
664
  versionId?: string;
632
665
  }
633
- export declare enum ColumnName {
634
- ALIAS = "ALIAS",
635
- ASSET_ID = "ASSET_ID",
636
- DATA_TYPE = "DATA_TYPE",
637
- PROPERTY_ID = "PROPERTY_ID",
638
- QUALITY = "QUALITY",
639
- TIMESTAMP_NANO_OFFSET = "TIMESTAMP_NANO_OFFSET",
640
- TIMESTAMP_SECONDS = "TIMESTAMP_SECONDS",
641
- VALUE = "VALUE",
642
- }
666
+ export declare const ColumnName: {
667
+ readonly ALIAS: "ALIAS";
668
+ readonly ASSET_ID: "ASSET_ID";
669
+ readonly DATA_TYPE: "DATA_TYPE";
670
+ readonly PROPERTY_ID: "PROPERTY_ID";
671
+ readonly QUALITY: "QUALITY";
672
+ readonly TIMESTAMP_NANO_OFFSET: "TIMESTAMP_NANO_OFFSET";
673
+ readonly TIMESTAMP_SECONDS: "TIMESTAMP_SECONDS";
674
+ readonly VALUE: "VALUE";
675
+ };
676
+ export type ColumnName = (typeof ColumnName)[keyof typeof ColumnName];
643
677
  export interface Csv {
644
678
  columnNames?: (ColumnName | string)[];
645
679
  }
@@ -656,14 +690,15 @@ export interface CreateBulkImportJobRequest {
656
690
  errorReportLocation: ErrorReportLocation | undefined;
657
691
  jobConfiguration: JobConfiguration | undefined;
658
692
  }
659
- export declare enum JobStatus {
660
- CANCELLED = "CANCELLED",
661
- COMPLETED = "COMPLETED",
662
- COMPLETED_WITH_FAILURES = "COMPLETED_WITH_FAILURES",
663
- FAILED = "FAILED",
664
- PENDING = "PENDING",
665
- RUNNING = "RUNNING",
666
- }
693
+ export declare const JobStatus: {
694
+ readonly CANCELLED: "CANCELLED";
695
+ readonly COMPLETED: "COMPLETED";
696
+ readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
697
+ readonly FAILED: "FAILED";
698
+ readonly PENDING: "PENDING";
699
+ readonly RUNNING: "RUNNING";
700
+ };
701
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
667
702
  export interface CreateBulkImportJobResponse {
668
703
  jobId: string | undefined;
669
704
  jobName: string | undefined;
@@ -700,9 +735,10 @@ export interface CreateGatewayResponse {
700
735
  gatewayId: string | undefined;
701
736
  gatewayArn: string | undefined;
702
737
  }
703
- export declare enum ImageFileType {
704
- PNG = "PNG",
705
- }
738
+ export declare const ImageFileType: {
739
+ readonly PNG: "PNG";
740
+ };
741
+ export type ImageFileType = (typeof ImageFileType)[keyof typeof ImageFileType];
706
742
  export interface ImageFile {
707
743
  data: Uint8Array | undefined;
708
744
  type: ImageFileType | string | undefined;
@@ -719,22 +755,25 @@ export interface CreatePortalRequest {
719
755
  notificationSenderEmail?: string;
720
756
  alarms?: Alarms;
721
757
  }
722
- export declare enum MonitorErrorCode {
723
- INTERNAL_FAILURE = "INTERNAL_FAILURE",
724
- LIMIT_EXCEEDED = "LIMIT_EXCEEDED",
725
- VALIDATION_ERROR = "VALIDATION_ERROR",
726
- }
758
+ export declare const MonitorErrorCode: {
759
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
760
+ readonly LIMIT_EXCEEDED: "LIMIT_EXCEEDED";
761
+ readonly VALIDATION_ERROR: "VALIDATION_ERROR";
762
+ };
763
+ export type MonitorErrorCode =
764
+ (typeof MonitorErrorCode)[keyof typeof MonitorErrorCode];
727
765
  export interface MonitorErrorDetails {
728
766
  code?: MonitorErrorCode | string;
729
767
  message?: string;
730
768
  }
731
- export declare enum PortalState {
732
- ACTIVE = "ACTIVE",
733
- CREATING = "CREATING",
734
- DELETING = "DELETING",
735
- FAILED = "FAILED",
736
- UPDATING = "UPDATING",
737
- }
769
+ export declare const PortalState: {
770
+ readonly ACTIVE: "ACTIVE";
771
+ readonly CREATING: "CREATING";
772
+ readonly DELETING: "DELETING";
773
+ readonly FAILED: "FAILED";
774
+ readonly UPDATING: "UPDATING";
775
+ };
776
+ export type PortalState = (typeof PortalState)[keyof typeof PortalState];
738
777
  export interface PortalStatus {
739
778
  state: PortalState | string | undefined;
740
779
  error?: MonitorErrorDetails;
@@ -905,19 +944,23 @@ export interface ConfigurationErrorDetails {
905
944
  code: ErrorCode | string | undefined;
906
945
  message: string | undefined;
907
946
  }
908
- export declare enum ConfigurationState {
909
- ACTIVE = "ACTIVE",
910
- UPDATE_FAILED = "UPDATE_FAILED",
911
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS",
912
- }
947
+ export declare const ConfigurationState: {
948
+ readonly ACTIVE: "ACTIVE";
949
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
950
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
951
+ };
952
+ export type ConfigurationState =
953
+ (typeof ConfigurationState)[keyof typeof ConfigurationState];
913
954
  export interface ConfigurationStatus {
914
955
  state: ConfigurationState | string | undefined;
915
956
  error?: ConfigurationErrorDetails;
916
957
  }
917
- export declare enum EncryptionType {
918
- KMS_BASED_ENCRYPTION = "KMS_BASED_ENCRYPTION",
919
- SITEWISE_DEFAULT_ENCRYPTION = "SITEWISE_DEFAULT_ENCRYPTION",
920
- }
958
+ export declare const EncryptionType: {
959
+ readonly KMS_BASED_ENCRYPTION: "KMS_BASED_ENCRYPTION";
960
+ readonly SITEWISE_DEFAULT_ENCRYPTION: "SITEWISE_DEFAULT_ENCRYPTION";
961
+ };
962
+ export type EncryptionType =
963
+ (typeof EncryptionType)[keyof typeof EncryptionType];
921
964
  export interface DescribeDefaultEncryptionConfigurationResponse {
922
965
  encryptionType: EncryptionType | string | undefined;
923
966
  kmsKeyArn?: string;
@@ -926,12 +969,14 @@ export interface DescribeDefaultEncryptionConfigurationResponse {
926
969
  export interface DescribeGatewayRequest {
927
970
  gatewayId: string | undefined;
928
971
  }
929
- export declare enum CapabilitySyncStatus {
930
- IN_SYNC = "IN_SYNC",
931
- OUT_OF_SYNC = "OUT_OF_SYNC",
932
- SYNC_FAILED = "SYNC_FAILED",
933
- UNKNOWN = "UNKNOWN",
934
- }
972
+ export declare const CapabilitySyncStatus: {
973
+ readonly IN_SYNC: "IN_SYNC";
974
+ readonly OUT_OF_SYNC: "OUT_OF_SYNC";
975
+ readonly SYNC_FAILED: "SYNC_FAILED";
976
+ readonly UNKNOWN: "UNKNOWN";
977
+ };
978
+ export type CapabilitySyncStatus =
979
+ (typeof CapabilitySyncStatus)[keyof typeof CapabilitySyncStatus];
935
980
  export interface GatewayCapabilitySummary {
936
981
  capabilityNamespace: string | undefined;
937
982
  capabilitySyncStatus: CapabilitySyncStatus | string | undefined;
@@ -956,11 +1001,12 @@ export interface DescribeGatewayCapabilityConfigurationResponse {
956
1001
  capabilitySyncStatus: CapabilitySyncStatus | string | undefined;
957
1002
  }
958
1003
  export interface DescribeLoggingOptionsRequest {}
959
- export declare enum LoggingLevel {
960
- ERROR = "ERROR",
961
- INFO = "INFO",
962
- OFF = "OFF",
963
- }
1004
+ export declare const LoggingLevel: {
1005
+ readonly ERROR: "ERROR";
1006
+ readonly INFO: "INFO";
1007
+ readonly OFF: "OFF";
1008
+ };
1009
+ export type LoggingLevel = (typeof LoggingLevel)[keyof typeof LoggingLevel];
964
1010
  export interface LoggingOptions {
965
1011
  level: LoggingLevel | string | undefined;
966
1012
  }
@@ -1004,10 +1050,12 @@ export interface DescribeProjectResponse {
1004
1050
  projectLastUpdateDate: Date | undefined;
1005
1051
  }
1006
1052
  export interface DescribeStorageConfigurationRequest {}
1007
- export declare enum DisassociatedDataStorageState {
1008
- DISABLED = "DISABLED",
1009
- ENABLED = "ENABLED",
1010
- }
1053
+ export declare const DisassociatedDataStorageState: {
1054
+ readonly DISABLED: "DISABLED";
1055
+ readonly ENABLED: "ENABLED";
1056
+ };
1057
+ export type DisassociatedDataStorageState =
1058
+ (typeof DisassociatedDataStorageState)[keyof typeof DisassociatedDataStorageState];
1011
1059
  export interface CustomerManagedS3Storage {
1012
1060
  s3ResourceArn: string | undefined;
1013
1061
  roleArn: string | undefined;
@@ -1019,10 +1067,11 @@ export interface RetentionPeriod {
1019
1067
  numberOfDays?: number;
1020
1068
  unlimited?: boolean;
1021
1069
  }
1022
- export declare enum StorageType {
1023
- MULTI_LAYER_STORAGE = "MULTI_LAYER_STORAGE",
1024
- SITEWISE_DEFAULT_STORAGE = "SITEWISE_DEFAULT_STORAGE",
1025
- }
1070
+ export declare const StorageType: {
1071
+ readonly MULTI_LAYER_STORAGE: "MULTI_LAYER_STORAGE";
1072
+ readonly SITEWISE_DEFAULT_STORAGE: "SITEWISE_DEFAULT_STORAGE";
1073
+ };
1074
+ export type StorageType = (typeof StorageType)[keyof typeof StorageType];
1026
1075
  export interface DescribeStorageConfigurationResponse {
1027
1076
  storageType: StorageType | string | undefined;
1028
1077
  multiLayerStorage?: MultiLayerStorage;
@@ -1122,15 +1171,17 @@ export interface GetInterpolatedAssetPropertyValuesResponse {
1122
1171
  interpolatedAssetPropertyValues: InterpolatedAssetPropertyValue[] | undefined;
1123
1172
  nextToken?: string;
1124
1173
  }
1125
- export declare enum IdentityType {
1126
- GROUP = "GROUP",
1127
- IAM = "IAM",
1128
- USER = "USER",
1129
- }
1130
- export declare enum ResourceType {
1131
- PORTAL = "PORTAL",
1132
- PROJECT = "PROJECT",
1133
- }
1174
+ export declare const IdentityType: {
1175
+ readonly GROUP: "GROUP";
1176
+ readonly IAM: "IAM";
1177
+ readonly USER: "USER";
1178
+ };
1179
+ export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
1180
+ export declare const ResourceType: {
1181
+ readonly PORTAL: "PORTAL";
1182
+ readonly PROJECT: "PROJECT";
1183
+ };
1184
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
1134
1185
  export interface ListAccessPoliciesRequest {
1135
1186
  identityType?: IdentityType | string;
1136
1187
  identityId?: string;
@@ -1144,10 +1195,12 @@ export interface ListAccessPoliciesResponse {
1144
1195
  accessPolicySummaries: AccessPolicySummary[] | undefined;
1145
1196
  nextToken?: string;
1146
1197
  }
1147
- export declare enum ListAssetModelPropertiesFilter {
1148
- ALL = "ALL",
1149
- BASE = "BASE",
1150
- }
1198
+ export declare const ListAssetModelPropertiesFilter: {
1199
+ readonly ALL: "ALL";
1200
+ readonly BASE: "BASE";
1201
+ };
1202
+ export type ListAssetModelPropertiesFilter =
1203
+ (typeof ListAssetModelPropertiesFilter)[keyof typeof ListAssetModelPropertiesFilter];
1151
1204
  export interface ListAssetModelPropertiesRequest {
1152
1205
  assetModelId: string | undefined;
1153
1206
  nextToken?: string;
@@ -1166,10 +1219,12 @@ export interface ListAssetModelsResponse {
1166
1219
  assetModelSummaries: AssetModelSummary[] | undefined;
1167
1220
  nextToken?: string;
1168
1221
  }
1169
- export declare enum ListAssetPropertiesFilter {
1170
- ALL = "ALL",
1171
- BASE = "BASE",
1172
- }
1222
+ export declare const ListAssetPropertiesFilter: {
1223
+ readonly ALL: "ALL";
1224
+ readonly BASE: "BASE";
1225
+ };
1226
+ export type ListAssetPropertiesFilter =
1227
+ (typeof ListAssetPropertiesFilter)[keyof typeof ListAssetPropertiesFilter];
1173
1228
  export interface ListAssetPropertiesRequest {
1174
1229
  assetId: string | undefined;
1175
1230
  nextToken?: string;
@@ -1180,9 +1235,10 @@ export interface ListAssetPropertiesResponse {
1180
1235
  assetPropertySummaries: AssetPropertySummary[] | undefined;
1181
1236
  nextToken?: string;
1182
1237
  }
1183
- export declare enum TraversalType {
1184
- PATH_TO_ROOT = "PATH_TO_ROOT",
1185
- }
1238
+ export declare const TraversalType: {
1239
+ readonly PATH_TO_ROOT: "PATH_TO_ROOT";
1240
+ };
1241
+ export type TraversalType = (typeof TraversalType)[keyof typeof TraversalType];
1186
1242
  export interface ListAssetRelationshipsRequest {
1187
1243
  assetId: string | undefined;
1188
1244
  traversalType: TraversalType | string | undefined;
@@ -1193,10 +1249,12 @@ export interface ListAssetRelationshipsResponse {
1193
1249
  assetRelationshipSummaries: AssetRelationshipSummary[] | undefined;
1194
1250
  nextToken?: string;
1195
1251
  }
1196
- export declare enum ListAssetsFilter {
1197
- ALL = "ALL",
1198
- TOP_LEVEL = "TOP_LEVEL",
1199
- }
1252
+ export declare const ListAssetsFilter: {
1253
+ readonly ALL: "ALL";
1254
+ readonly TOP_LEVEL: "TOP_LEVEL";
1255
+ };
1256
+ export type ListAssetsFilter =
1257
+ (typeof ListAssetsFilter)[keyof typeof ListAssetsFilter];
1200
1258
  export interface ListAssetsRequest {
1201
1259
  nextToken?: string;
1202
1260
  maxResults?: number;
@@ -1207,10 +1265,12 @@ export interface ListAssetsResponse {
1207
1265
  assetSummaries: AssetSummary[] | undefined;
1208
1266
  nextToken?: string;
1209
1267
  }
1210
- export declare enum TraversalDirection {
1211
- CHILD = "CHILD",
1212
- PARENT = "PARENT",
1213
- }
1268
+ export declare const TraversalDirection: {
1269
+ readonly CHILD: "CHILD";
1270
+ readonly PARENT: "PARENT";
1271
+ };
1272
+ export type TraversalDirection =
1273
+ (typeof TraversalDirection)[keyof typeof TraversalDirection];
1214
1274
  export interface ListAssociatedAssetsRequest {
1215
1275
  assetId: string | undefined;
1216
1276
  hierarchyId?: string;
@@ -1222,15 +1282,17 @@ export interface ListAssociatedAssetsResponse {
1222
1282
  assetSummaries: AssociatedAssetsSummary[] | undefined;
1223
1283
  nextToken?: string;
1224
1284
  }
1225
- export declare enum ListBulkImportJobsFilter {
1226
- ALL = "ALL",
1227
- CANCELLED = "CANCELLED",
1228
- COMPLETED = "COMPLETED",
1229
- COMPLETED_WITH_FAILURES = "COMPLETED_WITH_FAILURES",
1230
- FAILED = "FAILED",
1231
- PENDING = "PENDING",
1232
- RUNNING = "RUNNING",
1233
- }
1285
+ export declare const ListBulkImportJobsFilter: {
1286
+ readonly ALL: "ALL";
1287
+ readonly CANCELLED: "CANCELLED";
1288
+ readonly COMPLETED: "COMPLETED";
1289
+ readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
1290
+ readonly FAILED: "FAILED";
1291
+ readonly PENDING: "PENDING";
1292
+ readonly RUNNING: "RUNNING";
1293
+ };
1294
+ export type ListBulkImportJobsFilter =
1295
+ (typeof ListBulkImportJobsFilter)[keyof typeof ListBulkImportJobsFilter];
1234
1296
  export interface ListBulkImportJobsRequest {
1235
1297
  nextToken?: string;
1236
1298
  maxResults?: number;
@@ -1333,10 +1395,12 @@ export declare class UnauthorizedException extends __BaseException {
1333
1395
  opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
1334
1396
  );
1335
1397
  }
1336
- export declare enum ListTimeSeriesType {
1337
- ASSOCIATED = "ASSOCIATED",
1338
- DISASSOCIATED = "DISASSOCIATED",
1339
- }
1398
+ export declare const ListTimeSeriesType: {
1399
+ readonly ASSOCIATED: "ASSOCIATED";
1400
+ readonly DISASSOCIATED: "DISASSOCIATED";
1401
+ };
1402
+ export type ListTimeSeriesType =
1403
+ (typeof ListTimeSeriesType)[keyof typeof ListTimeSeriesType];
1340
1404
  export interface ListTimeSeriesRequest {
1341
1405
  nextToken?: string;
1342
1406
  maxResults?: number;