aws-sdk-iotfleetwise 1.15.0 → 1.17.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotfleetwise/client.rb +244 -32
- data/lib/aws-sdk-iotfleetwise/client_api.rb +96 -6
- data/lib/aws-sdk-iotfleetwise/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-iotfleetwise/types.rb +334 -10
- data/lib/aws-sdk-iotfleetwise.rb +1 -1
- metadata +5 -5
@@ -772,7 +772,7 @@ module Aws::IoTFleetWise
|
|
772
772
|
# signal_decoders: [
|
773
773
|
# {
|
774
774
|
# fully_qualified_name: "FullyQualifiedName", # required
|
775
|
-
# type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL
|
775
|
+
# type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL, CUSTOMER_DECODED_SIGNAL
|
776
776
|
# interface_id: "InterfaceId", # required
|
777
777
|
# can_signal: {
|
778
778
|
# message_id: 1, # required
|
@@ -795,12 +795,41 @@ module Aws::IoTFleetWise
|
|
795
795
|
# bit_right_shift: 1,
|
796
796
|
# bit_mask_length: 1,
|
797
797
|
# },
|
798
|
+
# message_signal: {
|
799
|
+
# topic_name: "TopicName", # required
|
800
|
+
# structured_message: { # required
|
801
|
+
# primitive_message_definition: {
|
802
|
+
# ros2_primitive_message_definition: {
|
803
|
+
# primitive_type: "BOOL", # required, accepts BOOL, BYTE, CHAR, FLOAT32, FLOAT64, INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, STRING, WSTRING
|
804
|
+
# offset: 1.0,
|
805
|
+
# scaling: 1.0,
|
806
|
+
# upper_bound: 1,
|
807
|
+
# },
|
808
|
+
# },
|
809
|
+
# structured_message_list_definition: {
|
810
|
+
# name: "StructureMessageName", # required
|
811
|
+
# member_type: { # required
|
812
|
+
# # recursive StructuredMessage
|
813
|
+
# },
|
814
|
+
# list_type: "FIXED_CAPACITY", # required, accepts FIXED_CAPACITY, DYNAMIC_UNBOUNDED_CAPACITY, DYNAMIC_BOUNDED_CAPACITY
|
815
|
+
# capacity: 1,
|
816
|
+
# },
|
817
|
+
# structured_message_definition: [
|
818
|
+
# {
|
819
|
+
# field_name: "StructureMessageName", # required
|
820
|
+
# data_type: { # required
|
821
|
+
# # recursive StructuredMessage
|
822
|
+
# },
|
823
|
+
# },
|
824
|
+
# ],
|
825
|
+
# },
|
826
|
+
# },
|
798
827
|
# },
|
799
828
|
# ],
|
800
829
|
# network_interfaces: [
|
801
830
|
# {
|
802
831
|
# interface_id: "InterfaceId", # required
|
803
|
-
# type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE
|
832
|
+
# type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE, CUSTOMER_DECODED_INTERFACE
|
804
833
|
# can_interface: {
|
805
834
|
# name: "CanInterfaceName", # required
|
806
835
|
# protocol_name: "ProtocolName",
|
@@ -815,6 +844,10 @@ module Aws::IoTFleetWise
|
|
815
844
|
# use_extended_ids: false,
|
816
845
|
# has_transmission_ecu: false,
|
817
846
|
# },
|
847
|
+
# vehicle_middleware: {
|
848
|
+
# name: "VehicleMiddlewareName", # required
|
849
|
+
# protocol_name: "ROS_2", # required, accepts ROS_2
|
850
|
+
# },
|
818
851
|
# },
|
819
852
|
# ],
|
820
853
|
# tags: [
|
@@ -987,7 +1020,7 @@ module Aws::IoTFleetWise
|
|
987
1020
|
# },
|
988
1021
|
# sensor: {
|
989
1022
|
# fully_qualified_name: "string", # required
|
990
|
-
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN
|
1023
|
+
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN, STRUCT, STRUCT_ARRAY
|
991
1024
|
# description: "description",
|
992
1025
|
# unit: "string",
|
993
1026
|
# allowed_values: ["string"],
|
@@ -995,10 +1028,11 @@ module Aws::IoTFleetWise
|
|
995
1028
|
# max: 1.0,
|
996
1029
|
# deprecation_message: "message",
|
997
1030
|
# comment: "message",
|
1031
|
+
# struct_fully_qualified_name: "NodePath",
|
998
1032
|
# },
|
999
1033
|
# actuator: {
|
1000
1034
|
# fully_qualified_name: "string", # required
|
1001
|
-
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN
|
1035
|
+
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN, STRUCT, STRUCT_ARRAY
|
1002
1036
|
# description: "description",
|
1003
1037
|
# unit: "string",
|
1004
1038
|
# allowed_values: ["string"],
|
@@ -1007,10 +1041,11 @@ module Aws::IoTFleetWise
|
|
1007
1041
|
# assigned_value: "string",
|
1008
1042
|
# deprecation_message: "message",
|
1009
1043
|
# comment: "message",
|
1044
|
+
# struct_fully_qualified_name: "NodePath",
|
1010
1045
|
# },
|
1011
1046
|
# attribute: {
|
1012
1047
|
# fully_qualified_name: "string", # required
|
1013
|
-
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN
|
1048
|
+
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN, STRUCT, STRUCT_ARRAY
|
1014
1049
|
# description: "description",
|
1015
1050
|
# unit: "string",
|
1016
1051
|
# allowed_values: ["string"],
|
@@ -1021,6 +1056,21 @@ module Aws::IoTFleetWise
|
|
1021
1056
|
# deprecation_message: "message",
|
1022
1057
|
# comment: "message",
|
1023
1058
|
# },
|
1059
|
+
# struct: {
|
1060
|
+
# fully_qualified_name: "string", # required
|
1061
|
+
# description: "description",
|
1062
|
+
# deprecation_message: "message",
|
1063
|
+
# comment: "message",
|
1064
|
+
# },
|
1065
|
+
# property: {
|
1066
|
+
# fully_qualified_name: "string", # required
|
1067
|
+
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN, STRUCT, STRUCT_ARRAY
|
1068
|
+
# data_encoding: "BINARY", # accepts BINARY, TYPED
|
1069
|
+
# description: "description",
|
1070
|
+
# deprecation_message: "message",
|
1071
|
+
# comment: "message",
|
1072
|
+
# struct_fully_qualified_name: "NodePath",
|
1073
|
+
# },
|
1024
1074
|
# },
|
1025
1075
|
# ],
|
1026
1076
|
# tags: [
|
@@ -1446,6 +1496,7 @@ module Aws::IoTFleetWise
|
|
1446
1496
|
# * {Types::GetDecoderManifestResponse#status #status} => String
|
1447
1497
|
# * {Types::GetDecoderManifestResponse#creation_time #creation_time} => Time
|
1448
1498
|
# * {Types::GetDecoderManifestResponse#last_modification_time #last_modification_time} => Time
|
1499
|
+
# * {Types::GetDecoderManifestResponse#message #message} => String
|
1449
1500
|
#
|
1450
1501
|
# @example Request syntax with placeholder values
|
1451
1502
|
#
|
@@ -1459,9 +1510,10 @@ module Aws::IoTFleetWise
|
|
1459
1510
|
# resp.arn #=> String
|
1460
1511
|
# resp.description #=> String
|
1461
1512
|
# resp.model_manifest_arn #=> String
|
1462
|
-
# resp.status #=> String, one of "ACTIVE", "DRAFT"
|
1513
|
+
# resp.status #=> String, one of "ACTIVE", "DRAFT", "INVALID", "VALIDATING"
|
1463
1514
|
# resp.creation_time #=> Time
|
1464
1515
|
# resp.last_modification_time #=> Time
|
1516
|
+
# resp.message #=> String
|
1465
1517
|
#
|
1466
1518
|
# @overload get_decoder_manifest(params = {})
|
1467
1519
|
# @param [Hash] params ({})
|
@@ -1579,7 +1631,7 @@ module Aws::IoTFleetWise
|
|
1579
1631
|
# resp.arn #=> String
|
1580
1632
|
# resp.description #=> String
|
1581
1633
|
# resp.signal_catalog_arn #=> String
|
1582
|
-
# resp.status #=> String, one of "ACTIVE", "DRAFT"
|
1634
|
+
# resp.status #=> String, one of "ACTIVE", "DRAFT", "INVALID", "VALIDATING"
|
1583
1635
|
# resp.creation_time #=> Time
|
1584
1636
|
# resp.last_modification_time #=> Time
|
1585
1637
|
#
|
@@ -1668,6 +1720,8 @@ module Aws::IoTFleetWise
|
|
1668
1720
|
# resp.node_counts.total_sensors #=> Integer
|
1669
1721
|
# resp.node_counts.total_attributes #=> Integer
|
1670
1722
|
# resp.node_counts.total_actuators #=> Integer
|
1723
|
+
# resp.node_counts.total_structs #=> Integer
|
1724
|
+
# resp.node_counts.total_properties #=> Integer
|
1671
1725
|
# resp.creation_time #=> Time
|
1672
1726
|
# resp.last_modification_time #=> Time
|
1673
1727
|
#
|
@@ -1958,7 +2012,7 @@ module Aws::IoTFleetWise
|
|
1958
2012
|
#
|
1959
2013
|
# resp.network_interfaces #=> Array
|
1960
2014
|
# resp.network_interfaces[0].interface_id #=> String
|
1961
|
-
# resp.network_interfaces[0].type #=> String, one of "CAN_INTERFACE", "OBD_INTERFACE"
|
2015
|
+
# resp.network_interfaces[0].type #=> String, one of "CAN_INTERFACE", "OBD_INTERFACE", "VEHICLE_MIDDLEWARE", "CUSTOMER_DECODED_INTERFACE"
|
1962
2016
|
# resp.network_interfaces[0].can_interface.name #=> String
|
1963
2017
|
# resp.network_interfaces[0].can_interface.protocol_name #=> String
|
1964
2018
|
# resp.network_interfaces[0].can_interface.protocol_version #=> String
|
@@ -1969,6 +2023,8 @@ module Aws::IoTFleetWise
|
|
1969
2023
|
# resp.network_interfaces[0].obd_interface.dtc_request_interval_seconds #=> Integer
|
1970
2024
|
# resp.network_interfaces[0].obd_interface.use_extended_ids #=> Boolean
|
1971
2025
|
# resp.network_interfaces[0].obd_interface.has_transmission_ecu #=> Boolean
|
2026
|
+
# resp.network_interfaces[0].vehicle_middleware.name #=> String
|
2027
|
+
# resp.network_interfaces[0].vehicle_middleware.protocol_name #=> String, one of "ROS_2"
|
1972
2028
|
# resp.next_token #=> String
|
1973
2029
|
#
|
1974
2030
|
# @overload list_decoder_manifest_network_interfaces(params = {})
|
@@ -2020,7 +2076,7 @@ module Aws::IoTFleetWise
|
|
2020
2076
|
#
|
2021
2077
|
# resp.signal_decoders #=> Array
|
2022
2078
|
# resp.signal_decoders[0].fully_qualified_name #=> String
|
2023
|
-
# resp.signal_decoders[0].type #=> String, one of "CAN_SIGNAL", "OBD_SIGNAL"
|
2079
|
+
# resp.signal_decoders[0].type #=> String, one of "CAN_SIGNAL", "OBD_SIGNAL", "MESSAGE_SIGNAL", "CUSTOMER_DECODED_SIGNAL"
|
2024
2080
|
# resp.signal_decoders[0].interface_id #=> String
|
2025
2081
|
# resp.signal_decoders[0].can_signal.message_id #=> Integer
|
2026
2082
|
# resp.signal_decoders[0].can_signal.is_big_endian #=> Boolean
|
@@ -2039,6 +2095,18 @@ module Aws::IoTFleetWise
|
|
2039
2095
|
# resp.signal_decoders[0].obd_signal.byte_length #=> Integer
|
2040
2096
|
# resp.signal_decoders[0].obd_signal.bit_right_shift #=> Integer
|
2041
2097
|
# resp.signal_decoders[0].obd_signal.bit_mask_length #=> Integer
|
2098
|
+
# resp.signal_decoders[0].message_signal.topic_name #=> String
|
2099
|
+
# resp.signal_decoders[0].message_signal.structured_message.primitive_message_definition.ros2_primitive_message_definition.primitive_type #=> String, one of "BOOL", "BYTE", "CHAR", "FLOAT32", "FLOAT64", "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "STRING", "WSTRING"
|
2100
|
+
# resp.signal_decoders[0].message_signal.structured_message.primitive_message_definition.ros2_primitive_message_definition.offset #=> Float
|
2101
|
+
# resp.signal_decoders[0].message_signal.structured_message.primitive_message_definition.ros2_primitive_message_definition.scaling #=> Float
|
2102
|
+
# resp.signal_decoders[0].message_signal.structured_message.primitive_message_definition.ros2_primitive_message_definition.upper_bound #=> Integer
|
2103
|
+
# resp.signal_decoders[0].message_signal.structured_message.structured_message_list_definition.name #=> String
|
2104
|
+
# resp.signal_decoders[0].message_signal.structured_message.structured_message_list_definition.member_type #=> Types::StructuredMessage
|
2105
|
+
# resp.signal_decoders[0].message_signal.structured_message.structured_message_list_definition.list_type #=> String, one of "FIXED_CAPACITY", "DYNAMIC_UNBOUNDED_CAPACITY", "DYNAMIC_BOUNDED_CAPACITY"
|
2106
|
+
# resp.signal_decoders[0].message_signal.structured_message.structured_message_list_definition.capacity #=> Integer
|
2107
|
+
# resp.signal_decoders[0].message_signal.structured_message.structured_message_definition #=> Array
|
2108
|
+
# resp.signal_decoders[0].message_signal.structured_message.structured_message_definition[0].field_name #=> String
|
2109
|
+
# resp.signal_decoders[0].message_signal.structured_message.structured_message_definition[0].data_type #=> Types::StructuredMessage
|
2042
2110
|
# resp.next_token #=> String
|
2043
2111
|
#
|
2044
2112
|
# @overload list_decoder_manifest_signals(params = {})
|
@@ -2093,9 +2161,10 @@ module Aws::IoTFleetWise
|
|
2093
2161
|
# resp.summaries[0].arn #=> String
|
2094
2162
|
# resp.summaries[0].model_manifest_arn #=> String
|
2095
2163
|
# resp.summaries[0].description #=> String
|
2096
|
-
# resp.summaries[0].status #=> String, one of "ACTIVE", "DRAFT"
|
2164
|
+
# resp.summaries[0].status #=> String, one of "ACTIVE", "DRAFT", "INVALID", "VALIDATING"
|
2097
2165
|
# resp.summaries[0].creation_time #=> Time
|
2098
2166
|
# resp.summaries[0].last_modification_time #=> Time
|
2167
|
+
# resp.summaries[0].message #=> String
|
2099
2168
|
# resp.next_token #=> String
|
2100
2169
|
#
|
2101
2170
|
# @overload list_decoder_manifests(params = {})
|
@@ -2254,7 +2323,7 @@ module Aws::IoTFleetWise
|
|
2254
2323
|
# resp.nodes[0].branch.deprecation_message #=> String
|
2255
2324
|
# resp.nodes[0].branch.comment #=> String
|
2256
2325
|
# resp.nodes[0].sensor.fully_qualified_name #=> String
|
2257
|
-
# resp.nodes[0].sensor.data_type #=> String, one of "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "BOOLEAN", "FLOAT", "DOUBLE", "STRING", "UNIX_TIMESTAMP", "INT8_ARRAY", "UINT8_ARRAY", "INT16_ARRAY", "UINT16_ARRAY", "INT32_ARRAY", "UINT32_ARRAY", "INT64_ARRAY", "UINT64_ARRAY", "BOOLEAN_ARRAY", "FLOAT_ARRAY", "DOUBLE_ARRAY", "STRING_ARRAY", "UNIX_TIMESTAMP_ARRAY", "UNKNOWN"
|
2326
|
+
# resp.nodes[0].sensor.data_type #=> String, one of "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "BOOLEAN", "FLOAT", "DOUBLE", "STRING", "UNIX_TIMESTAMP", "INT8_ARRAY", "UINT8_ARRAY", "INT16_ARRAY", "UINT16_ARRAY", "INT32_ARRAY", "UINT32_ARRAY", "INT64_ARRAY", "UINT64_ARRAY", "BOOLEAN_ARRAY", "FLOAT_ARRAY", "DOUBLE_ARRAY", "STRING_ARRAY", "UNIX_TIMESTAMP_ARRAY", "UNKNOWN", "STRUCT", "STRUCT_ARRAY"
|
2258
2327
|
# resp.nodes[0].sensor.description #=> String
|
2259
2328
|
# resp.nodes[0].sensor.unit #=> String
|
2260
2329
|
# resp.nodes[0].sensor.allowed_values #=> Array
|
@@ -2263,8 +2332,9 @@ module Aws::IoTFleetWise
|
|
2263
2332
|
# resp.nodes[0].sensor.max #=> Float
|
2264
2333
|
# resp.nodes[0].sensor.deprecation_message #=> String
|
2265
2334
|
# resp.nodes[0].sensor.comment #=> String
|
2335
|
+
# resp.nodes[0].sensor.struct_fully_qualified_name #=> String
|
2266
2336
|
# resp.nodes[0].actuator.fully_qualified_name #=> String
|
2267
|
-
# resp.nodes[0].actuator.data_type #=> String, one of "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "BOOLEAN", "FLOAT", "DOUBLE", "STRING", "UNIX_TIMESTAMP", "INT8_ARRAY", "UINT8_ARRAY", "INT16_ARRAY", "UINT16_ARRAY", "INT32_ARRAY", "UINT32_ARRAY", "INT64_ARRAY", "UINT64_ARRAY", "BOOLEAN_ARRAY", "FLOAT_ARRAY", "DOUBLE_ARRAY", "STRING_ARRAY", "UNIX_TIMESTAMP_ARRAY", "UNKNOWN"
|
2337
|
+
# resp.nodes[0].actuator.data_type #=> String, one of "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "BOOLEAN", "FLOAT", "DOUBLE", "STRING", "UNIX_TIMESTAMP", "INT8_ARRAY", "UINT8_ARRAY", "INT16_ARRAY", "UINT16_ARRAY", "INT32_ARRAY", "UINT32_ARRAY", "INT64_ARRAY", "UINT64_ARRAY", "BOOLEAN_ARRAY", "FLOAT_ARRAY", "DOUBLE_ARRAY", "STRING_ARRAY", "UNIX_TIMESTAMP_ARRAY", "UNKNOWN", "STRUCT", "STRUCT_ARRAY"
|
2268
2338
|
# resp.nodes[0].actuator.description #=> String
|
2269
2339
|
# resp.nodes[0].actuator.unit #=> String
|
2270
2340
|
# resp.nodes[0].actuator.allowed_values #=> Array
|
@@ -2274,8 +2344,9 @@ module Aws::IoTFleetWise
|
|
2274
2344
|
# resp.nodes[0].actuator.assigned_value #=> String
|
2275
2345
|
# resp.nodes[0].actuator.deprecation_message #=> String
|
2276
2346
|
# resp.nodes[0].actuator.comment #=> String
|
2347
|
+
# resp.nodes[0].actuator.struct_fully_qualified_name #=> String
|
2277
2348
|
# resp.nodes[0].attribute.fully_qualified_name #=> String
|
2278
|
-
# resp.nodes[0].attribute.data_type #=> String, one of "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "BOOLEAN", "FLOAT", "DOUBLE", "STRING", "UNIX_TIMESTAMP", "INT8_ARRAY", "UINT8_ARRAY", "INT16_ARRAY", "UINT16_ARRAY", "INT32_ARRAY", "UINT32_ARRAY", "INT64_ARRAY", "UINT64_ARRAY", "BOOLEAN_ARRAY", "FLOAT_ARRAY", "DOUBLE_ARRAY", "STRING_ARRAY", "UNIX_TIMESTAMP_ARRAY", "UNKNOWN"
|
2349
|
+
# resp.nodes[0].attribute.data_type #=> String, one of "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "BOOLEAN", "FLOAT", "DOUBLE", "STRING", "UNIX_TIMESTAMP", "INT8_ARRAY", "UINT8_ARRAY", "INT16_ARRAY", "UINT16_ARRAY", "INT32_ARRAY", "UINT32_ARRAY", "INT64_ARRAY", "UINT64_ARRAY", "BOOLEAN_ARRAY", "FLOAT_ARRAY", "DOUBLE_ARRAY", "STRING_ARRAY", "UNIX_TIMESTAMP_ARRAY", "UNKNOWN", "STRUCT", "STRUCT_ARRAY"
|
2279
2350
|
# resp.nodes[0].attribute.description #=> String
|
2280
2351
|
# resp.nodes[0].attribute.unit #=> String
|
2281
2352
|
# resp.nodes[0].attribute.allowed_values #=> Array
|
@@ -2286,6 +2357,17 @@ module Aws::IoTFleetWise
|
|
2286
2357
|
# resp.nodes[0].attribute.default_value #=> String
|
2287
2358
|
# resp.nodes[0].attribute.deprecation_message #=> String
|
2288
2359
|
# resp.nodes[0].attribute.comment #=> String
|
2360
|
+
# resp.nodes[0].struct.fully_qualified_name #=> String
|
2361
|
+
# resp.nodes[0].struct.description #=> String
|
2362
|
+
# resp.nodes[0].struct.deprecation_message #=> String
|
2363
|
+
# resp.nodes[0].struct.comment #=> String
|
2364
|
+
# resp.nodes[0].property.fully_qualified_name #=> String
|
2365
|
+
# resp.nodes[0].property.data_type #=> String, one of "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "BOOLEAN", "FLOAT", "DOUBLE", "STRING", "UNIX_TIMESTAMP", "INT8_ARRAY", "UINT8_ARRAY", "INT16_ARRAY", "UINT16_ARRAY", "INT32_ARRAY", "UINT32_ARRAY", "INT64_ARRAY", "UINT64_ARRAY", "BOOLEAN_ARRAY", "FLOAT_ARRAY", "DOUBLE_ARRAY", "STRING_ARRAY", "UNIX_TIMESTAMP_ARRAY", "UNKNOWN", "STRUCT", "STRUCT_ARRAY"
|
2366
|
+
# resp.nodes[0].property.data_encoding #=> String, one of "BINARY", "TYPED"
|
2367
|
+
# resp.nodes[0].property.description #=> String
|
2368
|
+
# resp.nodes[0].property.deprecation_message #=> String
|
2369
|
+
# resp.nodes[0].property.comment #=> String
|
2370
|
+
# resp.nodes[0].property.struct_fully_qualified_name #=> String
|
2289
2371
|
# resp.next_token #=> String
|
2290
2372
|
#
|
2291
2373
|
# @overload list_model_manifest_nodes(params = {})
|
@@ -2340,7 +2422,7 @@ module Aws::IoTFleetWise
|
|
2340
2422
|
# resp.summaries[0].arn #=> String
|
2341
2423
|
# resp.summaries[0].signal_catalog_arn #=> String
|
2342
2424
|
# resp.summaries[0].description #=> String
|
2343
|
-
# resp.summaries[0].status #=> String, one of "ACTIVE", "DRAFT"
|
2425
|
+
# resp.summaries[0].status #=> String, one of "ACTIVE", "DRAFT", "INVALID", "VALIDATING"
|
2344
2426
|
# resp.summaries[0].creation_time #=> Time
|
2345
2427
|
# resp.summaries[0].last_modification_time #=> Time
|
2346
2428
|
# resp.next_token #=> String
|
@@ -2398,7 +2480,7 @@ module Aws::IoTFleetWise
|
|
2398
2480
|
# resp.nodes[0].branch.deprecation_message #=> String
|
2399
2481
|
# resp.nodes[0].branch.comment #=> String
|
2400
2482
|
# resp.nodes[0].sensor.fully_qualified_name #=> String
|
2401
|
-
# resp.nodes[0].sensor.data_type #=> String, one of "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "BOOLEAN", "FLOAT", "DOUBLE", "STRING", "UNIX_TIMESTAMP", "INT8_ARRAY", "UINT8_ARRAY", "INT16_ARRAY", "UINT16_ARRAY", "INT32_ARRAY", "UINT32_ARRAY", "INT64_ARRAY", "UINT64_ARRAY", "BOOLEAN_ARRAY", "FLOAT_ARRAY", "DOUBLE_ARRAY", "STRING_ARRAY", "UNIX_TIMESTAMP_ARRAY", "UNKNOWN"
|
2483
|
+
# resp.nodes[0].sensor.data_type #=> String, one of "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "BOOLEAN", "FLOAT", "DOUBLE", "STRING", "UNIX_TIMESTAMP", "INT8_ARRAY", "UINT8_ARRAY", "INT16_ARRAY", "UINT16_ARRAY", "INT32_ARRAY", "UINT32_ARRAY", "INT64_ARRAY", "UINT64_ARRAY", "BOOLEAN_ARRAY", "FLOAT_ARRAY", "DOUBLE_ARRAY", "STRING_ARRAY", "UNIX_TIMESTAMP_ARRAY", "UNKNOWN", "STRUCT", "STRUCT_ARRAY"
|
2402
2484
|
# resp.nodes[0].sensor.description #=> String
|
2403
2485
|
# resp.nodes[0].sensor.unit #=> String
|
2404
2486
|
# resp.nodes[0].sensor.allowed_values #=> Array
|
@@ -2407,8 +2489,9 @@ module Aws::IoTFleetWise
|
|
2407
2489
|
# resp.nodes[0].sensor.max #=> Float
|
2408
2490
|
# resp.nodes[0].sensor.deprecation_message #=> String
|
2409
2491
|
# resp.nodes[0].sensor.comment #=> String
|
2492
|
+
# resp.nodes[0].sensor.struct_fully_qualified_name #=> String
|
2410
2493
|
# resp.nodes[0].actuator.fully_qualified_name #=> String
|
2411
|
-
# resp.nodes[0].actuator.data_type #=> String, one of "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "BOOLEAN", "FLOAT", "DOUBLE", "STRING", "UNIX_TIMESTAMP", "INT8_ARRAY", "UINT8_ARRAY", "INT16_ARRAY", "UINT16_ARRAY", "INT32_ARRAY", "UINT32_ARRAY", "INT64_ARRAY", "UINT64_ARRAY", "BOOLEAN_ARRAY", "FLOAT_ARRAY", "DOUBLE_ARRAY", "STRING_ARRAY", "UNIX_TIMESTAMP_ARRAY", "UNKNOWN"
|
2494
|
+
# resp.nodes[0].actuator.data_type #=> String, one of "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "BOOLEAN", "FLOAT", "DOUBLE", "STRING", "UNIX_TIMESTAMP", "INT8_ARRAY", "UINT8_ARRAY", "INT16_ARRAY", "UINT16_ARRAY", "INT32_ARRAY", "UINT32_ARRAY", "INT64_ARRAY", "UINT64_ARRAY", "BOOLEAN_ARRAY", "FLOAT_ARRAY", "DOUBLE_ARRAY", "STRING_ARRAY", "UNIX_TIMESTAMP_ARRAY", "UNKNOWN", "STRUCT", "STRUCT_ARRAY"
|
2412
2495
|
# resp.nodes[0].actuator.description #=> String
|
2413
2496
|
# resp.nodes[0].actuator.unit #=> String
|
2414
2497
|
# resp.nodes[0].actuator.allowed_values #=> Array
|
@@ -2418,8 +2501,9 @@ module Aws::IoTFleetWise
|
|
2418
2501
|
# resp.nodes[0].actuator.assigned_value #=> String
|
2419
2502
|
# resp.nodes[0].actuator.deprecation_message #=> String
|
2420
2503
|
# resp.nodes[0].actuator.comment #=> String
|
2504
|
+
# resp.nodes[0].actuator.struct_fully_qualified_name #=> String
|
2421
2505
|
# resp.nodes[0].attribute.fully_qualified_name #=> String
|
2422
|
-
# resp.nodes[0].attribute.data_type #=> String, one of "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "BOOLEAN", "FLOAT", "DOUBLE", "STRING", "UNIX_TIMESTAMP", "INT8_ARRAY", "UINT8_ARRAY", "INT16_ARRAY", "UINT16_ARRAY", "INT32_ARRAY", "UINT32_ARRAY", "INT64_ARRAY", "UINT64_ARRAY", "BOOLEAN_ARRAY", "FLOAT_ARRAY", "DOUBLE_ARRAY", "STRING_ARRAY", "UNIX_TIMESTAMP_ARRAY", "UNKNOWN"
|
2506
|
+
# resp.nodes[0].attribute.data_type #=> String, one of "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "BOOLEAN", "FLOAT", "DOUBLE", "STRING", "UNIX_TIMESTAMP", "INT8_ARRAY", "UINT8_ARRAY", "INT16_ARRAY", "UINT16_ARRAY", "INT32_ARRAY", "UINT32_ARRAY", "INT64_ARRAY", "UINT64_ARRAY", "BOOLEAN_ARRAY", "FLOAT_ARRAY", "DOUBLE_ARRAY", "STRING_ARRAY", "UNIX_TIMESTAMP_ARRAY", "UNKNOWN", "STRUCT", "STRUCT_ARRAY"
|
2423
2507
|
# resp.nodes[0].attribute.description #=> String
|
2424
2508
|
# resp.nodes[0].attribute.unit #=> String
|
2425
2509
|
# resp.nodes[0].attribute.allowed_values #=> Array
|
@@ -2430,6 +2514,17 @@ module Aws::IoTFleetWise
|
|
2430
2514
|
# resp.nodes[0].attribute.default_value #=> String
|
2431
2515
|
# resp.nodes[0].attribute.deprecation_message #=> String
|
2432
2516
|
# resp.nodes[0].attribute.comment #=> String
|
2517
|
+
# resp.nodes[0].struct.fully_qualified_name #=> String
|
2518
|
+
# resp.nodes[0].struct.description #=> String
|
2519
|
+
# resp.nodes[0].struct.deprecation_message #=> String
|
2520
|
+
# resp.nodes[0].struct.comment #=> String
|
2521
|
+
# resp.nodes[0].property.fully_qualified_name #=> String
|
2522
|
+
# resp.nodes[0].property.data_type #=> String, one of "INT8", "UINT8", "INT16", "UINT16", "INT32", "UINT32", "INT64", "UINT64", "BOOLEAN", "FLOAT", "DOUBLE", "STRING", "UNIX_TIMESTAMP", "INT8_ARRAY", "UINT8_ARRAY", "INT16_ARRAY", "UINT16_ARRAY", "INT32_ARRAY", "UINT32_ARRAY", "INT64_ARRAY", "UINT64_ARRAY", "BOOLEAN_ARRAY", "FLOAT_ARRAY", "DOUBLE_ARRAY", "STRING_ARRAY", "UNIX_TIMESTAMP_ARRAY", "UNKNOWN", "STRUCT", "STRUCT_ARRAY"
|
2523
|
+
# resp.nodes[0].property.data_encoding #=> String, one of "BINARY", "TYPED"
|
2524
|
+
# resp.nodes[0].property.description #=> String
|
2525
|
+
# resp.nodes[0].property.deprecation_message #=> String
|
2526
|
+
# resp.nodes[0].property.comment #=> String
|
2527
|
+
# resp.nodes[0].property.struct_fully_qualified_name #=> String
|
2433
2528
|
# resp.next_token #=> String
|
2434
2529
|
#
|
2435
2530
|
# @overload list_signal_catalog_nodes(params = {})
|
@@ -2654,7 +2749,7 @@ module Aws::IoTFleetWise
|
|
2654
2749
|
# @example Request syntax with placeholder values
|
2655
2750
|
#
|
2656
2751
|
# resp = client.put_encryption_configuration({
|
2657
|
-
# kms_key_id: "
|
2752
|
+
# kms_key_id: "PutEncryptionConfigurationRequestKmsKeyIdString",
|
2658
2753
|
# encryption_type: "KMS_BASED_ENCRYPTION", # required, accepts KMS_BASED_ENCRYPTION, FLEETWISE_DEFAULT_ENCRYPTION
|
2659
2754
|
# })
|
2660
2755
|
#
|
@@ -2712,13 +2807,30 @@ module Aws::IoTFleetWise
|
|
2712
2807
|
# [DeleteServiceLinkedRole][3] in the *Identity and Access Management
|
2713
2808
|
# API Reference*.
|
2714
2809
|
#
|
2715
|
-
#
|
2810
|
+
# Registers your Amazon Web Services account, IAM, and Amazon Timestream
|
2811
|
+
# resources so Amazon Web Services IoT FleetWise can transfer your
|
2812
|
+
# vehicle data to the Amazon Web Services Cloud. For more information,
|
2813
|
+
# including step-by-step procedures, see [Setting up Amazon Web Services
|
2814
|
+
# IoT FleetWise][4].
|
2815
|
+
#
|
2816
|
+
# <note markdown="1"> An Amazon Web Services account is **not** the same thing as a
|
2817
|
+
# "user." An [Amazon Web Services user][5] is an identity that you
|
2818
|
+
# create using Identity and Access Management (IAM) and takes the form
|
2819
|
+
# of either an [IAM user][6] or an [IAM role, both with credentials][7].
|
2820
|
+
# A single Amazon Web Services account can, and typically does, contain
|
2821
|
+
# many users and roles.
|
2822
|
+
#
|
2823
|
+
# </note>
|
2716
2824
|
#
|
2717
2825
|
#
|
2718
2826
|
#
|
2719
2827
|
# [1]: https://docs.aws.amazon.com/iot-fleetwise/latest/APIReference/API_CreateCampaign.html
|
2720
2828
|
# [2]: https://docs.aws.amazon.com/iot-fleetwise/latest/APIReference/API_DeleteCampaign.html
|
2721
2829
|
# [3]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteServiceLinkedRole.html
|
2830
|
+
# [4]: https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/setting-up.html
|
2831
|
+
# [5]: https://docs.aws.amazon.com/IAM/latest/UserGuide/introduction_identity-management.html#intro-identity-users
|
2832
|
+
# [6]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_users.html
|
2833
|
+
# [7]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html
|
2722
2834
|
#
|
2723
2835
|
# @option params [Types::TimestreamResources] :timestream_resources
|
2724
2836
|
# The registered Amazon Timestream resources that Amazon Web Services
|
@@ -2927,7 +3039,7 @@ module Aws::IoTFleetWise
|
|
2927
3039
|
# signal_decoders_to_add: [
|
2928
3040
|
# {
|
2929
3041
|
# fully_qualified_name: "FullyQualifiedName", # required
|
2930
|
-
# type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL
|
3042
|
+
# type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL, CUSTOMER_DECODED_SIGNAL
|
2931
3043
|
# interface_id: "InterfaceId", # required
|
2932
3044
|
# can_signal: {
|
2933
3045
|
# message_id: 1, # required
|
@@ -2950,12 +3062,41 @@ module Aws::IoTFleetWise
|
|
2950
3062
|
# bit_right_shift: 1,
|
2951
3063
|
# bit_mask_length: 1,
|
2952
3064
|
# },
|
3065
|
+
# message_signal: {
|
3066
|
+
# topic_name: "TopicName", # required
|
3067
|
+
# structured_message: { # required
|
3068
|
+
# primitive_message_definition: {
|
3069
|
+
# ros2_primitive_message_definition: {
|
3070
|
+
# primitive_type: "BOOL", # required, accepts BOOL, BYTE, CHAR, FLOAT32, FLOAT64, INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, STRING, WSTRING
|
3071
|
+
# offset: 1.0,
|
3072
|
+
# scaling: 1.0,
|
3073
|
+
# upper_bound: 1,
|
3074
|
+
# },
|
3075
|
+
# },
|
3076
|
+
# structured_message_list_definition: {
|
3077
|
+
# name: "StructureMessageName", # required
|
3078
|
+
# member_type: { # required
|
3079
|
+
# # recursive StructuredMessage
|
3080
|
+
# },
|
3081
|
+
# list_type: "FIXED_CAPACITY", # required, accepts FIXED_CAPACITY, DYNAMIC_UNBOUNDED_CAPACITY, DYNAMIC_BOUNDED_CAPACITY
|
3082
|
+
# capacity: 1,
|
3083
|
+
# },
|
3084
|
+
# structured_message_definition: [
|
3085
|
+
# {
|
3086
|
+
# field_name: "StructureMessageName", # required
|
3087
|
+
# data_type: { # required
|
3088
|
+
# # recursive StructuredMessage
|
3089
|
+
# },
|
3090
|
+
# },
|
3091
|
+
# ],
|
3092
|
+
# },
|
3093
|
+
# },
|
2953
3094
|
# },
|
2954
3095
|
# ],
|
2955
3096
|
# signal_decoders_to_update: [
|
2956
3097
|
# {
|
2957
3098
|
# fully_qualified_name: "FullyQualifiedName", # required
|
2958
|
-
# type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL
|
3099
|
+
# type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL, CUSTOMER_DECODED_SIGNAL
|
2959
3100
|
# interface_id: "InterfaceId", # required
|
2960
3101
|
# can_signal: {
|
2961
3102
|
# message_id: 1, # required
|
@@ -2978,13 +3119,42 @@ module Aws::IoTFleetWise
|
|
2978
3119
|
# bit_right_shift: 1,
|
2979
3120
|
# bit_mask_length: 1,
|
2980
3121
|
# },
|
3122
|
+
# message_signal: {
|
3123
|
+
# topic_name: "TopicName", # required
|
3124
|
+
# structured_message: { # required
|
3125
|
+
# primitive_message_definition: {
|
3126
|
+
# ros2_primitive_message_definition: {
|
3127
|
+
# primitive_type: "BOOL", # required, accepts BOOL, BYTE, CHAR, FLOAT32, FLOAT64, INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, STRING, WSTRING
|
3128
|
+
# offset: 1.0,
|
3129
|
+
# scaling: 1.0,
|
3130
|
+
# upper_bound: 1,
|
3131
|
+
# },
|
3132
|
+
# },
|
3133
|
+
# structured_message_list_definition: {
|
3134
|
+
# name: "StructureMessageName", # required
|
3135
|
+
# member_type: { # required
|
3136
|
+
# # recursive StructuredMessage
|
3137
|
+
# },
|
3138
|
+
# list_type: "FIXED_CAPACITY", # required, accepts FIXED_CAPACITY, DYNAMIC_UNBOUNDED_CAPACITY, DYNAMIC_BOUNDED_CAPACITY
|
3139
|
+
# capacity: 1,
|
3140
|
+
# },
|
3141
|
+
# structured_message_definition: [
|
3142
|
+
# {
|
3143
|
+
# field_name: "StructureMessageName", # required
|
3144
|
+
# data_type: { # required
|
3145
|
+
# # recursive StructuredMessage
|
3146
|
+
# },
|
3147
|
+
# },
|
3148
|
+
# ],
|
3149
|
+
# },
|
3150
|
+
# },
|
2981
3151
|
# },
|
2982
3152
|
# ],
|
2983
3153
|
# signal_decoders_to_remove: ["FullyQualifiedName"],
|
2984
3154
|
# network_interfaces_to_add: [
|
2985
3155
|
# {
|
2986
3156
|
# interface_id: "InterfaceId", # required
|
2987
|
-
# type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE
|
3157
|
+
# type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE, CUSTOMER_DECODED_INTERFACE
|
2988
3158
|
# can_interface: {
|
2989
3159
|
# name: "CanInterfaceName", # required
|
2990
3160
|
# protocol_name: "ProtocolName",
|
@@ -2999,12 +3169,16 @@ module Aws::IoTFleetWise
|
|
2999
3169
|
# use_extended_ids: false,
|
3000
3170
|
# has_transmission_ecu: false,
|
3001
3171
|
# },
|
3172
|
+
# vehicle_middleware: {
|
3173
|
+
# name: "VehicleMiddlewareName", # required
|
3174
|
+
# protocol_name: "ROS_2", # required, accepts ROS_2
|
3175
|
+
# },
|
3002
3176
|
# },
|
3003
3177
|
# ],
|
3004
3178
|
# network_interfaces_to_update: [
|
3005
3179
|
# {
|
3006
3180
|
# interface_id: "InterfaceId", # required
|
3007
|
-
# type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE
|
3181
|
+
# type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE, CUSTOMER_DECODED_INTERFACE
|
3008
3182
|
# can_interface: {
|
3009
3183
|
# name: "CanInterfaceName", # required
|
3010
3184
|
# protocol_name: "ProtocolName",
|
@@ -3019,10 +3193,14 @@ module Aws::IoTFleetWise
|
|
3019
3193
|
# use_extended_ids: false,
|
3020
3194
|
# has_transmission_ecu: false,
|
3021
3195
|
# },
|
3196
|
+
# vehicle_middleware: {
|
3197
|
+
# name: "VehicleMiddlewareName", # required
|
3198
|
+
# protocol_name: "ROS_2", # required, accepts ROS_2
|
3199
|
+
# },
|
3022
3200
|
# },
|
3023
3201
|
# ],
|
3024
3202
|
# network_interfaces_to_remove: ["InterfaceId"],
|
3025
|
-
# status: "ACTIVE", # accepts ACTIVE, DRAFT
|
3203
|
+
# status: "ACTIVE", # accepts ACTIVE, DRAFT, INVALID, VALIDATING
|
3026
3204
|
# })
|
3027
3205
|
#
|
3028
3206
|
# @example Response structure
|
@@ -3108,7 +3286,7 @@ module Aws::IoTFleetWise
|
|
3108
3286
|
# description: "description",
|
3109
3287
|
# nodes_to_add: ["NodePath"],
|
3110
3288
|
# nodes_to_remove: ["NodePath"],
|
3111
|
-
# status: "ACTIVE", # accepts ACTIVE, DRAFT
|
3289
|
+
# status: "ACTIVE", # accepts ACTIVE, DRAFT, INVALID, VALIDATING
|
3112
3290
|
# })
|
3113
3291
|
#
|
3114
3292
|
# @example Response structure
|
@@ -3161,7 +3339,7 @@ module Aws::IoTFleetWise
|
|
3161
3339
|
# },
|
3162
3340
|
# sensor: {
|
3163
3341
|
# fully_qualified_name: "string", # required
|
3164
|
-
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN
|
3342
|
+
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN, STRUCT, STRUCT_ARRAY
|
3165
3343
|
# description: "description",
|
3166
3344
|
# unit: "string",
|
3167
3345
|
# allowed_values: ["string"],
|
@@ -3169,10 +3347,11 @@ module Aws::IoTFleetWise
|
|
3169
3347
|
# max: 1.0,
|
3170
3348
|
# deprecation_message: "message",
|
3171
3349
|
# comment: "message",
|
3350
|
+
# struct_fully_qualified_name: "NodePath",
|
3172
3351
|
# },
|
3173
3352
|
# actuator: {
|
3174
3353
|
# fully_qualified_name: "string", # required
|
3175
|
-
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN
|
3354
|
+
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN, STRUCT, STRUCT_ARRAY
|
3176
3355
|
# description: "description",
|
3177
3356
|
# unit: "string",
|
3178
3357
|
# allowed_values: ["string"],
|
@@ -3181,10 +3360,11 @@ module Aws::IoTFleetWise
|
|
3181
3360
|
# assigned_value: "string",
|
3182
3361
|
# deprecation_message: "message",
|
3183
3362
|
# comment: "message",
|
3363
|
+
# struct_fully_qualified_name: "NodePath",
|
3184
3364
|
# },
|
3185
3365
|
# attribute: {
|
3186
3366
|
# fully_qualified_name: "string", # required
|
3187
|
-
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN
|
3367
|
+
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN, STRUCT, STRUCT_ARRAY
|
3188
3368
|
# description: "description",
|
3189
3369
|
# unit: "string",
|
3190
3370
|
# allowed_values: ["string"],
|
@@ -3195,6 +3375,21 @@ module Aws::IoTFleetWise
|
|
3195
3375
|
# deprecation_message: "message",
|
3196
3376
|
# comment: "message",
|
3197
3377
|
# },
|
3378
|
+
# struct: {
|
3379
|
+
# fully_qualified_name: "string", # required
|
3380
|
+
# description: "description",
|
3381
|
+
# deprecation_message: "message",
|
3382
|
+
# comment: "message",
|
3383
|
+
# },
|
3384
|
+
# property: {
|
3385
|
+
# fully_qualified_name: "string", # required
|
3386
|
+
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN, STRUCT, STRUCT_ARRAY
|
3387
|
+
# data_encoding: "BINARY", # accepts BINARY, TYPED
|
3388
|
+
# description: "description",
|
3389
|
+
# deprecation_message: "message",
|
3390
|
+
# comment: "message",
|
3391
|
+
# struct_fully_qualified_name: "NodePath",
|
3392
|
+
# },
|
3198
3393
|
# },
|
3199
3394
|
# ],
|
3200
3395
|
# nodes_to_update: [
|
@@ -3207,7 +3402,7 @@ module Aws::IoTFleetWise
|
|
3207
3402
|
# },
|
3208
3403
|
# sensor: {
|
3209
3404
|
# fully_qualified_name: "string", # required
|
3210
|
-
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN
|
3405
|
+
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN, STRUCT, STRUCT_ARRAY
|
3211
3406
|
# description: "description",
|
3212
3407
|
# unit: "string",
|
3213
3408
|
# allowed_values: ["string"],
|
@@ -3215,10 +3410,11 @@ module Aws::IoTFleetWise
|
|
3215
3410
|
# max: 1.0,
|
3216
3411
|
# deprecation_message: "message",
|
3217
3412
|
# comment: "message",
|
3413
|
+
# struct_fully_qualified_name: "NodePath",
|
3218
3414
|
# },
|
3219
3415
|
# actuator: {
|
3220
3416
|
# fully_qualified_name: "string", # required
|
3221
|
-
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN
|
3417
|
+
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN, STRUCT, STRUCT_ARRAY
|
3222
3418
|
# description: "description",
|
3223
3419
|
# unit: "string",
|
3224
3420
|
# allowed_values: ["string"],
|
@@ -3227,10 +3423,11 @@ module Aws::IoTFleetWise
|
|
3227
3423
|
# assigned_value: "string",
|
3228
3424
|
# deprecation_message: "message",
|
3229
3425
|
# comment: "message",
|
3426
|
+
# struct_fully_qualified_name: "NodePath",
|
3230
3427
|
# },
|
3231
3428
|
# attribute: {
|
3232
3429
|
# fully_qualified_name: "string", # required
|
3233
|
-
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN
|
3430
|
+
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN, STRUCT, STRUCT_ARRAY
|
3234
3431
|
# description: "description",
|
3235
3432
|
# unit: "string",
|
3236
3433
|
# allowed_values: ["string"],
|
@@ -3241,6 +3438,21 @@ module Aws::IoTFleetWise
|
|
3241
3438
|
# deprecation_message: "message",
|
3242
3439
|
# comment: "message",
|
3243
3440
|
# },
|
3441
|
+
# struct: {
|
3442
|
+
# fully_qualified_name: "string", # required
|
3443
|
+
# description: "description",
|
3444
|
+
# deprecation_message: "message",
|
3445
|
+
# comment: "message",
|
3446
|
+
# },
|
3447
|
+
# property: {
|
3448
|
+
# fully_qualified_name: "string", # required
|
3449
|
+
# data_type: "INT8", # required, accepts INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, BOOLEAN, FLOAT, DOUBLE, STRING, UNIX_TIMESTAMP, INT8_ARRAY, UINT8_ARRAY, INT16_ARRAY, UINT16_ARRAY, INT32_ARRAY, UINT32_ARRAY, INT64_ARRAY, UINT64_ARRAY, BOOLEAN_ARRAY, FLOAT_ARRAY, DOUBLE_ARRAY, STRING_ARRAY, UNIX_TIMESTAMP_ARRAY, UNKNOWN, STRUCT, STRUCT_ARRAY
|
3450
|
+
# data_encoding: "BINARY", # accepts BINARY, TYPED
|
3451
|
+
# description: "description",
|
3452
|
+
# deprecation_message: "message",
|
3453
|
+
# comment: "message",
|
3454
|
+
# struct_fully_qualified_name: "NodePath",
|
3455
|
+
# },
|
3244
3456
|
# },
|
3245
3457
|
# ],
|
3246
3458
|
# nodes_to_remove: ["NodePath"],
|
@@ -3325,7 +3537,7 @@ module Aws::IoTFleetWise
|
|
3325
3537
|
params: params,
|
3326
3538
|
config: config)
|
3327
3539
|
context[:gem_name] = 'aws-sdk-iotfleetwise'
|
3328
|
-
context[:gem_version] = '1.
|
3540
|
+
context[:gem_version] = '1.17.0'
|
3329
3541
|
Seahorse::Client::Request.new(handlers, context)
|
3330
3542
|
end
|
3331
3543
|
|