aws-sdk-iotsitewise 1.59.0 → 1.60.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotsitewise/client.rb +1 -1
- data/lib/aws-sdk-iotsitewise/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-iotsitewise.rb +1 -1
- data/sig/client.rbs +1940 -0
- data/sig/errors.rbs +60 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +2098 -0
- data/sig/waiters.rbs +77 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,2098 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::IoTSiteWise
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AccessPolicySummary
|
17
|
+
attr_accessor id: ::String
|
18
|
+
attr_accessor identity: Types::Identity
|
19
|
+
attr_accessor resource: Types::Resource
|
20
|
+
attr_accessor permission: ("ADMINISTRATOR" | "VIEWER")
|
21
|
+
attr_accessor creation_date: ::Time
|
22
|
+
attr_accessor last_update_date: ::Time
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class ActionDefinition
|
27
|
+
attr_accessor action_definition_id: ::String
|
28
|
+
attr_accessor action_name: ::String
|
29
|
+
attr_accessor action_type: ::String
|
30
|
+
SENSITIVE: []
|
31
|
+
end
|
32
|
+
|
33
|
+
class ActionPayload
|
34
|
+
attr_accessor string_value: ::String
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class ActionSummary
|
39
|
+
attr_accessor action_id: ::String
|
40
|
+
attr_accessor action_definition_id: ::String
|
41
|
+
attr_accessor target_resource: Types::TargetResource
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
45
|
+
class AggregatedValue
|
46
|
+
attr_accessor timestamp: ::Time
|
47
|
+
attr_accessor quality: ("GOOD" | "BAD" | "UNCERTAIN")
|
48
|
+
attr_accessor value: Types::Aggregates
|
49
|
+
SENSITIVE: []
|
50
|
+
end
|
51
|
+
|
52
|
+
class Aggregates
|
53
|
+
attr_accessor average: ::Float
|
54
|
+
attr_accessor count: ::Float
|
55
|
+
attr_accessor maximum: ::Float
|
56
|
+
attr_accessor minimum: ::Float
|
57
|
+
attr_accessor sum: ::Float
|
58
|
+
attr_accessor standard_deviation: ::Float
|
59
|
+
SENSITIVE: []
|
60
|
+
end
|
61
|
+
|
62
|
+
class Alarms
|
63
|
+
attr_accessor alarm_role_arn: ::String
|
64
|
+
attr_accessor notification_lambda_arn: ::String
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class AssetCompositeModel
|
69
|
+
attr_accessor name: ::String
|
70
|
+
attr_accessor description: ::String
|
71
|
+
attr_accessor type: ::String
|
72
|
+
attr_accessor properties: ::Array[Types::AssetProperty]
|
73
|
+
attr_accessor id: ::String
|
74
|
+
attr_accessor external_id: ::String
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class AssetCompositeModelPathSegment
|
79
|
+
attr_accessor id: ::String
|
80
|
+
attr_accessor name: ::String
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class AssetCompositeModelSummary
|
85
|
+
attr_accessor id: ::String
|
86
|
+
attr_accessor external_id: ::String
|
87
|
+
attr_accessor name: ::String
|
88
|
+
attr_accessor type: ::String
|
89
|
+
attr_accessor description: ::String
|
90
|
+
attr_accessor path: ::Array[Types::AssetCompositeModelPathSegment]
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class AssetErrorDetails
|
95
|
+
attr_accessor asset_id: ::String
|
96
|
+
attr_accessor code: ("INTERNAL_FAILURE")
|
97
|
+
attr_accessor message: ::String
|
98
|
+
SENSITIVE: []
|
99
|
+
end
|
100
|
+
|
101
|
+
class AssetHierarchy
|
102
|
+
attr_accessor id: ::String
|
103
|
+
attr_accessor name: ::String
|
104
|
+
attr_accessor external_id: ::String
|
105
|
+
SENSITIVE: []
|
106
|
+
end
|
107
|
+
|
108
|
+
class AssetHierarchyInfo
|
109
|
+
attr_accessor parent_asset_id: ::String
|
110
|
+
attr_accessor child_asset_id: ::String
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class AssetModelCompositeModel
|
115
|
+
attr_accessor name: ::String
|
116
|
+
attr_accessor description: ::String
|
117
|
+
attr_accessor type: ::String
|
118
|
+
attr_accessor properties: ::Array[Types::AssetModelProperty]
|
119
|
+
attr_accessor id: ::String
|
120
|
+
attr_accessor external_id: ::String
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class AssetModelCompositeModelDefinition
|
125
|
+
attr_accessor name: ::String
|
126
|
+
attr_accessor description: ::String
|
127
|
+
attr_accessor type: ::String
|
128
|
+
attr_accessor properties: ::Array[Types::AssetModelPropertyDefinition]
|
129
|
+
attr_accessor id: ::String
|
130
|
+
attr_accessor external_id: ::String
|
131
|
+
SENSITIVE: []
|
132
|
+
end
|
133
|
+
|
134
|
+
class AssetModelCompositeModelPathSegment
|
135
|
+
attr_accessor id: ::String
|
136
|
+
attr_accessor name: ::String
|
137
|
+
SENSITIVE: []
|
138
|
+
end
|
139
|
+
|
140
|
+
class AssetModelCompositeModelSummary
|
141
|
+
attr_accessor id: ::String
|
142
|
+
attr_accessor external_id: ::String
|
143
|
+
attr_accessor name: ::String
|
144
|
+
attr_accessor type: ::String
|
145
|
+
attr_accessor description: ::String
|
146
|
+
attr_accessor path: ::Array[Types::AssetModelCompositeModelPathSegment]
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class AssetModelHierarchy
|
151
|
+
attr_accessor id: ::String
|
152
|
+
attr_accessor name: ::String
|
153
|
+
attr_accessor child_asset_model_id: ::String
|
154
|
+
attr_accessor external_id: ::String
|
155
|
+
SENSITIVE: []
|
156
|
+
end
|
157
|
+
|
158
|
+
class AssetModelHierarchyDefinition
|
159
|
+
attr_accessor name: ::String
|
160
|
+
attr_accessor child_asset_model_id: ::String
|
161
|
+
attr_accessor id: ::String
|
162
|
+
attr_accessor external_id: ::String
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class AssetModelProperty
|
167
|
+
attr_accessor id: ::String
|
168
|
+
attr_accessor name: ::String
|
169
|
+
attr_accessor data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT")
|
170
|
+
attr_accessor data_type_spec: ::String
|
171
|
+
attr_accessor unit: ::String
|
172
|
+
attr_accessor type: Types::PropertyType
|
173
|
+
attr_accessor path: ::Array[Types::AssetModelPropertyPathSegment]
|
174
|
+
attr_accessor external_id: ::String
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class AssetModelPropertyDefinition
|
179
|
+
attr_accessor name: ::String
|
180
|
+
attr_accessor data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT")
|
181
|
+
attr_accessor data_type_spec: ::String
|
182
|
+
attr_accessor unit: ::String
|
183
|
+
attr_accessor type: Types::PropertyType
|
184
|
+
attr_accessor id: ::String
|
185
|
+
attr_accessor external_id: ::String
|
186
|
+
SENSITIVE: []
|
187
|
+
end
|
188
|
+
|
189
|
+
class AssetModelPropertyPathSegment
|
190
|
+
attr_accessor id: ::String
|
191
|
+
attr_accessor name: ::String
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
195
|
+
class AssetModelPropertySummary
|
196
|
+
attr_accessor id: ::String
|
197
|
+
attr_accessor name: ::String
|
198
|
+
attr_accessor data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT")
|
199
|
+
attr_accessor data_type_spec: ::String
|
200
|
+
attr_accessor unit: ::String
|
201
|
+
attr_accessor type: Types::PropertyType
|
202
|
+
attr_accessor asset_model_composite_model_id: ::String
|
203
|
+
attr_accessor path: ::Array[Types::AssetModelPropertyPathSegment]
|
204
|
+
attr_accessor external_id: ::String
|
205
|
+
SENSITIVE: []
|
206
|
+
end
|
207
|
+
|
208
|
+
class AssetModelStatus
|
209
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "UPDATING" | "PROPAGATING" | "DELETING" | "FAILED")
|
210
|
+
attr_accessor error: Types::ErrorDetails
|
211
|
+
SENSITIVE: []
|
212
|
+
end
|
213
|
+
|
214
|
+
class AssetModelSummary
|
215
|
+
attr_accessor id: ::String
|
216
|
+
attr_accessor arn: ::String
|
217
|
+
attr_accessor name: ::String
|
218
|
+
attr_accessor description: ::String
|
219
|
+
attr_accessor creation_date: ::Time
|
220
|
+
attr_accessor last_update_date: ::Time
|
221
|
+
attr_accessor status: Types::AssetModelStatus
|
222
|
+
attr_accessor asset_model_type: ("ASSET_MODEL" | "COMPONENT_MODEL")
|
223
|
+
attr_accessor external_id: ::String
|
224
|
+
SENSITIVE: []
|
225
|
+
end
|
226
|
+
|
227
|
+
class AssetProperty
|
228
|
+
attr_accessor id: ::String
|
229
|
+
attr_accessor name: ::String
|
230
|
+
attr_accessor alias: ::String
|
231
|
+
attr_accessor notification: Types::PropertyNotification
|
232
|
+
attr_accessor data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT")
|
233
|
+
attr_accessor data_type_spec: ::String
|
234
|
+
attr_accessor unit: ::String
|
235
|
+
attr_accessor path: ::Array[Types::AssetPropertyPathSegment]
|
236
|
+
attr_accessor external_id: ::String
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class AssetPropertyPathSegment
|
241
|
+
attr_accessor id: ::String
|
242
|
+
attr_accessor name: ::String
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class AssetPropertySummary
|
247
|
+
attr_accessor id: ::String
|
248
|
+
attr_accessor alias: ::String
|
249
|
+
attr_accessor unit: ::String
|
250
|
+
attr_accessor notification: Types::PropertyNotification
|
251
|
+
attr_accessor asset_composite_model_id: ::String
|
252
|
+
attr_accessor path: ::Array[Types::AssetPropertyPathSegment]
|
253
|
+
attr_accessor external_id: ::String
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class AssetPropertyValue
|
258
|
+
attr_accessor value: Types::Variant
|
259
|
+
attr_accessor timestamp: Types::TimeInNanos
|
260
|
+
attr_accessor quality: ("GOOD" | "BAD" | "UNCERTAIN")
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class AssetRelationshipSummary
|
265
|
+
attr_accessor hierarchy_info: Types::AssetHierarchyInfo
|
266
|
+
attr_accessor relationship_type: ("HIERARCHY")
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class AssetStatus
|
271
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
|
272
|
+
attr_accessor error: Types::ErrorDetails
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class AssetSummary
|
277
|
+
attr_accessor id: ::String
|
278
|
+
attr_accessor arn: ::String
|
279
|
+
attr_accessor name: ::String
|
280
|
+
attr_accessor asset_model_id: ::String
|
281
|
+
attr_accessor creation_date: ::Time
|
282
|
+
attr_accessor last_update_date: ::Time
|
283
|
+
attr_accessor status: Types::AssetStatus
|
284
|
+
attr_accessor hierarchies: ::Array[Types::AssetHierarchy]
|
285
|
+
attr_accessor description: ::String
|
286
|
+
attr_accessor external_id: ::String
|
287
|
+
SENSITIVE: []
|
288
|
+
end
|
289
|
+
|
290
|
+
class AssociateAssetsRequest
|
291
|
+
attr_accessor asset_id: ::String
|
292
|
+
attr_accessor hierarchy_id: ::String
|
293
|
+
attr_accessor child_asset_id: ::String
|
294
|
+
attr_accessor client_token: ::String
|
295
|
+
SENSITIVE: []
|
296
|
+
end
|
297
|
+
|
298
|
+
class AssociateTimeSeriesToAssetPropertyRequest
|
299
|
+
attr_accessor alias: ::String
|
300
|
+
attr_accessor asset_id: ::String
|
301
|
+
attr_accessor property_id: ::String
|
302
|
+
attr_accessor client_token: ::String
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class AssociatedAssetsSummary
|
307
|
+
attr_accessor id: ::String
|
308
|
+
attr_accessor arn: ::String
|
309
|
+
attr_accessor name: ::String
|
310
|
+
attr_accessor asset_model_id: ::String
|
311
|
+
attr_accessor creation_date: ::Time
|
312
|
+
attr_accessor last_update_date: ::Time
|
313
|
+
attr_accessor status: Types::AssetStatus
|
314
|
+
attr_accessor hierarchies: ::Array[Types::AssetHierarchy]
|
315
|
+
attr_accessor description: ::String
|
316
|
+
attr_accessor external_id: ::String
|
317
|
+
SENSITIVE: []
|
318
|
+
end
|
319
|
+
|
320
|
+
class Attribute
|
321
|
+
attr_accessor default_value: ::String
|
322
|
+
SENSITIVE: []
|
323
|
+
end
|
324
|
+
|
325
|
+
class BatchAssociateProjectAssetsRequest
|
326
|
+
attr_accessor project_id: ::String
|
327
|
+
attr_accessor asset_ids: ::Array[::String]
|
328
|
+
attr_accessor client_token: ::String
|
329
|
+
SENSITIVE: []
|
330
|
+
end
|
331
|
+
|
332
|
+
class BatchAssociateProjectAssetsResponse
|
333
|
+
attr_accessor errors: ::Array[Types::AssetErrorDetails]
|
334
|
+
SENSITIVE: []
|
335
|
+
end
|
336
|
+
|
337
|
+
class BatchDisassociateProjectAssetsRequest
|
338
|
+
attr_accessor project_id: ::String
|
339
|
+
attr_accessor asset_ids: ::Array[::String]
|
340
|
+
attr_accessor client_token: ::String
|
341
|
+
SENSITIVE: []
|
342
|
+
end
|
343
|
+
|
344
|
+
class BatchDisassociateProjectAssetsResponse
|
345
|
+
attr_accessor errors: ::Array[Types::AssetErrorDetails]
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class BatchGetAssetPropertyAggregatesEntry
|
350
|
+
attr_accessor entry_id: ::String
|
351
|
+
attr_accessor asset_id: ::String
|
352
|
+
attr_accessor property_id: ::String
|
353
|
+
attr_accessor property_alias: ::String
|
354
|
+
attr_accessor aggregate_types: ::Array[("AVERAGE" | "COUNT" | "MAXIMUM" | "MINIMUM" | "SUM" | "STANDARD_DEVIATION")]
|
355
|
+
attr_accessor resolution: ::String
|
356
|
+
attr_accessor start_date: ::Time
|
357
|
+
attr_accessor end_date: ::Time
|
358
|
+
attr_accessor qualities: ::Array[("GOOD" | "BAD" | "UNCERTAIN")]
|
359
|
+
attr_accessor time_ordering: ("ASCENDING" | "DESCENDING")
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class BatchGetAssetPropertyAggregatesErrorEntry
|
364
|
+
attr_accessor error_code: ("ResourceNotFoundException" | "InvalidRequestException" | "AccessDeniedException")
|
365
|
+
attr_accessor error_message: ::String
|
366
|
+
attr_accessor entry_id: ::String
|
367
|
+
SENSITIVE: []
|
368
|
+
end
|
369
|
+
|
370
|
+
class BatchGetAssetPropertyAggregatesErrorInfo
|
371
|
+
attr_accessor error_code: ("ResourceNotFoundException" | "InvalidRequestException" | "AccessDeniedException")
|
372
|
+
attr_accessor error_timestamp: ::Time
|
373
|
+
SENSITIVE: []
|
374
|
+
end
|
375
|
+
|
376
|
+
class BatchGetAssetPropertyAggregatesRequest
|
377
|
+
attr_accessor entries: ::Array[Types::BatchGetAssetPropertyAggregatesEntry]
|
378
|
+
attr_accessor next_token: ::String
|
379
|
+
attr_accessor max_results: ::Integer
|
380
|
+
SENSITIVE: []
|
381
|
+
end
|
382
|
+
|
383
|
+
class BatchGetAssetPropertyAggregatesResponse
|
384
|
+
attr_accessor error_entries: ::Array[Types::BatchGetAssetPropertyAggregatesErrorEntry]
|
385
|
+
attr_accessor success_entries: ::Array[Types::BatchGetAssetPropertyAggregatesSuccessEntry]
|
386
|
+
attr_accessor skipped_entries: ::Array[Types::BatchGetAssetPropertyAggregatesSkippedEntry]
|
387
|
+
attr_accessor next_token: ::String
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class BatchGetAssetPropertyAggregatesSkippedEntry
|
392
|
+
attr_accessor entry_id: ::String
|
393
|
+
attr_accessor completion_status: ("SUCCESS" | "ERROR")
|
394
|
+
attr_accessor error_info: Types::BatchGetAssetPropertyAggregatesErrorInfo
|
395
|
+
SENSITIVE: []
|
396
|
+
end
|
397
|
+
|
398
|
+
class BatchGetAssetPropertyAggregatesSuccessEntry
|
399
|
+
attr_accessor entry_id: ::String
|
400
|
+
attr_accessor aggregated_values: ::Array[Types::AggregatedValue]
|
401
|
+
SENSITIVE: []
|
402
|
+
end
|
403
|
+
|
404
|
+
class BatchGetAssetPropertyValueEntry
|
405
|
+
attr_accessor entry_id: ::String
|
406
|
+
attr_accessor asset_id: ::String
|
407
|
+
attr_accessor property_id: ::String
|
408
|
+
attr_accessor property_alias: ::String
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class BatchGetAssetPropertyValueErrorEntry
|
413
|
+
attr_accessor error_code: ("ResourceNotFoundException" | "InvalidRequestException" | "AccessDeniedException")
|
414
|
+
attr_accessor error_message: ::String
|
415
|
+
attr_accessor entry_id: ::String
|
416
|
+
SENSITIVE: []
|
417
|
+
end
|
418
|
+
|
419
|
+
class BatchGetAssetPropertyValueErrorInfo
|
420
|
+
attr_accessor error_code: ("ResourceNotFoundException" | "InvalidRequestException" | "AccessDeniedException")
|
421
|
+
attr_accessor error_timestamp: ::Time
|
422
|
+
SENSITIVE: []
|
423
|
+
end
|
424
|
+
|
425
|
+
class BatchGetAssetPropertyValueHistoryEntry
|
426
|
+
attr_accessor entry_id: ::String
|
427
|
+
attr_accessor asset_id: ::String
|
428
|
+
attr_accessor property_id: ::String
|
429
|
+
attr_accessor property_alias: ::String
|
430
|
+
attr_accessor start_date: ::Time
|
431
|
+
attr_accessor end_date: ::Time
|
432
|
+
attr_accessor qualities: ::Array[("GOOD" | "BAD" | "UNCERTAIN")]
|
433
|
+
attr_accessor time_ordering: ("ASCENDING" | "DESCENDING")
|
434
|
+
SENSITIVE: []
|
435
|
+
end
|
436
|
+
|
437
|
+
class BatchGetAssetPropertyValueHistoryErrorEntry
|
438
|
+
attr_accessor error_code: ("ResourceNotFoundException" | "InvalidRequestException" | "AccessDeniedException")
|
439
|
+
attr_accessor error_message: ::String
|
440
|
+
attr_accessor entry_id: ::String
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
|
444
|
+
class BatchGetAssetPropertyValueHistoryErrorInfo
|
445
|
+
attr_accessor error_code: ("ResourceNotFoundException" | "InvalidRequestException" | "AccessDeniedException")
|
446
|
+
attr_accessor error_timestamp: ::Time
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class BatchGetAssetPropertyValueHistoryRequest
|
451
|
+
attr_accessor entries: ::Array[Types::BatchGetAssetPropertyValueHistoryEntry]
|
452
|
+
attr_accessor next_token: ::String
|
453
|
+
attr_accessor max_results: ::Integer
|
454
|
+
SENSITIVE: []
|
455
|
+
end
|
456
|
+
|
457
|
+
class BatchGetAssetPropertyValueHistoryResponse
|
458
|
+
attr_accessor error_entries: ::Array[Types::BatchGetAssetPropertyValueHistoryErrorEntry]
|
459
|
+
attr_accessor success_entries: ::Array[Types::BatchGetAssetPropertyValueHistorySuccessEntry]
|
460
|
+
attr_accessor skipped_entries: ::Array[Types::BatchGetAssetPropertyValueHistorySkippedEntry]
|
461
|
+
attr_accessor next_token: ::String
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class BatchGetAssetPropertyValueHistorySkippedEntry
|
466
|
+
attr_accessor entry_id: ::String
|
467
|
+
attr_accessor completion_status: ("SUCCESS" | "ERROR")
|
468
|
+
attr_accessor error_info: Types::BatchGetAssetPropertyValueHistoryErrorInfo
|
469
|
+
SENSITIVE: []
|
470
|
+
end
|
471
|
+
|
472
|
+
class BatchGetAssetPropertyValueHistorySuccessEntry
|
473
|
+
attr_accessor entry_id: ::String
|
474
|
+
attr_accessor asset_property_value_history: ::Array[Types::AssetPropertyValue]
|
475
|
+
SENSITIVE: []
|
476
|
+
end
|
477
|
+
|
478
|
+
class BatchGetAssetPropertyValueRequest
|
479
|
+
attr_accessor entries: ::Array[Types::BatchGetAssetPropertyValueEntry]
|
480
|
+
attr_accessor next_token: ::String
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
484
|
+
class BatchGetAssetPropertyValueResponse
|
485
|
+
attr_accessor error_entries: ::Array[Types::BatchGetAssetPropertyValueErrorEntry]
|
486
|
+
attr_accessor success_entries: ::Array[Types::BatchGetAssetPropertyValueSuccessEntry]
|
487
|
+
attr_accessor skipped_entries: ::Array[Types::BatchGetAssetPropertyValueSkippedEntry]
|
488
|
+
attr_accessor next_token: ::String
|
489
|
+
SENSITIVE: []
|
490
|
+
end
|
491
|
+
|
492
|
+
class BatchGetAssetPropertyValueSkippedEntry
|
493
|
+
attr_accessor entry_id: ::String
|
494
|
+
attr_accessor completion_status: ("SUCCESS" | "ERROR")
|
495
|
+
attr_accessor error_info: Types::BatchGetAssetPropertyValueErrorInfo
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
499
|
+
class BatchGetAssetPropertyValueSuccessEntry
|
500
|
+
attr_accessor entry_id: ::String
|
501
|
+
attr_accessor asset_property_value: Types::AssetPropertyValue
|
502
|
+
SENSITIVE: []
|
503
|
+
end
|
504
|
+
|
505
|
+
class BatchPutAssetPropertyError
|
506
|
+
attr_accessor error_code: ("ResourceNotFoundException" | "InvalidRequestException" | "InternalFailureException" | "ServiceUnavailableException" | "ThrottlingException" | "LimitExceededException" | "ConflictingOperationException" | "TimestampOutOfRangeException" | "AccessDeniedException")
|
507
|
+
attr_accessor error_message: ::String
|
508
|
+
attr_accessor timestamps: ::Array[Types::TimeInNanos]
|
509
|
+
SENSITIVE: []
|
510
|
+
end
|
511
|
+
|
512
|
+
class BatchPutAssetPropertyErrorEntry
|
513
|
+
attr_accessor entry_id: ::String
|
514
|
+
attr_accessor errors: ::Array[Types::BatchPutAssetPropertyError]
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class BatchPutAssetPropertyValueRequest
|
519
|
+
attr_accessor entries: ::Array[Types::PutAssetPropertyValueEntry]
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
|
523
|
+
class BatchPutAssetPropertyValueResponse
|
524
|
+
attr_accessor error_entries: ::Array[Types::BatchPutAssetPropertyErrorEntry]
|
525
|
+
SENSITIVE: []
|
526
|
+
end
|
527
|
+
|
528
|
+
class ColumnInfo
|
529
|
+
attr_accessor name: ::String
|
530
|
+
attr_accessor type: Types::ColumnType
|
531
|
+
SENSITIVE: []
|
532
|
+
end
|
533
|
+
|
534
|
+
class ColumnType
|
535
|
+
attr_accessor scalar_type: ("BOOLEAN" | "INT" | "DOUBLE" | "TIMESTAMP" | "STRING")
|
536
|
+
SENSITIVE: []
|
537
|
+
end
|
538
|
+
|
539
|
+
class CompositeModelProperty
|
540
|
+
attr_accessor name: ::String
|
541
|
+
attr_accessor type: ::String
|
542
|
+
attr_accessor asset_property: Types::Property
|
543
|
+
attr_accessor id: ::String
|
544
|
+
attr_accessor external_id: ::String
|
545
|
+
SENSITIVE: []
|
546
|
+
end
|
547
|
+
|
548
|
+
class CompositionDetails
|
549
|
+
attr_accessor composition_relationship: ::Array[Types::CompositionRelationshipItem]
|
550
|
+
SENSITIVE: []
|
551
|
+
end
|
552
|
+
|
553
|
+
class CompositionRelationshipItem
|
554
|
+
attr_accessor id: ::String
|
555
|
+
SENSITIVE: []
|
556
|
+
end
|
557
|
+
|
558
|
+
class CompositionRelationshipSummary
|
559
|
+
attr_accessor asset_model_id: ::String
|
560
|
+
attr_accessor asset_model_composite_model_id: ::String
|
561
|
+
attr_accessor asset_model_composite_model_type: ::String
|
562
|
+
SENSITIVE: []
|
563
|
+
end
|
564
|
+
|
565
|
+
class ConfigurationErrorDetails
|
566
|
+
attr_accessor code: ("VALIDATION_ERROR" | "INTERNAL_FAILURE")
|
567
|
+
attr_accessor message: ::String
|
568
|
+
SENSITIVE: []
|
569
|
+
end
|
570
|
+
|
571
|
+
class ConfigurationStatus
|
572
|
+
attr_accessor state: ("ACTIVE" | "UPDATE_IN_PROGRESS" | "UPDATE_FAILED")
|
573
|
+
attr_accessor error: Types::ConfigurationErrorDetails
|
574
|
+
SENSITIVE: []
|
575
|
+
end
|
576
|
+
|
577
|
+
class ConflictingOperationException
|
578
|
+
attr_accessor message: ::String
|
579
|
+
attr_accessor resource_id: ::String
|
580
|
+
attr_accessor resource_arn: ::String
|
581
|
+
SENSITIVE: []
|
582
|
+
end
|
583
|
+
|
584
|
+
class CreateAccessPolicyRequest
|
585
|
+
attr_accessor access_policy_identity: Types::Identity
|
586
|
+
attr_accessor access_policy_resource: Types::Resource
|
587
|
+
attr_accessor access_policy_permission: ("ADMINISTRATOR" | "VIEWER")
|
588
|
+
attr_accessor client_token: ::String
|
589
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
590
|
+
SENSITIVE: []
|
591
|
+
end
|
592
|
+
|
593
|
+
class CreateAccessPolicyResponse
|
594
|
+
attr_accessor access_policy_id: ::String
|
595
|
+
attr_accessor access_policy_arn: ::String
|
596
|
+
SENSITIVE: []
|
597
|
+
end
|
598
|
+
|
599
|
+
class CreateAssetModelCompositeModelRequest
|
600
|
+
attr_accessor asset_model_id: ::String
|
601
|
+
attr_accessor parent_asset_model_composite_model_id: ::String
|
602
|
+
attr_accessor asset_model_composite_model_external_id: ::String
|
603
|
+
attr_accessor asset_model_composite_model_id: ::String
|
604
|
+
attr_accessor asset_model_composite_model_description: ::String
|
605
|
+
attr_accessor asset_model_composite_model_name: ::String
|
606
|
+
attr_accessor asset_model_composite_model_type: ::String
|
607
|
+
attr_accessor client_token: ::String
|
608
|
+
attr_accessor composed_asset_model_id: ::String
|
609
|
+
attr_accessor asset_model_composite_model_properties: ::Array[Types::AssetModelPropertyDefinition]
|
610
|
+
SENSITIVE: []
|
611
|
+
end
|
612
|
+
|
613
|
+
class CreateAssetModelCompositeModelResponse
|
614
|
+
attr_accessor asset_model_composite_model_id: ::String
|
615
|
+
attr_accessor asset_model_composite_model_path: ::Array[Types::AssetModelCompositeModelPathSegment]
|
616
|
+
attr_accessor asset_model_status: Types::AssetModelStatus
|
617
|
+
SENSITIVE: []
|
618
|
+
end
|
619
|
+
|
620
|
+
class CreateAssetModelRequest
|
621
|
+
attr_accessor asset_model_name: ::String
|
622
|
+
attr_accessor asset_model_description: ::String
|
623
|
+
attr_accessor asset_model_properties: ::Array[Types::AssetModelPropertyDefinition]
|
624
|
+
attr_accessor asset_model_hierarchies: ::Array[Types::AssetModelHierarchyDefinition]
|
625
|
+
attr_accessor asset_model_composite_models: ::Array[Types::AssetModelCompositeModelDefinition]
|
626
|
+
attr_accessor client_token: ::String
|
627
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
628
|
+
attr_accessor asset_model_id: ::String
|
629
|
+
attr_accessor asset_model_external_id: ::String
|
630
|
+
attr_accessor asset_model_type: ("ASSET_MODEL" | "COMPONENT_MODEL")
|
631
|
+
SENSITIVE: []
|
632
|
+
end
|
633
|
+
|
634
|
+
class CreateAssetModelResponse
|
635
|
+
attr_accessor asset_model_id: ::String
|
636
|
+
attr_accessor asset_model_arn: ::String
|
637
|
+
attr_accessor asset_model_status: Types::AssetModelStatus
|
638
|
+
SENSITIVE: []
|
639
|
+
end
|
640
|
+
|
641
|
+
class CreateAssetRequest
|
642
|
+
attr_accessor asset_name: ::String
|
643
|
+
attr_accessor asset_model_id: ::String
|
644
|
+
attr_accessor client_token: ::String
|
645
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
646
|
+
attr_accessor asset_description: ::String
|
647
|
+
attr_accessor asset_id: ::String
|
648
|
+
attr_accessor asset_external_id: ::String
|
649
|
+
SENSITIVE: []
|
650
|
+
end
|
651
|
+
|
652
|
+
class CreateAssetResponse
|
653
|
+
attr_accessor asset_id: ::String
|
654
|
+
attr_accessor asset_arn: ::String
|
655
|
+
attr_accessor asset_status: Types::AssetStatus
|
656
|
+
SENSITIVE: []
|
657
|
+
end
|
658
|
+
|
659
|
+
class CreateBulkImportJobRequest
|
660
|
+
attr_accessor job_name: ::String
|
661
|
+
attr_accessor job_role_arn: ::String
|
662
|
+
attr_accessor files: ::Array[Types::File]
|
663
|
+
attr_accessor error_report_location: Types::ErrorReportLocation
|
664
|
+
attr_accessor job_configuration: Types::JobConfiguration
|
665
|
+
attr_accessor adaptive_ingestion: bool
|
666
|
+
attr_accessor delete_files_after_import: bool
|
667
|
+
SENSITIVE: []
|
668
|
+
end
|
669
|
+
|
670
|
+
class CreateBulkImportJobResponse
|
671
|
+
attr_accessor job_id: ::String
|
672
|
+
attr_accessor job_name: ::String
|
673
|
+
attr_accessor job_status: ("PENDING" | "CANCELLED" | "RUNNING" | "COMPLETED" | "FAILED" | "COMPLETED_WITH_FAILURES")
|
674
|
+
SENSITIVE: []
|
675
|
+
end
|
676
|
+
|
677
|
+
class CreateDashboardRequest
|
678
|
+
attr_accessor project_id: ::String
|
679
|
+
attr_accessor dashboard_name: ::String
|
680
|
+
attr_accessor dashboard_description: ::String
|
681
|
+
attr_accessor dashboard_definition: ::String
|
682
|
+
attr_accessor client_token: ::String
|
683
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
684
|
+
SENSITIVE: []
|
685
|
+
end
|
686
|
+
|
687
|
+
class CreateDashboardResponse
|
688
|
+
attr_accessor dashboard_id: ::String
|
689
|
+
attr_accessor dashboard_arn: ::String
|
690
|
+
SENSITIVE: []
|
691
|
+
end
|
692
|
+
|
693
|
+
class CreateGatewayRequest
|
694
|
+
attr_accessor gateway_name: ::String
|
695
|
+
attr_accessor gateway_platform: Types::GatewayPlatform
|
696
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
697
|
+
SENSITIVE: []
|
698
|
+
end
|
699
|
+
|
700
|
+
class CreateGatewayResponse
|
701
|
+
attr_accessor gateway_id: ::String
|
702
|
+
attr_accessor gateway_arn: ::String
|
703
|
+
SENSITIVE: []
|
704
|
+
end
|
705
|
+
|
706
|
+
class CreatePortalRequest
|
707
|
+
attr_accessor portal_name: ::String
|
708
|
+
attr_accessor portal_description: ::String
|
709
|
+
attr_accessor portal_contact_email: ::String
|
710
|
+
attr_accessor client_token: ::String
|
711
|
+
attr_accessor portal_logo_image_file: Types::ImageFile
|
712
|
+
attr_accessor role_arn: ::String
|
713
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
714
|
+
attr_accessor portal_auth_mode: ("IAM" | "SSO")
|
715
|
+
attr_accessor notification_sender_email: ::String
|
716
|
+
attr_accessor alarms: Types::Alarms
|
717
|
+
SENSITIVE: []
|
718
|
+
end
|
719
|
+
|
720
|
+
class CreatePortalResponse
|
721
|
+
attr_accessor portal_id: ::String
|
722
|
+
attr_accessor portal_arn: ::String
|
723
|
+
attr_accessor portal_start_url: ::String
|
724
|
+
attr_accessor portal_status: Types::PortalStatus
|
725
|
+
attr_accessor sso_application_id: ::String
|
726
|
+
SENSITIVE: []
|
727
|
+
end
|
728
|
+
|
729
|
+
class CreateProjectRequest
|
730
|
+
attr_accessor portal_id: ::String
|
731
|
+
attr_accessor project_name: ::String
|
732
|
+
attr_accessor project_description: ::String
|
733
|
+
attr_accessor client_token: ::String
|
734
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
735
|
+
SENSITIVE: []
|
736
|
+
end
|
737
|
+
|
738
|
+
class CreateProjectResponse
|
739
|
+
attr_accessor project_id: ::String
|
740
|
+
attr_accessor project_arn: ::String
|
741
|
+
SENSITIVE: []
|
742
|
+
end
|
743
|
+
|
744
|
+
class Csv
|
745
|
+
attr_accessor column_names: ::Array[("ALIAS" | "ASSET_ID" | "PROPERTY_ID" | "DATA_TYPE" | "TIMESTAMP_SECONDS" | "TIMESTAMP_NANO_OFFSET" | "QUALITY" | "VALUE")]
|
746
|
+
SENSITIVE: []
|
747
|
+
end
|
748
|
+
|
749
|
+
class CustomerManagedS3Storage
|
750
|
+
attr_accessor s3_resource_arn: ::String
|
751
|
+
attr_accessor role_arn: ::String
|
752
|
+
SENSITIVE: []
|
753
|
+
end
|
754
|
+
|
755
|
+
class DashboardSummary
|
756
|
+
attr_accessor id: ::String
|
757
|
+
attr_accessor name: ::String
|
758
|
+
attr_accessor description: ::String
|
759
|
+
attr_accessor creation_date: ::Time
|
760
|
+
attr_accessor last_update_date: ::Time
|
761
|
+
SENSITIVE: []
|
762
|
+
end
|
763
|
+
|
764
|
+
class Datum
|
765
|
+
attr_accessor scalar_value: ::String
|
766
|
+
attr_accessor array_value: ::Array[Types::Datum]
|
767
|
+
attr_accessor row_value: Types::Row
|
768
|
+
attr_accessor null_value: bool
|
769
|
+
SENSITIVE: []
|
770
|
+
end
|
771
|
+
|
772
|
+
class DeleteAccessPolicyRequest
|
773
|
+
attr_accessor access_policy_id: ::String
|
774
|
+
attr_accessor client_token: ::String
|
775
|
+
SENSITIVE: []
|
776
|
+
end
|
777
|
+
|
778
|
+
class DeleteAccessPolicyResponse < Aws::EmptyStructure
|
779
|
+
end
|
780
|
+
|
781
|
+
class DeleteAssetModelCompositeModelRequest
|
782
|
+
attr_accessor asset_model_id: ::String
|
783
|
+
attr_accessor asset_model_composite_model_id: ::String
|
784
|
+
attr_accessor client_token: ::String
|
785
|
+
SENSITIVE: []
|
786
|
+
end
|
787
|
+
|
788
|
+
class DeleteAssetModelCompositeModelResponse
|
789
|
+
attr_accessor asset_model_status: Types::AssetModelStatus
|
790
|
+
SENSITIVE: []
|
791
|
+
end
|
792
|
+
|
793
|
+
class DeleteAssetModelRequest
|
794
|
+
attr_accessor asset_model_id: ::String
|
795
|
+
attr_accessor client_token: ::String
|
796
|
+
SENSITIVE: []
|
797
|
+
end
|
798
|
+
|
799
|
+
class DeleteAssetModelResponse
|
800
|
+
attr_accessor asset_model_status: Types::AssetModelStatus
|
801
|
+
SENSITIVE: []
|
802
|
+
end
|
803
|
+
|
804
|
+
class DeleteAssetRequest
|
805
|
+
attr_accessor asset_id: ::String
|
806
|
+
attr_accessor client_token: ::String
|
807
|
+
SENSITIVE: []
|
808
|
+
end
|
809
|
+
|
810
|
+
class DeleteAssetResponse
|
811
|
+
attr_accessor asset_status: Types::AssetStatus
|
812
|
+
SENSITIVE: []
|
813
|
+
end
|
814
|
+
|
815
|
+
class DeleteDashboardRequest
|
816
|
+
attr_accessor dashboard_id: ::String
|
817
|
+
attr_accessor client_token: ::String
|
818
|
+
SENSITIVE: []
|
819
|
+
end
|
820
|
+
|
821
|
+
class DeleteDashboardResponse < Aws::EmptyStructure
|
822
|
+
end
|
823
|
+
|
824
|
+
class DeleteGatewayRequest
|
825
|
+
attr_accessor gateway_id: ::String
|
826
|
+
SENSITIVE: []
|
827
|
+
end
|
828
|
+
|
829
|
+
class DeletePortalRequest
|
830
|
+
attr_accessor portal_id: ::String
|
831
|
+
attr_accessor client_token: ::String
|
832
|
+
SENSITIVE: []
|
833
|
+
end
|
834
|
+
|
835
|
+
class DeletePortalResponse
|
836
|
+
attr_accessor portal_status: Types::PortalStatus
|
837
|
+
SENSITIVE: []
|
838
|
+
end
|
839
|
+
|
840
|
+
class DeleteProjectRequest
|
841
|
+
attr_accessor project_id: ::String
|
842
|
+
attr_accessor client_token: ::String
|
843
|
+
SENSITIVE: []
|
844
|
+
end
|
845
|
+
|
846
|
+
class DeleteProjectResponse < Aws::EmptyStructure
|
847
|
+
end
|
848
|
+
|
849
|
+
class DeleteTimeSeriesRequest
|
850
|
+
attr_accessor alias: ::String
|
851
|
+
attr_accessor asset_id: ::String
|
852
|
+
attr_accessor property_id: ::String
|
853
|
+
attr_accessor client_token: ::String
|
854
|
+
SENSITIVE: []
|
855
|
+
end
|
856
|
+
|
857
|
+
class DescribeAccessPolicyRequest
|
858
|
+
attr_accessor access_policy_id: ::String
|
859
|
+
SENSITIVE: []
|
860
|
+
end
|
861
|
+
|
862
|
+
class DescribeAccessPolicyResponse
|
863
|
+
attr_accessor access_policy_id: ::String
|
864
|
+
attr_accessor access_policy_arn: ::String
|
865
|
+
attr_accessor access_policy_identity: Types::Identity
|
866
|
+
attr_accessor access_policy_resource: Types::Resource
|
867
|
+
attr_accessor access_policy_permission: ("ADMINISTRATOR" | "VIEWER")
|
868
|
+
attr_accessor access_policy_creation_date: ::Time
|
869
|
+
attr_accessor access_policy_last_update_date: ::Time
|
870
|
+
SENSITIVE: []
|
871
|
+
end
|
872
|
+
|
873
|
+
class DescribeActionRequest
|
874
|
+
attr_accessor action_id: ::String
|
875
|
+
SENSITIVE: []
|
876
|
+
end
|
877
|
+
|
878
|
+
class DescribeActionResponse
|
879
|
+
attr_accessor action_id: ::String
|
880
|
+
attr_accessor target_resource: Types::TargetResource
|
881
|
+
attr_accessor action_definition_id: ::String
|
882
|
+
attr_accessor action_payload: Types::ActionPayload
|
883
|
+
attr_accessor execution_time: ::Time
|
884
|
+
SENSITIVE: []
|
885
|
+
end
|
886
|
+
|
887
|
+
class DescribeAssetCompositeModelRequest
|
888
|
+
attr_accessor asset_id: ::String
|
889
|
+
attr_accessor asset_composite_model_id: ::String
|
890
|
+
SENSITIVE: []
|
891
|
+
end
|
892
|
+
|
893
|
+
class DescribeAssetCompositeModelResponse
|
894
|
+
attr_accessor asset_id: ::String
|
895
|
+
attr_accessor asset_composite_model_id: ::String
|
896
|
+
attr_accessor asset_composite_model_external_id: ::String
|
897
|
+
attr_accessor asset_composite_model_path: ::Array[Types::AssetCompositeModelPathSegment]
|
898
|
+
attr_accessor asset_composite_model_name: ::String
|
899
|
+
attr_accessor asset_composite_model_description: ::String
|
900
|
+
attr_accessor asset_composite_model_type: ::String
|
901
|
+
attr_accessor asset_composite_model_properties: ::Array[Types::AssetProperty]
|
902
|
+
attr_accessor asset_composite_model_summaries: ::Array[Types::AssetCompositeModelSummary]
|
903
|
+
attr_accessor action_definitions: ::Array[Types::ActionDefinition]
|
904
|
+
SENSITIVE: []
|
905
|
+
end
|
906
|
+
|
907
|
+
class DescribeAssetModelCompositeModelRequest
|
908
|
+
attr_accessor asset_model_id: ::String
|
909
|
+
attr_accessor asset_model_composite_model_id: ::String
|
910
|
+
SENSITIVE: []
|
911
|
+
end
|
912
|
+
|
913
|
+
class DescribeAssetModelCompositeModelResponse
|
914
|
+
attr_accessor asset_model_id: ::String
|
915
|
+
attr_accessor asset_model_composite_model_id: ::String
|
916
|
+
attr_accessor asset_model_composite_model_external_id: ::String
|
917
|
+
attr_accessor asset_model_composite_model_path: ::Array[Types::AssetModelCompositeModelPathSegment]
|
918
|
+
attr_accessor asset_model_composite_model_name: ::String
|
919
|
+
attr_accessor asset_model_composite_model_description: ::String
|
920
|
+
attr_accessor asset_model_composite_model_type: ::String
|
921
|
+
attr_accessor asset_model_composite_model_properties: ::Array[Types::AssetModelProperty]
|
922
|
+
attr_accessor composition_details: Types::CompositionDetails
|
923
|
+
attr_accessor asset_model_composite_model_summaries: ::Array[Types::AssetModelCompositeModelSummary]
|
924
|
+
attr_accessor action_definitions: ::Array[Types::ActionDefinition]
|
925
|
+
SENSITIVE: []
|
926
|
+
end
|
927
|
+
|
928
|
+
class DescribeAssetModelRequest
|
929
|
+
attr_accessor asset_model_id: ::String
|
930
|
+
attr_accessor exclude_properties: bool
|
931
|
+
SENSITIVE: []
|
932
|
+
end
|
933
|
+
|
934
|
+
class DescribeAssetModelResponse
|
935
|
+
attr_accessor asset_model_id: ::String
|
936
|
+
attr_accessor asset_model_arn: ::String
|
937
|
+
attr_accessor asset_model_name: ::String
|
938
|
+
attr_accessor asset_model_description: ::String
|
939
|
+
attr_accessor asset_model_properties: ::Array[Types::AssetModelProperty]
|
940
|
+
attr_accessor asset_model_hierarchies: ::Array[Types::AssetModelHierarchy]
|
941
|
+
attr_accessor asset_model_composite_models: ::Array[Types::AssetModelCompositeModel]
|
942
|
+
attr_accessor asset_model_creation_date: ::Time
|
943
|
+
attr_accessor asset_model_last_update_date: ::Time
|
944
|
+
attr_accessor asset_model_status: Types::AssetModelStatus
|
945
|
+
attr_accessor asset_model_type: ("ASSET_MODEL" | "COMPONENT_MODEL")
|
946
|
+
attr_accessor asset_model_composite_model_summaries: ::Array[Types::AssetModelCompositeModelSummary]
|
947
|
+
attr_accessor asset_model_external_id: ::String
|
948
|
+
SENSITIVE: []
|
949
|
+
end
|
950
|
+
|
951
|
+
class DescribeAssetPropertyRequest
|
952
|
+
attr_accessor asset_id: ::String
|
953
|
+
attr_accessor property_id: ::String
|
954
|
+
SENSITIVE: []
|
955
|
+
end
|
956
|
+
|
957
|
+
class DescribeAssetPropertyResponse
|
958
|
+
attr_accessor asset_id: ::String
|
959
|
+
attr_accessor asset_name: ::String
|
960
|
+
attr_accessor asset_model_id: ::String
|
961
|
+
attr_accessor asset_property: Types::Property
|
962
|
+
attr_accessor composite_model: Types::CompositeModelProperty
|
963
|
+
attr_accessor asset_external_id: ::String
|
964
|
+
SENSITIVE: []
|
965
|
+
end
|
966
|
+
|
967
|
+
class DescribeAssetRequest
|
968
|
+
attr_accessor asset_id: ::String
|
969
|
+
attr_accessor exclude_properties: bool
|
970
|
+
SENSITIVE: []
|
971
|
+
end
|
972
|
+
|
973
|
+
class DescribeAssetResponse
|
974
|
+
attr_accessor asset_id: ::String
|
975
|
+
attr_accessor asset_arn: ::String
|
976
|
+
attr_accessor asset_name: ::String
|
977
|
+
attr_accessor asset_model_id: ::String
|
978
|
+
attr_accessor asset_properties: ::Array[Types::AssetProperty]
|
979
|
+
attr_accessor asset_hierarchies: ::Array[Types::AssetHierarchy]
|
980
|
+
attr_accessor asset_composite_models: ::Array[Types::AssetCompositeModel]
|
981
|
+
attr_accessor asset_creation_date: ::Time
|
982
|
+
attr_accessor asset_last_update_date: ::Time
|
983
|
+
attr_accessor asset_status: Types::AssetStatus
|
984
|
+
attr_accessor asset_description: ::String
|
985
|
+
attr_accessor asset_composite_model_summaries: ::Array[Types::AssetCompositeModelSummary]
|
986
|
+
attr_accessor asset_external_id: ::String
|
987
|
+
SENSITIVE: []
|
988
|
+
end
|
989
|
+
|
990
|
+
class DescribeBulkImportJobRequest
|
991
|
+
attr_accessor job_id: ::String
|
992
|
+
SENSITIVE: []
|
993
|
+
end
|
994
|
+
|
995
|
+
class DescribeBulkImportJobResponse
|
996
|
+
attr_accessor job_id: ::String
|
997
|
+
attr_accessor job_name: ::String
|
998
|
+
attr_accessor job_status: ("PENDING" | "CANCELLED" | "RUNNING" | "COMPLETED" | "FAILED" | "COMPLETED_WITH_FAILURES")
|
999
|
+
attr_accessor job_role_arn: ::String
|
1000
|
+
attr_accessor files: ::Array[Types::File]
|
1001
|
+
attr_accessor error_report_location: Types::ErrorReportLocation
|
1002
|
+
attr_accessor job_configuration: Types::JobConfiguration
|
1003
|
+
attr_accessor job_creation_date: ::Time
|
1004
|
+
attr_accessor job_last_update_date: ::Time
|
1005
|
+
attr_accessor adaptive_ingestion: bool
|
1006
|
+
attr_accessor delete_files_after_import: bool
|
1007
|
+
SENSITIVE: []
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
class DescribeDashboardRequest
|
1011
|
+
attr_accessor dashboard_id: ::String
|
1012
|
+
SENSITIVE: []
|
1013
|
+
end
|
1014
|
+
|
1015
|
+
class DescribeDashboardResponse
|
1016
|
+
attr_accessor dashboard_id: ::String
|
1017
|
+
attr_accessor dashboard_arn: ::String
|
1018
|
+
attr_accessor dashboard_name: ::String
|
1019
|
+
attr_accessor project_id: ::String
|
1020
|
+
attr_accessor dashboard_description: ::String
|
1021
|
+
attr_accessor dashboard_definition: ::String
|
1022
|
+
attr_accessor dashboard_creation_date: ::Time
|
1023
|
+
attr_accessor dashboard_last_update_date: ::Time
|
1024
|
+
SENSITIVE: []
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
class DescribeDefaultEncryptionConfigurationRequest < Aws::EmptyStructure
|
1028
|
+
end
|
1029
|
+
|
1030
|
+
class DescribeDefaultEncryptionConfigurationResponse
|
1031
|
+
attr_accessor encryption_type: ("SITEWISE_DEFAULT_ENCRYPTION" | "KMS_BASED_ENCRYPTION")
|
1032
|
+
attr_accessor kms_key_arn: ::String
|
1033
|
+
attr_accessor configuration_status: Types::ConfigurationStatus
|
1034
|
+
SENSITIVE: []
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
class DescribeGatewayCapabilityConfigurationRequest
|
1038
|
+
attr_accessor gateway_id: ::String
|
1039
|
+
attr_accessor capability_namespace: ::String
|
1040
|
+
SENSITIVE: []
|
1041
|
+
end
|
1042
|
+
|
1043
|
+
class DescribeGatewayCapabilityConfigurationResponse
|
1044
|
+
attr_accessor gateway_id: ::String
|
1045
|
+
attr_accessor capability_namespace: ::String
|
1046
|
+
attr_accessor capability_configuration: ::String
|
1047
|
+
attr_accessor capability_sync_status: ("IN_SYNC" | "OUT_OF_SYNC" | "SYNC_FAILED" | "UNKNOWN")
|
1048
|
+
SENSITIVE: []
|
1049
|
+
end
|
1050
|
+
|
1051
|
+
class DescribeGatewayRequest
|
1052
|
+
attr_accessor gateway_id: ::String
|
1053
|
+
SENSITIVE: []
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
class DescribeGatewayResponse
|
1057
|
+
attr_accessor gateway_id: ::String
|
1058
|
+
attr_accessor gateway_name: ::String
|
1059
|
+
attr_accessor gateway_arn: ::String
|
1060
|
+
attr_accessor gateway_platform: Types::GatewayPlatform
|
1061
|
+
attr_accessor gateway_capability_summaries: ::Array[Types::GatewayCapabilitySummary]
|
1062
|
+
attr_accessor creation_date: ::Time
|
1063
|
+
attr_accessor last_update_date: ::Time
|
1064
|
+
SENSITIVE: []
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
class DescribeLoggingOptionsRequest < Aws::EmptyStructure
|
1068
|
+
end
|
1069
|
+
|
1070
|
+
class DescribeLoggingOptionsResponse
|
1071
|
+
attr_accessor logging_options: Types::LoggingOptions
|
1072
|
+
SENSITIVE: []
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
class DescribePortalRequest
|
1076
|
+
attr_accessor portal_id: ::String
|
1077
|
+
SENSITIVE: []
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
class DescribePortalResponse
|
1081
|
+
attr_accessor portal_id: ::String
|
1082
|
+
attr_accessor portal_arn: ::String
|
1083
|
+
attr_accessor portal_name: ::String
|
1084
|
+
attr_accessor portal_description: ::String
|
1085
|
+
attr_accessor portal_client_id: ::String
|
1086
|
+
attr_accessor portal_start_url: ::String
|
1087
|
+
attr_accessor portal_contact_email: ::String
|
1088
|
+
attr_accessor portal_status: Types::PortalStatus
|
1089
|
+
attr_accessor portal_creation_date: ::Time
|
1090
|
+
attr_accessor portal_last_update_date: ::Time
|
1091
|
+
attr_accessor portal_logo_image_location: Types::ImageLocation
|
1092
|
+
attr_accessor role_arn: ::String
|
1093
|
+
attr_accessor portal_auth_mode: ("IAM" | "SSO")
|
1094
|
+
attr_accessor notification_sender_email: ::String
|
1095
|
+
attr_accessor alarms: Types::Alarms
|
1096
|
+
SENSITIVE: []
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
class DescribeProjectRequest
|
1100
|
+
attr_accessor project_id: ::String
|
1101
|
+
SENSITIVE: []
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
class DescribeProjectResponse
|
1105
|
+
attr_accessor project_id: ::String
|
1106
|
+
attr_accessor project_arn: ::String
|
1107
|
+
attr_accessor project_name: ::String
|
1108
|
+
attr_accessor portal_id: ::String
|
1109
|
+
attr_accessor project_description: ::String
|
1110
|
+
attr_accessor project_creation_date: ::Time
|
1111
|
+
attr_accessor project_last_update_date: ::Time
|
1112
|
+
SENSITIVE: []
|
1113
|
+
end
|
1114
|
+
|
1115
|
+
class DescribeStorageConfigurationRequest < Aws::EmptyStructure
|
1116
|
+
end
|
1117
|
+
|
1118
|
+
class DescribeStorageConfigurationResponse
|
1119
|
+
attr_accessor storage_type: ("SITEWISE_DEFAULT_STORAGE" | "MULTI_LAYER_STORAGE")
|
1120
|
+
attr_accessor multi_layer_storage: Types::MultiLayerStorage
|
1121
|
+
attr_accessor disassociated_data_storage: ("ENABLED" | "DISABLED")
|
1122
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
1123
|
+
attr_accessor configuration_status: Types::ConfigurationStatus
|
1124
|
+
attr_accessor last_update_date: ::Time
|
1125
|
+
attr_accessor warm_tier: ("ENABLED" | "DISABLED")
|
1126
|
+
attr_accessor warm_tier_retention_period: Types::WarmTierRetentionPeriod
|
1127
|
+
SENSITIVE: []
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
class DescribeTimeSeriesRequest
|
1131
|
+
attr_accessor alias: ::String
|
1132
|
+
attr_accessor asset_id: ::String
|
1133
|
+
attr_accessor property_id: ::String
|
1134
|
+
SENSITIVE: []
|
1135
|
+
end
|
1136
|
+
|
1137
|
+
class DescribeTimeSeriesResponse
|
1138
|
+
attr_accessor asset_id: ::String
|
1139
|
+
attr_accessor property_id: ::String
|
1140
|
+
attr_accessor alias: ::String
|
1141
|
+
attr_accessor time_series_id: ::String
|
1142
|
+
attr_accessor data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT")
|
1143
|
+
attr_accessor data_type_spec: ::String
|
1144
|
+
attr_accessor time_series_creation_date: ::Time
|
1145
|
+
attr_accessor time_series_last_update_date: ::Time
|
1146
|
+
attr_accessor time_series_arn: ::String
|
1147
|
+
SENSITIVE: []
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
class DetailedError
|
1151
|
+
attr_accessor code: ("INCOMPATIBLE_COMPUTE_LOCATION" | "INCOMPATIBLE_FORWARDING_CONFIGURATION")
|
1152
|
+
attr_accessor message: ::String
|
1153
|
+
SENSITIVE: []
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
class DisassociateAssetsRequest
|
1157
|
+
attr_accessor asset_id: ::String
|
1158
|
+
attr_accessor hierarchy_id: ::String
|
1159
|
+
attr_accessor child_asset_id: ::String
|
1160
|
+
attr_accessor client_token: ::String
|
1161
|
+
SENSITIVE: []
|
1162
|
+
end
|
1163
|
+
|
1164
|
+
class DisassociateTimeSeriesFromAssetPropertyRequest
|
1165
|
+
attr_accessor alias: ::String
|
1166
|
+
attr_accessor asset_id: ::String
|
1167
|
+
attr_accessor property_id: ::String
|
1168
|
+
attr_accessor client_token: ::String
|
1169
|
+
SENSITIVE: []
|
1170
|
+
end
|
1171
|
+
|
1172
|
+
class ErrorDetails
|
1173
|
+
attr_accessor code: ("VALIDATION_ERROR" | "INTERNAL_FAILURE")
|
1174
|
+
attr_accessor message: ::String
|
1175
|
+
attr_accessor details: ::Array[Types::DetailedError]
|
1176
|
+
SENSITIVE: []
|
1177
|
+
end
|
1178
|
+
|
1179
|
+
class ErrorReportLocation
|
1180
|
+
attr_accessor bucket: ::String
|
1181
|
+
attr_accessor prefix: ::String
|
1182
|
+
SENSITIVE: []
|
1183
|
+
end
|
1184
|
+
|
1185
|
+
class ExecuteActionRequest
|
1186
|
+
attr_accessor target_resource: Types::TargetResource
|
1187
|
+
attr_accessor action_definition_id: ::String
|
1188
|
+
attr_accessor action_payload: Types::ActionPayload
|
1189
|
+
attr_accessor client_token: ::String
|
1190
|
+
SENSITIVE: []
|
1191
|
+
end
|
1192
|
+
|
1193
|
+
class ExecuteActionResponse
|
1194
|
+
attr_accessor action_id: ::String
|
1195
|
+
SENSITIVE: []
|
1196
|
+
end
|
1197
|
+
|
1198
|
+
class ExecuteQueryRequest
|
1199
|
+
attr_accessor query_statement: ::String
|
1200
|
+
attr_accessor next_token: ::String
|
1201
|
+
attr_accessor max_results: ::Integer
|
1202
|
+
SENSITIVE: []
|
1203
|
+
end
|
1204
|
+
|
1205
|
+
class ExecuteQueryResponse
|
1206
|
+
attr_accessor columns: ::Array[Types::ColumnInfo]
|
1207
|
+
attr_accessor rows: ::Array[Types::Row]
|
1208
|
+
attr_accessor next_token: ::String
|
1209
|
+
SENSITIVE: []
|
1210
|
+
end
|
1211
|
+
|
1212
|
+
class ExpressionVariable
|
1213
|
+
attr_accessor name: ::String
|
1214
|
+
attr_accessor value: Types::VariableValue
|
1215
|
+
SENSITIVE: []
|
1216
|
+
end
|
1217
|
+
|
1218
|
+
class File
|
1219
|
+
attr_accessor bucket: ::String
|
1220
|
+
attr_accessor key: ::String
|
1221
|
+
attr_accessor version_id: ::String
|
1222
|
+
SENSITIVE: []
|
1223
|
+
end
|
1224
|
+
|
1225
|
+
class FileFormat
|
1226
|
+
attr_accessor csv: Types::Csv
|
1227
|
+
attr_accessor parquet: Types::Parquet
|
1228
|
+
SENSITIVE: []
|
1229
|
+
end
|
1230
|
+
|
1231
|
+
class ForwardingConfig
|
1232
|
+
attr_accessor state: ("DISABLED" | "ENABLED")
|
1233
|
+
SENSITIVE: []
|
1234
|
+
end
|
1235
|
+
|
1236
|
+
class GatewayCapabilitySummary
|
1237
|
+
attr_accessor capability_namespace: ::String
|
1238
|
+
attr_accessor capability_sync_status: ("IN_SYNC" | "OUT_OF_SYNC" | "SYNC_FAILED" | "UNKNOWN")
|
1239
|
+
SENSITIVE: []
|
1240
|
+
end
|
1241
|
+
|
1242
|
+
class GatewayPlatform
|
1243
|
+
attr_accessor greengrass: Types::Greengrass
|
1244
|
+
attr_accessor greengrass_v2: Types::GreengrassV2
|
1245
|
+
SENSITIVE: []
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
class GatewaySummary
|
1249
|
+
attr_accessor gateway_id: ::String
|
1250
|
+
attr_accessor gateway_name: ::String
|
1251
|
+
attr_accessor gateway_platform: Types::GatewayPlatform
|
1252
|
+
attr_accessor gateway_capability_summaries: ::Array[Types::GatewayCapabilitySummary]
|
1253
|
+
attr_accessor creation_date: ::Time
|
1254
|
+
attr_accessor last_update_date: ::Time
|
1255
|
+
SENSITIVE: []
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
class GetAssetPropertyAggregatesRequest
|
1259
|
+
attr_accessor asset_id: ::String
|
1260
|
+
attr_accessor property_id: ::String
|
1261
|
+
attr_accessor property_alias: ::String
|
1262
|
+
attr_accessor aggregate_types: ::Array[("AVERAGE" | "COUNT" | "MAXIMUM" | "MINIMUM" | "SUM" | "STANDARD_DEVIATION")]
|
1263
|
+
attr_accessor resolution: ::String
|
1264
|
+
attr_accessor qualities: ::Array[("GOOD" | "BAD" | "UNCERTAIN")]
|
1265
|
+
attr_accessor start_date: ::Time
|
1266
|
+
attr_accessor end_date: ::Time
|
1267
|
+
attr_accessor time_ordering: ("ASCENDING" | "DESCENDING")
|
1268
|
+
attr_accessor next_token: ::String
|
1269
|
+
attr_accessor max_results: ::Integer
|
1270
|
+
SENSITIVE: []
|
1271
|
+
end
|
1272
|
+
|
1273
|
+
class GetAssetPropertyAggregatesResponse
|
1274
|
+
attr_accessor aggregated_values: ::Array[Types::AggregatedValue]
|
1275
|
+
attr_accessor next_token: ::String
|
1276
|
+
SENSITIVE: []
|
1277
|
+
end
|
1278
|
+
|
1279
|
+
class GetAssetPropertyValueHistoryRequest
|
1280
|
+
attr_accessor asset_id: ::String
|
1281
|
+
attr_accessor property_id: ::String
|
1282
|
+
attr_accessor property_alias: ::String
|
1283
|
+
attr_accessor start_date: ::Time
|
1284
|
+
attr_accessor end_date: ::Time
|
1285
|
+
attr_accessor qualities: ::Array[("GOOD" | "BAD" | "UNCERTAIN")]
|
1286
|
+
attr_accessor time_ordering: ("ASCENDING" | "DESCENDING")
|
1287
|
+
attr_accessor next_token: ::String
|
1288
|
+
attr_accessor max_results: ::Integer
|
1289
|
+
SENSITIVE: []
|
1290
|
+
end
|
1291
|
+
|
1292
|
+
class GetAssetPropertyValueHistoryResponse
|
1293
|
+
attr_accessor asset_property_value_history: ::Array[Types::AssetPropertyValue]
|
1294
|
+
attr_accessor next_token: ::String
|
1295
|
+
SENSITIVE: []
|
1296
|
+
end
|
1297
|
+
|
1298
|
+
class GetAssetPropertyValueRequest
|
1299
|
+
attr_accessor asset_id: ::String
|
1300
|
+
attr_accessor property_id: ::String
|
1301
|
+
attr_accessor property_alias: ::String
|
1302
|
+
SENSITIVE: []
|
1303
|
+
end
|
1304
|
+
|
1305
|
+
class GetAssetPropertyValueResponse
|
1306
|
+
attr_accessor property_value: Types::AssetPropertyValue
|
1307
|
+
SENSITIVE: []
|
1308
|
+
end
|
1309
|
+
|
1310
|
+
class GetInterpolatedAssetPropertyValuesRequest
|
1311
|
+
attr_accessor asset_id: ::String
|
1312
|
+
attr_accessor property_id: ::String
|
1313
|
+
attr_accessor property_alias: ::String
|
1314
|
+
attr_accessor start_time_in_seconds: ::Integer
|
1315
|
+
attr_accessor start_time_offset_in_nanos: ::Integer
|
1316
|
+
attr_accessor end_time_in_seconds: ::Integer
|
1317
|
+
attr_accessor end_time_offset_in_nanos: ::Integer
|
1318
|
+
attr_accessor quality: ("GOOD" | "BAD" | "UNCERTAIN")
|
1319
|
+
attr_accessor interval_in_seconds: ::Integer
|
1320
|
+
attr_accessor next_token: ::String
|
1321
|
+
attr_accessor max_results: ::Integer
|
1322
|
+
attr_accessor type: ::String
|
1323
|
+
attr_accessor interval_window_in_seconds: ::Integer
|
1324
|
+
SENSITIVE: []
|
1325
|
+
end
|
1326
|
+
|
1327
|
+
class GetInterpolatedAssetPropertyValuesResponse
|
1328
|
+
attr_accessor interpolated_asset_property_values: ::Array[Types::InterpolatedAssetPropertyValue]
|
1329
|
+
attr_accessor next_token: ::String
|
1330
|
+
SENSITIVE: []
|
1331
|
+
end
|
1332
|
+
|
1333
|
+
class Greengrass
|
1334
|
+
attr_accessor group_arn: ::String
|
1335
|
+
SENSITIVE: []
|
1336
|
+
end
|
1337
|
+
|
1338
|
+
class GreengrassV2
|
1339
|
+
attr_accessor core_device_thing_name: ::String
|
1340
|
+
SENSITIVE: []
|
1341
|
+
end
|
1342
|
+
|
1343
|
+
class GroupIdentity
|
1344
|
+
attr_accessor id: ::String
|
1345
|
+
SENSITIVE: []
|
1346
|
+
end
|
1347
|
+
|
1348
|
+
class IAMRoleIdentity
|
1349
|
+
attr_accessor arn: ::String
|
1350
|
+
SENSITIVE: []
|
1351
|
+
end
|
1352
|
+
|
1353
|
+
class IAMUserIdentity
|
1354
|
+
attr_accessor arn: ::String
|
1355
|
+
SENSITIVE: []
|
1356
|
+
end
|
1357
|
+
|
1358
|
+
class Identity
|
1359
|
+
attr_accessor user: Types::UserIdentity
|
1360
|
+
attr_accessor group: Types::GroupIdentity
|
1361
|
+
attr_accessor iam_user: Types::IAMUserIdentity
|
1362
|
+
attr_accessor iam_role: Types::IAMRoleIdentity
|
1363
|
+
SENSITIVE: []
|
1364
|
+
end
|
1365
|
+
|
1366
|
+
class Image
|
1367
|
+
attr_accessor id: ::String
|
1368
|
+
attr_accessor file: Types::ImageFile
|
1369
|
+
SENSITIVE: []
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
class ImageFile
|
1373
|
+
attr_accessor data: ::String
|
1374
|
+
attr_accessor type: ("PNG")
|
1375
|
+
SENSITIVE: []
|
1376
|
+
end
|
1377
|
+
|
1378
|
+
class ImageLocation
|
1379
|
+
attr_accessor id: ::String
|
1380
|
+
attr_accessor url: ::String
|
1381
|
+
SENSITIVE: []
|
1382
|
+
end
|
1383
|
+
|
1384
|
+
class InternalFailureException
|
1385
|
+
attr_accessor message: ::String
|
1386
|
+
SENSITIVE: []
|
1387
|
+
end
|
1388
|
+
|
1389
|
+
class InterpolatedAssetPropertyValue
|
1390
|
+
attr_accessor timestamp: Types::TimeInNanos
|
1391
|
+
attr_accessor value: Types::Variant
|
1392
|
+
SENSITIVE: []
|
1393
|
+
end
|
1394
|
+
|
1395
|
+
class InvalidRequestException
|
1396
|
+
attr_accessor message: ::String
|
1397
|
+
SENSITIVE: []
|
1398
|
+
end
|
1399
|
+
|
1400
|
+
class JobConfiguration
|
1401
|
+
attr_accessor file_format: Types::FileFormat
|
1402
|
+
SENSITIVE: []
|
1403
|
+
end
|
1404
|
+
|
1405
|
+
class JobSummary
|
1406
|
+
attr_accessor id: ::String
|
1407
|
+
attr_accessor name: ::String
|
1408
|
+
attr_accessor status: ("PENDING" | "CANCELLED" | "RUNNING" | "COMPLETED" | "FAILED" | "COMPLETED_WITH_FAILURES")
|
1409
|
+
SENSITIVE: []
|
1410
|
+
end
|
1411
|
+
|
1412
|
+
class LimitExceededException
|
1413
|
+
attr_accessor message: ::String
|
1414
|
+
SENSITIVE: []
|
1415
|
+
end
|
1416
|
+
|
1417
|
+
class ListAccessPoliciesRequest
|
1418
|
+
attr_accessor identity_type: ("USER" | "GROUP" | "IAM")
|
1419
|
+
attr_accessor identity_id: ::String
|
1420
|
+
attr_accessor resource_type: ("PORTAL" | "PROJECT")
|
1421
|
+
attr_accessor resource_id: ::String
|
1422
|
+
attr_accessor iam_arn: ::String
|
1423
|
+
attr_accessor next_token: ::String
|
1424
|
+
attr_accessor max_results: ::Integer
|
1425
|
+
SENSITIVE: []
|
1426
|
+
end
|
1427
|
+
|
1428
|
+
class ListAccessPoliciesResponse
|
1429
|
+
attr_accessor access_policy_summaries: ::Array[Types::AccessPolicySummary]
|
1430
|
+
attr_accessor next_token: ::String
|
1431
|
+
SENSITIVE: []
|
1432
|
+
end
|
1433
|
+
|
1434
|
+
class ListActionsRequest
|
1435
|
+
attr_accessor target_resource_type: ("ASSET")
|
1436
|
+
attr_accessor target_resource_id: ::String
|
1437
|
+
attr_accessor next_token: ::String
|
1438
|
+
attr_accessor max_results: ::Integer
|
1439
|
+
SENSITIVE: []
|
1440
|
+
end
|
1441
|
+
|
1442
|
+
class ListActionsResponse
|
1443
|
+
attr_accessor action_summaries: ::Array[Types::ActionSummary]
|
1444
|
+
attr_accessor next_token: ::String
|
1445
|
+
SENSITIVE: []
|
1446
|
+
end
|
1447
|
+
|
1448
|
+
class ListAssetModelCompositeModelsRequest
|
1449
|
+
attr_accessor asset_model_id: ::String
|
1450
|
+
attr_accessor next_token: ::String
|
1451
|
+
attr_accessor max_results: ::Integer
|
1452
|
+
SENSITIVE: []
|
1453
|
+
end
|
1454
|
+
|
1455
|
+
class ListAssetModelCompositeModelsResponse
|
1456
|
+
attr_accessor asset_model_composite_model_summaries: ::Array[Types::AssetModelCompositeModelSummary]
|
1457
|
+
attr_accessor next_token: ::String
|
1458
|
+
SENSITIVE: []
|
1459
|
+
end
|
1460
|
+
|
1461
|
+
class ListAssetModelPropertiesRequest
|
1462
|
+
attr_accessor asset_model_id: ::String
|
1463
|
+
attr_accessor next_token: ::String
|
1464
|
+
attr_accessor max_results: ::Integer
|
1465
|
+
attr_accessor filter: ("ALL" | "BASE")
|
1466
|
+
SENSITIVE: []
|
1467
|
+
end
|
1468
|
+
|
1469
|
+
class ListAssetModelPropertiesResponse
|
1470
|
+
attr_accessor asset_model_property_summaries: ::Array[Types::AssetModelPropertySummary]
|
1471
|
+
attr_accessor next_token: ::String
|
1472
|
+
SENSITIVE: []
|
1473
|
+
end
|
1474
|
+
|
1475
|
+
class ListAssetModelsRequest
|
1476
|
+
attr_accessor next_token: ::String
|
1477
|
+
attr_accessor max_results: ::Integer
|
1478
|
+
attr_accessor asset_model_types: ::Array[("ASSET_MODEL" | "COMPONENT_MODEL")]
|
1479
|
+
SENSITIVE: []
|
1480
|
+
end
|
1481
|
+
|
1482
|
+
class ListAssetModelsResponse
|
1483
|
+
attr_accessor asset_model_summaries: ::Array[Types::AssetModelSummary]
|
1484
|
+
attr_accessor next_token: ::String
|
1485
|
+
SENSITIVE: []
|
1486
|
+
end
|
1487
|
+
|
1488
|
+
class ListAssetPropertiesRequest
|
1489
|
+
attr_accessor asset_id: ::String
|
1490
|
+
attr_accessor next_token: ::String
|
1491
|
+
attr_accessor max_results: ::Integer
|
1492
|
+
attr_accessor filter: ("ALL" | "BASE")
|
1493
|
+
SENSITIVE: []
|
1494
|
+
end
|
1495
|
+
|
1496
|
+
class ListAssetPropertiesResponse
|
1497
|
+
attr_accessor asset_property_summaries: ::Array[Types::AssetPropertySummary]
|
1498
|
+
attr_accessor next_token: ::String
|
1499
|
+
SENSITIVE: []
|
1500
|
+
end
|
1501
|
+
|
1502
|
+
class ListAssetRelationshipsRequest
|
1503
|
+
attr_accessor asset_id: ::String
|
1504
|
+
attr_accessor traversal_type: ("PATH_TO_ROOT")
|
1505
|
+
attr_accessor next_token: ::String
|
1506
|
+
attr_accessor max_results: ::Integer
|
1507
|
+
SENSITIVE: []
|
1508
|
+
end
|
1509
|
+
|
1510
|
+
class ListAssetRelationshipsResponse
|
1511
|
+
attr_accessor asset_relationship_summaries: ::Array[Types::AssetRelationshipSummary]
|
1512
|
+
attr_accessor next_token: ::String
|
1513
|
+
SENSITIVE: []
|
1514
|
+
end
|
1515
|
+
|
1516
|
+
class ListAssetsRequest
|
1517
|
+
attr_accessor next_token: ::String
|
1518
|
+
attr_accessor max_results: ::Integer
|
1519
|
+
attr_accessor asset_model_id: ::String
|
1520
|
+
attr_accessor filter: ("ALL" | "TOP_LEVEL")
|
1521
|
+
SENSITIVE: []
|
1522
|
+
end
|
1523
|
+
|
1524
|
+
class ListAssetsResponse
|
1525
|
+
attr_accessor asset_summaries: ::Array[Types::AssetSummary]
|
1526
|
+
attr_accessor next_token: ::String
|
1527
|
+
SENSITIVE: []
|
1528
|
+
end
|
1529
|
+
|
1530
|
+
class ListAssociatedAssetsRequest
|
1531
|
+
attr_accessor asset_id: ::String
|
1532
|
+
attr_accessor hierarchy_id: ::String
|
1533
|
+
attr_accessor traversal_direction: ("PARENT" | "CHILD")
|
1534
|
+
attr_accessor next_token: ::String
|
1535
|
+
attr_accessor max_results: ::Integer
|
1536
|
+
SENSITIVE: []
|
1537
|
+
end
|
1538
|
+
|
1539
|
+
class ListAssociatedAssetsResponse
|
1540
|
+
attr_accessor asset_summaries: ::Array[Types::AssociatedAssetsSummary]
|
1541
|
+
attr_accessor next_token: ::String
|
1542
|
+
SENSITIVE: []
|
1543
|
+
end
|
1544
|
+
|
1545
|
+
class ListBulkImportJobsRequest
|
1546
|
+
attr_accessor next_token: ::String
|
1547
|
+
attr_accessor max_results: ::Integer
|
1548
|
+
attr_accessor filter: ("ALL" | "PENDING" | "RUNNING" | "CANCELLED" | "FAILED" | "COMPLETED_WITH_FAILURES" | "COMPLETED")
|
1549
|
+
SENSITIVE: []
|
1550
|
+
end
|
1551
|
+
|
1552
|
+
class ListBulkImportJobsResponse
|
1553
|
+
attr_accessor job_summaries: ::Array[Types::JobSummary]
|
1554
|
+
attr_accessor next_token: ::String
|
1555
|
+
SENSITIVE: []
|
1556
|
+
end
|
1557
|
+
|
1558
|
+
class ListCompositionRelationshipsRequest
|
1559
|
+
attr_accessor asset_model_id: ::String
|
1560
|
+
attr_accessor next_token: ::String
|
1561
|
+
attr_accessor max_results: ::Integer
|
1562
|
+
SENSITIVE: []
|
1563
|
+
end
|
1564
|
+
|
1565
|
+
class ListCompositionRelationshipsResponse
|
1566
|
+
attr_accessor composition_relationship_summaries: ::Array[Types::CompositionRelationshipSummary]
|
1567
|
+
attr_accessor next_token: ::String
|
1568
|
+
SENSITIVE: []
|
1569
|
+
end
|
1570
|
+
|
1571
|
+
class ListDashboardsRequest
|
1572
|
+
attr_accessor project_id: ::String
|
1573
|
+
attr_accessor next_token: ::String
|
1574
|
+
attr_accessor max_results: ::Integer
|
1575
|
+
SENSITIVE: []
|
1576
|
+
end
|
1577
|
+
|
1578
|
+
class ListDashboardsResponse
|
1579
|
+
attr_accessor dashboard_summaries: ::Array[Types::DashboardSummary]
|
1580
|
+
attr_accessor next_token: ::String
|
1581
|
+
SENSITIVE: []
|
1582
|
+
end
|
1583
|
+
|
1584
|
+
class ListGatewaysRequest
|
1585
|
+
attr_accessor next_token: ::String
|
1586
|
+
attr_accessor max_results: ::Integer
|
1587
|
+
SENSITIVE: []
|
1588
|
+
end
|
1589
|
+
|
1590
|
+
class ListGatewaysResponse
|
1591
|
+
attr_accessor gateway_summaries: ::Array[Types::GatewaySummary]
|
1592
|
+
attr_accessor next_token: ::String
|
1593
|
+
SENSITIVE: []
|
1594
|
+
end
|
1595
|
+
|
1596
|
+
class ListPortalsRequest
|
1597
|
+
attr_accessor next_token: ::String
|
1598
|
+
attr_accessor max_results: ::Integer
|
1599
|
+
SENSITIVE: []
|
1600
|
+
end
|
1601
|
+
|
1602
|
+
class ListPortalsResponse
|
1603
|
+
attr_accessor portal_summaries: ::Array[Types::PortalSummary]
|
1604
|
+
attr_accessor next_token: ::String
|
1605
|
+
SENSITIVE: []
|
1606
|
+
end
|
1607
|
+
|
1608
|
+
class ListProjectAssetsRequest
|
1609
|
+
attr_accessor project_id: ::String
|
1610
|
+
attr_accessor next_token: ::String
|
1611
|
+
attr_accessor max_results: ::Integer
|
1612
|
+
SENSITIVE: []
|
1613
|
+
end
|
1614
|
+
|
1615
|
+
class ListProjectAssetsResponse
|
1616
|
+
attr_accessor asset_ids: ::Array[::String]
|
1617
|
+
attr_accessor next_token: ::String
|
1618
|
+
SENSITIVE: []
|
1619
|
+
end
|
1620
|
+
|
1621
|
+
class ListProjectsRequest
|
1622
|
+
attr_accessor portal_id: ::String
|
1623
|
+
attr_accessor next_token: ::String
|
1624
|
+
attr_accessor max_results: ::Integer
|
1625
|
+
SENSITIVE: []
|
1626
|
+
end
|
1627
|
+
|
1628
|
+
class ListProjectsResponse
|
1629
|
+
attr_accessor project_summaries: ::Array[Types::ProjectSummary]
|
1630
|
+
attr_accessor next_token: ::String
|
1631
|
+
SENSITIVE: []
|
1632
|
+
end
|
1633
|
+
|
1634
|
+
class ListTagsForResourceRequest
|
1635
|
+
attr_accessor resource_arn: ::String
|
1636
|
+
SENSITIVE: []
|
1637
|
+
end
|
1638
|
+
|
1639
|
+
class ListTagsForResourceResponse
|
1640
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1641
|
+
SENSITIVE: []
|
1642
|
+
end
|
1643
|
+
|
1644
|
+
class ListTimeSeriesRequest
|
1645
|
+
attr_accessor next_token: ::String
|
1646
|
+
attr_accessor max_results: ::Integer
|
1647
|
+
attr_accessor asset_id: ::String
|
1648
|
+
attr_accessor alias_prefix: ::String
|
1649
|
+
attr_accessor time_series_type: ("ASSOCIATED" | "DISASSOCIATED")
|
1650
|
+
SENSITIVE: []
|
1651
|
+
end
|
1652
|
+
|
1653
|
+
class ListTimeSeriesResponse
|
1654
|
+
attr_accessor time_series_summaries: ::Array[Types::TimeSeriesSummary]
|
1655
|
+
attr_accessor next_token: ::String
|
1656
|
+
SENSITIVE: []
|
1657
|
+
end
|
1658
|
+
|
1659
|
+
class LoggingOptions
|
1660
|
+
attr_accessor level: ("ERROR" | "INFO" | "OFF")
|
1661
|
+
SENSITIVE: []
|
1662
|
+
end
|
1663
|
+
|
1664
|
+
class Measurement
|
1665
|
+
attr_accessor processing_config: Types::MeasurementProcessingConfig
|
1666
|
+
SENSITIVE: []
|
1667
|
+
end
|
1668
|
+
|
1669
|
+
class MeasurementProcessingConfig
|
1670
|
+
attr_accessor forwarding_config: Types::ForwardingConfig
|
1671
|
+
SENSITIVE: []
|
1672
|
+
end
|
1673
|
+
|
1674
|
+
class Metric
|
1675
|
+
attr_accessor expression: ::String
|
1676
|
+
attr_accessor variables: ::Array[Types::ExpressionVariable]
|
1677
|
+
attr_accessor window: Types::MetricWindow
|
1678
|
+
attr_accessor processing_config: Types::MetricProcessingConfig
|
1679
|
+
SENSITIVE: []
|
1680
|
+
end
|
1681
|
+
|
1682
|
+
class MetricProcessingConfig
|
1683
|
+
attr_accessor compute_location: ("EDGE" | "CLOUD")
|
1684
|
+
SENSITIVE: []
|
1685
|
+
end
|
1686
|
+
|
1687
|
+
class MetricWindow
|
1688
|
+
attr_accessor tumbling: Types::TumblingWindow
|
1689
|
+
SENSITIVE: []
|
1690
|
+
end
|
1691
|
+
|
1692
|
+
class MonitorErrorDetails
|
1693
|
+
attr_accessor code: ("INTERNAL_FAILURE" | "VALIDATION_ERROR" | "LIMIT_EXCEEDED")
|
1694
|
+
attr_accessor message: ::String
|
1695
|
+
SENSITIVE: []
|
1696
|
+
end
|
1697
|
+
|
1698
|
+
class MultiLayerStorage
|
1699
|
+
attr_accessor customer_managed_s3_storage: Types::CustomerManagedS3Storage
|
1700
|
+
SENSITIVE: []
|
1701
|
+
end
|
1702
|
+
|
1703
|
+
class Parquet < Aws::EmptyStructure
|
1704
|
+
end
|
1705
|
+
|
1706
|
+
class PortalResource
|
1707
|
+
attr_accessor id: ::String
|
1708
|
+
SENSITIVE: []
|
1709
|
+
end
|
1710
|
+
|
1711
|
+
class PortalStatus
|
1712
|
+
attr_accessor state: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
|
1713
|
+
attr_accessor error: Types::MonitorErrorDetails
|
1714
|
+
SENSITIVE: []
|
1715
|
+
end
|
1716
|
+
|
1717
|
+
class PortalSummary
|
1718
|
+
attr_accessor id: ::String
|
1719
|
+
attr_accessor name: ::String
|
1720
|
+
attr_accessor description: ::String
|
1721
|
+
attr_accessor start_url: ::String
|
1722
|
+
attr_accessor creation_date: ::Time
|
1723
|
+
attr_accessor last_update_date: ::Time
|
1724
|
+
attr_accessor role_arn: ::String
|
1725
|
+
attr_accessor status: Types::PortalStatus
|
1726
|
+
SENSITIVE: []
|
1727
|
+
end
|
1728
|
+
|
1729
|
+
class ProjectResource
|
1730
|
+
attr_accessor id: ::String
|
1731
|
+
SENSITIVE: []
|
1732
|
+
end
|
1733
|
+
|
1734
|
+
class ProjectSummary
|
1735
|
+
attr_accessor id: ::String
|
1736
|
+
attr_accessor name: ::String
|
1737
|
+
attr_accessor description: ::String
|
1738
|
+
attr_accessor creation_date: ::Time
|
1739
|
+
attr_accessor last_update_date: ::Time
|
1740
|
+
SENSITIVE: []
|
1741
|
+
end
|
1742
|
+
|
1743
|
+
class Property
|
1744
|
+
attr_accessor id: ::String
|
1745
|
+
attr_accessor name: ::String
|
1746
|
+
attr_accessor alias: ::String
|
1747
|
+
attr_accessor notification: Types::PropertyNotification
|
1748
|
+
attr_accessor data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT")
|
1749
|
+
attr_accessor unit: ::String
|
1750
|
+
attr_accessor type: Types::PropertyType
|
1751
|
+
attr_accessor path: ::Array[Types::AssetPropertyPathSegment]
|
1752
|
+
attr_accessor external_id: ::String
|
1753
|
+
SENSITIVE: []
|
1754
|
+
end
|
1755
|
+
|
1756
|
+
class PropertyNotification
|
1757
|
+
attr_accessor topic: ::String
|
1758
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
1759
|
+
SENSITIVE: []
|
1760
|
+
end
|
1761
|
+
|
1762
|
+
class PropertyType
|
1763
|
+
attr_accessor attribute: Types::Attribute
|
1764
|
+
attr_accessor measurement: Types::Measurement
|
1765
|
+
attr_accessor transform: Types::Transform
|
1766
|
+
attr_accessor metric: Types::Metric
|
1767
|
+
SENSITIVE: []
|
1768
|
+
end
|
1769
|
+
|
1770
|
+
class PutAssetPropertyValueEntry
|
1771
|
+
attr_accessor entry_id: ::String
|
1772
|
+
attr_accessor asset_id: ::String
|
1773
|
+
attr_accessor property_id: ::String
|
1774
|
+
attr_accessor property_alias: ::String
|
1775
|
+
attr_accessor property_values: ::Array[Types::AssetPropertyValue]
|
1776
|
+
SENSITIVE: []
|
1777
|
+
end
|
1778
|
+
|
1779
|
+
class PutDefaultEncryptionConfigurationRequest
|
1780
|
+
attr_accessor encryption_type: ("SITEWISE_DEFAULT_ENCRYPTION" | "KMS_BASED_ENCRYPTION")
|
1781
|
+
attr_accessor kms_key_id: ::String
|
1782
|
+
SENSITIVE: []
|
1783
|
+
end
|
1784
|
+
|
1785
|
+
class PutDefaultEncryptionConfigurationResponse
|
1786
|
+
attr_accessor encryption_type: ("SITEWISE_DEFAULT_ENCRYPTION" | "KMS_BASED_ENCRYPTION")
|
1787
|
+
attr_accessor kms_key_arn: ::String
|
1788
|
+
attr_accessor configuration_status: Types::ConfigurationStatus
|
1789
|
+
SENSITIVE: []
|
1790
|
+
end
|
1791
|
+
|
1792
|
+
class PutLoggingOptionsRequest
|
1793
|
+
attr_accessor logging_options: Types::LoggingOptions
|
1794
|
+
SENSITIVE: []
|
1795
|
+
end
|
1796
|
+
|
1797
|
+
class PutLoggingOptionsResponse < Aws::EmptyStructure
|
1798
|
+
end
|
1799
|
+
|
1800
|
+
class PutStorageConfigurationRequest
|
1801
|
+
attr_accessor storage_type: ("SITEWISE_DEFAULT_STORAGE" | "MULTI_LAYER_STORAGE")
|
1802
|
+
attr_accessor multi_layer_storage: Types::MultiLayerStorage
|
1803
|
+
attr_accessor disassociated_data_storage: ("ENABLED" | "DISABLED")
|
1804
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
1805
|
+
attr_accessor warm_tier: ("ENABLED" | "DISABLED")
|
1806
|
+
attr_accessor warm_tier_retention_period: Types::WarmTierRetentionPeriod
|
1807
|
+
SENSITIVE: []
|
1808
|
+
end
|
1809
|
+
|
1810
|
+
class PutStorageConfigurationResponse
|
1811
|
+
attr_accessor storage_type: ("SITEWISE_DEFAULT_STORAGE" | "MULTI_LAYER_STORAGE")
|
1812
|
+
attr_accessor multi_layer_storage: Types::MultiLayerStorage
|
1813
|
+
attr_accessor disassociated_data_storage: ("ENABLED" | "DISABLED")
|
1814
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
1815
|
+
attr_accessor configuration_status: Types::ConfigurationStatus
|
1816
|
+
attr_accessor warm_tier: ("ENABLED" | "DISABLED")
|
1817
|
+
attr_accessor warm_tier_retention_period: Types::WarmTierRetentionPeriod
|
1818
|
+
SENSITIVE: []
|
1819
|
+
end
|
1820
|
+
|
1821
|
+
class QueryTimeoutException
|
1822
|
+
attr_accessor message: ::String
|
1823
|
+
SENSITIVE: []
|
1824
|
+
end
|
1825
|
+
|
1826
|
+
class Resource
|
1827
|
+
attr_accessor portal: Types::PortalResource
|
1828
|
+
attr_accessor project: Types::ProjectResource
|
1829
|
+
SENSITIVE: []
|
1830
|
+
end
|
1831
|
+
|
1832
|
+
class ResourceAlreadyExistsException
|
1833
|
+
attr_accessor message: ::String
|
1834
|
+
attr_accessor resource_id: ::String
|
1835
|
+
attr_accessor resource_arn: ::String
|
1836
|
+
SENSITIVE: []
|
1837
|
+
end
|
1838
|
+
|
1839
|
+
class ResourceNotFoundException
|
1840
|
+
attr_accessor message: ::String
|
1841
|
+
SENSITIVE: []
|
1842
|
+
end
|
1843
|
+
|
1844
|
+
class RetentionPeriod
|
1845
|
+
attr_accessor number_of_days: ::Integer
|
1846
|
+
attr_accessor unlimited: bool
|
1847
|
+
SENSITIVE: []
|
1848
|
+
end
|
1849
|
+
|
1850
|
+
class Row
|
1851
|
+
attr_accessor data: ::Array[Types::Datum]
|
1852
|
+
SENSITIVE: []
|
1853
|
+
end
|
1854
|
+
|
1855
|
+
class ServiceUnavailableException
|
1856
|
+
attr_accessor message: ::String
|
1857
|
+
SENSITIVE: []
|
1858
|
+
end
|
1859
|
+
|
1860
|
+
class TagResourceRequest
|
1861
|
+
attr_accessor resource_arn: ::String
|
1862
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1863
|
+
SENSITIVE: []
|
1864
|
+
end
|
1865
|
+
|
1866
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1867
|
+
end
|
1868
|
+
|
1869
|
+
class TargetResource
|
1870
|
+
attr_accessor asset_id: ::String
|
1871
|
+
SENSITIVE: []
|
1872
|
+
end
|
1873
|
+
|
1874
|
+
class ThrottlingException
|
1875
|
+
attr_accessor message: ::String
|
1876
|
+
SENSITIVE: []
|
1877
|
+
end
|
1878
|
+
|
1879
|
+
class TimeInNanos
|
1880
|
+
attr_accessor time_in_seconds: ::Integer
|
1881
|
+
attr_accessor offset_in_nanos: ::Integer
|
1882
|
+
SENSITIVE: []
|
1883
|
+
end
|
1884
|
+
|
1885
|
+
class TimeSeriesSummary
|
1886
|
+
attr_accessor asset_id: ::String
|
1887
|
+
attr_accessor property_id: ::String
|
1888
|
+
attr_accessor alias: ::String
|
1889
|
+
attr_accessor time_series_id: ::String
|
1890
|
+
attr_accessor data_type: ("STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT")
|
1891
|
+
attr_accessor data_type_spec: ::String
|
1892
|
+
attr_accessor time_series_creation_date: ::Time
|
1893
|
+
attr_accessor time_series_last_update_date: ::Time
|
1894
|
+
attr_accessor time_series_arn: ::String
|
1895
|
+
SENSITIVE: []
|
1896
|
+
end
|
1897
|
+
|
1898
|
+
class TooManyTagsException
|
1899
|
+
attr_accessor message: ::String
|
1900
|
+
attr_accessor resource_name: ::String
|
1901
|
+
SENSITIVE: []
|
1902
|
+
end
|
1903
|
+
|
1904
|
+
class Transform
|
1905
|
+
attr_accessor expression: ::String
|
1906
|
+
attr_accessor variables: ::Array[Types::ExpressionVariable]
|
1907
|
+
attr_accessor processing_config: Types::TransformProcessingConfig
|
1908
|
+
SENSITIVE: []
|
1909
|
+
end
|
1910
|
+
|
1911
|
+
class TransformProcessingConfig
|
1912
|
+
attr_accessor compute_location: ("EDGE" | "CLOUD")
|
1913
|
+
attr_accessor forwarding_config: Types::ForwardingConfig
|
1914
|
+
SENSITIVE: []
|
1915
|
+
end
|
1916
|
+
|
1917
|
+
class TumblingWindow
|
1918
|
+
attr_accessor interval: ::String
|
1919
|
+
attr_accessor offset: ::String
|
1920
|
+
SENSITIVE: []
|
1921
|
+
end
|
1922
|
+
|
1923
|
+
class UnauthorizedException
|
1924
|
+
attr_accessor message: ::String
|
1925
|
+
SENSITIVE: []
|
1926
|
+
end
|
1927
|
+
|
1928
|
+
class UntagResourceRequest
|
1929
|
+
attr_accessor resource_arn: ::String
|
1930
|
+
attr_accessor tag_keys: ::Array[::String]
|
1931
|
+
SENSITIVE: []
|
1932
|
+
end
|
1933
|
+
|
1934
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1935
|
+
end
|
1936
|
+
|
1937
|
+
class UpdateAccessPolicyRequest
|
1938
|
+
attr_accessor access_policy_id: ::String
|
1939
|
+
attr_accessor access_policy_identity: Types::Identity
|
1940
|
+
attr_accessor access_policy_resource: Types::Resource
|
1941
|
+
attr_accessor access_policy_permission: ("ADMINISTRATOR" | "VIEWER")
|
1942
|
+
attr_accessor client_token: ::String
|
1943
|
+
SENSITIVE: []
|
1944
|
+
end
|
1945
|
+
|
1946
|
+
class UpdateAccessPolicyResponse < Aws::EmptyStructure
|
1947
|
+
end
|
1948
|
+
|
1949
|
+
class UpdateAssetModelCompositeModelRequest
|
1950
|
+
attr_accessor asset_model_id: ::String
|
1951
|
+
attr_accessor asset_model_composite_model_id: ::String
|
1952
|
+
attr_accessor asset_model_composite_model_external_id: ::String
|
1953
|
+
attr_accessor asset_model_composite_model_description: ::String
|
1954
|
+
attr_accessor asset_model_composite_model_name: ::String
|
1955
|
+
attr_accessor client_token: ::String
|
1956
|
+
attr_accessor asset_model_composite_model_properties: ::Array[Types::AssetModelProperty]
|
1957
|
+
SENSITIVE: []
|
1958
|
+
end
|
1959
|
+
|
1960
|
+
class UpdateAssetModelCompositeModelResponse
|
1961
|
+
attr_accessor asset_model_composite_model_path: ::Array[Types::AssetModelCompositeModelPathSegment]
|
1962
|
+
attr_accessor asset_model_status: Types::AssetModelStatus
|
1963
|
+
SENSITIVE: []
|
1964
|
+
end
|
1965
|
+
|
1966
|
+
class UpdateAssetModelRequest
|
1967
|
+
attr_accessor asset_model_id: ::String
|
1968
|
+
attr_accessor asset_model_name: ::String
|
1969
|
+
attr_accessor asset_model_description: ::String
|
1970
|
+
attr_accessor asset_model_properties: ::Array[Types::AssetModelProperty]
|
1971
|
+
attr_accessor asset_model_hierarchies: ::Array[Types::AssetModelHierarchy]
|
1972
|
+
attr_accessor asset_model_composite_models: ::Array[Types::AssetModelCompositeModel]
|
1973
|
+
attr_accessor client_token: ::String
|
1974
|
+
attr_accessor asset_model_external_id: ::String
|
1975
|
+
SENSITIVE: []
|
1976
|
+
end
|
1977
|
+
|
1978
|
+
class UpdateAssetModelResponse
|
1979
|
+
attr_accessor asset_model_status: Types::AssetModelStatus
|
1980
|
+
SENSITIVE: []
|
1981
|
+
end
|
1982
|
+
|
1983
|
+
class UpdateAssetPropertyRequest
|
1984
|
+
attr_accessor asset_id: ::String
|
1985
|
+
attr_accessor property_id: ::String
|
1986
|
+
attr_accessor property_alias: ::String
|
1987
|
+
attr_accessor property_notification_state: ("ENABLED" | "DISABLED")
|
1988
|
+
attr_accessor client_token: ::String
|
1989
|
+
attr_accessor property_unit: ::String
|
1990
|
+
SENSITIVE: []
|
1991
|
+
end
|
1992
|
+
|
1993
|
+
class UpdateAssetRequest
|
1994
|
+
attr_accessor asset_id: ::String
|
1995
|
+
attr_accessor asset_name: ::String
|
1996
|
+
attr_accessor client_token: ::String
|
1997
|
+
attr_accessor asset_description: ::String
|
1998
|
+
attr_accessor asset_external_id: ::String
|
1999
|
+
SENSITIVE: []
|
2000
|
+
end
|
2001
|
+
|
2002
|
+
class UpdateAssetResponse
|
2003
|
+
attr_accessor asset_status: Types::AssetStatus
|
2004
|
+
SENSITIVE: []
|
2005
|
+
end
|
2006
|
+
|
2007
|
+
class UpdateDashboardRequest
|
2008
|
+
attr_accessor dashboard_id: ::String
|
2009
|
+
attr_accessor dashboard_name: ::String
|
2010
|
+
attr_accessor dashboard_description: ::String
|
2011
|
+
attr_accessor dashboard_definition: ::String
|
2012
|
+
attr_accessor client_token: ::String
|
2013
|
+
SENSITIVE: []
|
2014
|
+
end
|
2015
|
+
|
2016
|
+
class UpdateDashboardResponse < Aws::EmptyStructure
|
2017
|
+
end
|
2018
|
+
|
2019
|
+
class UpdateGatewayCapabilityConfigurationRequest
|
2020
|
+
attr_accessor gateway_id: ::String
|
2021
|
+
attr_accessor capability_namespace: ::String
|
2022
|
+
attr_accessor capability_configuration: ::String
|
2023
|
+
SENSITIVE: []
|
2024
|
+
end
|
2025
|
+
|
2026
|
+
class UpdateGatewayCapabilityConfigurationResponse
|
2027
|
+
attr_accessor capability_namespace: ::String
|
2028
|
+
attr_accessor capability_sync_status: ("IN_SYNC" | "OUT_OF_SYNC" | "SYNC_FAILED" | "UNKNOWN")
|
2029
|
+
SENSITIVE: []
|
2030
|
+
end
|
2031
|
+
|
2032
|
+
class UpdateGatewayRequest
|
2033
|
+
attr_accessor gateway_id: ::String
|
2034
|
+
attr_accessor gateway_name: ::String
|
2035
|
+
SENSITIVE: []
|
2036
|
+
end
|
2037
|
+
|
2038
|
+
class UpdatePortalRequest
|
2039
|
+
attr_accessor portal_id: ::String
|
2040
|
+
attr_accessor portal_name: ::String
|
2041
|
+
attr_accessor portal_description: ::String
|
2042
|
+
attr_accessor portal_contact_email: ::String
|
2043
|
+
attr_accessor portal_logo_image: Types::Image
|
2044
|
+
attr_accessor role_arn: ::String
|
2045
|
+
attr_accessor client_token: ::String
|
2046
|
+
attr_accessor notification_sender_email: ::String
|
2047
|
+
attr_accessor alarms: Types::Alarms
|
2048
|
+
SENSITIVE: []
|
2049
|
+
end
|
2050
|
+
|
2051
|
+
class UpdatePortalResponse
|
2052
|
+
attr_accessor portal_status: Types::PortalStatus
|
2053
|
+
SENSITIVE: []
|
2054
|
+
end
|
2055
|
+
|
2056
|
+
class UpdateProjectRequest
|
2057
|
+
attr_accessor project_id: ::String
|
2058
|
+
attr_accessor project_name: ::String
|
2059
|
+
attr_accessor project_description: ::String
|
2060
|
+
attr_accessor client_token: ::String
|
2061
|
+
SENSITIVE: []
|
2062
|
+
end
|
2063
|
+
|
2064
|
+
class UpdateProjectResponse < Aws::EmptyStructure
|
2065
|
+
end
|
2066
|
+
|
2067
|
+
class UserIdentity
|
2068
|
+
attr_accessor id: ::String
|
2069
|
+
SENSITIVE: []
|
2070
|
+
end
|
2071
|
+
|
2072
|
+
class ValidationException
|
2073
|
+
attr_accessor message: ::String
|
2074
|
+
SENSITIVE: []
|
2075
|
+
end
|
2076
|
+
|
2077
|
+
class VariableValue
|
2078
|
+
attr_accessor property_id: ::String
|
2079
|
+
attr_accessor hierarchy_id: ::String
|
2080
|
+
attr_accessor property_path: ::Array[Types::AssetModelPropertyPathSegment]
|
2081
|
+
SENSITIVE: []
|
2082
|
+
end
|
2083
|
+
|
2084
|
+
class Variant
|
2085
|
+
attr_accessor string_value: ::String
|
2086
|
+
attr_accessor integer_value: ::Integer
|
2087
|
+
attr_accessor double_value: ::Float
|
2088
|
+
attr_accessor boolean_value: bool
|
2089
|
+
SENSITIVE: []
|
2090
|
+
end
|
2091
|
+
|
2092
|
+
class WarmTierRetentionPeriod
|
2093
|
+
attr_accessor number_of_days: ::Integer
|
2094
|
+
attr_accessor unlimited: bool
|
2095
|
+
SENSITIVE: []
|
2096
|
+
end
|
2097
|
+
end
|
2098
|
+
end
|