aws-sdk-iotfleetwise 1.18.0 → 1.20.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 +15 -9
- data/lib/aws-sdk-iotfleetwise/client_api.rb +3 -0
- data/lib/aws-sdk-iotfleetwise/types.rb +15 -3
- data/lib/aws-sdk-iotfleetwise.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f3c4ba4c09bd632566233732a755c6f1739c121dd89e7686376c94e6b34607c6
|
4
|
+
data.tar.gz: 86e6016f036250a13a4cbb3e6142d982ea8d681c025a68409ca959269f85f1b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68fe9e226009c630c8b02a27f4b431477c80a624748b1cab375b5fe943c3031d24e4292ea4b9c51b0c4c86264a97b5479c4eddb6cce370d6ab9afed3dd479a47
|
7
|
+
data.tar.gz: ebe170a23c628ed40ed919d7bf080a2bdabf666fac4f4a5a0d31daf449356f06d6c832ad9a318240d986d52a6a0856c1de4a1b3d182806926553f650732c8911
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.20.0 (2024-01-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updated APIs: SignalNodeType query parameter has been added to ListSignalCatalogNodesRequest and ListVehiclesResponse has been extended with attributes field.
|
8
|
+
|
9
|
+
1.19.0 (2024-01-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - The following dataTypes have been removed: CUSTOMER_DECODED_INTERFACE in NetworkInterfaceType; CUSTOMER_DECODED_SIGNAL_INFO_IS_NULL in SignalDecoderFailureReason; CUSTOMER_DECODED_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL in NetworkInterfaceFailureReason; CUSTOMER_DECODED_SIGNAL in SignalDecoderType
|
13
|
+
|
4
14
|
1.18.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.20.0
|
@@ -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, MESSAGE_SIGNAL
|
775
|
+
# type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL
|
776
776
|
# interface_id: "InterfaceId", # required
|
777
777
|
# can_signal: {
|
778
778
|
# message_id: 1, # required
|
@@ -829,7 +829,7 @@ module Aws::IoTFleetWise
|
|
829
829
|
# network_interfaces: [
|
830
830
|
# {
|
831
831
|
# interface_id: "InterfaceId", # required
|
832
|
-
# type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE
|
832
|
+
# type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE
|
833
833
|
# can_interface: {
|
834
834
|
# name: "CanInterfaceName", # required
|
835
835
|
# protocol_name: "ProtocolName",
|
@@ -2012,7 +2012,7 @@ module Aws::IoTFleetWise
|
|
2012
2012
|
#
|
2013
2013
|
# resp.network_interfaces #=> Array
|
2014
2014
|
# resp.network_interfaces[0].interface_id #=> String
|
2015
|
-
# resp.network_interfaces[0].type #=> String, one of "CAN_INTERFACE", "OBD_INTERFACE", "VEHICLE_MIDDLEWARE"
|
2015
|
+
# resp.network_interfaces[0].type #=> String, one of "CAN_INTERFACE", "OBD_INTERFACE", "VEHICLE_MIDDLEWARE"
|
2016
2016
|
# resp.network_interfaces[0].can_interface.name #=> String
|
2017
2017
|
# resp.network_interfaces[0].can_interface.protocol_name #=> String
|
2018
2018
|
# resp.network_interfaces[0].can_interface.protocol_version #=> String
|
@@ -2076,7 +2076,7 @@ module Aws::IoTFleetWise
|
|
2076
2076
|
#
|
2077
2077
|
# resp.signal_decoders #=> Array
|
2078
2078
|
# resp.signal_decoders[0].fully_qualified_name #=> String
|
2079
|
-
# resp.signal_decoders[0].type #=> String, one of "CAN_SIGNAL", "OBD_SIGNAL", "MESSAGE_SIGNAL"
|
2079
|
+
# resp.signal_decoders[0].type #=> String, one of "CAN_SIGNAL", "OBD_SIGNAL", "MESSAGE_SIGNAL"
|
2080
2080
|
# resp.signal_decoders[0].interface_id #=> String
|
2081
2081
|
# resp.signal_decoders[0].can_signal.message_id #=> Integer
|
2082
2082
|
# resp.signal_decoders[0].can_signal.is_big_endian #=> Boolean
|
@@ -2457,6 +2457,9 @@ module Aws::IoTFleetWise
|
|
2457
2457
|
# @option params [Integer] :max_results
|
2458
2458
|
# The maximum number of items to return, between 1 and 100, inclusive.
|
2459
2459
|
#
|
2460
|
+
# @option params [String] :signal_node_type
|
2461
|
+
# The type of node in the signal catalog.
|
2462
|
+
#
|
2460
2463
|
# @return [Types::ListSignalCatalogNodesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2461
2464
|
#
|
2462
2465
|
# * {Types::ListSignalCatalogNodesResponse#nodes #nodes} => Array<Types::Node>
|
@@ -2470,6 +2473,7 @@ module Aws::IoTFleetWise
|
|
2470
2473
|
# name: "resourceName", # required
|
2471
2474
|
# next_token: "nextToken",
|
2472
2475
|
# max_results: 1,
|
2476
|
+
# signal_node_type: "SENSOR", # accepts SENSOR, ACTUATOR, ATTRIBUTE, BRANCH, CUSTOM_STRUCT, CUSTOM_PROPERTY
|
2473
2477
|
# })
|
2474
2478
|
#
|
2475
2479
|
# @example Response structure
|
@@ -2663,6 +2667,8 @@ module Aws::IoTFleetWise
|
|
2663
2667
|
# resp.vehicle_summaries[0].decoder_manifest_arn #=> String
|
2664
2668
|
# resp.vehicle_summaries[0].creation_time #=> Time
|
2665
2669
|
# resp.vehicle_summaries[0].last_modification_time #=> Time
|
2670
|
+
# resp.vehicle_summaries[0].attributes #=> Hash
|
2671
|
+
# resp.vehicle_summaries[0].attributes["attributeName"] #=> String
|
2666
2672
|
# resp.next_token #=> String
|
2667
2673
|
#
|
2668
2674
|
# @overload list_vehicles(params = {})
|
@@ -3039,7 +3045,7 @@ module Aws::IoTFleetWise
|
|
3039
3045
|
# signal_decoders_to_add: [
|
3040
3046
|
# {
|
3041
3047
|
# fully_qualified_name: "FullyQualifiedName", # required
|
3042
|
-
# type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL
|
3048
|
+
# type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL
|
3043
3049
|
# interface_id: "InterfaceId", # required
|
3044
3050
|
# can_signal: {
|
3045
3051
|
# message_id: 1, # required
|
@@ -3096,7 +3102,7 @@ module Aws::IoTFleetWise
|
|
3096
3102
|
# signal_decoders_to_update: [
|
3097
3103
|
# {
|
3098
3104
|
# fully_qualified_name: "FullyQualifiedName", # required
|
3099
|
-
# type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL
|
3105
|
+
# type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL
|
3100
3106
|
# interface_id: "InterfaceId", # required
|
3101
3107
|
# can_signal: {
|
3102
3108
|
# message_id: 1, # required
|
@@ -3154,7 +3160,7 @@ module Aws::IoTFleetWise
|
|
3154
3160
|
# network_interfaces_to_add: [
|
3155
3161
|
# {
|
3156
3162
|
# interface_id: "InterfaceId", # required
|
3157
|
-
# type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE
|
3163
|
+
# type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE
|
3158
3164
|
# can_interface: {
|
3159
3165
|
# name: "CanInterfaceName", # required
|
3160
3166
|
# protocol_name: "ProtocolName",
|
@@ -3178,7 +3184,7 @@ module Aws::IoTFleetWise
|
|
3178
3184
|
# network_interfaces_to_update: [
|
3179
3185
|
# {
|
3180
3186
|
# interface_id: "InterfaceId", # required
|
3181
|
-
# type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE
|
3187
|
+
# type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE
|
3182
3188
|
# can_interface: {
|
3183
3189
|
# name: "CanInterfaceName", # required
|
3184
3190
|
# protocol_name: "ProtocolName",
|
@@ -3537,7 +3543,7 @@ module Aws::IoTFleetWise
|
|
3537
3543
|
params: params,
|
3538
3544
|
config: config)
|
3539
3545
|
context[:gem_name] = 'aws-sdk-iotfleetwise'
|
3540
|
-
context[:gem_version] = '1.
|
3546
|
+
context[:gem_version] = '1.20.0'
|
3541
3547
|
Seahorse::Client::Request.new(handlers, context)
|
3542
3548
|
end
|
3543
3549
|
|
@@ -200,6 +200,7 @@ module Aws::IoTFleetWise
|
|
200
200
|
SignalDecoders = Shapes::ListShape.new(name: 'SignalDecoders')
|
201
201
|
SignalInformation = Shapes::StructureShape.new(name: 'SignalInformation')
|
202
202
|
SignalInformationList = Shapes::ListShape.new(name: 'SignalInformationList')
|
203
|
+
SignalNodeType = Shapes::StringShape.new(name: 'SignalNodeType')
|
203
204
|
SpoolingMode = Shapes::StringShape.new(name: 'SpoolingMode')
|
204
205
|
StorageCompressionFormat = Shapes::StringShape.new(name: 'StorageCompressionFormat')
|
205
206
|
String = Shapes::StringShape.new(name: 'String')
|
@@ -868,6 +869,7 @@ module Aws::IoTFleetWise
|
|
868
869
|
ListSignalCatalogNodesRequest.add_member(:name, Shapes::ShapeRef.new(shape: resourceName, required: true, location_name: "name"))
|
869
870
|
ListSignalCatalogNodesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: nextToken, location_name: "nextToken"))
|
870
871
|
ListSignalCatalogNodesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: maxResults, location_name: "maxResults"))
|
872
|
+
ListSignalCatalogNodesRequest.add_member(:signal_node_type, Shapes::ShapeRef.new(shape: SignalNodeType, location_name: "signalNodeType"))
|
871
873
|
ListSignalCatalogNodesRequest.struct_class = Types::ListSignalCatalogNodesRequest
|
872
874
|
|
873
875
|
ListSignalCatalogNodesResponse.add_member(:nodes, Shapes::ShapeRef.new(shape: Nodes, location_name: "nodes"))
|
@@ -1251,6 +1253,7 @@ module Aws::IoTFleetWise
|
|
1251
1253
|
VehicleSummary.add_member(:decoder_manifest_arn, Shapes::ShapeRef.new(shape: arn, required: true, location_name: "decoderManifestArn"))
|
1252
1254
|
VehicleSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: timestamp, required: true, location_name: "creationTime"))
|
1253
1255
|
VehicleSummary.add_member(:last_modification_time, Shapes::ShapeRef.new(shape: timestamp, required: true, location_name: "lastModificationTime"))
|
1256
|
+
VehicleSummary.add_member(:attributes, Shapes::ShapeRef.new(shape: attributesMap, location_name: "attributes"))
|
1254
1257
|
VehicleSummary.struct_class = Types::VehicleSummary
|
1255
1258
|
|
1256
1259
|
attributesMap.key = Shapes::ShapeRef.new(shape: attributeName)
|
@@ -484,7 +484,7 @@ module Aws::IoTFleetWise
|
|
484
484
|
#
|
485
485
|
# @!attribute [rw] expression
|
486
486
|
# The logical expression used to recognize what data to collect. For
|
487
|
-
# example,
|
487
|
+
# example, `` $variable.`Vehicle.OutsideAirTemperature` >= 105.0 ``.
|
488
488
|
# @return [String]
|
489
489
|
#
|
490
490
|
# @!attribute [rw] minimum_trigger_interval_ms
|
@@ -2611,10 +2611,15 @@ module Aws::IoTFleetWise
|
|
2611
2611
|
# The maximum number of items to return, between 1 and 100, inclusive.
|
2612
2612
|
# @return [Integer]
|
2613
2613
|
#
|
2614
|
+
# @!attribute [rw] signal_node_type
|
2615
|
+
# The type of node in the signal catalog.
|
2616
|
+
# @return [String]
|
2617
|
+
#
|
2614
2618
|
class ListSignalCatalogNodesRequest < Struct.new(
|
2615
2619
|
:name,
|
2616
2620
|
:next_token,
|
2617
|
-
:max_results
|
2621
|
+
:max_results,
|
2622
|
+
:signal_node_type)
|
2618
2623
|
SENSITIVE = []
|
2619
2624
|
include Aws::Structure
|
2620
2625
|
end
|
@@ -4329,13 +4334,20 @@ module Aws::IoTFleetWise
|
|
4329
4334
|
# (January 1, 1970 at midnight UTC time).
|
4330
4335
|
# @return [Time]
|
4331
4336
|
#
|
4337
|
+
# @!attribute [rw] attributes
|
4338
|
+
# Static information about a vehicle in a key-value pair. For example:
|
4339
|
+
#
|
4340
|
+
# `"engineType"` : `"1.3 L R2"`
|
4341
|
+
# @return [Hash<String,String>]
|
4342
|
+
#
|
4332
4343
|
class VehicleSummary < Struct.new(
|
4333
4344
|
:vehicle_name,
|
4334
4345
|
:arn,
|
4335
4346
|
:model_manifest_arn,
|
4336
4347
|
:decoder_manifest_arn,
|
4337
4348
|
:creation_time,
|
4338
|
-
:last_modification_time
|
4349
|
+
:last_modification_time,
|
4350
|
+
:attributes)
|
4339
4351
|
SENSITIVE = []
|
4340
4352
|
include Aws::Structure
|
4341
4353
|
end
|
data/lib/aws-sdk-iotfleetwise.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iotfleetwise
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.20.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -73,7 +73,7 @@ licenses:
|
|
73
73
|
metadata:
|
74
74
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotfleetwise
|
75
75
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotfleetwise/CHANGELOG.md
|
76
|
-
post_install_message:
|
76
|
+
post_install_message:
|
77
77
|
rdoc_options: []
|
78
78
|
require_paths:
|
79
79
|
- lib
|
@@ -88,8 +88,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '0'
|
90
90
|
requirements: []
|
91
|
-
rubygems_version: 3.
|
92
|
-
signing_key:
|
91
|
+
rubygems_version: 3.4.10
|
92
|
+
signing_key:
|
93
93
|
specification_version: 4
|
94
94
|
summary: AWS SDK for Ruby - AWS IoT FleetWise
|
95
95
|
test_files: []
|