@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.
- package/dist-cjs/models/models_0.js +205 -245
- package/dist-es/models/models_0.js +205 -245
- package/dist-types/models/models_0.d.ts +405 -205
- package/dist-types/ts3.4/models/models_0.d.ts +269 -205
- package/package.json +35 -35
|
@@ -76,11 +76,16 @@ export interface Identity {
|
|
|
76
76
|
}
|
|
77
77
|
/**
|
|
78
78
|
* @public
|
|
79
|
+
* @enum
|
|
79
80
|
*/
|
|
80
|
-
export declare
|
|
81
|
-
ADMINISTRATOR
|
|
82
|
-
VIEWER
|
|
83
|
-
}
|
|
81
|
+
export declare const Permission: {
|
|
82
|
+
readonly ADMINISTRATOR: "ADMINISTRATOR";
|
|
83
|
+
readonly VIEWER: "VIEWER";
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export type Permission = (typeof Permission)[keyof typeof Permission];
|
|
84
89
|
/**
|
|
85
90
|
* @public
|
|
86
91
|
* <p>Identifies an IoT SiteWise Monitor portal.</p>
|
|
@@ -149,12 +154,17 @@ export interface AccessPolicySummary {
|
|
|
149
154
|
}
|
|
150
155
|
/**
|
|
151
156
|
* @public
|
|
157
|
+
* @enum
|
|
152
158
|
*/
|
|
153
|
-
export declare
|
|
154
|
-
BAD
|
|
155
|
-
GOOD
|
|
156
|
-
UNCERTAIN
|
|
157
|
-
}
|
|
159
|
+
export declare const Quality: {
|
|
160
|
+
readonly BAD: "BAD";
|
|
161
|
+
readonly GOOD: "GOOD";
|
|
162
|
+
readonly UNCERTAIN: "UNCERTAIN";
|
|
163
|
+
};
|
|
164
|
+
/**
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
export type Quality = (typeof Quality)[keyof typeof Quality];
|
|
158
168
|
/**
|
|
159
169
|
* @public
|
|
160
170
|
* <p>Contains the (pre-calculated) aggregate values for an asset property.</p>
|
|
@@ -206,15 +216,20 @@ export interface AggregatedValue {
|
|
|
206
216
|
}
|
|
207
217
|
/**
|
|
208
218
|
* @public
|
|
219
|
+
* @enum
|
|
209
220
|
*/
|
|
210
|
-
export declare
|
|
211
|
-
AVERAGE
|
|
212
|
-
COUNT
|
|
213
|
-
MAXIMUM
|
|
214
|
-
MINIMUM
|
|
215
|
-
STANDARD_DEVIATION
|
|
216
|
-
SUM
|
|
217
|
-
}
|
|
221
|
+
export declare const AggregateType: {
|
|
222
|
+
readonly AVERAGE: "AVERAGE";
|
|
223
|
+
readonly COUNT: "COUNT";
|
|
224
|
+
readonly MAXIMUM: "MAXIMUM";
|
|
225
|
+
readonly MINIMUM: "MINIMUM";
|
|
226
|
+
readonly STANDARD_DEVIATION: "STANDARD_DEVIATION";
|
|
227
|
+
readonly SUM: "SUM";
|
|
228
|
+
};
|
|
229
|
+
/**
|
|
230
|
+
* @public
|
|
231
|
+
*/
|
|
232
|
+
export type AggregateType = (typeof AggregateType)[keyof typeof AggregateType];
|
|
218
233
|
/**
|
|
219
234
|
* @public
|
|
220
235
|
* <p>Contains the configuration information of an alarm created in an IoT SiteWise Monitor portal.
|
|
@@ -236,21 +251,31 @@ export interface Alarms {
|
|
|
236
251
|
}
|
|
237
252
|
/**
|
|
238
253
|
* @public
|
|
254
|
+
* @enum
|
|
239
255
|
*/
|
|
240
|
-
export declare
|
|
241
|
-
BOOLEAN
|
|
242
|
-
DOUBLE
|
|
243
|
-
INTEGER
|
|
244
|
-
STRING
|
|
245
|
-
STRUCT
|
|
246
|
-
}
|
|
256
|
+
export declare const PropertyDataType: {
|
|
257
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
258
|
+
readonly DOUBLE: "DOUBLE";
|
|
259
|
+
readonly INTEGER: "INTEGER";
|
|
260
|
+
readonly STRING: "STRING";
|
|
261
|
+
readonly STRUCT: "STRUCT";
|
|
262
|
+
};
|
|
247
263
|
/**
|
|
248
264
|
* @public
|
|
249
265
|
*/
|
|
250
|
-
export
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
266
|
+
export type PropertyDataType = (typeof PropertyDataType)[keyof typeof PropertyDataType];
|
|
267
|
+
/**
|
|
268
|
+
* @public
|
|
269
|
+
* @enum
|
|
270
|
+
*/
|
|
271
|
+
export declare const PropertyNotificationState: {
|
|
272
|
+
readonly DISABLED: "DISABLED";
|
|
273
|
+
readonly ENABLED: "ENABLED";
|
|
274
|
+
};
|
|
275
|
+
/**
|
|
276
|
+
* @public
|
|
277
|
+
*/
|
|
278
|
+
export type PropertyNotificationState = (typeof PropertyNotificationState)[keyof typeof PropertyNotificationState];
|
|
254
279
|
/**
|
|
255
280
|
* @public
|
|
256
281
|
* <p>Contains asset property value notification information. When the notification state is enabled, IoT SiteWise publishes property value
|
|
@@ -336,10 +361,15 @@ export interface AssetCompositeModel {
|
|
|
336
361
|
}
|
|
337
362
|
/**
|
|
338
363
|
* @public
|
|
364
|
+
* @enum
|
|
339
365
|
*/
|
|
340
|
-
export declare
|
|
341
|
-
INTERNAL_FAILURE
|
|
342
|
-
}
|
|
366
|
+
export declare const AssetErrorCode: {
|
|
367
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
368
|
+
};
|
|
369
|
+
/**
|
|
370
|
+
* @public
|
|
371
|
+
*/
|
|
372
|
+
export type AssetErrorCode = (typeof AssetErrorCode)[keyof typeof AssetErrorCode];
|
|
343
373
|
/**
|
|
344
374
|
* @public
|
|
345
375
|
* <p>Contains error details for the requested associate project asset action.</p>
|
|
@@ -404,11 +434,16 @@ export interface Attribute {
|
|
|
404
434
|
}
|
|
405
435
|
/**
|
|
406
436
|
* @public
|
|
437
|
+
* @enum
|
|
407
438
|
*/
|
|
408
|
-
export declare
|
|
409
|
-
DISABLED
|
|
410
|
-
ENABLED
|
|
411
|
-
}
|
|
439
|
+
export declare const ForwardingConfigState: {
|
|
440
|
+
readonly DISABLED: "DISABLED";
|
|
441
|
+
readonly ENABLED: "ENABLED";
|
|
442
|
+
};
|
|
443
|
+
/**
|
|
444
|
+
* @public
|
|
445
|
+
*/
|
|
446
|
+
export type ForwardingConfigState = (typeof ForwardingConfigState)[keyof typeof ForwardingConfigState];
|
|
412
447
|
/**
|
|
413
448
|
* @public
|
|
414
449
|
* <p>The forwarding configuration for a given property.</p>
|
|
@@ -446,11 +481,16 @@ export interface Measurement {
|
|
|
446
481
|
}
|
|
447
482
|
/**
|
|
448
483
|
* @public
|
|
484
|
+
* @enum
|
|
449
485
|
*/
|
|
450
|
-
export declare
|
|
451
|
-
CLOUD
|
|
452
|
-
EDGE
|
|
453
|
-
}
|
|
486
|
+
export declare const ComputeLocation: {
|
|
487
|
+
readonly CLOUD: "CLOUD";
|
|
488
|
+
readonly EDGE: "EDGE";
|
|
489
|
+
};
|
|
490
|
+
/**
|
|
491
|
+
* @public
|
|
492
|
+
*/
|
|
493
|
+
export type ComputeLocation = (typeof ComputeLocation)[keyof typeof ComputeLocation];
|
|
454
494
|
/**
|
|
455
495
|
* @public
|
|
456
496
|
* <p>The processing configuration for the given metric property.
|
|
@@ -903,29 +943,44 @@ export interface AssetModelPropertySummary {
|
|
|
903
943
|
}
|
|
904
944
|
/**
|
|
905
945
|
* @public
|
|
946
|
+
* @enum
|
|
906
947
|
*/
|
|
907
|
-
export declare
|
|
908
|
-
ACTIVE
|
|
909
|
-
CREATING
|
|
910
|
-
DELETING
|
|
911
|
-
FAILED
|
|
912
|
-
PROPAGATING
|
|
913
|
-
UPDATING
|
|
914
|
-
}
|
|
948
|
+
export declare const AssetModelState: {
|
|
949
|
+
readonly ACTIVE: "ACTIVE";
|
|
950
|
+
readonly CREATING: "CREATING";
|
|
951
|
+
readonly DELETING: "DELETING";
|
|
952
|
+
readonly FAILED: "FAILED";
|
|
953
|
+
readonly PROPAGATING: "PROPAGATING";
|
|
954
|
+
readonly UPDATING: "UPDATING";
|
|
955
|
+
};
|
|
915
956
|
/**
|
|
916
957
|
* @public
|
|
917
958
|
*/
|
|
918
|
-
export
|
|
919
|
-
INTERNAL_FAILURE = "INTERNAL_FAILURE",
|
|
920
|
-
VALIDATION_ERROR = "VALIDATION_ERROR"
|
|
921
|
-
}
|
|
959
|
+
export type AssetModelState = (typeof AssetModelState)[keyof typeof AssetModelState];
|
|
922
960
|
/**
|
|
923
961
|
* @public
|
|
962
|
+
* @enum
|
|
924
963
|
*/
|
|
925
|
-
export declare
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
}
|
|
964
|
+
export declare const ErrorCode: {
|
|
965
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
966
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
967
|
+
};
|
|
968
|
+
/**
|
|
969
|
+
* @public
|
|
970
|
+
*/
|
|
971
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
972
|
+
/**
|
|
973
|
+
* @public
|
|
974
|
+
* @enum
|
|
975
|
+
*/
|
|
976
|
+
export declare const DetailedErrorCode: {
|
|
977
|
+
readonly INCOMPATIBLE_COMPUTE_LOCATION: "INCOMPATIBLE_COMPUTE_LOCATION";
|
|
978
|
+
readonly INCOMPATIBLE_FORWARDING_CONFIGURATION: "INCOMPATIBLE_FORWARDING_CONFIGURATION";
|
|
979
|
+
};
|
|
980
|
+
/**
|
|
981
|
+
* @public
|
|
982
|
+
*/
|
|
983
|
+
export type DetailedErrorCode = (typeof DetailedErrorCode)[keyof typeof DetailedErrorCode];
|
|
929
984
|
/**
|
|
930
985
|
* @public
|
|
931
986
|
* <p>Contains detailed error information. </p>
|
|
@@ -1101,10 +1156,15 @@ export interface AssetPropertyValue {
|
|
|
1101
1156
|
}
|
|
1102
1157
|
/**
|
|
1103
1158
|
* @public
|
|
1159
|
+
* @enum
|
|
1104
1160
|
*/
|
|
1105
|
-
export declare
|
|
1106
|
-
HIERARCHY
|
|
1107
|
-
}
|
|
1161
|
+
export declare const AssetRelationshipType: {
|
|
1162
|
+
readonly HIERARCHY: "HIERARCHY";
|
|
1163
|
+
};
|
|
1164
|
+
/**
|
|
1165
|
+
* @public
|
|
1166
|
+
*/
|
|
1167
|
+
export type AssetRelationshipType = (typeof AssetRelationshipType)[keyof typeof AssetRelationshipType];
|
|
1108
1168
|
/**
|
|
1109
1169
|
* @public
|
|
1110
1170
|
* <p>Contains information about assets that are related to one another.</p>
|
|
@@ -1132,14 +1192,19 @@ export interface AssetRelationshipSummary {
|
|
|
1132
1192
|
}
|
|
1133
1193
|
/**
|
|
1134
1194
|
* @public
|
|
1195
|
+
* @enum
|
|
1135
1196
|
*/
|
|
1136
|
-
export declare
|
|
1137
|
-
ACTIVE
|
|
1138
|
-
CREATING
|
|
1139
|
-
DELETING
|
|
1140
|
-
FAILED
|
|
1141
|
-
UPDATING
|
|
1142
|
-
}
|
|
1197
|
+
export declare const AssetState: {
|
|
1198
|
+
readonly ACTIVE: "ACTIVE";
|
|
1199
|
+
readonly CREATING: "CREATING";
|
|
1200
|
+
readonly DELETING: "DELETING";
|
|
1201
|
+
readonly FAILED: "FAILED";
|
|
1202
|
+
readonly UPDATING: "UPDATING";
|
|
1203
|
+
};
|
|
1204
|
+
/**
|
|
1205
|
+
* @public
|
|
1206
|
+
*/
|
|
1207
|
+
export type AssetState = (typeof AssetState)[keyof typeof AssetState];
|
|
1143
1208
|
/**
|
|
1144
1209
|
* @public
|
|
1145
1210
|
* <p>Contains information about the current status of an asset. For more information, see
|
|
@@ -1400,11 +1465,16 @@ export interface AssociateTimeSeriesToAssetPropertyRequest {
|
|
|
1400
1465
|
}
|
|
1401
1466
|
/**
|
|
1402
1467
|
* @public
|
|
1468
|
+
* @enum
|
|
1403
1469
|
*/
|
|
1404
|
-
export declare
|
|
1405
|
-
IAM
|
|
1406
|
-
SSO
|
|
1407
|
-
}
|
|
1470
|
+
export declare const AuthMode: {
|
|
1471
|
+
readonly IAM: "IAM";
|
|
1472
|
+
readonly SSO: "SSO";
|
|
1473
|
+
};
|
|
1474
|
+
/**
|
|
1475
|
+
* @public
|
|
1476
|
+
*/
|
|
1477
|
+
export type AuthMode = (typeof AuthMode)[keyof typeof AuthMode];
|
|
1408
1478
|
/**
|
|
1409
1479
|
* @public
|
|
1410
1480
|
*/
|
|
@@ -1459,11 +1529,16 @@ export interface BatchDisassociateProjectAssetsResponse {
|
|
|
1459
1529
|
}
|
|
1460
1530
|
/**
|
|
1461
1531
|
* @public
|
|
1532
|
+
* @enum
|
|
1462
1533
|
*/
|
|
1463
|
-
export declare
|
|
1464
|
-
ASCENDING
|
|
1465
|
-
DESCENDING
|
|
1466
|
-
}
|
|
1534
|
+
export declare const TimeOrdering: {
|
|
1535
|
+
readonly ASCENDING: "ASCENDING";
|
|
1536
|
+
readonly DESCENDING: "DESCENDING";
|
|
1537
|
+
};
|
|
1538
|
+
/**
|
|
1539
|
+
* @public
|
|
1540
|
+
*/
|
|
1541
|
+
export type TimeOrdering = (typeof TimeOrdering)[keyof typeof TimeOrdering];
|
|
1467
1542
|
/**
|
|
1468
1543
|
* @public
|
|
1469
1544
|
* <p>Contains information for an asset property aggregate entry that is associated with the
|
|
@@ -1556,12 +1631,17 @@ export interface BatchGetAssetPropertyAggregatesRequest {
|
|
|
1556
1631
|
}
|
|
1557
1632
|
/**
|
|
1558
1633
|
* @public
|
|
1634
|
+
* @enum
|
|
1559
1635
|
*/
|
|
1560
|
-
export declare
|
|
1561
|
-
AccessDeniedException
|
|
1562
|
-
InvalidRequestException
|
|
1563
|
-
ResourceNotFoundException
|
|
1564
|
-
}
|
|
1636
|
+
export declare const BatchGetAssetPropertyAggregatesErrorCode: {
|
|
1637
|
+
readonly AccessDeniedException: "AccessDeniedException";
|
|
1638
|
+
readonly InvalidRequestException: "InvalidRequestException";
|
|
1639
|
+
readonly ResourceNotFoundException: "ResourceNotFoundException";
|
|
1640
|
+
};
|
|
1641
|
+
/**
|
|
1642
|
+
* @public
|
|
1643
|
+
*/
|
|
1644
|
+
export type BatchGetAssetPropertyAggregatesErrorCode = (typeof BatchGetAssetPropertyAggregatesErrorCode)[keyof typeof BatchGetAssetPropertyAggregatesErrorCode];
|
|
1565
1645
|
/**
|
|
1566
1646
|
* @public
|
|
1567
1647
|
* <p>Contains error information for an asset property aggregate entry that is associated with
|
|
@@ -1583,11 +1663,16 @@ export interface BatchGetAssetPropertyAggregatesErrorEntry {
|
|
|
1583
1663
|
}
|
|
1584
1664
|
/**
|
|
1585
1665
|
* @public
|
|
1666
|
+
* @enum
|
|
1586
1667
|
*/
|
|
1587
|
-
export declare
|
|
1588
|
-
ERROR
|
|
1589
|
-
SUCCESS
|
|
1590
|
-
}
|
|
1668
|
+
export declare const BatchEntryCompletionStatus: {
|
|
1669
|
+
readonly ERROR: "ERROR";
|
|
1670
|
+
readonly SUCCESS: "SUCCESS";
|
|
1671
|
+
};
|
|
1672
|
+
/**
|
|
1673
|
+
* @public
|
|
1674
|
+
*/
|
|
1675
|
+
export type BatchEntryCompletionStatus = (typeof BatchEntryCompletionStatus)[keyof typeof BatchEntryCompletionStatus];
|
|
1591
1676
|
/**
|
|
1592
1677
|
* @public
|
|
1593
1678
|
* <p>Contains the error code and the timestamp for an asset property aggregate entry that is
|
|
@@ -1724,12 +1809,17 @@ export interface BatchGetAssetPropertyValueRequest {
|
|
|
1724
1809
|
}
|
|
1725
1810
|
/**
|
|
1726
1811
|
* @public
|
|
1812
|
+
* @enum
|
|
1727
1813
|
*/
|
|
1728
|
-
export declare
|
|
1729
|
-
AccessDeniedException
|
|
1730
|
-
InvalidRequestException
|
|
1731
|
-
ResourceNotFoundException
|
|
1732
|
-
}
|
|
1814
|
+
export declare const BatchGetAssetPropertyValueErrorCode: {
|
|
1815
|
+
readonly AccessDeniedException: "AccessDeniedException";
|
|
1816
|
+
readonly InvalidRequestException: "InvalidRequestException";
|
|
1817
|
+
readonly ResourceNotFoundException: "ResourceNotFoundException";
|
|
1818
|
+
};
|
|
1819
|
+
/**
|
|
1820
|
+
* @public
|
|
1821
|
+
*/
|
|
1822
|
+
export type BatchGetAssetPropertyValueErrorCode = (typeof BatchGetAssetPropertyValueErrorCode)[keyof typeof BatchGetAssetPropertyValueErrorCode];
|
|
1733
1823
|
/**
|
|
1734
1824
|
* @public
|
|
1735
1825
|
* <p>Contains error information for an asset property value entry that is associated with the
|
|
@@ -1904,12 +1994,17 @@ export interface BatchGetAssetPropertyValueHistoryRequest {
|
|
|
1904
1994
|
}
|
|
1905
1995
|
/**
|
|
1906
1996
|
* @public
|
|
1997
|
+
* @enum
|
|
1907
1998
|
*/
|
|
1908
|
-
export declare
|
|
1909
|
-
AccessDeniedException
|
|
1910
|
-
InvalidRequestException
|
|
1911
|
-
ResourceNotFoundException
|
|
1912
|
-
}
|
|
1999
|
+
export declare const BatchGetAssetPropertyValueHistoryErrorCode: {
|
|
2000
|
+
readonly AccessDeniedException: "AccessDeniedException";
|
|
2001
|
+
readonly InvalidRequestException: "InvalidRequestException";
|
|
2002
|
+
readonly ResourceNotFoundException: "ResourceNotFoundException";
|
|
2003
|
+
};
|
|
2004
|
+
/**
|
|
2005
|
+
* @public
|
|
2006
|
+
*/
|
|
2007
|
+
export type BatchGetAssetPropertyValueHistoryErrorCode = (typeof BatchGetAssetPropertyValueHistoryErrorCode)[keyof typeof BatchGetAssetPropertyValueHistoryErrorCode];
|
|
1913
2008
|
/**
|
|
1914
2009
|
* @public
|
|
1915
2010
|
* <p>A list of the errors (if any) associated with the batch request. Each error entry
|
|
@@ -2045,18 +2140,23 @@ export interface BatchPutAssetPropertyValueRequest {
|
|
|
2045
2140
|
}
|
|
2046
2141
|
/**
|
|
2047
2142
|
* @public
|
|
2143
|
+
* @enum
|
|
2048
2144
|
*/
|
|
2049
|
-
export declare
|
|
2050
|
-
AccessDeniedException
|
|
2051
|
-
ConflictingOperationException
|
|
2052
|
-
InternalFailureException
|
|
2053
|
-
InvalidRequestException
|
|
2054
|
-
LimitExceededException
|
|
2055
|
-
ResourceNotFoundException
|
|
2056
|
-
ServiceUnavailableException
|
|
2057
|
-
ThrottlingException
|
|
2058
|
-
TimestampOutOfRangeException
|
|
2059
|
-
}
|
|
2145
|
+
export declare const BatchPutAssetPropertyValueErrorCode: {
|
|
2146
|
+
readonly AccessDeniedException: "AccessDeniedException";
|
|
2147
|
+
readonly ConflictingOperationException: "ConflictingOperationException";
|
|
2148
|
+
readonly InternalFailureException: "InternalFailureException";
|
|
2149
|
+
readonly InvalidRequestException: "InvalidRequestException";
|
|
2150
|
+
readonly LimitExceededException: "LimitExceededException";
|
|
2151
|
+
readonly ResourceNotFoundException: "ResourceNotFoundException";
|
|
2152
|
+
readonly ServiceUnavailableException: "ServiceUnavailableException";
|
|
2153
|
+
readonly ThrottlingException: "ThrottlingException";
|
|
2154
|
+
readonly TimestampOutOfRangeException: "TimestampOutOfRangeException";
|
|
2155
|
+
};
|
|
2156
|
+
/**
|
|
2157
|
+
* @public
|
|
2158
|
+
*/
|
|
2159
|
+
export type BatchPutAssetPropertyValueErrorCode = (typeof BatchPutAssetPropertyValueErrorCode)[keyof typeof BatchPutAssetPropertyValueErrorCode];
|
|
2060
2160
|
/**
|
|
2061
2161
|
* @public
|
|
2062
2162
|
* <p>Contains error information from updating a batch of asset property values.</p>
|
|
@@ -2298,17 +2398,22 @@ export interface File {
|
|
|
2298
2398
|
}
|
|
2299
2399
|
/**
|
|
2300
2400
|
* @public
|
|
2401
|
+
* @enum
|
|
2301
2402
|
*/
|
|
2302
|
-
export declare
|
|
2303
|
-
ALIAS
|
|
2304
|
-
ASSET_ID
|
|
2305
|
-
DATA_TYPE
|
|
2306
|
-
PROPERTY_ID
|
|
2307
|
-
QUALITY
|
|
2308
|
-
TIMESTAMP_NANO_OFFSET
|
|
2309
|
-
TIMESTAMP_SECONDS
|
|
2310
|
-
VALUE
|
|
2311
|
-
}
|
|
2403
|
+
export declare const ColumnName: {
|
|
2404
|
+
readonly ALIAS: "ALIAS";
|
|
2405
|
+
readonly ASSET_ID: "ASSET_ID";
|
|
2406
|
+
readonly DATA_TYPE: "DATA_TYPE";
|
|
2407
|
+
readonly PROPERTY_ID: "PROPERTY_ID";
|
|
2408
|
+
readonly QUALITY: "QUALITY";
|
|
2409
|
+
readonly TIMESTAMP_NANO_OFFSET: "TIMESTAMP_NANO_OFFSET";
|
|
2410
|
+
readonly TIMESTAMP_SECONDS: "TIMESTAMP_SECONDS";
|
|
2411
|
+
readonly VALUE: "VALUE";
|
|
2412
|
+
};
|
|
2413
|
+
/**
|
|
2414
|
+
* @public
|
|
2415
|
+
*/
|
|
2416
|
+
export type ColumnName = (typeof ColumnName)[keyof typeof ColumnName];
|
|
2312
2417
|
/**
|
|
2313
2418
|
* @public
|
|
2314
2419
|
* <p>A .csv file.</p>
|
|
@@ -2366,15 +2471,20 @@ export interface CreateBulkImportJobRequest {
|
|
|
2366
2471
|
}
|
|
2367
2472
|
/**
|
|
2368
2473
|
* @public
|
|
2474
|
+
* @enum
|
|
2369
2475
|
*/
|
|
2370
|
-
export declare
|
|
2371
|
-
CANCELLED
|
|
2372
|
-
COMPLETED
|
|
2373
|
-
COMPLETED_WITH_FAILURES
|
|
2374
|
-
FAILED
|
|
2375
|
-
PENDING
|
|
2376
|
-
RUNNING
|
|
2377
|
-
}
|
|
2476
|
+
export declare const JobStatus: {
|
|
2477
|
+
readonly CANCELLED: "CANCELLED";
|
|
2478
|
+
readonly COMPLETED: "COMPLETED";
|
|
2479
|
+
readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
|
|
2480
|
+
readonly FAILED: "FAILED";
|
|
2481
|
+
readonly PENDING: "PENDING";
|
|
2482
|
+
readonly RUNNING: "RUNNING";
|
|
2483
|
+
};
|
|
2484
|
+
/**
|
|
2485
|
+
* @public
|
|
2486
|
+
*/
|
|
2487
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
2378
2488
|
/**
|
|
2379
2489
|
* @public
|
|
2380
2490
|
*/
|
|
@@ -2548,10 +2658,15 @@ export interface CreateGatewayResponse {
|
|
|
2548
2658
|
}
|
|
2549
2659
|
/**
|
|
2550
2660
|
* @public
|
|
2661
|
+
* @enum
|
|
2551
2662
|
*/
|
|
2552
|
-
export declare
|
|
2553
|
-
PNG
|
|
2554
|
-
}
|
|
2663
|
+
export declare const ImageFileType: {
|
|
2664
|
+
readonly PNG: "PNG";
|
|
2665
|
+
};
|
|
2666
|
+
/**
|
|
2667
|
+
* @public
|
|
2668
|
+
*/
|
|
2669
|
+
export type ImageFileType = (typeof ImageFileType)[keyof typeof ImageFileType];
|
|
2555
2670
|
/**
|
|
2556
2671
|
* @public
|
|
2557
2672
|
* <p>Contains an image file.</p>
|
|
@@ -2645,12 +2760,17 @@ export interface CreatePortalRequest {
|
|
|
2645
2760
|
}
|
|
2646
2761
|
/**
|
|
2647
2762
|
* @public
|
|
2763
|
+
* @enum
|
|
2648
2764
|
*/
|
|
2649
|
-
export declare
|
|
2650
|
-
INTERNAL_FAILURE
|
|
2651
|
-
LIMIT_EXCEEDED
|
|
2652
|
-
VALIDATION_ERROR
|
|
2653
|
-
}
|
|
2765
|
+
export declare const MonitorErrorCode: {
|
|
2766
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
2767
|
+
readonly LIMIT_EXCEEDED: "LIMIT_EXCEEDED";
|
|
2768
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
2769
|
+
};
|
|
2770
|
+
/**
|
|
2771
|
+
* @public
|
|
2772
|
+
*/
|
|
2773
|
+
export type MonitorErrorCode = (typeof MonitorErrorCode)[keyof typeof MonitorErrorCode];
|
|
2654
2774
|
/**
|
|
2655
2775
|
* @public
|
|
2656
2776
|
* <p>Contains IoT SiteWise Monitor error details.</p>
|
|
@@ -2667,14 +2787,19 @@ export interface MonitorErrorDetails {
|
|
|
2667
2787
|
}
|
|
2668
2788
|
/**
|
|
2669
2789
|
* @public
|
|
2790
|
+
* @enum
|
|
2670
2791
|
*/
|
|
2671
|
-
export declare
|
|
2672
|
-
ACTIVE
|
|
2673
|
-
CREATING
|
|
2674
|
-
DELETING
|
|
2675
|
-
FAILED
|
|
2676
|
-
UPDATING
|
|
2677
|
-
}
|
|
2792
|
+
export declare const PortalState: {
|
|
2793
|
+
readonly ACTIVE: "ACTIVE";
|
|
2794
|
+
readonly CREATING: "CREATING";
|
|
2795
|
+
readonly DELETING: "DELETING";
|
|
2796
|
+
readonly FAILED: "FAILED";
|
|
2797
|
+
readonly UPDATING: "UPDATING";
|
|
2798
|
+
};
|
|
2799
|
+
/**
|
|
2800
|
+
* @public
|
|
2801
|
+
*/
|
|
2802
|
+
export type PortalState = (typeof PortalState)[keyof typeof PortalState];
|
|
2678
2803
|
/**
|
|
2679
2804
|
* @public
|
|
2680
2805
|
* <p>Contains information about the current status of a portal.</p>
|
|
@@ -3353,12 +3478,17 @@ export interface ConfigurationErrorDetails {
|
|
|
3353
3478
|
}
|
|
3354
3479
|
/**
|
|
3355
3480
|
* @public
|
|
3481
|
+
* @enum
|
|
3356
3482
|
*/
|
|
3357
|
-
export declare
|
|
3358
|
-
ACTIVE
|
|
3359
|
-
UPDATE_FAILED
|
|
3360
|
-
UPDATE_IN_PROGRESS
|
|
3361
|
-
}
|
|
3483
|
+
export declare const ConfigurationState: {
|
|
3484
|
+
readonly ACTIVE: "ACTIVE";
|
|
3485
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
3486
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
3487
|
+
};
|
|
3488
|
+
/**
|
|
3489
|
+
* @public
|
|
3490
|
+
*/
|
|
3491
|
+
export type ConfigurationState = (typeof ConfigurationState)[keyof typeof ConfigurationState];
|
|
3362
3492
|
/**
|
|
3363
3493
|
* @public
|
|
3364
3494
|
* <p>Contains current status information for the configuration.</p>
|
|
@@ -3375,11 +3505,16 @@ export interface ConfigurationStatus {
|
|
|
3375
3505
|
}
|
|
3376
3506
|
/**
|
|
3377
3507
|
* @public
|
|
3508
|
+
* @enum
|
|
3378
3509
|
*/
|
|
3379
|
-
export declare
|
|
3380
|
-
KMS_BASED_ENCRYPTION
|
|
3381
|
-
SITEWISE_DEFAULT_ENCRYPTION
|
|
3382
|
-
}
|
|
3510
|
+
export declare const EncryptionType: {
|
|
3511
|
+
readonly KMS_BASED_ENCRYPTION: "KMS_BASED_ENCRYPTION";
|
|
3512
|
+
readonly SITEWISE_DEFAULT_ENCRYPTION: "SITEWISE_DEFAULT_ENCRYPTION";
|
|
3513
|
+
};
|
|
3514
|
+
/**
|
|
3515
|
+
* @public
|
|
3516
|
+
*/
|
|
3517
|
+
export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType];
|
|
3383
3518
|
/**
|
|
3384
3519
|
* @public
|
|
3385
3520
|
*/
|
|
@@ -3411,13 +3546,18 @@ export interface DescribeGatewayRequest {
|
|
|
3411
3546
|
}
|
|
3412
3547
|
/**
|
|
3413
3548
|
* @public
|
|
3549
|
+
* @enum
|
|
3414
3550
|
*/
|
|
3415
|
-
export declare
|
|
3416
|
-
IN_SYNC
|
|
3417
|
-
OUT_OF_SYNC
|
|
3418
|
-
SYNC_FAILED
|
|
3419
|
-
UNKNOWN
|
|
3420
|
-
}
|
|
3551
|
+
export declare const CapabilitySyncStatus: {
|
|
3552
|
+
readonly IN_SYNC: "IN_SYNC";
|
|
3553
|
+
readonly OUT_OF_SYNC: "OUT_OF_SYNC";
|
|
3554
|
+
readonly SYNC_FAILED: "SYNC_FAILED";
|
|
3555
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
3556
|
+
};
|
|
3557
|
+
/**
|
|
3558
|
+
* @public
|
|
3559
|
+
*/
|
|
3560
|
+
export type CapabilitySyncStatus = (typeof CapabilitySyncStatus)[keyof typeof CapabilitySyncStatus];
|
|
3421
3561
|
/**
|
|
3422
3562
|
* @public
|
|
3423
3563
|
* <p>Contains a summary of a gateway capability configuration.</p>
|
|
@@ -3548,12 +3688,17 @@ export interface DescribeLoggingOptionsRequest {
|
|
|
3548
3688
|
}
|
|
3549
3689
|
/**
|
|
3550
3690
|
* @public
|
|
3691
|
+
* @enum
|
|
3551
3692
|
*/
|
|
3552
|
-
export declare
|
|
3553
|
-
ERROR
|
|
3554
|
-
INFO
|
|
3555
|
-
OFF
|
|
3556
|
-
}
|
|
3693
|
+
export declare const LoggingLevel: {
|
|
3694
|
+
readonly ERROR: "ERROR";
|
|
3695
|
+
readonly INFO: "INFO";
|
|
3696
|
+
readonly OFF: "OFF";
|
|
3697
|
+
};
|
|
3698
|
+
/**
|
|
3699
|
+
* @public
|
|
3700
|
+
*/
|
|
3701
|
+
export type LoggingLevel = (typeof LoggingLevel)[keyof typeof LoggingLevel];
|
|
3557
3702
|
/**
|
|
3558
3703
|
* @public
|
|
3559
3704
|
* <p>Contains logging options.</p>
|
|
@@ -3722,11 +3867,16 @@ export interface DescribeStorageConfigurationRequest {
|
|
|
3722
3867
|
}
|
|
3723
3868
|
/**
|
|
3724
3869
|
* @public
|
|
3870
|
+
* @enum
|
|
3725
3871
|
*/
|
|
3726
|
-
export declare
|
|
3727
|
-
DISABLED
|
|
3728
|
-
ENABLED
|
|
3729
|
-
}
|
|
3872
|
+
export declare const DisassociatedDataStorageState: {
|
|
3873
|
+
readonly DISABLED: "DISABLED";
|
|
3874
|
+
readonly ENABLED: "ENABLED";
|
|
3875
|
+
};
|
|
3876
|
+
/**
|
|
3877
|
+
* @public
|
|
3878
|
+
*/
|
|
3879
|
+
export type DisassociatedDataStorageState = (typeof DisassociatedDataStorageState)[keyof typeof DisassociatedDataStorageState];
|
|
3730
3880
|
/**
|
|
3731
3881
|
* @public
|
|
3732
3882
|
* <p>Contains information about a customer managed Amazon S3 bucket.</p>
|
|
@@ -3777,11 +3927,16 @@ export interface RetentionPeriod {
|
|
|
3777
3927
|
}
|
|
3778
3928
|
/**
|
|
3779
3929
|
* @public
|
|
3930
|
+
* @enum
|
|
3780
3931
|
*/
|
|
3781
|
-
export declare
|
|
3782
|
-
MULTI_LAYER_STORAGE
|
|
3783
|
-
SITEWISE_DEFAULT_STORAGE
|
|
3784
|
-
}
|
|
3932
|
+
export declare const StorageType: {
|
|
3933
|
+
readonly MULTI_LAYER_STORAGE: "MULTI_LAYER_STORAGE";
|
|
3934
|
+
readonly SITEWISE_DEFAULT_STORAGE: "SITEWISE_DEFAULT_STORAGE";
|
|
3935
|
+
};
|
|
3936
|
+
/**
|
|
3937
|
+
* @public
|
|
3938
|
+
*/
|
|
3939
|
+
export type StorageType = (typeof StorageType)[keyof typeof StorageType];
|
|
3785
3940
|
/**
|
|
3786
3941
|
* @public
|
|
3787
3942
|
*/
|
|
@@ -4250,19 +4405,29 @@ export interface GetInterpolatedAssetPropertyValuesResponse {
|
|
|
4250
4405
|
}
|
|
4251
4406
|
/**
|
|
4252
4407
|
* @public
|
|
4408
|
+
* @enum
|
|
4253
4409
|
*/
|
|
4254
|
-
export declare
|
|
4255
|
-
GROUP
|
|
4256
|
-
IAM
|
|
4257
|
-
USER
|
|
4258
|
-
}
|
|
4410
|
+
export declare const IdentityType: {
|
|
4411
|
+
readonly GROUP: "GROUP";
|
|
4412
|
+
readonly IAM: "IAM";
|
|
4413
|
+
readonly USER: "USER";
|
|
4414
|
+
};
|
|
4259
4415
|
/**
|
|
4260
4416
|
* @public
|
|
4261
4417
|
*/
|
|
4262
|
-
export
|
|
4263
|
-
|
|
4264
|
-
|
|
4265
|
-
|
|
4418
|
+
export type IdentityType = (typeof IdentityType)[keyof typeof IdentityType];
|
|
4419
|
+
/**
|
|
4420
|
+
* @public
|
|
4421
|
+
* @enum
|
|
4422
|
+
*/
|
|
4423
|
+
export declare const ResourceType: {
|
|
4424
|
+
readonly PORTAL: "PORTAL";
|
|
4425
|
+
readonly PROJECT: "PROJECT";
|
|
4426
|
+
};
|
|
4427
|
+
/**
|
|
4428
|
+
* @public
|
|
4429
|
+
*/
|
|
4430
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
4266
4431
|
/**
|
|
4267
4432
|
* @public
|
|
4268
4433
|
*/
|
|
@@ -4318,11 +4483,16 @@ export interface ListAccessPoliciesResponse {
|
|
|
4318
4483
|
}
|
|
4319
4484
|
/**
|
|
4320
4485
|
* @public
|
|
4486
|
+
* @enum
|
|
4321
4487
|
*/
|
|
4322
|
-
export declare
|
|
4323
|
-
ALL
|
|
4324
|
-
BASE
|
|
4325
|
-
}
|
|
4488
|
+
export declare const ListAssetModelPropertiesFilter: {
|
|
4489
|
+
readonly ALL: "ALL";
|
|
4490
|
+
readonly BASE: "BASE";
|
|
4491
|
+
};
|
|
4492
|
+
/**
|
|
4493
|
+
* @public
|
|
4494
|
+
*/
|
|
4495
|
+
export type ListAssetModelPropertiesFilter = (typeof ListAssetModelPropertiesFilter)[keyof typeof ListAssetModelPropertiesFilter];
|
|
4326
4496
|
/**
|
|
4327
4497
|
* @public
|
|
4328
4498
|
*/
|
|
@@ -4401,11 +4571,16 @@ export interface ListAssetModelsResponse {
|
|
|
4401
4571
|
}
|
|
4402
4572
|
/**
|
|
4403
4573
|
* @public
|
|
4574
|
+
* @enum
|
|
4404
4575
|
*/
|
|
4405
|
-
export declare
|
|
4406
|
-
ALL
|
|
4407
|
-
BASE
|
|
4408
|
-
}
|
|
4576
|
+
export declare const ListAssetPropertiesFilter: {
|
|
4577
|
+
readonly ALL: "ALL";
|
|
4578
|
+
readonly BASE: "BASE";
|
|
4579
|
+
};
|
|
4580
|
+
/**
|
|
4581
|
+
* @public
|
|
4582
|
+
*/
|
|
4583
|
+
export type ListAssetPropertiesFilter = (typeof ListAssetPropertiesFilter)[keyof typeof ListAssetPropertiesFilter];
|
|
4409
4584
|
/**
|
|
4410
4585
|
* @public
|
|
4411
4586
|
*/
|
|
@@ -4457,10 +4632,15 @@ export interface ListAssetPropertiesResponse {
|
|
|
4457
4632
|
}
|
|
4458
4633
|
/**
|
|
4459
4634
|
* @public
|
|
4635
|
+
* @enum
|
|
4460
4636
|
*/
|
|
4461
|
-
export declare
|
|
4462
|
-
PATH_TO_ROOT
|
|
4463
|
-
}
|
|
4637
|
+
export declare const TraversalType: {
|
|
4638
|
+
readonly PATH_TO_ROOT: "PATH_TO_ROOT";
|
|
4639
|
+
};
|
|
4640
|
+
/**
|
|
4641
|
+
* @public
|
|
4642
|
+
*/
|
|
4643
|
+
export type TraversalType = (typeof TraversalType)[keyof typeof TraversalType];
|
|
4464
4644
|
/**
|
|
4465
4645
|
* @public
|
|
4466
4646
|
*/
|
|
@@ -4506,11 +4686,16 @@ export interface ListAssetRelationshipsResponse {
|
|
|
4506
4686
|
}
|
|
4507
4687
|
/**
|
|
4508
4688
|
* @public
|
|
4689
|
+
* @enum
|
|
4509
4690
|
*/
|
|
4510
|
-
export declare
|
|
4511
|
-
ALL
|
|
4512
|
-
TOP_LEVEL
|
|
4513
|
-
}
|
|
4691
|
+
export declare const ListAssetsFilter: {
|
|
4692
|
+
readonly ALL: "ALL";
|
|
4693
|
+
readonly TOP_LEVEL: "TOP_LEVEL";
|
|
4694
|
+
};
|
|
4695
|
+
/**
|
|
4696
|
+
* @public
|
|
4697
|
+
*/
|
|
4698
|
+
export type ListAssetsFilter = (typeof ListAssetsFilter)[keyof typeof ListAssetsFilter];
|
|
4514
4699
|
/**
|
|
4515
4700
|
* @public
|
|
4516
4701
|
*/
|
|
@@ -4564,11 +4749,16 @@ export interface ListAssetsResponse {
|
|
|
4564
4749
|
}
|
|
4565
4750
|
/**
|
|
4566
4751
|
* @public
|
|
4752
|
+
* @enum
|
|
4567
4753
|
*/
|
|
4568
|
-
export declare
|
|
4569
|
-
CHILD
|
|
4570
|
-
PARENT
|
|
4571
|
-
}
|
|
4754
|
+
export declare const TraversalDirection: {
|
|
4755
|
+
readonly CHILD: "CHILD";
|
|
4756
|
+
readonly PARENT: "PARENT";
|
|
4757
|
+
};
|
|
4758
|
+
/**
|
|
4759
|
+
* @public
|
|
4760
|
+
*/
|
|
4761
|
+
export type TraversalDirection = (typeof TraversalDirection)[keyof typeof TraversalDirection];
|
|
4572
4762
|
/**
|
|
4573
4763
|
* @public
|
|
4574
4764
|
*/
|
|
@@ -4628,16 +4818,21 @@ export interface ListAssociatedAssetsResponse {
|
|
|
4628
4818
|
}
|
|
4629
4819
|
/**
|
|
4630
4820
|
* @public
|
|
4821
|
+
* @enum
|
|
4631
4822
|
*/
|
|
4632
|
-
export declare
|
|
4633
|
-
ALL
|
|
4634
|
-
CANCELLED
|
|
4635
|
-
COMPLETED
|
|
4636
|
-
COMPLETED_WITH_FAILURES
|
|
4637
|
-
FAILED
|
|
4638
|
-
PENDING
|
|
4639
|
-
RUNNING
|
|
4640
|
-
}
|
|
4823
|
+
export declare const ListBulkImportJobsFilter: {
|
|
4824
|
+
readonly ALL: "ALL";
|
|
4825
|
+
readonly CANCELLED: "CANCELLED";
|
|
4826
|
+
readonly COMPLETED: "COMPLETED";
|
|
4827
|
+
readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
|
|
4828
|
+
readonly FAILED: "FAILED";
|
|
4829
|
+
readonly PENDING: "PENDING";
|
|
4830
|
+
readonly RUNNING: "RUNNING";
|
|
4831
|
+
};
|
|
4832
|
+
/**
|
|
4833
|
+
* @public
|
|
4834
|
+
*/
|
|
4835
|
+
export type ListBulkImportJobsFilter = (typeof ListBulkImportJobsFilter)[keyof typeof ListBulkImportJobsFilter];
|
|
4641
4836
|
/**
|
|
4642
4837
|
* @public
|
|
4643
4838
|
*/
|
|
@@ -5021,11 +5216,16 @@ export declare class UnauthorizedException extends __BaseException {
|
|
|
5021
5216
|
}
|
|
5022
5217
|
/**
|
|
5023
5218
|
* @public
|
|
5219
|
+
* @enum
|
|
5024
5220
|
*/
|
|
5025
|
-
export declare
|
|
5026
|
-
ASSOCIATED
|
|
5027
|
-
DISASSOCIATED
|
|
5028
|
-
}
|
|
5221
|
+
export declare const ListTimeSeriesType: {
|
|
5222
|
+
readonly ASSOCIATED: "ASSOCIATED";
|
|
5223
|
+
readonly DISASSOCIATED: "DISASSOCIATED";
|
|
5224
|
+
};
|
|
5225
|
+
/**
|
|
5226
|
+
* @public
|
|
5227
|
+
*/
|
|
5228
|
+
export type ListTimeSeriesType = (typeof ListTimeSeriesType)[keyof typeof ListTimeSeriesType];
|
|
5029
5229
|
/**
|
|
5030
5230
|
* @public
|
|
5031
5231
|
*/
|