@aws-sdk/client-iotsitewise 3.454.0 → 3.456.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/README.md +88 -0
- package/dist-cjs/IoTSiteWise.js +22 -0
- package/dist-cjs/commands/CreateAssetModelCompositeModelCommand.js +51 -0
- package/dist-cjs/commands/DeleteAssetModelCompositeModelCommand.js +51 -0
- package/dist-cjs/commands/DescribeActionCommand.js +51 -0
- package/dist-cjs/commands/DescribeAssetCompositeModelCommand.js +51 -0
- package/dist-cjs/commands/DescribeAssetModelCompositeModelCommand.js +51 -0
- package/dist-cjs/commands/ExecuteActionCommand.js +51 -0
- package/dist-cjs/commands/ExecuteQueryCommand.js +51 -0
- package/dist-cjs/commands/ListActionsCommand.js +51 -0
- package/dist-cjs/commands/ListAssetModelCompositeModelsCommand.js +51 -0
- package/dist-cjs/commands/ListCompositionRelationshipsCommand.js +51 -0
- package/dist-cjs/commands/UpdateAssetModelCompositeModelCommand.js +51 -0
- package/dist-cjs/commands/index.js +11 -0
- package/dist-cjs/models/index.js +1 -0
- package/dist-cjs/models/models_0.js +59 -15
- package/dist-cjs/models/models_1.js +18 -0
- package/dist-cjs/pagination/ExecuteQueryPaginator.js +29 -0
- package/dist-cjs/pagination/ListAssetModelCompositeModelsPaginator.js +29 -0
- package/dist-cjs/pagination/ListCompositionRelationshipsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1018 -25
- package/dist-es/IoTSiteWise.js +22 -0
- package/dist-es/commands/CreateAssetModelCompositeModelCommand.js +47 -0
- package/dist-es/commands/DeleteAssetModelCompositeModelCommand.js +47 -0
- package/dist-es/commands/DescribeActionCommand.js +47 -0
- package/dist-es/commands/DescribeAssetCompositeModelCommand.js +47 -0
- package/dist-es/commands/DescribeAssetModelCompositeModelCommand.js +47 -0
- package/dist-es/commands/ExecuteActionCommand.js +47 -0
- package/dist-es/commands/ExecuteQueryCommand.js +47 -0
- package/dist-es/commands/ListActionsCommand.js +47 -0
- package/dist-es/commands/ListAssetModelCompositeModelsCommand.js +47 -0
- package/dist-es/commands/ListCompositionRelationshipsCommand.js +47 -0
- package/dist-es/commands/UpdateAssetModelCompositeModelCommand.js +47 -0
- package/dist-es/commands/index.js +11 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +54 -13
- package/dist-es/models/models_1.js +14 -0
- package/dist-es/pagination/ExecuteQueryPaginator.js +25 -0
- package/dist-es/pagination/ListAssetModelCompositeModelsPaginator.js +25 -0
- package/dist-es/pagination/ListCompositionRelationshipsPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +1038 -68
- package/dist-types/IoTSiteWise.d.ts +77 -0
- package/dist-types/IoTSiteWiseClient.d.ts +13 -2
- package/dist-types/commands/CreateAssetCommand.d.ts +2 -0
- package/dist-types/commands/CreateAssetModelCommand.d.ts +52 -4
- package/dist-types/commands/CreateAssetModelCompositeModelCommand.d.ts +212 -0
- package/dist-types/commands/CreateBulkImportJobCommand.d.ts +8 -3
- package/dist-types/commands/DeleteAssetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAssetModelCompositeModelCommand.d.ts +111 -0
- package/dist-types/commands/DescribeActionCommand.d.ts +97 -0
- package/dist-types/commands/DescribeAssetCommand.d.ts +32 -0
- package/dist-types/commands/DescribeAssetCompositeModelCommand.d.ts +145 -0
- package/dist-types/commands/DescribeAssetModelCommand.d.ts +46 -4
- package/dist-types/commands/DescribeAssetModelCompositeModelCommand.d.ts +209 -0
- package/dist-types/commands/DescribeAssetPropertyCommand.d.ts +44 -4
- package/dist-types/commands/DescribeBulkImportJobCommand.d.ts +4 -1
- package/dist-types/commands/DescribeStorageConfigurationCommand.d.ts +5 -0
- package/dist-types/commands/ExecuteActionCommand.d.ts +106 -0
- package/dist-types/commands/ExecuteQueryCommand.d.ts +130 -0
- package/dist-types/commands/ListActionsCommand.d.ts +101 -0
- package/dist-types/commands/ListAssetModelCompositeModelsCommand.d.ts +106 -0
- package/dist-types/commands/ListAssetModelPropertiesCommand.d.ts +21 -2
- package/dist-types/commands/ListAssetModelsCommand.d.ts +5 -0
- package/dist-types/commands/ListAssetPropertiesCommand.d.ts +8 -1
- package/dist-types/commands/ListAssetsCommand.d.ts +2 -0
- package/dist-types/commands/ListAssociatedAssetsCommand.d.ts +2 -0
- package/dist-types/commands/ListCompositionRelationshipsCommand.d.ts +98 -0
- package/dist-types/commands/PutDefaultEncryptionConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +1 -1
- package/dist-types/commands/PutStorageConfigurationCommand.d.ts +11 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAssetCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAssetModelCommand.d.ts +31 -5
- package/dist-types/commands/UpdateAssetModelCompositeModelCommand.d.ts +220 -0
- package/dist-types/commands/UpdateAssetPropertyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDashboardCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGatewayCapabilityConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGatewayCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePortalCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProjectCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +11 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1377 -773
- package/dist-types/models/models_1.d.ts +796 -0
- package/dist-types/pagination/ExecuteQueryPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssetModelCompositeModelsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCompositionRelationshipsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +99 -0
- package/dist-types/ts3.4/IoTSiteWise.d.ts +187 -0
- package/dist-types/ts3.4/IoTSiteWiseClient.d.ts +66 -0
- package/dist-types/ts3.4/commands/CreateAssetModelCompositeModelCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteAssetModelCompositeModelCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeActionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeAssetCompositeModelCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeAssetModelCompositeModelCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ExecuteActionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ExecuteQueryCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListAssetModelCompositeModelsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCompositionRelationshipsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/PutDefaultEncryptionConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutLoggingOptionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutStorageConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAccessPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAssetModelCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAssetModelCompositeModelCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateAssetPropertyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDashboardCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateGatewayCapabilityConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateGatewayCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePortalCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateProjectCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +284 -130
- package/dist-types/ts3.4/models/models_1.d.ts +190 -0
- package/dist-types/ts3.4/pagination/ExecuteQueryPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssetModelCompositeModelsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCompositionRelationshipsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +132 -0
- package/package.json +1 -1
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { IoTSiteWiseServiceException as __BaseException } from "./IoTSiteWiseServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
3
10
|
export interface GroupIdentity {
|
|
4
11
|
id: string | undefined;
|
|
5
12
|
}
|
|
@@ -41,6 +48,22 @@ export interface AccessPolicySummary {
|
|
|
41
48
|
creationDate?: Date;
|
|
42
49
|
lastUpdateDate?: Date;
|
|
43
50
|
}
|
|
51
|
+
export interface ActionDefinition {
|
|
52
|
+
actionDefinitionId: string | undefined;
|
|
53
|
+
actionName: string | undefined;
|
|
54
|
+
actionType: string | undefined;
|
|
55
|
+
}
|
|
56
|
+
export interface ActionPayload {
|
|
57
|
+
stringValue: string | undefined;
|
|
58
|
+
}
|
|
59
|
+
export interface TargetResource {
|
|
60
|
+
assetId: string | undefined;
|
|
61
|
+
}
|
|
62
|
+
export interface ActionSummary {
|
|
63
|
+
actionId?: string;
|
|
64
|
+
actionDefinitionId?: string;
|
|
65
|
+
targetResource?: TargetResource;
|
|
66
|
+
}
|
|
44
67
|
export declare const Quality: {
|
|
45
68
|
readonly BAD: "BAD";
|
|
46
69
|
readonly GOOD: "GOOD";
|
|
@@ -92,6 +115,10 @@ export interface PropertyNotification {
|
|
|
92
115
|
topic: string | undefined;
|
|
93
116
|
state: PropertyNotificationState | undefined;
|
|
94
117
|
}
|
|
118
|
+
export interface AssetPropertyPathSegment {
|
|
119
|
+
id?: string;
|
|
120
|
+
name?: string;
|
|
121
|
+
}
|
|
95
122
|
export interface AssetProperty {
|
|
96
123
|
id: string | undefined;
|
|
97
124
|
name: string | undefined;
|
|
@@ -100,6 +127,8 @@ export interface AssetProperty {
|
|
|
100
127
|
dataType: PropertyDataType | undefined;
|
|
101
128
|
dataTypeSpec?: string;
|
|
102
129
|
unit?: string;
|
|
130
|
+
path?: AssetPropertyPathSegment[];
|
|
131
|
+
externalId?: string;
|
|
103
132
|
}
|
|
104
133
|
export interface AssetCompositeModel {
|
|
105
134
|
name: string | undefined;
|
|
@@ -107,6 +136,19 @@ export interface AssetCompositeModel {
|
|
|
107
136
|
type: string | undefined;
|
|
108
137
|
properties: AssetProperty[] | undefined;
|
|
109
138
|
id?: string;
|
|
139
|
+
externalId?: string;
|
|
140
|
+
}
|
|
141
|
+
export interface AssetCompositeModelPathSegment {
|
|
142
|
+
id?: string;
|
|
143
|
+
name?: string;
|
|
144
|
+
}
|
|
145
|
+
export interface AssetCompositeModelSummary {
|
|
146
|
+
id: string | undefined;
|
|
147
|
+
externalId?: string;
|
|
148
|
+
name: string | undefined;
|
|
149
|
+
type: string | undefined;
|
|
150
|
+
description: string | undefined;
|
|
151
|
+
path: AssetCompositeModelPathSegment[] | undefined;
|
|
110
152
|
}
|
|
111
153
|
export declare const AssetErrorCode: {
|
|
112
154
|
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
@@ -121,11 +163,16 @@ export interface AssetErrorDetails {
|
|
|
121
163
|
export interface AssetHierarchy {
|
|
122
164
|
id?: string;
|
|
123
165
|
name: string | undefined;
|
|
166
|
+
externalId?: string;
|
|
124
167
|
}
|
|
125
168
|
export interface AssetHierarchyInfo {
|
|
126
169
|
parentAssetId?: string;
|
|
127
170
|
childAssetId?: string;
|
|
128
171
|
}
|
|
172
|
+
export interface AssetModelPropertyPathSegment {
|
|
173
|
+
id?: string;
|
|
174
|
+
name?: string;
|
|
175
|
+
}
|
|
129
176
|
export interface Attribute {
|
|
130
177
|
defaultValue?: string;
|
|
131
178
|
}
|
|
@@ -154,8 +201,9 @@ export interface MetricProcessingConfig {
|
|
|
154
201
|
computeLocation: ComputeLocation | undefined;
|
|
155
202
|
}
|
|
156
203
|
export interface VariableValue {
|
|
157
|
-
propertyId
|
|
204
|
+
propertyId?: string;
|
|
158
205
|
hierarchyId?: string;
|
|
206
|
+
propertyPath?: AssetModelPropertyPathSegment[];
|
|
159
207
|
}
|
|
160
208
|
export interface ExpressionVariable {
|
|
161
209
|
name: string | undefined;
|
|
@@ -196,6 +244,8 @@ export interface AssetModelProperty {
|
|
|
196
244
|
dataTypeSpec?: string;
|
|
197
245
|
unit?: string;
|
|
198
246
|
type: PropertyType | undefined;
|
|
247
|
+
path?: AssetModelPropertyPathSegment[];
|
|
248
|
+
externalId?: string;
|
|
199
249
|
}
|
|
200
250
|
export interface AssetModelCompositeModel {
|
|
201
251
|
name: string | undefined;
|
|
@@ -203,6 +253,7 @@ export interface AssetModelCompositeModel {
|
|
|
203
253
|
type: string | undefined;
|
|
204
254
|
properties?: AssetModelProperty[];
|
|
205
255
|
id?: string;
|
|
256
|
+
externalId?: string;
|
|
206
257
|
}
|
|
207
258
|
export interface AssetModelPropertyDefinition {
|
|
208
259
|
name: string | undefined;
|
|
@@ -210,21 +261,40 @@ export interface AssetModelPropertyDefinition {
|
|
|
210
261
|
dataTypeSpec?: string;
|
|
211
262
|
unit?: string;
|
|
212
263
|
type: PropertyType | undefined;
|
|
264
|
+
id?: string;
|
|
265
|
+
externalId?: string;
|
|
213
266
|
}
|
|
214
267
|
export interface AssetModelCompositeModelDefinition {
|
|
215
268
|
name: string | undefined;
|
|
216
269
|
description?: string;
|
|
217
270
|
type: string | undefined;
|
|
218
271
|
properties?: AssetModelPropertyDefinition[];
|
|
272
|
+
id?: string;
|
|
273
|
+
externalId?: string;
|
|
274
|
+
}
|
|
275
|
+
export interface AssetModelCompositeModelPathSegment {
|
|
276
|
+
id?: string;
|
|
277
|
+
name?: string;
|
|
278
|
+
}
|
|
279
|
+
export interface AssetModelCompositeModelSummary {
|
|
280
|
+
id: string | undefined;
|
|
281
|
+
externalId?: string;
|
|
282
|
+
name: string | undefined;
|
|
283
|
+
type: string | undefined;
|
|
284
|
+
description?: string;
|
|
285
|
+
path?: AssetModelCompositeModelPathSegment[];
|
|
219
286
|
}
|
|
220
287
|
export interface AssetModelHierarchy {
|
|
221
288
|
id?: string;
|
|
222
289
|
name: string | undefined;
|
|
223
290
|
childAssetModelId: string | undefined;
|
|
291
|
+
externalId?: string;
|
|
224
292
|
}
|
|
225
293
|
export interface AssetModelHierarchyDefinition {
|
|
226
294
|
name: string | undefined;
|
|
227
295
|
childAssetModelId: string | undefined;
|
|
296
|
+
id?: string;
|
|
297
|
+
externalId?: string;
|
|
228
298
|
}
|
|
229
299
|
export interface AssetModelPropertySummary {
|
|
230
300
|
id?: string;
|
|
@@ -234,6 +304,8 @@ export interface AssetModelPropertySummary {
|
|
|
234
304
|
unit?: string;
|
|
235
305
|
type: PropertyType | undefined;
|
|
236
306
|
assetModelCompositeModelId?: string;
|
|
307
|
+
path?: AssetModelPropertyPathSegment[];
|
|
308
|
+
externalId?: string;
|
|
237
309
|
}
|
|
238
310
|
export declare const AssetModelState: {
|
|
239
311
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -269,6 +341,12 @@ export interface AssetModelStatus {
|
|
|
269
341
|
state: AssetModelState | undefined;
|
|
270
342
|
error?: ErrorDetails;
|
|
271
343
|
}
|
|
344
|
+
export declare const AssetModelType: {
|
|
345
|
+
readonly ASSET_MODEL: "ASSET_MODEL";
|
|
346
|
+
readonly COMPONENT_MODEL: "COMPONENT_MODEL";
|
|
347
|
+
};
|
|
348
|
+
export type AssetModelType =
|
|
349
|
+
(typeof AssetModelType)[keyof typeof AssetModelType];
|
|
272
350
|
export interface AssetModelSummary {
|
|
273
351
|
id: string | undefined;
|
|
274
352
|
arn: string | undefined;
|
|
@@ -277,13 +355,17 @@ export interface AssetModelSummary {
|
|
|
277
355
|
creationDate: Date | undefined;
|
|
278
356
|
lastUpdateDate: Date | undefined;
|
|
279
357
|
status: AssetModelStatus | undefined;
|
|
358
|
+
assetModelType?: AssetModelType;
|
|
359
|
+
externalId?: string;
|
|
280
360
|
}
|
|
281
361
|
export interface AssetPropertySummary {
|
|
282
|
-
id
|
|
362
|
+
id: string | undefined;
|
|
283
363
|
alias?: string;
|
|
284
364
|
unit?: string;
|
|
285
365
|
notification?: PropertyNotification;
|
|
286
366
|
assetCompositeModelId?: string;
|
|
367
|
+
path?: AssetPropertyPathSegment[];
|
|
368
|
+
externalId?: string;
|
|
287
369
|
}
|
|
288
370
|
export interface TimeInNanos {
|
|
289
371
|
timeInSeconds: number | undefined;
|
|
@@ -331,6 +413,7 @@ export interface AssetSummary {
|
|
|
331
413
|
status: AssetStatus | undefined;
|
|
332
414
|
hierarchies: AssetHierarchy[] | undefined;
|
|
333
415
|
description?: string;
|
|
416
|
+
externalId?: string;
|
|
334
417
|
}
|
|
335
418
|
export interface AssociateAssetsRequest {
|
|
336
419
|
assetId: string | undefined;
|
|
@@ -401,6 +484,7 @@ export interface AssociatedAssetsSummary {
|
|
|
401
484
|
status: AssetStatus | undefined;
|
|
402
485
|
hierarchies: AssetHierarchy[] | undefined;
|
|
403
486
|
description?: string;
|
|
487
|
+
externalId?: string;
|
|
404
488
|
}
|
|
405
489
|
export interface AssociateTimeSeriesToAssetPropertyRequest {
|
|
406
490
|
alias: string | undefined;
|
|
@@ -634,6 +718,8 @@ export interface CreateAssetRequest {
|
|
|
634
718
|
clientToken?: string;
|
|
635
719
|
tags?: Record<string, string>;
|
|
636
720
|
assetDescription?: string;
|
|
721
|
+
assetId?: string;
|
|
722
|
+
assetExternalId?: string;
|
|
637
723
|
}
|
|
638
724
|
export interface CreateAssetResponse {
|
|
639
725
|
assetId: string | undefined;
|
|
@@ -648,12 +734,34 @@ export interface CreateAssetModelRequest {
|
|
|
648
734
|
assetModelCompositeModels?: AssetModelCompositeModelDefinition[];
|
|
649
735
|
clientToken?: string;
|
|
650
736
|
tags?: Record<string, string>;
|
|
737
|
+
assetModelId?: string;
|
|
738
|
+
assetModelExternalId?: string;
|
|
739
|
+
assetModelType?: AssetModelType;
|
|
651
740
|
}
|
|
652
741
|
export interface CreateAssetModelResponse {
|
|
653
742
|
assetModelId: string | undefined;
|
|
654
743
|
assetModelArn: string | undefined;
|
|
655
744
|
assetModelStatus: AssetModelStatus | undefined;
|
|
656
745
|
}
|
|
746
|
+
export interface CreateAssetModelCompositeModelRequest {
|
|
747
|
+
assetModelId: string | undefined;
|
|
748
|
+
parentAssetModelCompositeModelId?: string;
|
|
749
|
+
assetModelCompositeModelExternalId?: string;
|
|
750
|
+
assetModelCompositeModelId?: string;
|
|
751
|
+
assetModelCompositeModelDescription?: string;
|
|
752
|
+
assetModelCompositeModelName: string | undefined;
|
|
753
|
+
assetModelCompositeModelType: string | undefined;
|
|
754
|
+
clientToken?: string;
|
|
755
|
+
composedAssetModelId?: string;
|
|
756
|
+
assetModelCompositeModelProperties?: AssetModelPropertyDefinition[];
|
|
757
|
+
}
|
|
758
|
+
export interface CreateAssetModelCompositeModelResponse {
|
|
759
|
+
assetModelCompositeModelId: string | undefined;
|
|
760
|
+
assetModelCompositeModelPath:
|
|
761
|
+
| AssetModelCompositeModelPathSegment[]
|
|
762
|
+
| undefined;
|
|
763
|
+
assetModelStatus: AssetModelStatus | undefined;
|
|
764
|
+
}
|
|
657
765
|
export interface ErrorReportLocation {
|
|
658
766
|
bucket: string | undefined;
|
|
659
767
|
prefix: string | undefined;
|
|
@@ -675,10 +783,12 @@ export declare const ColumnName: {
|
|
|
675
783
|
};
|
|
676
784
|
export type ColumnName = (typeof ColumnName)[keyof typeof ColumnName];
|
|
677
785
|
export interface Csv {
|
|
678
|
-
columnNames
|
|
786
|
+
columnNames: ColumnName[] | undefined;
|
|
679
787
|
}
|
|
788
|
+
export interface Parquet {}
|
|
680
789
|
export interface FileFormat {
|
|
681
790
|
csv?: Csv;
|
|
791
|
+
parquet?: Parquet;
|
|
682
792
|
}
|
|
683
793
|
export interface JobConfiguration {
|
|
684
794
|
fileFormat: FileFormat | undefined;
|
|
@@ -689,6 +799,8 @@ export interface CreateBulkImportJobRequest {
|
|
|
689
799
|
files: File[] | undefined;
|
|
690
800
|
errorReportLocation: ErrorReportLocation | undefined;
|
|
691
801
|
jobConfiguration: JobConfiguration | undefined;
|
|
802
|
+
adaptiveIngestion?: boolean;
|
|
803
|
+
deleteFilesAfterImport?: boolean;
|
|
692
804
|
}
|
|
693
805
|
export declare const JobStatus: {
|
|
694
806
|
readonly CANCELLED: "CANCELLED";
|
|
@@ -815,6 +927,14 @@ export interface DeleteAssetModelRequest {
|
|
|
815
927
|
export interface DeleteAssetModelResponse {
|
|
816
928
|
assetModelStatus: AssetModelStatus | undefined;
|
|
817
929
|
}
|
|
930
|
+
export interface DeleteAssetModelCompositeModelRequest {
|
|
931
|
+
assetModelId: string | undefined;
|
|
932
|
+
assetModelCompositeModelId: string | undefined;
|
|
933
|
+
clientToken?: string;
|
|
934
|
+
}
|
|
935
|
+
export interface DeleteAssetModelCompositeModelResponse {
|
|
936
|
+
assetModelStatus: AssetModelStatus | undefined;
|
|
937
|
+
}
|
|
818
938
|
export interface DeleteDashboardRequest {
|
|
819
939
|
dashboardId: string | undefined;
|
|
820
940
|
clientToken?: string;
|
|
@@ -853,6 +973,16 @@ export interface DescribeAccessPolicyResponse {
|
|
|
853
973
|
accessPolicyCreationDate: Date | undefined;
|
|
854
974
|
accessPolicyLastUpdateDate: Date | undefined;
|
|
855
975
|
}
|
|
976
|
+
export interface DescribeActionRequest {
|
|
977
|
+
actionId: string | undefined;
|
|
978
|
+
}
|
|
979
|
+
export interface DescribeActionResponse {
|
|
980
|
+
actionId: string | undefined;
|
|
981
|
+
targetResource: TargetResource | undefined;
|
|
982
|
+
actionDefinitionId: string | undefined;
|
|
983
|
+
actionPayload: ActionPayload | undefined;
|
|
984
|
+
executionTime: Date | undefined;
|
|
985
|
+
}
|
|
856
986
|
export interface DescribeAssetRequest {
|
|
857
987
|
assetId: string | undefined;
|
|
858
988
|
excludeProperties?: boolean;
|
|
@@ -869,6 +999,24 @@ export interface DescribeAssetResponse {
|
|
|
869
999
|
assetLastUpdateDate: Date | undefined;
|
|
870
1000
|
assetStatus: AssetStatus | undefined;
|
|
871
1001
|
assetDescription?: string;
|
|
1002
|
+
assetCompositeModelSummaries?: AssetCompositeModelSummary[];
|
|
1003
|
+
assetExternalId?: string;
|
|
1004
|
+
}
|
|
1005
|
+
export interface DescribeAssetCompositeModelRequest {
|
|
1006
|
+
assetId: string | undefined;
|
|
1007
|
+
assetCompositeModelId: string | undefined;
|
|
1008
|
+
}
|
|
1009
|
+
export interface DescribeAssetCompositeModelResponse {
|
|
1010
|
+
assetId: string | undefined;
|
|
1011
|
+
assetCompositeModelId: string | undefined;
|
|
1012
|
+
assetCompositeModelExternalId?: string;
|
|
1013
|
+
assetCompositeModelPath: AssetCompositeModelPathSegment[] | undefined;
|
|
1014
|
+
assetCompositeModelName: string | undefined;
|
|
1015
|
+
assetCompositeModelDescription: string | undefined;
|
|
1016
|
+
assetCompositeModelType: string | undefined;
|
|
1017
|
+
assetCompositeModelProperties: AssetProperty[] | undefined;
|
|
1018
|
+
assetCompositeModelSummaries: AssetCompositeModelSummary[] | undefined;
|
|
1019
|
+
actionDefinitions?: ActionDefinition[];
|
|
872
1020
|
}
|
|
873
1021
|
export interface DescribeAssetModelRequest {
|
|
874
1022
|
assetModelId: string | undefined;
|
|
@@ -885,6 +1033,36 @@ export interface DescribeAssetModelResponse {
|
|
|
885
1033
|
assetModelCreationDate: Date | undefined;
|
|
886
1034
|
assetModelLastUpdateDate: Date | undefined;
|
|
887
1035
|
assetModelStatus: AssetModelStatus | undefined;
|
|
1036
|
+
assetModelType?: AssetModelType;
|
|
1037
|
+
assetModelCompositeModelSummaries?: AssetModelCompositeModelSummary[];
|
|
1038
|
+
assetModelExternalId?: string;
|
|
1039
|
+
}
|
|
1040
|
+
export interface DescribeAssetModelCompositeModelRequest {
|
|
1041
|
+
assetModelId: string | undefined;
|
|
1042
|
+
assetModelCompositeModelId: string | undefined;
|
|
1043
|
+
}
|
|
1044
|
+
export interface CompositionRelationshipItem {
|
|
1045
|
+
id?: string;
|
|
1046
|
+
}
|
|
1047
|
+
export interface CompositionDetails {
|
|
1048
|
+
compositionRelationship?: CompositionRelationshipItem[];
|
|
1049
|
+
}
|
|
1050
|
+
export interface DescribeAssetModelCompositeModelResponse {
|
|
1051
|
+
assetModelId: string | undefined;
|
|
1052
|
+
assetModelCompositeModelId: string | undefined;
|
|
1053
|
+
assetModelCompositeModelExternalId?: string;
|
|
1054
|
+
assetModelCompositeModelPath:
|
|
1055
|
+
| AssetModelCompositeModelPathSegment[]
|
|
1056
|
+
| undefined;
|
|
1057
|
+
assetModelCompositeModelName: string | undefined;
|
|
1058
|
+
assetModelCompositeModelDescription: string | undefined;
|
|
1059
|
+
assetModelCompositeModelType: string | undefined;
|
|
1060
|
+
assetModelCompositeModelProperties: AssetModelProperty[] | undefined;
|
|
1061
|
+
compositionDetails?: CompositionDetails;
|
|
1062
|
+
assetModelCompositeModelSummaries:
|
|
1063
|
+
| AssetModelCompositeModelSummary[]
|
|
1064
|
+
| undefined;
|
|
1065
|
+
actionDefinitions?: ActionDefinition[];
|
|
888
1066
|
}
|
|
889
1067
|
export interface DescribeAssetPropertyRequest {
|
|
890
1068
|
assetId: string | undefined;
|
|
@@ -898,12 +1076,15 @@ export interface Property {
|
|
|
898
1076
|
dataType: PropertyDataType | undefined;
|
|
899
1077
|
unit?: string;
|
|
900
1078
|
type?: PropertyType;
|
|
1079
|
+
path?: AssetPropertyPathSegment[];
|
|
1080
|
+
externalId?: string;
|
|
901
1081
|
}
|
|
902
1082
|
export interface CompositeModelProperty {
|
|
903
1083
|
name: string | undefined;
|
|
904
1084
|
type: string | undefined;
|
|
905
1085
|
assetProperty: Property | undefined;
|
|
906
1086
|
id?: string;
|
|
1087
|
+
externalId?: string;
|
|
907
1088
|
}
|
|
908
1089
|
export interface DescribeAssetPropertyResponse {
|
|
909
1090
|
assetId: string | undefined;
|
|
@@ -911,6 +1092,7 @@ export interface DescribeAssetPropertyResponse {
|
|
|
911
1092
|
assetModelId: string | undefined;
|
|
912
1093
|
assetProperty?: Property;
|
|
913
1094
|
compositeModel?: CompositeModelProperty;
|
|
1095
|
+
assetExternalId?: string;
|
|
914
1096
|
}
|
|
915
1097
|
export interface DescribeBulkImportJobRequest {
|
|
916
1098
|
jobId: string | undefined;
|
|
@@ -925,6 +1107,8 @@ export interface DescribeBulkImportJobResponse {
|
|
|
925
1107
|
jobConfiguration: JobConfiguration | undefined;
|
|
926
1108
|
jobCreationDate: Date | undefined;
|
|
927
1109
|
jobLastUpdateDate: Date | undefined;
|
|
1110
|
+
adaptiveIngestion?: boolean;
|
|
1111
|
+
deleteFilesAfterImport?: boolean;
|
|
928
1112
|
}
|
|
929
1113
|
export interface DescribeDashboardRequest {
|
|
930
1114
|
dashboardId: string | undefined;
|
|
@@ -1072,6 +1256,15 @@ export declare const StorageType: {
|
|
|
1072
1256
|
readonly SITEWISE_DEFAULT_STORAGE: "SITEWISE_DEFAULT_STORAGE";
|
|
1073
1257
|
};
|
|
1074
1258
|
export type StorageType = (typeof StorageType)[keyof typeof StorageType];
|
|
1259
|
+
export declare const WarmTierState: {
|
|
1260
|
+
readonly DISABLED: "DISABLED";
|
|
1261
|
+
readonly ENABLED: "ENABLED";
|
|
1262
|
+
};
|
|
1263
|
+
export type WarmTierState = (typeof WarmTierState)[keyof typeof WarmTierState];
|
|
1264
|
+
export interface WarmTierRetentionPeriod {
|
|
1265
|
+
numberOfDays?: number;
|
|
1266
|
+
unlimited?: boolean;
|
|
1267
|
+
}
|
|
1075
1268
|
export interface DescribeStorageConfigurationResponse {
|
|
1076
1269
|
storageType: StorageType | undefined;
|
|
1077
1270
|
multiLayerStorage?: MultiLayerStorage;
|
|
@@ -1079,6 +1272,8 @@ export interface DescribeStorageConfigurationResponse {
|
|
|
1079
1272
|
retentionPeriod?: RetentionPeriod;
|
|
1080
1273
|
configurationStatus: ConfigurationStatus | undefined;
|
|
1081
1274
|
lastUpdateDate?: Date;
|
|
1275
|
+
warmTier?: WarmTierState;
|
|
1276
|
+
warmTierRetentionPeriod?: WarmTierRetentionPeriod;
|
|
1082
1277
|
}
|
|
1083
1278
|
export interface DescribeTimeSeriesRequest {
|
|
1084
1279
|
alias?: string;
|
|
@@ -1108,6 +1303,49 @@ export interface DisassociateTimeSeriesFromAssetPropertyRequest {
|
|
|
1108
1303
|
propertyId: string | undefined;
|
|
1109
1304
|
clientToken?: string;
|
|
1110
1305
|
}
|
|
1306
|
+
export interface ExecuteActionRequest {
|
|
1307
|
+
targetResource: TargetResource | undefined;
|
|
1308
|
+
actionDefinitionId: string | undefined;
|
|
1309
|
+
actionPayload: ActionPayload | undefined;
|
|
1310
|
+
clientToken?: string;
|
|
1311
|
+
}
|
|
1312
|
+
export interface ExecuteActionResponse {
|
|
1313
|
+
actionId: string | undefined;
|
|
1314
|
+
}
|
|
1315
|
+
export interface ExecuteQueryRequest {
|
|
1316
|
+
queryStatement: string | undefined;
|
|
1317
|
+
nextToken?: string;
|
|
1318
|
+
maxResults?: number;
|
|
1319
|
+
}
|
|
1320
|
+
export declare const ScalarType: {
|
|
1321
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
1322
|
+
readonly DOUBLE: "DOUBLE";
|
|
1323
|
+
readonly INT: "INT";
|
|
1324
|
+
readonly STRING: "STRING";
|
|
1325
|
+
readonly TIMESTAMP: "TIMESTAMP";
|
|
1326
|
+
};
|
|
1327
|
+
export type ScalarType = (typeof ScalarType)[keyof typeof ScalarType];
|
|
1328
|
+
export interface ColumnType {
|
|
1329
|
+
scalarType?: ScalarType;
|
|
1330
|
+
}
|
|
1331
|
+
export interface ColumnInfo {
|
|
1332
|
+
name?: string;
|
|
1333
|
+
type?: ColumnType;
|
|
1334
|
+
}
|
|
1335
|
+
export declare class QueryTimeoutException extends __BaseException {
|
|
1336
|
+
readonly name: "QueryTimeoutException";
|
|
1337
|
+
readonly $fault: "client";
|
|
1338
|
+
constructor(
|
|
1339
|
+
opts: __ExceptionOptionType<QueryTimeoutException, __BaseException>
|
|
1340
|
+
);
|
|
1341
|
+
}
|
|
1342
|
+
export declare class ValidationException extends __BaseException {
|
|
1343
|
+
readonly name: "ValidationException";
|
|
1344
|
+
readonly $fault: "client";
|
|
1345
|
+
constructor(
|
|
1346
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
1347
|
+
);
|
|
1348
|
+
}
|
|
1111
1349
|
export interface GetAssetPropertyAggregatesRequest {
|
|
1112
1350
|
assetId?: string;
|
|
1113
1351
|
propertyId?: string;
|
|
@@ -1195,6 +1433,32 @@ export interface ListAccessPoliciesResponse {
|
|
|
1195
1433
|
accessPolicySummaries: AccessPolicySummary[] | undefined;
|
|
1196
1434
|
nextToken?: string;
|
|
1197
1435
|
}
|
|
1436
|
+
export declare const TargetResourceType: {
|
|
1437
|
+
readonly ASSET: "ASSET";
|
|
1438
|
+
};
|
|
1439
|
+
export type TargetResourceType =
|
|
1440
|
+
(typeof TargetResourceType)[keyof typeof TargetResourceType];
|
|
1441
|
+
export interface ListActionsRequest {
|
|
1442
|
+
targetResourceType: TargetResourceType | undefined;
|
|
1443
|
+
targetResourceId: string | undefined;
|
|
1444
|
+
nextToken?: string;
|
|
1445
|
+
maxResults?: number;
|
|
1446
|
+
}
|
|
1447
|
+
export interface ListActionsResponse {
|
|
1448
|
+
actionSummaries: ActionSummary[] | undefined;
|
|
1449
|
+
nextToken: string | undefined;
|
|
1450
|
+
}
|
|
1451
|
+
export interface ListAssetModelCompositeModelsRequest {
|
|
1452
|
+
assetModelId: string | undefined;
|
|
1453
|
+
nextToken?: string;
|
|
1454
|
+
maxResults?: number;
|
|
1455
|
+
}
|
|
1456
|
+
export interface ListAssetModelCompositeModelsResponse {
|
|
1457
|
+
assetModelCompositeModelSummaries:
|
|
1458
|
+
| AssetModelCompositeModelSummary[]
|
|
1459
|
+
| undefined;
|
|
1460
|
+
nextToken?: string;
|
|
1461
|
+
}
|
|
1198
1462
|
export declare const ListAssetModelPropertiesFilter: {
|
|
1199
1463
|
readonly ALL: "ALL";
|
|
1200
1464
|
readonly BASE: "BASE";
|
|
@@ -1214,6 +1478,7 @@ export interface ListAssetModelPropertiesResponse {
|
|
|
1214
1478
|
export interface ListAssetModelsRequest {
|
|
1215
1479
|
nextToken?: string;
|
|
1216
1480
|
maxResults?: number;
|
|
1481
|
+
assetModelTypes?: AssetModelType[];
|
|
1217
1482
|
}
|
|
1218
1483
|
export interface ListAssetModelsResponse {
|
|
1219
1484
|
assetModelSummaries: AssetModelSummary[] | undefined;
|
|
@@ -1307,6 +1572,22 @@ export interface ListBulkImportJobsResponse {
|
|
|
1307
1572
|
jobSummaries: JobSummary[] | undefined;
|
|
1308
1573
|
nextToken?: string;
|
|
1309
1574
|
}
|
|
1575
|
+
export interface ListCompositionRelationshipsRequest {
|
|
1576
|
+
assetModelId: string | undefined;
|
|
1577
|
+
nextToken?: string;
|
|
1578
|
+
maxResults?: number;
|
|
1579
|
+
}
|
|
1580
|
+
export interface CompositionRelationshipSummary {
|
|
1581
|
+
assetModelId: string | undefined;
|
|
1582
|
+
assetModelCompositeModelId: string | undefined;
|
|
1583
|
+
assetModelCompositeModelType: string | undefined;
|
|
1584
|
+
}
|
|
1585
|
+
export interface ListCompositionRelationshipsResponse {
|
|
1586
|
+
compositionRelationshipSummaries:
|
|
1587
|
+
| CompositionRelationshipSummary[]
|
|
1588
|
+
| undefined;
|
|
1589
|
+
nextToken?: string;
|
|
1590
|
+
}
|
|
1310
1591
|
export interface ListDashboardsRequest {
|
|
1311
1592
|
projectId: string | undefined;
|
|
1312
1593
|
nextToken?: string;
|
|
@@ -1423,130 +1704,3 @@ export interface ListTimeSeriesResponse {
|
|
|
1423
1704
|
TimeSeriesSummaries: TimeSeriesSummary[] | undefined;
|
|
1424
1705
|
nextToken?: string;
|
|
1425
1706
|
}
|
|
1426
|
-
export interface PutDefaultEncryptionConfigurationRequest {
|
|
1427
|
-
encryptionType: EncryptionType | undefined;
|
|
1428
|
-
kmsKeyId?: string;
|
|
1429
|
-
}
|
|
1430
|
-
export interface PutDefaultEncryptionConfigurationResponse {
|
|
1431
|
-
encryptionType: EncryptionType | undefined;
|
|
1432
|
-
kmsKeyArn?: string;
|
|
1433
|
-
configurationStatus: ConfigurationStatus | undefined;
|
|
1434
|
-
}
|
|
1435
|
-
export interface PutLoggingOptionsRequest {
|
|
1436
|
-
loggingOptions: LoggingOptions | undefined;
|
|
1437
|
-
}
|
|
1438
|
-
export interface PutLoggingOptionsResponse {}
|
|
1439
|
-
export interface PutStorageConfigurationRequest {
|
|
1440
|
-
storageType: StorageType | undefined;
|
|
1441
|
-
multiLayerStorage?: MultiLayerStorage;
|
|
1442
|
-
disassociatedDataStorage?: DisassociatedDataStorageState;
|
|
1443
|
-
retentionPeriod?: RetentionPeriod;
|
|
1444
|
-
}
|
|
1445
|
-
export interface PutStorageConfigurationResponse {
|
|
1446
|
-
storageType: StorageType | undefined;
|
|
1447
|
-
multiLayerStorage?: MultiLayerStorage;
|
|
1448
|
-
disassociatedDataStorage?: DisassociatedDataStorageState;
|
|
1449
|
-
retentionPeriod?: RetentionPeriod;
|
|
1450
|
-
configurationStatus: ConfigurationStatus | undefined;
|
|
1451
|
-
}
|
|
1452
|
-
export interface TagResourceRequest {
|
|
1453
|
-
resourceArn: string | undefined;
|
|
1454
|
-
tags: Record<string, string> | undefined;
|
|
1455
|
-
}
|
|
1456
|
-
export interface TagResourceResponse {}
|
|
1457
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
1458
|
-
readonly name: "TooManyTagsException";
|
|
1459
|
-
readonly $fault: "client";
|
|
1460
|
-
resourceName?: string;
|
|
1461
|
-
constructor(
|
|
1462
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
1463
|
-
);
|
|
1464
|
-
}
|
|
1465
|
-
export interface UntagResourceRequest {
|
|
1466
|
-
resourceArn: string | undefined;
|
|
1467
|
-
tagKeys: string[] | undefined;
|
|
1468
|
-
}
|
|
1469
|
-
export interface UntagResourceResponse {}
|
|
1470
|
-
export interface UpdateAccessPolicyRequest {
|
|
1471
|
-
accessPolicyId: string | undefined;
|
|
1472
|
-
accessPolicyIdentity: Identity | undefined;
|
|
1473
|
-
accessPolicyResource: Resource | undefined;
|
|
1474
|
-
accessPolicyPermission: Permission | undefined;
|
|
1475
|
-
clientToken?: string;
|
|
1476
|
-
}
|
|
1477
|
-
export interface UpdateAccessPolicyResponse {}
|
|
1478
|
-
export interface UpdateAssetRequest {
|
|
1479
|
-
assetId: string | undefined;
|
|
1480
|
-
assetName: string | undefined;
|
|
1481
|
-
clientToken?: string;
|
|
1482
|
-
assetDescription?: string;
|
|
1483
|
-
}
|
|
1484
|
-
export interface UpdateAssetResponse {
|
|
1485
|
-
assetStatus: AssetStatus | undefined;
|
|
1486
|
-
}
|
|
1487
|
-
export interface UpdateAssetModelRequest {
|
|
1488
|
-
assetModelId: string | undefined;
|
|
1489
|
-
assetModelName: string | undefined;
|
|
1490
|
-
assetModelDescription?: string;
|
|
1491
|
-
assetModelProperties?: AssetModelProperty[];
|
|
1492
|
-
assetModelHierarchies?: AssetModelHierarchy[];
|
|
1493
|
-
assetModelCompositeModels?: AssetModelCompositeModel[];
|
|
1494
|
-
clientToken?: string;
|
|
1495
|
-
}
|
|
1496
|
-
export interface UpdateAssetModelResponse {
|
|
1497
|
-
assetModelStatus: AssetModelStatus | undefined;
|
|
1498
|
-
}
|
|
1499
|
-
export interface UpdateAssetPropertyRequest {
|
|
1500
|
-
assetId: string | undefined;
|
|
1501
|
-
propertyId: string | undefined;
|
|
1502
|
-
propertyAlias?: string;
|
|
1503
|
-
propertyNotificationState?: PropertyNotificationState;
|
|
1504
|
-
clientToken?: string;
|
|
1505
|
-
propertyUnit?: string;
|
|
1506
|
-
}
|
|
1507
|
-
export interface UpdateDashboardRequest {
|
|
1508
|
-
dashboardId: string | undefined;
|
|
1509
|
-
dashboardName: string | undefined;
|
|
1510
|
-
dashboardDescription?: string;
|
|
1511
|
-
dashboardDefinition: string | undefined;
|
|
1512
|
-
clientToken?: string;
|
|
1513
|
-
}
|
|
1514
|
-
export interface UpdateDashboardResponse {}
|
|
1515
|
-
export interface UpdateGatewayRequest {
|
|
1516
|
-
gatewayId: string | undefined;
|
|
1517
|
-
gatewayName: string | undefined;
|
|
1518
|
-
}
|
|
1519
|
-
export interface UpdateGatewayCapabilityConfigurationRequest {
|
|
1520
|
-
gatewayId: string | undefined;
|
|
1521
|
-
capabilityNamespace: string | undefined;
|
|
1522
|
-
capabilityConfiguration: string | undefined;
|
|
1523
|
-
}
|
|
1524
|
-
export interface UpdateGatewayCapabilityConfigurationResponse {
|
|
1525
|
-
capabilityNamespace: string | undefined;
|
|
1526
|
-
capabilitySyncStatus: CapabilitySyncStatus | undefined;
|
|
1527
|
-
}
|
|
1528
|
-
export interface Image {
|
|
1529
|
-
id?: string;
|
|
1530
|
-
file?: ImageFile;
|
|
1531
|
-
}
|
|
1532
|
-
export interface UpdatePortalRequest {
|
|
1533
|
-
portalId: string | undefined;
|
|
1534
|
-
portalName: string | undefined;
|
|
1535
|
-
portalDescription?: string;
|
|
1536
|
-
portalContactEmail: string | undefined;
|
|
1537
|
-
portalLogoImage?: Image;
|
|
1538
|
-
roleArn: string | undefined;
|
|
1539
|
-
clientToken?: string;
|
|
1540
|
-
notificationSenderEmail?: string;
|
|
1541
|
-
alarms?: Alarms;
|
|
1542
|
-
}
|
|
1543
|
-
export interface UpdatePortalResponse {
|
|
1544
|
-
portalStatus: PortalStatus | undefined;
|
|
1545
|
-
}
|
|
1546
|
-
export interface UpdateProjectRequest {
|
|
1547
|
-
projectId: string | undefined;
|
|
1548
|
-
projectName: string | undefined;
|
|
1549
|
-
projectDescription?: string;
|
|
1550
|
-
clientToken?: string;
|
|
1551
|
-
}
|
|
1552
|
-
export interface UpdateProjectResponse {}
|