aws-sdk-iotsitewise 1.3.0 → 1.9.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.
- checksums.yaml +4 -4
- data/lib/aws-sdk-iotsitewise.rb +4 -2
- data/lib/aws-sdk-iotsitewise/client.rb +150 -62
- data/lib/aws-sdk-iotsitewise/client_api.rb +8 -3
- data/lib/aws-sdk-iotsitewise/errors.rb +2 -0
- data/lib/aws-sdk-iotsitewise/resource.rb +2 -0
- data/lib/aws-sdk-iotsitewise/types.rb +238 -34
- data/lib/aws-sdk-iotsitewise/waiters.rb +2 -0
- metadata +4 -4
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -245,6 +247,7 @@ module Aws::IoTSiteWise
|
|
245
247
|
Timestamps = Shapes::ListShape.new(name: 'Timestamps')
|
246
248
|
TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
|
247
249
|
Transform = Shapes::StructureShape.new(name: 'Transform')
|
250
|
+
TraversalDirection = Shapes::StringShape.new(name: 'TraversalDirection')
|
248
251
|
TumblingWindow = Shapes::StructureShape.new(name: 'TumblingWindow')
|
249
252
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
250
253
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
@@ -762,8 +765,8 @@ module Aws::IoTSiteWise
|
|
762
765
|
GetAssetPropertyValueHistoryRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: ID, location: "querystring", location_name: "assetId"))
|
763
766
|
GetAssetPropertyValueHistoryRequest.add_member(:property_id, Shapes::ShapeRef.new(shape: ID, location: "querystring", location_name: "propertyId"))
|
764
767
|
GetAssetPropertyValueHistoryRequest.add_member(:property_alias, Shapes::ShapeRef.new(shape: AssetPropertyAlias, location: "querystring", location_name: "propertyAlias"))
|
765
|
-
GetAssetPropertyValueHistoryRequest.add_member(:start_date, Shapes::ShapeRef.new(shape: Timestamp,
|
766
|
-
GetAssetPropertyValueHistoryRequest.add_member(:end_date, Shapes::ShapeRef.new(shape: Timestamp,
|
768
|
+
GetAssetPropertyValueHistoryRequest.add_member(:start_date, Shapes::ShapeRef.new(shape: Timestamp, location: "querystring", location_name: "startDate"))
|
769
|
+
GetAssetPropertyValueHistoryRequest.add_member(:end_date, Shapes::ShapeRef.new(shape: Timestamp, location: "querystring", location_name: "endDate"))
|
767
770
|
GetAssetPropertyValueHistoryRequest.add_member(:qualities, Shapes::ShapeRef.new(shape: Qualities, location: "querystring", location_name: "qualities"))
|
768
771
|
GetAssetPropertyValueHistoryRequest.add_member(:time_ordering, Shapes::ShapeRef.new(shape: TimeOrdering, location: "querystring", location_name: "timeOrdering"))
|
769
772
|
GetAssetPropertyValueHistoryRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
@@ -846,7 +849,8 @@ module Aws::IoTSiteWise
|
|
846
849
|
ListAssetsResponse.struct_class = Types::ListAssetsResponse
|
847
850
|
|
848
851
|
ListAssociatedAssetsRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: ID, required: true, location: "uri", location_name: "assetId"))
|
849
|
-
ListAssociatedAssetsRequest.add_member(:hierarchy_id, Shapes::ShapeRef.new(shape: ID,
|
852
|
+
ListAssociatedAssetsRequest.add_member(:hierarchy_id, Shapes::ShapeRef.new(shape: ID, location: "querystring", location_name: "hierarchyId"))
|
853
|
+
ListAssociatedAssetsRequest.add_member(:traversal_direction, Shapes::ShapeRef.new(shape: TraversalDirection, location: "querystring", location_name: "traversalDirection"))
|
850
854
|
ListAssociatedAssetsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
851
855
|
ListAssociatedAssetsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
852
856
|
ListAssociatedAssetsRequest.struct_class = Types::ListAssociatedAssetsRequest
|
@@ -937,6 +941,7 @@ module Aws::IoTSiteWise
|
|
937
941
|
PortalSummary.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationDate"))
|
938
942
|
PortalSummary.add_member(:last_update_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdateDate"))
|
939
943
|
PortalSummary.add_member(:role_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "roleArn"))
|
944
|
+
PortalSummary.add_member(:status, Shapes::ShapeRef.new(shape: PortalStatus, required: true, location_name: "status"))
|
940
945
|
PortalSummary.struct_class = Types::PortalSummary
|
941
946
|
|
942
947
|
ProjectResource.add_member(:id, Shapes::ShapeRef.new(shape: ID, required: true, location_name: "id"))
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -43,6 +45,7 @@ module Aws::IoTSiteWise
|
|
43
45
|
:permission,
|
44
46
|
:creation_date,
|
45
47
|
:last_update_date)
|
48
|
+
SENSITIVE = []
|
46
49
|
include Aws::Structure
|
47
50
|
end
|
48
51
|
|
@@ -65,6 +68,7 @@ module Aws::IoTSiteWise
|
|
65
68
|
:timestamp,
|
66
69
|
:quality,
|
67
70
|
:value)
|
71
|
+
SENSITIVE = []
|
68
72
|
include Aws::Structure
|
69
73
|
end
|
70
74
|
|
@@ -104,6 +108,7 @@ module Aws::IoTSiteWise
|
|
104
108
|
:minimum,
|
105
109
|
:sum,
|
106
110
|
:standard_deviation)
|
111
|
+
SENSITIVE = []
|
107
112
|
include Aws::Structure
|
108
113
|
end
|
109
114
|
|
@@ -126,6 +131,7 @@ module Aws::IoTSiteWise
|
|
126
131
|
:asset_id,
|
127
132
|
:code,
|
128
133
|
:message)
|
134
|
+
SENSITIVE = []
|
129
135
|
include Aws::Structure
|
130
136
|
end
|
131
137
|
|
@@ -148,6 +154,7 @@ module Aws::IoTSiteWise
|
|
148
154
|
class AssetHierarchy < Struct.new(
|
149
155
|
:id,
|
150
156
|
:name)
|
157
|
+
SENSITIVE = []
|
151
158
|
include Aws::Structure
|
152
159
|
end
|
153
160
|
|
@@ -187,6 +194,7 @@ module Aws::IoTSiteWise
|
|
187
194
|
:id,
|
188
195
|
:name,
|
189
196
|
:child_asset_model_id)
|
197
|
+
SENSITIVE = []
|
190
198
|
include Aws::Structure
|
191
199
|
end
|
192
200
|
|
@@ -219,6 +227,7 @@ module Aws::IoTSiteWise
|
|
219
227
|
class AssetModelHierarchyDefinition < Struct.new(
|
220
228
|
:name,
|
221
229
|
:child_asset_model_id)
|
230
|
+
SENSITIVE = []
|
222
231
|
include Aws::Structure
|
223
232
|
end
|
224
233
|
|
@@ -296,6 +305,7 @@ module Aws::IoTSiteWise
|
|
296
305
|
:data_type,
|
297
306
|
:unit,
|
298
307
|
:type)
|
308
|
+
SENSITIVE = []
|
299
309
|
include Aws::Structure
|
300
310
|
end
|
301
311
|
|
@@ -369,11 +379,12 @@ module Aws::IoTSiteWise
|
|
369
379
|
:data_type,
|
370
380
|
:unit,
|
371
381
|
:type)
|
382
|
+
SENSITIVE = []
|
372
383
|
include Aws::Structure
|
373
384
|
end
|
374
385
|
|
375
386
|
# Contains current status information for an asset model. For more
|
376
|
-
# information, see [Asset and
|
387
|
+
# information, see [Asset and model states][1] in the *AWS IoT SiteWise
|
377
388
|
# User Guide*.
|
378
389
|
#
|
379
390
|
#
|
@@ -391,6 +402,7 @@ module Aws::IoTSiteWise
|
|
391
402
|
class AssetModelStatus < Struct.new(
|
392
403
|
:state,
|
393
404
|
:error)
|
405
|
+
SENSITIVE = []
|
394
406
|
include Aws::Structure
|
395
407
|
end
|
396
408
|
|
@@ -438,6 +450,7 @@ module Aws::IoTSiteWise
|
|
438
450
|
:creation_date,
|
439
451
|
:last_update_date,
|
440
452
|
:status)
|
453
|
+
SENSITIVE = []
|
441
454
|
include Aws::Structure
|
442
455
|
end
|
443
456
|
|
@@ -455,7 +468,7 @@ module Aws::IoTSiteWise
|
|
455
468
|
# The property alias that identifies the property, such as an OPC-UA
|
456
469
|
# server data stream path (for example,
|
457
470
|
# `/company/windfarm/3/turbine/7/temperature`). For more information,
|
458
|
-
# see [Mapping
|
471
|
+
# see [Mapping industrial data streams to asset properties][1] in the
|
459
472
|
# *AWS IoT SiteWise User Guide*.
|
460
473
|
#
|
461
474
|
#
|
@@ -465,7 +478,7 @@ module Aws::IoTSiteWise
|
|
465
478
|
#
|
466
479
|
# @!attribute [rw] notification
|
467
480
|
# The asset property's notification topic and state. For more
|
468
|
-
# information, see [UpdateAssetProperty][1]
|
481
|
+
# information, see [UpdateAssetProperty][1].
|
469
482
|
#
|
470
483
|
#
|
471
484
|
#
|
@@ -487,6 +500,7 @@ module Aws::IoTSiteWise
|
|
487
500
|
:notification,
|
488
501
|
:data_type,
|
489
502
|
:unit)
|
503
|
+
SENSITIVE = []
|
490
504
|
include Aws::Structure
|
491
505
|
end
|
492
506
|
|
@@ -525,11 +539,12 @@ module Aws::IoTSiteWise
|
|
525
539
|
:value,
|
526
540
|
:timestamp,
|
527
541
|
:quality)
|
542
|
+
SENSITIVE = []
|
528
543
|
include Aws::Structure
|
529
544
|
end
|
530
545
|
|
531
546
|
# Contains information about the current status of an asset. For more
|
532
|
-
# information, see [Asset and
|
547
|
+
# information, see [Asset and model states][1] in the *AWS IoT SiteWise
|
533
548
|
# User Guide*.
|
534
549
|
#
|
535
550
|
#
|
@@ -547,6 +562,7 @@ module Aws::IoTSiteWise
|
|
547
562
|
class AssetStatus < Struct.new(
|
548
563
|
:state,
|
549
564
|
:error)
|
565
|
+
SENSITIVE = []
|
550
566
|
include Aws::Structure
|
551
567
|
end
|
552
568
|
|
@@ -600,6 +616,7 @@ module Aws::IoTSiteWise
|
|
600
616
|
:last_update_date,
|
601
617
|
:status,
|
602
618
|
:hierarchies)
|
619
|
+
SENSITIVE = []
|
603
620
|
include Aws::Structure
|
604
621
|
end
|
605
622
|
|
@@ -621,7 +638,7 @@ module Aws::IoTSiteWise
|
|
621
638
|
# The ID of a hierarchy in the parent asset's model. Hierarchies
|
622
639
|
# allow different groupings of assets to be formed that all come from
|
623
640
|
# the same asset model. For more information, see [Asset
|
624
|
-
#
|
641
|
+
# hierarchies][1] in the *AWS IoT SiteWise User Guide*.
|
625
642
|
#
|
626
643
|
#
|
627
644
|
#
|
@@ -646,6 +663,7 @@ module Aws::IoTSiteWise
|
|
646
663
|
:hierarchy_id,
|
647
664
|
:child_asset_id,
|
648
665
|
:client_token)
|
666
|
+
SENSITIVE = []
|
649
667
|
include Aws::Structure
|
650
668
|
end
|
651
669
|
|
@@ -699,6 +717,7 @@ module Aws::IoTSiteWise
|
|
699
717
|
:last_update_date,
|
700
718
|
:status,
|
701
719
|
:hierarchies)
|
720
|
+
SENSITIVE = []
|
702
721
|
include Aws::Structure
|
703
722
|
end
|
704
723
|
|
@@ -720,7 +739,7 @@ module Aws::IoTSiteWise
|
|
720
739
|
# The default value of the asset model property attribute. All assets
|
721
740
|
# that you create from the asset model contain this attribute value.
|
722
741
|
# You can update an attribute's value after you create an asset. For
|
723
|
-
# more information, see [Updating
|
742
|
+
# more information, see [Updating attribute values][1] in the *AWS IoT
|
724
743
|
# SiteWise User Guide*.
|
725
744
|
#
|
726
745
|
#
|
@@ -730,6 +749,7 @@ module Aws::IoTSiteWise
|
|
730
749
|
#
|
731
750
|
class Attribute < Struct.new(
|
732
751
|
:default_value)
|
752
|
+
SENSITIVE = []
|
733
753
|
include Aws::Structure
|
734
754
|
end
|
735
755
|
|
@@ -763,6 +783,7 @@ module Aws::IoTSiteWise
|
|
763
783
|
:project_id,
|
764
784
|
:asset_ids,
|
765
785
|
:client_token)
|
786
|
+
SENSITIVE = []
|
766
787
|
include Aws::Structure
|
767
788
|
end
|
768
789
|
|
@@ -772,6 +793,7 @@ module Aws::IoTSiteWise
|
|
772
793
|
#
|
773
794
|
class BatchAssociateProjectAssetsResponse < Struct.new(
|
774
795
|
:errors)
|
796
|
+
SENSITIVE = []
|
775
797
|
include Aws::Structure
|
776
798
|
end
|
777
799
|
|
@@ -805,6 +827,7 @@ module Aws::IoTSiteWise
|
|
805
827
|
:project_id,
|
806
828
|
:asset_ids,
|
807
829
|
:client_token)
|
830
|
+
SENSITIVE = []
|
808
831
|
include Aws::Structure
|
809
832
|
end
|
810
833
|
|
@@ -814,6 +837,7 @@ module Aws::IoTSiteWise
|
|
814
837
|
#
|
815
838
|
class BatchDisassociateProjectAssetsResponse < Struct.new(
|
816
839
|
:errors)
|
840
|
+
SENSITIVE = []
|
817
841
|
include Aws::Structure
|
818
842
|
end
|
819
843
|
|
@@ -836,6 +860,7 @@ module Aws::IoTSiteWise
|
|
836
860
|
:error_code,
|
837
861
|
:error_message,
|
838
862
|
:timestamps)
|
863
|
+
SENSITIVE = []
|
839
864
|
include Aws::Structure
|
840
865
|
end
|
841
866
|
|
@@ -857,6 +882,7 @@ module Aws::IoTSiteWise
|
|
857
882
|
class BatchPutAssetPropertyErrorEntry < Struct.new(
|
858
883
|
:entry_id,
|
859
884
|
:errors)
|
885
|
+
SENSITIVE = []
|
860
886
|
include Aws::Structure
|
861
887
|
end
|
862
888
|
|
@@ -896,6 +922,7 @@ module Aws::IoTSiteWise
|
|
896
922
|
#
|
897
923
|
class BatchPutAssetPropertyValueRequest < Struct.new(
|
898
924
|
:entries)
|
925
|
+
SENSITIVE = []
|
899
926
|
include Aws::Structure
|
900
927
|
end
|
901
928
|
|
@@ -906,6 +933,7 @@ module Aws::IoTSiteWise
|
|
906
933
|
#
|
907
934
|
class BatchPutAssetPropertyValueResponse < Struct.new(
|
908
935
|
:error_entries)
|
936
|
+
SENSITIVE = []
|
909
937
|
include Aws::Structure
|
910
938
|
end
|
911
939
|
|
@@ -928,6 +956,7 @@ module Aws::IoTSiteWise
|
|
928
956
|
:message,
|
929
957
|
:resource_id,
|
930
958
|
:resource_arn)
|
959
|
+
SENSITIVE = []
|
931
960
|
include Aws::Structure
|
932
961
|
end
|
933
962
|
|
@@ -998,6 +1027,7 @@ module Aws::IoTSiteWise
|
|
998
1027
|
:access_policy_permission,
|
999
1028
|
:client_token,
|
1000
1029
|
:tags)
|
1030
|
+
SENSITIVE = []
|
1001
1031
|
include Aws::Structure
|
1002
1032
|
end
|
1003
1033
|
|
@@ -1018,6 +1048,7 @@ module Aws::IoTSiteWise
|
|
1018
1048
|
class CreateAccessPolicyResponse < Struct.new(
|
1019
1049
|
:access_policy_id,
|
1020
1050
|
:access_policy_arn)
|
1051
|
+
SENSITIVE = []
|
1021
1052
|
include Aws::Structure
|
1022
1053
|
end
|
1023
1054
|
|
@@ -1092,7 +1123,7 @@ module Aws::IoTSiteWise
|
|
1092
1123
|
#
|
1093
1124
|
# @!attribute [rw] asset_model_properties
|
1094
1125
|
# The property definitions of the asset model. For more information,
|
1095
|
-
# see [Asset
|
1126
|
+
# see [Asset properties][1] in the *AWS IoT SiteWise User Guide*.
|
1096
1127
|
#
|
1097
1128
|
# You can specify up to 200 properties per asset model. For more
|
1098
1129
|
# information, see [Quotas][2] in the *AWS IoT SiteWise User Guide*.
|
@@ -1107,7 +1138,7 @@ module Aws::IoTSiteWise
|
|
1107
1138
|
# The hierarchy definitions of the asset model. Each hierarchy
|
1108
1139
|
# specifies an asset model whose assets can be children of any other
|
1109
1140
|
# assets created from this asset model. For more information, see
|
1110
|
-
# [Asset
|
1141
|
+
# [Asset hierarchies][1] in the *AWS IoT SiteWise User Guide*.
|
1111
1142
|
#
|
1112
1143
|
# You can specify up to 10 hierarchies per asset model. For more
|
1113
1144
|
# information, see [Quotas][2] in the *AWS IoT SiteWise User Guide*.
|
@@ -1144,6 +1175,7 @@ module Aws::IoTSiteWise
|
|
1144
1175
|
:asset_model_hierarchies,
|
1145
1176
|
:client_token,
|
1146
1177
|
:tags)
|
1178
|
+
SENSITIVE = []
|
1147
1179
|
include Aws::Structure
|
1148
1180
|
end
|
1149
1181
|
|
@@ -1171,6 +1203,7 @@ module Aws::IoTSiteWise
|
|
1171
1203
|
:asset_model_id,
|
1172
1204
|
:asset_model_arn,
|
1173
1205
|
:asset_model_status)
|
1206
|
+
SENSITIVE = []
|
1174
1207
|
include Aws::Structure
|
1175
1208
|
end
|
1176
1209
|
|
@@ -1218,6 +1251,7 @@ module Aws::IoTSiteWise
|
|
1218
1251
|
:asset_model_id,
|
1219
1252
|
:client_token,
|
1220
1253
|
:tags)
|
1254
|
+
SENSITIVE = []
|
1221
1255
|
include Aws::Structure
|
1222
1256
|
end
|
1223
1257
|
|
@@ -1245,6 +1279,7 @@ module Aws::IoTSiteWise
|
|
1245
1279
|
:asset_id,
|
1246
1280
|
:asset_arn,
|
1247
1281
|
:asset_status)
|
1282
|
+
SENSITIVE = []
|
1248
1283
|
include Aws::Structure
|
1249
1284
|
end
|
1250
1285
|
|
@@ -1276,7 +1311,7 @@ module Aws::IoTSiteWise
|
|
1276
1311
|
#
|
1277
1312
|
# @!attribute [rw] dashboard_definition
|
1278
1313
|
# The dashboard definition specified in a JSON literal. For detailed
|
1279
|
-
# information, see [Creating
|
1314
|
+
# information, see [Creating dashboards (CLI)][1] in the *AWS IoT
|
1280
1315
|
# SiteWise User Guide*.
|
1281
1316
|
#
|
1282
1317
|
#
|
@@ -1310,6 +1345,7 @@ module Aws::IoTSiteWise
|
|
1310
1345
|
:dashboard_definition,
|
1311
1346
|
:client_token,
|
1312
1347
|
:tags)
|
1348
|
+
SENSITIVE = []
|
1313
1349
|
include Aws::Structure
|
1314
1350
|
end
|
1315
1351
|
|
@@ -1330,6 +1366,7 @@ module Aws::IoTSiteWise
|
|
1330
1366
|
class CreateDashboardResponse < Struct.new(
|
1331
1367
|
:dashboard_id,
|
1332
1368
|
:dashboard_arn)
|
1369
|
+
SENSITIVE = []
|
1333
1370
|
include Aws::Structure
|
1334
1371
|
end
|
1335
1372
|
|
@@ -1371,6 +1408,7 @@ module Aws::IoTSiteWise
|
|
1371
1408
|
:gateway_name,
|
1372
1409
|
:gateway_platform,
|
1373
1410
|
:tags)
|
1411
|
+
SENSITIVE = []
|
1374
1412
|
include Aws::Structure
|
1375
1413
|
end
|
1376
1414
|
|
@@ -1392,6 +1430,7 @@ module Aws::IoTSiteWise
|
|
1392
1430
|
class CreateGatewayResponse < Struct.new(
|
1393
1431
|
:gateway_id,
|
1394
1432
|
:gateway_arn)
|
1433
|
+
SENSITIVE = []
|
1395
1434
|
include Aws::Structure
|
1396
1435
|
end
|
1397
1436
|
|
@@ -1469,6 +1508,7 @@ module Aws::IoTSiteWise
|
|
1469
1508
|
:portal_logo_image_file,
|
1470
1509
|
:role_arn,
|
1471
1510
|
:tags)
|
1511
|
+
SENSITIVE = []
|
1472
1512
|
include Aws::Structure
|
1473
1513
|
end
|
1474
1514
|
|
@@ -1505,6 +1545,7 @@ module Aws::IoTSiteWise
|
|
1505
1545
|
:portal_start_url,
|
1506
1546
|
:portal_status,
|
1507
1547
|
:sso_application_id)
|
1548
|
+
SENSITIVE = []
|
1508
1549
|
include Aws::Structure
|
1509
1550
|
end
|
1510
1551
|
|
@@ -1558,6 +1599,7 @@ module Aws::IoTSiteWise
|
|
1558
1599
|
:project_description,
|
1559
1600
|
:client_token,
|
1560
1601
|
:tags)
|
1602
|
+
SENSITIVE = []
|
1561
1603
|
include Aws::Structure
|
1562
1604
|
end
|
1563
1605
|
|
@@ -1578,6 +1620,7 @@ module Aws::IoTSiteWise
|
|
1578
1620
|
class CreateProjectResponse < Struct.new(
|
1579
1621
|
:project_id,
|
1580
1622
|
:project_arn)
|
1623
|
+
SENSITIVE = []
|
1581
1624
|
include Aws::Structure
|
1582
1625
|
end
|
1583
1626
|
|
@@ -1609,6 +1652,7 @@ module Aws::IoTSiteWise
|
|
1609
1652
|
:description,
|
1610
1653
|
:creation_date,
|
1611
1654
|
:last_update_date)
|
1655
|
+
SENSITIVE = []
|
1612
1656
|
include Aws::Structure
|
1613
1657
|
end
|
1614
1658
|
|
@@ -1636,6 +1680,7 @@ module Aws::IoTSiteWise
|
|
1636
1680
|
class DeleteAccessPolicyRequest < Struct.new(
|
1637
1681
|
:access_policy_id,
|
1638
1682
|
:client_token)
|
1683
|
+
SENSITIVE = []
|
1639
1684
|
include Aws::Structure
|
1640
1685
|
end
|
1641
1686
|
|
@@ -1665,6 +1710,7 @@ module Aws::IoTSiteWise
|
|
1665
1710
|
class DeleteAssetModelRequest < Struct.new(
|
1666
1711
|
:asset_model_id,
|
1667
1712
|
:client_token)
|
1713
|
+
SENSITIVE = []
|
1668
1714
|
include Aws::Structure
|
1669
1715
|
end
|
1670
1716
|
|
@@ -1675,6 +1721,7 @@ module Aws::IoTSiteWise
|
|
1675
1721
|
#
|
1676
1722
|
class DeleteAssetModelResponse < Struct.new(
|
1677
1723
|
:asset_model_status)
|
1724
|
+
SENSITIVE = []
|
1678
1725
|
include Aws::Structure
|
1679
1726
|
end
|
1680
1727
|
|
@@ -1702,6 +1749,7 @@ module Aws::IoTSiteWise
|
|
1702
1749
|
class DeleteAssetRequest < Struct.new(
|
1703
1750
|
:asset_id,
|
1704
1751
|
:client_token)
|
1752
|
+
SENSITIVE = []
|
1705
1753
|
include Aws::Structure
|
1706
1754
|
end
|
1707
1755
|
|
@@ -1712,6 +1760,7 @@ module Aws::IoTSiteWise
|
|
1712
1760
|
#
|
1713
1761
|
class DeleteAssetResponse < Struct.new(
|
1714
1762
|
:asset_status)
|
1763
|
+
SENSITIVE = []
|
1715
1764
|
include Aws::Structure
|
1716
1765
|
end
|
1717
1766
|
|
@@ -1739,6 +1788,7 @@ module Aws::IoTSiteWise
|
|
1739
1788
|
class DeleteDashboardRequest < Struct.new(
|
1740
1789
|
:dashboard_id,
|
1741
1790
|
:client_token)
|
1791
|
+
SENSITIVE = []
|
1742
1792
|
include Aws::Structure
|
1743
1793
|
end
|
1744
1794
|
|
@@ -1757,6 +1807,7 @@ module Aws::IoTSiteWise
|
|
1757
1807
|
#
|
1758
1808
|
class DeleteGatewayRequest < Struct.new(
|
1759
1809
|
:gateway_id)
|
1810
|
+
SENSITIVE = []
|
1760
1811
|
include Aws::Structure
|
1761
1812
|
end
|
1762
1813
|
|
@@ -1784,6 +1835,7 @@ module Aws::IoTSiteWise
|
|
1784
1835
|
class DeletePortalRequest < Struct.new(
|
1785
1836
|
:portal_id,
|
1786
1837
|
:client_token)
|
1838
|
+
SENSITIVE = []
|
1787
1839
|
include Aws::Structure
|
1788
1840
|
end
|
1789
1841
|
|
@@ -1794,6 +1846,7 @@ module Aws::IoTSiteWise
|
|
1794
1846
|
#
|
1795
1847
|
class DeletePortalResponse < Struct.new(
|
1796
1848
|
:portal_status)
|
1849
|
+
SENSITIVE = []
|
1797
1850
|
include Aws::Structure
|
1798
1851
|
end
|
1799
1852
|
|
@@ -1821,6 +1874,7 @@ module Aws::IoTSiteWise
|
|
1821
1874
|
class DeleteProjectRequest < Struct.new(
|
1822
1875
|
:project_id,
|
1823
1876
|
:client_token)
|
1877
|
+
SENSITIVE = []
|
1824
1878
|
include Aws::Structure
|
1825
1879
|
end
|
1826
1880
|
|
@@ -1839,6 +1893,7 @@ module Aws::IoTSiteWise
|
|
1839
1893
|
#
|
1840
1894
|
class DescribeAccessPolicyRequest < Struct.new(
|
1841
1895
|
:access_policy_id)
|
1896
|
+
SENSITIVE = []
|
1842
1897
|
include Aws::Structure
|
1843
1898
|
end
|
1844
1899
|
|
@@ -1887,6 +1942,7 @@ module Aws::IoTSiteWise
|
|
1887
1942
|
:access_policy_permission,
|
1888
1943
|
:access_policy_creation_date,
|
1889
1944
|
:access_policy_last_update_date)
|
1945
|
+
SENSITIVE = []
|
1890
1946
|
include Aws::Structure
|
1891
1947
|
end
|
1892
1948
|
|
@@ -1903,6 +1959,7 @@ module Aws::IoTSiteWise
|
|
1903
1959
|
#
|
1904
1960
|
class DescribeAssetModelRequest < Struct.new(
|
1905
1961
|
:asset_model_id)
|
1962
|
+
SENSITIVE = []
|
1906
1963
|
include Aws::Structure
|
1907
1964
|
end
|
1908
1965
|
|
@@ -1962,6 +2019,7 @@ module Aws::IoTSiteWise
|
|
1962
2019
|
:asset_model_creation_date,
|
1963
2020
|
:asset_model_last_update_date,
|
1964
2021
|
:asset_model_status)
|
2022
|
+
SENSITIVE = []
|
1965
2023
|
include Aws::Structure
|
1966
2024
|
end
|
1967
2025
|
|
@@ -1984,6 +2042,7 @@ module Aws::IoTSiteWise
|
|
1984
2042
|
class DescribeAssetPropertyRequest < Struct.new(
|
1985
2043
|
:asset_id,
|
1986
2044
|
:property_id)
|
2045
|
+
SENSITIVE = []
|
1987
2046
|
include Aws::Structure
|
1988
2047
|
end
|
1989
2048
|
|
@@ -2008,6 +2067,7 @@ module Aws::IoTSiteWise
|
|
2008
2067
|
:asset_name,
|
2009
2068
|
:asset_model_id,
|
2010
2069
|
:asset_property)
|
2070
|
+
SENSITIVE = []
|
2011
2071
|
include Aws::Structure
|
2012
2072
|
end
|
2013
2073
|
|
@@ -2024,6 +2084,7 @@ module Aws::IoTSiteWise
|
|
2024
2084
|
#
|
2025
2085
|
class DescribeAssetRequest < Struct.new(
|
2026
2086
|
:asset_id)
|
2087
|
+
SENSITIVE = []
|
2027
2088
|
include Aws::Structure
|
2028
2089
|
end
|
2029
2090
|
|
@@ -2081,6 +2142,7 @@ module Aws::IoTSiteWise
|
|
2081
2142
|
:asset_creation_date,
|
2082
2143
|
:asset_last_update_date,
|
2083
2144
|
:asset_status)
|
2145
|
+
SENSITIVE = []
|
2084
2146
|
include Aws::Structure
|
2085
2147
|
end
|
2086
2148
|
|
@@ -2097,6 +2159,7 @@ module Aws::IoTSiteWise
|
|
2097
2159
|
#
|
2098
2160
|
class DescribeDashboardRequest < Struct.new(
|
2099
2161
|
:dashboard_id)
|
2162
|
+
SENSITIVE = []
|
2100
2163
|
include Aws::Structure
|
2101
2164
|
end
|
2102
2165
|
|
@@ -2128,7 +2191,7 @@ module Aws::IoTSiteWise
|
|
2128
2191
|
#
|
2129
2192
|
# @!attribute [rw] dashboard_definition
|
2130
2193
|
# The dashboard's definition JSON literal. For detailed information,
|
2131
|
-
# see [Creating
|
2194
|
+
# see [Creating dashboards (CLI)][1] in the *AWS IoT SiteWise User
|
2132
2195
|
# Guide*.
|
2133
2196
|
#
|
2134
2197
|
#
|
@@ -2153,6 +2216,7 @@ module Aws::IoTSiteWise
|
|
2153
2216
|
:dashboard_definition,
|
2154
2217
|
:dashboard_creation_date,
|
2155
2218
|
:dashboard_last_update_date)
|
2219
|
+
SENSITIVE = []
|
2156
2220
|
include Aws::Structure
|
2157
2221
|
end
|
2158
2222
|
|
@@ -2179,6 +2243,7 @@ module Aws::IoTSiteWise
|
|
2179
2243
|
class DescribeGatewayCapabilityConfigurationRequest < Struct.new(
|
2180
2244
|
:gateway_id,
|
2181
2245
|
:capability_namespace)
|
2246
|
+
SENSITIVE = []
|
2182
2247
|
include Aws::Structure
|
2183
2248
|
end
|
2184
2249
|
|
@@ -2217,6 +2282,7 @@ module Aws::IoTSiteWise
|
|
2217
2282
|
:capability_namespace,
|
2218
2283
|
:capability_configuration,
|
2219
2284
|
:capability_sync_status)
|
2285
|
+
SENSITIVE = []
|
2220
2286
|
include Aws::Structure
|
2221
2287
|
end
|
2222
2288
|
|
@@ -2233,6 +2299,7 @@ module Aws::IoTSiteWise
|
|
2233
2299
|
#
|
2234
2300
|
class DescribeGatewayRequest < Struct.new(
|
2235
2301
|
:gateway_id)
|
2302
|
+
SENSITIVE = []
|
2236
2303
|
include Aws::Structure
|
2237
2304
|
end
|
2238
2305
|
|
@@ -2285,6 +2352,7 @@ module Aws::IoTSiteWise
|
|
2285
2352
|
:gateway_capability_summaries,
|
2286
2353
|
:creation_date,
|
2287
2354
|
:last_update_date)
|
2355
|
+
SENSITIVE = []
|
2288
2356
|
include Aws::Structure
|
2289
2357
|
end
|
2290
2358
|
|
@@ -2298,6 +2366,7 @@ module Aws::IoTSiteWise
|
|
2298
2366
|
#
|
2299
2367
|
class DescribeLoggingOptionsResponse < Struct.new(
|
2300
2368
|
:logging_options)
|
2369
|
+
SENSITIVE = []
|
2301
2370
|
include Aws::Structure
|
2302
2371
|
end
|
2303
2372
|
|
@@ -2314,6 +2383,7 @@ module Aws::IoTSiteWise
|
|
2314
2383
|
#
|
2315
2384
|
class DescribePortalRequest < Struct.new(
|
2316
2385
|
:portal_id)
|
2386
|
+
SENSITIVE = []
|
2317
2387
|
include Aws::Structure
|
2318
2388
|
end
|
2319
2389
|
|
@@ -2395,6 +2465,7 @@ module Aws::IoTSiteWise
|
|
2395
2465
|
:portal_last_update_date,
|
2396
2466
|
:portal_logo_image_location,
|
2397
2467
|
:role_arn)
|
2468
|
+
SENSITIVE = []
|
2398
2469
|
include Aws::Structure
|
2399
2470
|
end
|
2400
2471
|
|
@@ -2411,6 +2482,7 @@ module Aws::IoTSiteWise
|
|
2411
2482
|
#
|
2412
2483
|
class DescribeProjectRequest < Struct.new(
|
2413
2484
|
:project_id)
|
2485
|
+
SENSITIVE = []
|
2414
2486
|
include Aws::Structure
|
2415
2487
|
end
|
2416
2488
|
|
@@ -2456,6 +2528,7 @@ module Aws::IoTSiteWise
|
|
2456
2528
|
:project_description,
|
2457
2529
|
:project_creation_date,
|
2458
2530
|
:project_last_update_date)
|
2531
|
+
SENSITIVE = []
|
2459
2532
|
include Aws::Structure
|
2460
2533
|
end
|
2461
2534
|
|
@@ -2479,7 +2552,7 @@ module Aws::IoTSiteWise
|
|
2479
2552
|
# allow different groupings of assets to be formed that all come from
|
2480
2553
|
# the same asset model. You can use the hierarchy ID to identify the
|
2481
2554
|
# correct asset to disassociate. For more information, see [Asset
|
2482
|
-
#
|
2555
|
+
# hierarchies][1] in the *AWS IoT SiteWise User Guide*.
|
2483
2556
|
#
|
2484
2557
|
#
|
2485
2558
|
#
|
@@ -2504,6 +2577,7 @@ module Aws::IoTSiteWise
|
|
2504
2577
|
:hierarchy_id,
|
2505
2578
|
:child_asset_id,
|
2506
2579
|
:client_token)
|
2580
|
+
SENSITIVE = []
|
2507
2581
|
include Aws::Structure
|
2508
2582
|
end
|
2509
2583
|
|
@@ -2520,6 +2594,7 @@ module Aws::IoTSiteWise
|
|
2520
2594
|
class ErrorDetails < Struct.new(
|
2521
2595
|
:code,
|
2522
2596
|
:message)
|
2597
|
+
SENSITIVE = []
|
2523
2598
|
include Aws::Structure
|
2524
2599
|
end
|
2525
2600
|
|
@@ -2548,6 +2623,7 @@ module Aws::IoTSiteWise
|
|
2548
2623
|
class ExpressionVariable < Struct.new(
|
2549
2624
|
:name,
|
2550
2625
|
:value)
|
2626
|
+
SENSITIVE = []
|
2551
2627
|
include Aws::Structure
|
2552
2628
|
end
|
2553
2629
|
|
@@ -2576,6 +2652,7 @@ module Aws::IoTSiteWise
|
|
2576
2652
|
class GatewayCapabilitySummary < Struct.new(
|
2577
2653
|
:capability_namespace,
|
2578
2654
|
:capability_sync_status)
|
2655
|
+
SENSITIVE = []
|
2579
2656
|
include Aws::Structure
|
2580
2657
|
end
|
2581
2658
|
|
@@ -2596,6 +2673,7 @@ module Aws::IoTSiteWise
|
|
2596
2673
|
#
|
2597
2674
|
class GatewayPlatform < Struct.new(
|
2598
2675
|
:greengrass)
|
2676
|
+
SENSITIVE = []
|
2599
2677
|
include Aws::Structure
|
2600
2678
|
end
|
2601
2679
|
|
@@ -2634,6 +2712,7 @@ module Aws::IoTSiteWise
|
|
2634
2712
|
:gateway_capability_summaries,
|
2635
2713
|
:creation_date,
|
2636
2714
|
:last_update_date)
|
2715
|
+
SENSITIVE = []
|
2637
2716
|
include Aws::Structure
|
2638
2717
|
end
|
2639
2718
|
|
@@ -2666,7 +2745,7 @@ module Aws::IoTSiteWise
|
|
2666
2745
|
# The property alias that identifies the property, such as an OPC-UA
|
2667
2746
|
# server data stream path (for example,
|
2668
2747
|
# `/company/windfarm/3/turbine/7/temperature`). For more information,
|
2669
|
-
# see [Mapping
|
2748
|
+
# see [Mapping industrial data streams to asset properties][1] in the
|
2670
2749
|
# *AWS IoT SiteWise User Guide*.
|
2671
2750
|
#
|
2672
2751
|
#
|
@@ -2698,6 +2777,8 @@ module Aws::IoTSiteWise
|
|
2698
2777
|
#
|
2699
2778
|
# @!attribute [rw] time_ordering
|
2700
2779
|
# The chronological sorting order of the requested information.
|
2780
|
+
#
|
2781
|
+
# Default: `ASCENDING`
|
2701
2782
|
# @return [String]
|
2702
2783
|
#
|
2703
2784
|
# @!attribute [rw] next_token
|
@@ -2706,6 +2787,8 @@ module Aws::IoTSiteWise
|
|
2706
2787
|
#
|
2707
2788
|
# @!attribute [rw] max_results
|
2708
2789
|
# The maximum number of results to be returned per paginated request.
|
2790
|
+
#
|
2791
|
+
# Default: 100
|
2709
2792
|
# @return [Integer]
|
2710
2793
|
#
|
2711
2794
|
class GetAssetPropertyAggregatesRequest < Struct.new(
|
@@ -2720,6 +2803,7 @@ module Aws::IoTSiteWise
|
|
2720
2803
|
:time_ordering,
|
2721
2804
|
:next_token,
|
2722
2805
|
:max_results)
|
2806
|
+
SENSITIVE = []
|
2723
2807
|
include Aws::Structure
|
2724
2808
|
end
|
2725
2809
|
|
@@ -2735,6 +2819,7 @@ module Aws::IoTSiteWise
|
|
2735
2819
|
class GetAssetPropertyAggregatesResponse < Struct.new(
|
2736
2820
|
:aggregated_values,
|
2737
2821
|
:next_token)
|
2822
|
+
SENSITIVE = []
|
2738
2823
|
include Aws::Structure
|
2739
2824
|
end
|
2740
2825
|
|
@@ -2745,8 +2830,8 @@ module Aws::IoTSiteWise
|
|
2745
2830
|
# asset_id: "ID",
|
2746
2831
|
# property_id: "ID",
|
2747
2832
|
# property_alias: "AssetPropertyAlias",
|
2748
|
-
# start_date: Time.now,
|
2749
|
-
# end_date: Time.now,
|
2833
|
+
# start_date: Time.now,
|
2834
|
+
# end_date: Time.now,
|
2750
2835
|
# qualities: ["GOOD"], # accepts GOOD, BAD, UNCERTAIN
|
2751
2836
|
# time_ordering: "ASCENDING", # accepts ASCENDING, DESCENDING
|
2752
2837
|
# next_token: "NextToken",
|
@@ -2765,7 +2850,7 @@ module Aws::IoTSiteWise
|
|
2765
2850
|
# The property alias that identifies the property, such as an OPC-UA
|
2766
2851
|
# server data stream path (for example,
|
2767
2852
|
# `/company/windfarm/3/turbine/7/temperature`). For more information,
|
2768
|
-
# see [Mapping
|
2853
|
+
# see [Mapping industrial data streams to asset properties][1] in the
|
2769
2854
|
# *AWS IoT SiteWise User Guide*.
|
2770
2855
|
#
|
2771
2856
|
#
|
@@ -2789,6 +2874,8 @@ module Aws::IoTSiteWise
|
|
2789
2874
|
#
|
2790
2875
|
# @!attribute [rw] time_ordering
|
2791
2876
|
# The chronological sorting order of the requested information.
|
2877
|
+
#
|
2878
|
+
# Default: `ASCENDING`
|
2792
2879
|
# @return [String]
|
2793
2880
|
#
|
2794
2881
|
# @!attribute [rw] next_token
|
@@ -2797,6 +2884,8 @@ module Aws::IoTSiteWise
|
|
2797
2884
|
#
|
2798
2885
|
# @!attribute [rw] max_results
|
2799
2886
|
# The maximum number of results to be returned per paginated request.
|
2887
|
+
#
|
2888
|
+
# Default: 100
|
2800
2889
|
# @return [Integer]
|
2801
2890
|
#
|
2802
2891
|
class GetAssetPropertyValueHistoryRequest < Struct.new(
|
@@ -2809,6 +2898,7 @@ module Aws::IoTSiteWise
|
|
2809
2898
|
:time_ordering,
|
2810
2899
|
:next_token,
|
2811
2900
|
:max_results)
|
2901
|
+
SENSITIVE = []
|
2812
2902
|
include Aws::Structure
|
2813
2903
|
end
|
2814
2904
|
|
@@ -2824,6 +2914,7 @@ module Aws::IoTSiteWise
|
|
2824
2914
|
class GetAssetPropertyValueHistoryResponse < Struct.new(
|
2825
2915
|
:asset_property_value_history,
|
2826
2916
|
:next_token)
|
2917
|
+
SENSITIVE = []
|
2827
2918
|
include Aws::Structure
|
2828
2919
|
end
|
2829
2920
|
|
@@ -2848,7 +2939,7 @@ module Aws::IoTSiteWise
|
|
2848
2939
|
# The property alias that identifies the property, such as an OPC-UA
|
2849
2940
|
# server data stream path (for example,
|
2850
2941
|
# `/company/windfarm/3/turbine/7/temperature`). For more information,
|
2851
|
-
# see [Mapping
|
2942
|
+
# see [Mapping industrial data streams to asset properties][1] in the
|
2852
2943
|
# *AWS IoT SiteWise User Guide*.
|
2853
2944
|
#
|
2854
2945
|
#
|
@@ -2860,6 +2951,7 @@ module Aws::IoTSiteWise
|
|
2860
2951
|
:asset_id,
|
2861
2952
|
:property_id,
|
2862
2953
|
:property_alias)
|
2954
|
+
SENSITIVE = []
|
2863
2955
|
include Aws::Structure
|
2864
2956
|
end
|
2865
2957
|
|
@@ -2869,6 +2961,7 @@ module Aws::IoTSiteWise
|
|
2869
2961
|
#
|
2870
2962
|
class GetAssetPropertyValueResponse < Struct.new(
|
2871
2963
|
:property_value)
|
2964
|
+
SENSITIVE = []
|
2872
2965
|
include Aws::Structure
|
2873
2966
|
end
|
2874
2967
|
|
@@ -2904,6 +2997,7 @@ module Aws::IoTSiteWise
|
|
2904
2997
|
#
|
2905
2998
|
class Greengrass < Struct.new(
|
2906
2999
|
:group_arn)
|
3000
|
+
SENSITIVE = []
|
2907
3001
|
include Aws::Structure
|
2908
3002
|
end
|
2909
3003
|
|
@@ -2922,6 +3016,7 @@ module Aws::IoTSiteWise
|
|
2922
3016
|
#
|
2923
3017
|
class GroupIdentity < Struct.new(
|
2924
3018
|
:id)
|
3019
|
+
SENSITIVE = []
|
2925
3020
|
include Aws::Structure
|
2926
3021
|
end
|
2927
3022
|
|
@@ -2960,6 +3055,7 @@ module Aws::IoTSiteWise
|
|
2960
3055
|
class Identity < Struct.new(
|
2961
3056
|
:user,
|
2962
3057
|
:group)
|
3058
|
+
SENSITIVE = []
|
2963
3059
|
include Aws::Structure
|
2964
3060
|
end
|
2965
3061
|
|
@@ -2993,6 +3089,7 @@ module Aws::IoTSiteWise
|
|
2993
3089
|
class Image < Struct.new(
|
2994
3090
|
:id,
|
2995
3091
|
:file)
|
3092
|
+
SENSITIVE = []
|
2996
3093
|
include Aws::Structure
|
2997
3094
|
end
|
2998
3095
|
|
@@ -3018,6 +3115,7 @@ module Aws::IoTSiteWise
|
|
3018
3115
|
class ImageFile < Struct.new(
|
3019
3116
|
:data,
|
3020
3117
|
:type)
|
3118
|
+
SENSITIVE = []
|
3021
3119
|
include Aws::Structure
|
3022
3120
|
end
|
3023
3121
|
|
@@ -3036,6 +3134,7 @@ module Aws::IoTSiteWise
|
|
3036
3134
|
class ImageLocation < Struct.new(
|
3037
3135
|
:id,
|
3038
3136
|
:url)
|
3137
|
+
SENSITIVE = []
|
3039
3138
|
include Aws::Structure
|
3040
3139
|
end
|
3041
3140
|
|
@@ -3047,6 +3146,7 @@ module Aws::IoTSiteWise
|
|
3047
3146
|
#
|
3048
3147
|
class InternalFailureException < Struct.new(
|
3049
3148
|
:message)
|
3149
|
+
SENSITIVE = []
|
3050
3150
|
include Aws::Structure
|
3051
3151
|
end
|
3052
3152
|
|
@@ -3059,6 +3159,7 @@ module Aws::IoTSiteWise
|
|
3059
3159
|
#
|
3060
3160
|
class InvalidRequestException < Struct.new(
|
3061
3161
|
:message)
|
3162
|
+
SENSITIVE = []
|
3062
3163
|
include Aws::Structure
|
3063
3164
|
end
|
3064
3165
|
|
@@ -3079,6 +3180,7 @@ module Aws::IoTSiteWise
|
|
3079
3180
|
#
|
3080
3181
|
class LimitExceededException < Struct.new(
|
3081
3182
|
:message)
|
3183
|
+
SENSITIVE = []
|
3082
3184
|
include Aws::Structure
|
3083
3185
|
end
|
3084
3186
|
|
@@ -3120,6 +3222,8 @@ module Aws::IoTSiteWise
|
|
3120
3222
|
#
|
3121
3223
|
# @!attribute [rw] max_results
|
3122
3224
|
# The maximum number of results to be returned per paginated request.
|
3225
|
+
#
|
3226
|
+
# Default: 50
|
3123
3227
|
# @return [Integer]
|
3124
3228
|
#
|
3125
3229
|
class ListAccessPoliciesRequest < Struct.new(
|
@@ -3129,6 +3233,7 @@ module Aws::IoTSiteWise
|
|
3129
3233
|
:resource_id,
|
3130
3234
|
:next_token,
|
3131
3235
|
:max_results)
|
3236
|
+
SENSITIVE = []
|
3132
3237
|
include Aws::Structure
|
3133
3238
|
end
|
3134
3239
|
|
@@ -3144,6 +3249,7 @@ module Aws::IoTSiteWise
|
|
3144
3249
|
class ListAccessPoliciesResponse < Struct.new(
|
3145
3250
|
:access_policy_summaries,
|
3146
3251
|
:next_token)
|
3252
|
+
SENSITIVE = []
|
3147
3253
|
include Aws::Structure
|
3148
3254
|
end
|
3149
3255
|
|
@@ -3161,11 +3267,14 @@ module Aws::IoTSiteWise
|
|
3161
3267
|
#
|
3162
3268
|
# @!attribute [rw] max_results
|
3163
3269
|
# The maximum number of results to be returned per paginated request.
|
3270
|
+
#
|
3271
|
+
# Default: 50
|
3164
3272
|
# @return [Integer]
|
3165
3273
|
#
|
3166
3274
|
class ListAssetModelsRequest < Struct.new(
|
3167
3275
|
:next_token,
|
3168
3276
|
:max_results)
|
3277
|
+
SENSITIVE = []
|
3169
3278
|
include Aws::Structure
|
3170
3279
|
end
|
3171
3280
|
|
@@ -3181,6 +3290,7 @@ module Aws::IoTSiteWise
|
|
3181
3290
|
class ListAssetModelsResponse < Struct.new(
|
3182
3291
|
:asset_model_summaries,
|
3183
3292
|
:next_token)
|
3293
|
+
SENSITIVE = []
|
3184
3294
|
include Aws::Structure
|
3185
3295
|
end
|
3186
3296
|
|
@@ -3200,6 +3310,8 @@ module Aws::IoTSiteWise
|
|
3200
3310
|
#
|
3201
3311
|
# @!attribute [rw] max_results
|
3202
3312
|
# The maximum number of results to be returned per paginated request.
|
3313
|
+
#
|
3314
|
+
# Default: 50
|
3203
3315
|
# @return [Integer]
|
3204
3316
|
#
|
3205
3317
|
# @!attribute [rw] asset_model_id
|
@@ -3209,13 +3321,15 @@ module Aws::IoTSiteWise
|
|
3209
3321
|
#
|
3210
3322
|
# @!attribute [rw] filter
|
3211
3323
|
# The filter for the requested list of assets. Choose one of the
|
3212
|
-
# following options
|
3324
|
+
# following options:
|
3213
3325
|
#
|
3214
3326
|
# * `ALL` – The list includes all assets for a given asset model ID.
|
3215
3327
|
# The `assetModelId` parameter is required if you filter by `ALL`.
|
3216
3328
|
#
|
3217
3329
|
# * `TOP_LEVEL` – The list includes only top-level assets in the asset
|
3218
3330
|
# hierarchy tree.
|
3331
|
+
#
|
3332
|
+
# Default: `ALL`
|
3219
3333
|
# @return [String]
|
3220
3334
|
#
|
3221
3335
|
class ListAssetsRequest < Struct.new(
|
@@ -3223,6 +3337,7 @@ module Aws::IoTSiteWise
|
|
3223
3337
|
:max_results,
|
3224
3338
|
:asset_model_id,
|
3225
3339
|
:filter)
|
3340
|
+
SENSITIVE = []
|
3226
3341
|
include Aws::Structure
|
3227
3342
|
end
|
3228
3343
|
|
@@ -3238,6 +3353,7 @@ module Aws::IoTSiteWise
|
|
3238
3353
|
class ListAssetsResponse < Struct.new(
|
3239
3354
|
:asset_summaries,
|
3240
3355
|
:next_token)
|
3356
|
+
SENSITIVE = []
|
3241
3357
|
include Aws::Structure
|
3242
3358
|
end
|
3243
3359
|
|
@@ -3246,21 +3362,23 @@ module Aws::IoTSiteWise
|
|
3246
3362
|
#
|
3247
3363
|
# {
|
3248
3364
|
# asset_id: "ID", # required
|
3249
|
-
# hierarchy_id: "ID",
|
3365
|
+
# hierarchy_id: "ID",
|
3366
|
+
# traversal_direction: "PARENT", # accepts PARENT, CHILD
|
3250
3367
|
# next_token: "NextToken",
|
3251
3368
|
# max_results: 1,
|
3252
3369
|
# }
|
3253
3370
|
#
|
3254
3371
|
# @!attribute [rw] asset_id
|
3255
|
-
# The ID of the
|
3372
|
+
# The ID of the asset to query.
|
3256
3373
|
# @return [String]
|
3257
3374
|
#
|
3258
3375
|
# @!attribute [rw] hierarchy_id
|
3259
|
-
# The
|
3260
|
-
#
|
3261
|
-
# [DescribeAssetModel][2]
|
3376
|
+
# The ID of the hierarchy by which child assets are associated to the
|
3377
|
+
# asset. To find a hierarchy ID, use the [DescribeAsset][1] or
|
3378
|
+
# [DescribeAssetModel][2] operations. This parameter is required if
|
3379
|
+
# you choose `CHILD` for `traversalDirection`.
|
3262
3380
|
#
|
3263
|
-
# For more information, see [Asset
|
3381
|
+
# For more information, see [Asset hierarchies][3] in the *AWS IoT
|
3264
3382
|
# SiteWise User Guide*.
|
3265
3383
|
#
|
3266
3384
|
#
|
@@ -3270,19 +3388,36 @@ module Aws::IoTSiteWise
|
|
3270
3388
|
# [3]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/asset-hierarchies.html
|
3271
3389
|
# @return [String]
|
3272
3390
|
#
|
3391
|
+
# @!attribute [rw] traversal_direction
|
3392
|
+
# The direction to list associated assets. Choose one of the following
|
3393
|
+
# options:
|
3394
|
+
#
|
3395
|
+
# * `CHILD` – The list includes all child assets associated to the
|
3396
|
+
# asset. The `hierarchyId` parameter is required if you choose
|
3397
|
+
# `CHILD`.
|
3398
|
+
#
|
3399
|
+
# * `PARENT` – The list includes the asset's parent asset.
|
3400
|
+
#
|
3401
|
+
# Default: `CHILD`
|
3402
|
+
# @return [String]
|
3403
|
+
#
|
3273
3404
|
# @!attribute [rw] next_token
|
3274
3405
|
# The token to be used for the next set of paginated results.
|
3275
3406
|
# @return [String]
|
3276
3407
|
#
|
3277
3408
|
# @!attribute [rw] max_results
|
3278
3409
|
# The maximum number of results to be returned per paginated request.
|
3410
|
+
#
|
3411
|
+
# Default: 50
|
3279
3412
|
# @return [Integer]
|
3280
3413
|
#
|
3281
3414
|
class ListAssociatedAssetsRequest < Struct.new(
|
3282
3415
|
:asset_id,
|
3283
3416
|
:hierarchy_id,
|
3417
|
+
:traversal_direction,
|
3284
3418
|
:next_token,
|
3285
3419
|
:max_results)
|
3420
|
+
SENSITIVE = []
|
3286
3421
|
include Aws::Structure
|
3287
3422
|
end
|
3288
3423
|
|
@@ -3298,6 +3433,7 @@ module Aws::IoTSiteWise
|
|
3298
3433
|
class ListAssociatedAssetsResponse < Struct.new(
|
3299
3434
|
:asset_summaries,
|
3300
3435
|
:next_token)
|
3436
|
+
SENSITIVE = []
|
3301
3437
|
include Aws::Structure
|
3302
3438
|
end
|
3303
3439
|
|
@@ -3320,12 +3456,15 @@ module Aws::IoTSiteWise
|
|
3320
3456
|
#
|
3321
3457
|
# @!attribute [rw] max_results
|
3322
3458
|
# The maximum number of results to be returned per paginated request.
|
3459
|
+
#
|
3460
|
+
# Default: 50
|
3323
3461
|
# @return [Integer]
|
3324
3462
|
#
|
3325
3463
|
class ListDashboardsRequest < Struct.new(
|
3326
3464
|
:project_id,
|
3327
3465
|
:next_token,
|
3328
3466
|
:max_results)
|
3467
|
+
SENSITIVE = []
|
3329
3468
|
include Aws::Structure
|
3330
3469
|
end
|
3331
3470
|
|
@@ -3341,6 +3480,7 @@ module Aws::IoTSiteWise
|
|
3341
3480
|
class ListDashboardsResponse < Struct.new(
|
3342
3481
|
:dashboard_summaries,
|
3343
3482
|
:next_token)
|
3483
|
+
SENSITIVE = []
|
3344
3484
|
include Aws::Structure
|
3345
3485
|
end
|
3346
3486
|
|
@@ -3358,11 +3498,14 @@ module Aws::IoTSiteWise
|
|
3358
3498
|
#
|
3359
3499
|
# @!attribute [rw] max_results
|
3360
3500
|
# The maximum number of results to be returned per paginated request.
|
3501
|
+
#
|
3502
|
+
# Default: 50
|
3361
3503
|
# @return [Integer]
|
3362
3504
|
#
|
3363
3505
|
class ListGatewaysRequest < Struct.new(
|
3364
3506
|
:next_token,
|
3365
3507
|
:max_results)
|
3508
|
+
SENSITIVE = []
|
3366
3509
|
include Aws::Structure
|
3367
3510
|
end
|
3368
3511
|
|
@@ -3378,6 +3521,7 @@ module Aws::IoTSiteWise
|
|
3378
3521
|
class ListGatewaysResponse < Struct.new(
|
3379
3522
|
:gateway_summaries,
|
3380
3523
|
:next_token)
|
3524
|
+
SENSITIVE = []
|
3381
3525
|
include Aws::Structure
|
3382
3526
|
end
|
3383
3527
|
|
@@ -3395,11 +3539,14 @@ module Aws::IoTSiteWise
|
|
3395
3539
|
#
|
3396
3540
|
# @!attribute [rw] max_results
|
3397
3541
|
# The maximum number of results to be returned per paginated request.
|
3542
|
+
#
|
3543
|
+
# Default: 50
|
3398
3544
|
# @return [Integer]
|
3399
3545
|
#
|
3400
3546
|
class ListPortalsRequest < Struct.new(
|
3401
3547
|
:next_token,
|
3402
3548
|
:max_results)
|
3549
|
+
SENSITIVE = []
|
3403
3550
|
include Aws::Structure
|
3404
3551
|
end
|
3405
3552
|
|
@@ -3415,6 +3562,7 @@ module Aws::IoTSiteWise
|
|
3415
3562
|
class ListPortalsResponse < Struct.new(
|
3416
3563
|
:portal_summaries,
|
3417
3564
|
:next_token)
|
3565
|
+
SENSITIVE = []
|
3418
3566
|
include Aws::Structure
|
3419
3567
|
end
|
3420
3568
|
|
@@ -3437,12 +3585,15 @@ module Aws::IoTSiteWise
|
|
3437
3585
|
#
|
3438
3586
|
# @!attribute [rw] max_results
|
3439
3587
|
# The maximum number of results to be returned per paginated request.
|
3588
|
+
#
|
3589
|
+
# Default: 50
|
3440
3590
|
# @return [Integer]
|
3441
3591
|
#
|
3442
3592
|
class ListProjectAssetsRequest < Struct.new(
|
3443
3593
|
:project_id,
|
3444
3594
|
:next_token,
|
3445
3595
|
:max_results)
|
3596
|
+
SENSITIVE = []
|
3446
3597
|
include Aws::Structure
|
3447
3598
|
end
|
3448
3599
|
|
@@ -3459,6 +3610,7 @@ module Aws::IoTSiteWise
|
|
3459
3610
|
class ListProjectAssetsResponse < Struct.new(
|
3460
3611
|
:asset_ids,
|
3461
3612
|
:next_token)
|
3613
|
+
SENSITIVE = []
|
3462
3614
|
include Aws::Structure
|
3463
3615
|
end
|
3464
3616
|
|
@@ -3481,12 +3633,15 @@ module Aws::IoTSiteWise
|
|
3481
3633
|
#
|
3482
3634
|
# @!attribute [rw] max_results
|
3483
3635
|
# The maximum number of results to be returned per paginated request.
|
3636
|
+
#
|
3637
|
+
# Default: 50
|
3484
3638
|
# @return [Integer]
|
3485
3639
|
#
|
3486
3640
|
class ListProjectsRequest < Struct.new(
|
3487
3641
|
:portal_id,
|
3488
3642
|
:next_token,
|
3489
3643
|
:max_results)
|
3644
|
+
SENSITIVE = []
|
3490
3645
|
include Aws::Structure
|
3491
3646
|
end
|
3492
3647
|
|
@@ -3502,6 +3657,7 @@ module Aws::IoTSiteWise
|
|
3502
3657
|
class ListProjectsResponse < Struct.new(
|
3503
3658
|
:project_summaries,
|
3504
3659
|
:next_token)
|
3660
|
+
SENSITIVE = []
|
3505
3661
|
include Aws::Structure
|
3506
3662
|
end
|
3507
3663
|
|
@@ -3522,6 +3678,7 @@ module Aws::IoTSiteWise
|
|
3522
3678
|
#
|
3523
3679
|
class ListTagsForResourceRequest < Struct.new(
|
3524
3680
|
:resource_arn)
|
3681
|
+
SENSITIVE = []
|
3525
3682
|
include Aws::Structure
|
3526
3683
|
end
|
3527
3684
|
|
@@ -3537,6 +3694,7 @@ module Aws::IoTSiteWise
|
|
3537
3694
|
#
|
3538
3695
|
class ListTagsForResourceResponse < Struct.new(
|
3539
3696
|
:tags)
|
3697
|
+
SENSITIVE = []
|
3540
3698
|
include Aws::Structure
|
3541
3699
|
end
|
3542
3700
|
|
@@ -3555,6 +3713,7 @@ module Aws::IoTSiteWise
|
|
3555
3713
|
#
|
3556
3714
|
class LoggingOptions < Struct.new(
|
3557
3715
|
:level)
|
3716
|
+
SENSITIVE = []
|
3558
3717
|
include Aws::Structure
|
3559
3718
|
end
|
3560
3719
|
|
@@ -3636,6 +3795,7 @@ module Aws::IoTSiteWise
|
|
3636
3795
|
:expression,
|
3637
3796
|
:variables,
|
3638
3797
|
:window)
|
3798
|
+
SENSITIVE = []
|
3639
3799
|
include Aws::Structure
|
3640
3800
|
end
|
3641
3801
|
|
@@ -3657,6 +3817,7 @@ module Aws::IoTSiteWise
|
|
3657
3817
|
#
|
3658
3818
|
class MetricWindow < Struct.new(
|
3659
3819
|
:tumbling)
|
3820
|
+
SENSITIVE = []
|
3660
3821
|
include Aws::Structure
|
3661
3822
|
end
|
3662
3823
|
|
@@ -3673,6 +3834,7 @@ module Aws::IoTSiteWise
|
|
3673
3834
|
class MonitorErrorDetails < Struct.new(
|
3674
3835
|
:code,
|
3675
3836
|
:message)
|
3837
|
+
SENSITIVE = []
|
3676
3838
|
include Aws::Structure
|
3677
3839
|
end
|
3678
3840
|
|
@@ -3691,6 +3853,7 @@ module Aws::IoTSiteWise
|
|
3691
3853
|
#
|
3692
3854
|
class PortalResource < Struct.new(
|
3693
3855
|
:id)
|
3856
|
+
SENSITIVE = []
|
3694
3857
|
include Aws::Structure
|
3695
3858
|
end
|
3696
3859
|
|
@@ -3707,6 +3870,7 @@ module Aws::IoTSiteWise
|
|
3707
3870
|
class PortalStatus < Struct.new(
|
3708
3871
|
:state,
|
3709
3872
|
:error)
|
3873
|
+
SENSITIVE = []
|
3710
3874
|
include Aws::Structure
|
3711
3875
|
end
|
3712
3876
|
|
@@ -3749,6 +3913,10 @@ module Aws::IoTSiteWise
|
|
3749
3913
|
# [2]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/monitor-service-role.html
|
3750
3914
|
# @return [String]
|
3751
3915
|
#
|
3916
|
+
# @!attribute [rw] status
|
3917
|
+
# Contains information about the current status of a portal.
|
3918
|
+
# @return [Types::PortalStatus]
|
3919
|
+
#
|
3752
3920
|
class PortalSummary < Struct.new(
|
3753
3921
|
:id,
|
3754
3922
|
:name,
|
@@ -3756,7 +3924,9 @@ module Aws::IoTSiteWise
|
|
3756
3924
|
:start_url,
|
3757
3925
|
:creation_date,
|
3758
3926
|
:last_update_date,
|
3759
|
-
:role_arn
|
3927
|
+
:role_arn,
|
3928
|
+
:status)
|
3929
|
+
SENSITIVE = []
|
3760
3930
|
include Aws::Structure
|
3761
3931
|
end
|
3762
3932
|
|
@@ -3775,6 +3945,7 @@ module Aws::IoTSiteWise
|
|
3775
3945
|
#
|
3776
3946
|
class ProjectResource < Struct.new(
|
3777
3947
|
:id)
|
3948
|
+
SENSITIVE = []
|
3778
3949
|
include Aws::Structure
|
3779
3950
|
end
|
3780
3951
|
|
@@ -3806,6 +3977,7 @@ module Aws::IoTSiteWise
|
|
3806
3977
|
:description,
|
3807
3978
|
:creation_date,
|
3808
3979
|
:last_update_date)
|
3980
|
+
SENSITIVE = []
|
3809
3981
|
include Aws::Structure
|
3810
3982
|
end
|
3811
3983
|
|
@@ -3823,7 +3995,7 @@ module Aws::IoTSiteWise
|
|
3823
3995
|
# The property alias that identifies the property, such as an OPC-UA
|
3824
3996
|
# server data stream path (for example,
|
3825
3997
|
# `/company/windfarm/3/turbine/7/temperature`). For more information,
|
3826
|
-
# see [Mapping
|
3998
|
+
# see [Mapping industrial data streams to asset properties][1] in the
|
3827
3999
|
# *AWS IoT SiteWise User Guide*.
|
3828
4000
|
#
|
3829
4001
|
#
|
@@ -3833,7 +4005,7 @@ module Aws::IoTSiteWise
|
|
3833
4005
|
#
|
3834
4006
|
# @!attribute [rw] notification
|
3835
4007
|
# The asset property's notification topic and state. For more
|
3836
|
-
# information, see [UpdateAssetProperty][1]
|
4008
|
+
# information, see [UpdateAssetProperty][1].
|
3837
4009
|
#
|
3838
4010
|
#
|
3839
4011
|
#
|
@@ -3861,13 +4033,14 @@ module Aws::IoTSiteWise
|
|
3861
4033
|
:data_type,
|
3862
4034
|
:unit,
|
3863
4035
|
:type)
|
4036
|
+
SENSITIVE = []
|
3864
4037
|
include Aws::Structure
|
3865
4038
|
end
|
3866
4039
|
|
3867
4040
|
# Contains asset property value notification information. When the
|
3868
4041
|
# notification state is enabled, AWS IoT SiteWise publishes property
|
3869
4042
|
# value updates to a unique MQTT topic. For more information, see
|
3870
|
-
# [Interacting with
|
4043
|
+
# [Interacting with other services][1] in the *AWS IoT SiteWise User
|
3871
4044
|
# Guide*.
|
3872
4045
|
#
|
3873
4046
|
#
|
@@ -3886,6 +4059,7 @@ module Aws::IoTSiteWise
|
|
3886
4059
|
class PropertyNotification < Struct.new(
|
3887
4060
|
:topic,
|
3888
4061
|
:state)
|
4062
|
+
SENSITIVE = []
|
3889
4063
|
include Aws::Structure
|
3890
4064
|
end
|
3891
4065
|
|
@@ -3967,6 +4141,7 @@ module Aws::IoTSiteWise
|
|
3967
4141
|
:measurement,
|
3968
4142
|
:transform,
|
3969
4143
|
:metric)
|
4144
|
+
SENSITIVE = []
|
3970
4145
|
include Aws::Structure
|
3971
4146
|
end
|
3972
4147
|
|
@@ -4019,7 +4194,7 @@ module Aws::IoTSiteWise
|
|
4019
4194
|
# The property alias that identifies the property, such as an OPC-UA
|
4020
4195
|
# server data stream path (for example,
|
4021
4196
|
# `/company/windfarm/3/turbine/7/temperature`). For more information,
|
4022
|
-
# see [Mapping
|
4197
|
+
# see [Mapping industrial data streams to asset properties][1] in the
|
4023
4198
|
# *AWS IoT SiteWise User Guide*.
|
4024
4199
|
#
|
4025
4200
|
#
|
@@ -4038,6 +4213,7 @@ module Aws::IoTSiteWise
|
|
4038
4213
|
:property_id,
|
4039
4214
|
:property_alias,
|
4040
4215
|
:property_values)
|
4216
|
+
SENSITIVE = []
|
4041
4217
|
include Aws::Structure
|
4042
4218
|
end
|
4043
4219
|
|
@@ -4056,6 +4232,7 @@ module Aws::IoTSiteWise
|
|
4056
4232
|
#
|
4057
4233
|
class PutLoggingOptionsRequest < Struct.new(
|
4058
4234
|
:logging_options)
|
4235
|
+
SENSITIVE = []
|
4059
4236
|
include Aws::Structure
|
4060
4237
|
end
|
4061
4238
|
|
@@ -4087,6 +4264,7 @@ module Aws::IoTSiteWise
|
|
4087
4264
|
class Resource < Struct.new(
|
4088
4265
|
:portal,
|
4089
4266
|
:project)
|
4267
|
+
SENSITIVE = []
|
4090
4268
|
include Aws::Structure
|
4091
4269
|
end
|
4092
4270
|
|
@@ -4107,6 +4285,7 @@ module Aws::IoTSiteWise
|
|
4107
4285
|
:message,
|
4108
4286
|
:resource_id,
|
4109
4287
|
:resource_arn)
|
4288
|
+
SENSITIVE = []
|
4110
4289
|
include Aws::Structure
|
4111
4290
|
end
|
4112
4291
|
|
@@ -4117,6 +4296,7 @@ module Aws::IoTSiteWise
|
|
4117
4296
|
#
|
4118
4297
|
class ResourceNotFoundException < Struct.new(
|
4119
4298
|
:message)
|
4299
|
+
SENSITIVE = []
|
4120
4300
|
include Aws::Structure
|
4121
4301
|
end
|
4122
4302
|
|
@@ -4127,6 +4307,7 @@ module Aws::IoTSiteWise
|
|
4127
4307
|
#
|
4128
4308
|
class ServiceUnavailableException < Struct.new(
|
4129
4309
|
:message)
|
4310
|
+
SENSITIVE = []
|
4130
4311
|
include Aws::Structure
|
4131
4312
|
end
|
4132
4313
|
|
@@ -4161,6 +4342,7 @@ module Aws::IoTSiteWise
|
|
4161
4342
|
class TagResourceRequest < Struct.new(
|
4162
4343
|
:resource_arn,
|
4163
4344
|
:tags)
|
4345
|
+
SENSITIVE = []
|
4164
4346
|
include Aws::Structure
|
4165
4347
|
end
|
4166
4348
|
|
@@ -4182,6 +4364,7 @@ module Aws::IoTSiteWise
|
|
4182
4364
|
#
|
4183
4365
|
class ThrottlingException < Struct.new(
|
4184
4366
|
:message)
|
4367
|
+
SENSITIVE = []
|
4185
4368
|
include Aws::Structure
|
4186
4369
|
end
|
4187
4370
|
|
@@ -4207,6 +4390,7 @@ module Aws::IoTSiteWise
|
|
4207
4390
|
class TimeInNanos < Struct.new(
|
4208
4391
|
:time_in_seconds,
|
4209
4392
|
:offset_in_nanos)
|
4393
|
+
SENSITIVE = []
|
4210
4394
|
include Aws::Structure
|
4211
4395
|
end
|
4212
4396
|
|
@@ -4228,6 +4412,7 @@ module Aws::IoTSiteWise
|
|
4228
4412
|
class TooManyTagsException < Struct.new(
|
4229
4413
|
:message,
|
4230
4414
|
:resource_name)
|
4415
|
+
SENSITIVE = []
|
4231
4416
|
include Aws::Structure
|
4232
4417
|
end
|
4233
4418
|
|
@@ -4282,6 +4467,7 @@ module Aws::IoTSiteWise
|
|
4282
4467
|
class Transform < Struct.new(
|
4283
4468
|
:expression,
|
4284
4469
|
:variables)
|
4470
|
+
SENSITIVE = []
|
4285
4471
|
include Aws::Structure
|
4286
4472
|
end
|
4287
4473
|
|
@@ -4312,6 +4498,7 @@ module Aws::IoTSiteWise
|
|
4312
4498
|
#
|
4313
4499
|
class TumblingWindow < Struct.new(
|
4314
4500
|
:interval)
|
4501
|
+
SENSITIVE = []
|
4315
4502
|
include Aws::Structure
|
4316
4503
|
end
|
4317
4504
|
|
@@ -4338,6 +4525,7 @@ module Aws::IoTSiteWise
|
|
4338
4525
|
class UntagResourceRequest < Struct.new(
|
4339
4526
|
:resource_arn,
|
4340
4527
|
:tag_keys)
|
4528
|
+
SENSITIVE = []
|
4341
4529
|
include Aws::Structure
|
4342
4530
|
end
|
4343
4531
|
|
@@ -4402,6 +4590,7 @@ module Aws::IoTSiteWise
|
|
4402
4590
|
:access_policy_resource,
|
4403
4591
|
:access_policy_permission,
|
4404
4592
|
:client_token)
|
4593
|
+
SENSITIVE = []
|
4405
4594
|
include Aws::Structure
|
4406
4595
|
end
|
4407
4596
|
|
@@ -4482,7 +4671,7 @@ module Aws::IoTSiteWise
|
|
4482
4671
|
#
|
4483
4672
|
# @!attribute [rw] asset_model_properties
|
4484
4673
|
# The updated property definitions of the asset model. For more
|
4485
|
-
# information, see [Asset
|
4674
|
+
# information, see [Asset properties][1] in the *AWS IoT SiteWise User
|
4486
4675
|
# Guide*.
|
4487
4676
|
#
|
4488
4677
|
# You can specify up to 200 properties per asset model. For more
|
@@ -4498,7 +4687,7 @@ module Aws::IoTSiteWise
|
|
4498
4687
|
# The updated hierarchy definitions of the asset model. Each hierarchy
|
4499
4688
|
# specifies an asset model whose assets can be children of any other
|
4500
4689
|
# assets created from this asset model. For more information, see
|
4501
|
-
# [Asset
|
4690
|
+
# [Asset hierarchies][1] in the *AWS IoT SiteWise User Guide*.
|
4502
4691
|
#
|
4503
4692
|
# You can specify up to 10 hierarchies per asset model. For more
|
4504
4693
|
# information, see [Quotas][2] in the *AWS IoT SiteWise User Guide*.
|
@@ -4525,6 +4714,7 @@ module Aws::IoTSiteWise
|
|
4525
4714
|
:asset_model_properties,
|
4526
4715
|
:asset_model_hierarchies,
|
4527
4716
|
:client_token)
|
4717
|
+
SENSITIVE = []
|
4528
4718
|
include Aws::Structure
|
4529
4719
|
end
|
4530
4720
|
|
@@ -4535,6 +4725,7 @@ module Aws::IoTSiteWise
|
|
4535
4725
|
#
|
4536
4726
|
class UpdateAssetModelResponse < Struct.new(
|
4537
4727
|
:asset_model_status)
|
4728
|
+
SENSITIVE = []
|
4538
4729
|
include Aws::Structure
|
4539
4730
|
end
|
4540
4731
|
|
@@ -4561,7 +4752,7 @@ module Aws::IoTSiteWise
|
|
4561
4752
|
# The property alias that identifies the property, such as an OPC-UA
|
4562
4753
|
# server data stream path (for example,
|
4563
4754
|
# `/company/windfarm/3/turbine/7/temperature`). For more information,
|
4564
|
-
# see [Mapping
|
4755
|
+
# see [Mapping industrial data streams to asset properties][1] in the
|
4565
4756
|
# *AWS IoT SiteWise User Guide*.
|
4566
4757
|
#
|
4567
4758
|
# If you omit this parameter, the alias is removed from the property.
|
@@ -4575,7 +4766,7 @@ module Aws::IoTSiteWise
|
|
4575
4766
|
# The MQTT notification state (enabled or disabled) for this asset
|
4576
4767
|
# property. When the notification state is enabled, AWS IoT SiteWise
|
4577
4768
|
# publishes property value updates to a unique MQTT topic. For more
|
4578
|
-
# information, see [Interacting with
|
4769
|
+
# information, see [Interacting with other services][1] in the *AWS
|
4579
4770
|
# IoT SiteWise User Guide*.
|
4580
4771
|
#
|
4581
4772
|
# If you omit this parameter, the notification state is set to
|
@@ -4601,6 +4792,7 @@ module Aws::IoTSiteWise
|
|
4601
4792
|
:property_alias,
|
4602
4793
|
:property_notification_state,
|
4603
4794
|
:client_token)
|
4795
|
+
SENSITIVE = []
|
4604
4796
|
include Aws::Structure
|
4605
4797
|
end
|
4606
4798
|
|
@@ -4634,6 +4826,7 @@ module Aws::IoTSiteWise
|
|
4634
4826
|
:asset_id,
|
4635
4827
|
:asset_name,
|
4636
4828
|
:client_token)
|
4829
|
+
SENSITIVE = []
|
4637
4830
|
include Aws::Structure
|
4638
4831
|
end
|
4639
4832
|
|
@@ -4644,6 +4837,7 @@ module Aws::IoTSiteWise
|
|
4644
4837
|
#
|
4645
4838
|
class UpdateAssetResponse < Struct.new(
|
4646
4839
|
:asset_status)
|
4840
|
+
SENSITIVE = []
|
4647
4841
|
include Aws::Structure
|
4648
4842
|
end
|
4649
4843
|
|
@@ -4672,7 +4866,7 @@ module Aws::IoTSiteWise
|
|
4672
4866
|
#
|
4673
4867
|
# @!attribute [rw] dashboard_definition
|
4674
4868
|
# The new dashboard definition, as specified in a JSON literal. For
|
4675
|
-
# detailed information, see [Creating
|
4869
|
+
# detailed information, see [Creating dashboards (CLI)][1] in the *AWS
|
4676
4870
|
# IoT SiteWise User Guide*.
|
4677
4871
|
#
|
4678
4872
|
#
|
@@ -4695,6 +4889,7 @@ module Aws::IoTSiteWise
|
|
4695
4889
|
:dashboard_description,
|
4696
4890
|
:dashboard_definition,
|
4697
4891
|
:client_token)
|
4892
|
+
SENSITIVE = []
|
4698
4893
|
include Aws::Structure
|
4699
4894
|
end
|
4700
4895
|
|
@@ -4735,6 +4930,7 @@ module Aws::IoTSiteWise
|
|
4735
4930
|
:gateway_id,
|
4736
4931
|
:capability_namespace,
|
4737
4932
|
:capability_configuration)
|
4933
|
+
SENSITIVE = []
|
4738
4934
|
include Aws::Structure
|
4739
4935
|
end
|
4740
4936
|
|
@@ -4761,6 +4957,7 @@ module Aws::IoTSiteWise
|
|
4761
4957
|
class UpdateGatewayCapabilityConfigurationResponse < Struct.new(
|
4762
4958
|
:capability_namespace,
|
4763
4959
|
:capability_sync_status)
|
4960
|
+
SENSITIVE = []
|
4764
4961
|
include Aws::Structure
|
4765
4962
|
end
|
4766
4963
|
|
@@ -4783,6 +4980,7 @@ module Aws::IoTSiteWise
|
|
4783
4980
|
class UpdateGatewayRequest < Struct.new(
|
4784
4981
|
:gateway_id,
|
4785
4982
|
:gateway_name)
|
4983
|
+
SENSITIVE = []
|
4786
4984
|
include Aws::Structure
|
4787
4985
|
end
|
4788
4986
|
|
@@ -4859,6 +5057,7 @@ module Aws::IoTSiteWise
|
|
4859
5057
|
:portal_logo_image,
|
4860
5058
|
:role_arn,
|
4861
5059
|
:client_token)
|
5060
|
+
SENSITIVE = []
|
4862
5061
|
include Aws::Structure
|
4863
5062
|
end
|
4864
5063
|
|
@@ -4869,6 +5068,7 @@ module Aws::IoTSiteWise
|
|
4869
5068
|
#
|
4870
5069
|
class UpdatePortalResponse < Struct.new(
|
4871
5070
|
:portal_status)
|
5071
|
+
SENSITIVE = []
|
4872
5072
|
include Aws::Structure
|
4873
5073
|
end
|
4874
5074
|
|
@@ -4908,6 +5108,7 @@ module Aws::IoTSiteWise
|
|
4908
5108
|
:project_name,
|
4909
5109
|
:project_description,
|
4910
5110
|
:client_token)
|
5111
|
+
SENSITIVE = []
|
4911
5112
|
include Aws::Structure
|
4912
5113
|
end
|
4913
5114
|
|
@@ -4928,6 +5129,7 @@ module Aws::IoTSiteWise
|
|
4928
5129
|
#
|
4929
5130
|
class UserIdentity < Struct.new(
|
4930
5131
|
:id)
|
5132
|
+
SENSITIVE = []
|
4931
5133
|
include Aws::Structure
|
4932
5134
|
end
|
4933
5135
|
|
@@ -4954,7 +5156,7 @@ module Aws::IoTSiteWise
|
|
4954
5156
|
# several hierarchies using the same model and therefore the same
|
4955
5157
|
# `propertyId`. For example, you might have separately grouped assets
|
4956
5158
|
# that come from the same asset model. For more information, see
|
4957
|
-
# [Asset
|
5159
|
+
# [Asset hierarchies][1] in the *AWS IoT SiteWise User Guide*.
|
4958
5160
|
#
|
4959
5161
|
#
|
4960
5162
|
#
|
@@ -4964,6 +5166,7 @@ module Aws::IoTSiteWise
|
|
4964
5166
|
class VariableValue < Struct.new(
|
4965
5167
|
:property_id,
|
4966
5168
|
:hierarchy_id)
|
5169
|
+
SENSITIVE = []
|
4967
5170
|
include Aws::Structure
|
4968
5171
|
end
|
4969
5172
|
|
@@ -5000,6 +5203,7 @@ module Aws::IoTSiteWise
|
|
5000
5203
|
:integer_value,
|
5001
5204
|
:double_value,
|
5002
5205
|
:boolean_value)
|
5206
|
+
SENSITIVE = []
|
5003
5207
|
include Aws::Structure
|
5004
5208
|
end
|
5005
5209
|
|