aws-sdk-iotfleetwise 1.42.0 → 1.44.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 +56 -1
- data/lib/aws-sdk-iotfleetwise/client_api.rb +6 -0
- data/lib/aws-sdk-iotfleetwise/types.rb +49 -5
- data/lib/aws-sdk-iotfleetwise.rb +1 -1
- data/sig/client.rbs +47 -8
- data/sig/types.rbs +5 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f08134a49de4fe7b36d39fdd91f379cb5f6fab18d6bdb6911b1977acbc17225
|
4
|
+
data.tar.gz: c7de423329ef3ae38de2289111248497eaa197e4dc85d20da508f39b744639e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f118772c821109fdc13a124f5b6cb313687319211a7603dfaea8993d7311b162eb713eb07be5cefa9a06d8e47c8019b495ad6c8181df72fd79edd6001665d7b
|
7
|
+
data.tar.gz: ac4d88617671b550ed8f77b3cc1a02c3bbc33d675ec24d17c67c78273ae98ba8ea8f6606189221f094947d066a55d1cf7e8ab633b4f520e06c074e4f56943e8c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.44.0 (2025-04-08)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds the option to update the strategy of state templates already associated to a vehicle, without the need to remove and re-add them.
|
8
|
+
|
9
|
+
1.43.0 (2025-03-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds floating point support for CAN/OBD signals and adds support for signed OBD signals.
|
13
|
+
|
4
14
|
1.42.0 (2025-02-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.44.0
|
@@ -630,6 +630,21 @@ module Aws::IoTFleetWise
|
|
630
630
|
# },
|
631
631
|
# ],
|
632
632
|
# state_templates_to_remove: ["ResourceIdentifier"],
|
633
|
+
# state_templates_to_update: [
|
634
|
+
# {
|
635
|
+
# identifier: "ResourceIdentifier", # required
|
636
|
+
# state_template_update_strategy: { # required
|
637
|
+
# periodic: {
|
638
|
+
# state_template_update_rate: { # required
|
639
|
+
# unit: "MILLISECOND", # required, accepts MILLISECOND, SECOND, MINUTE, HOUR
|
640
|
+
# value: 1, # required
|
641
|
+
# },
|
642
|
+
# },
|
643
|
+
# on_change: {
|
644
|
+
# },
|
645
|
+
# },
|
646
|
+
# },
|
647
|
+
# ],
|
633
648
|
# },
|
634
649
|
# ],
|
635
650
|
# })
|
@@ -967,6 +982,7 @@ module Aws::IoTFleetWise
|
|
967
982
|
# factor: 1.0, # required
|
968
983
|
# length: 1, # required
|
969
984
|
# name: "CanSignalName",
|
985
|
+
# signal_value_type: "INTEGER", # accepts INTEGER, FLOATING_POINT
|
970
986
|
# },
|
971
987
|
# obd_signal: {
|
972
988
|
# pid_response_length: 1, # required
|
@@ -978,6 +994,8 @@ module Aws::IoTFleetWise
|
|
978
994
|
# byte_length: 1, # required
|
979
995
|
# bit_right_shift: 1,
|
980
996
|
# bit_mask_length: 1,
|
997
|
+
# is_signed: false,
|
998
|
+
# signal_value_type: "INTEGER", # accepts INTEGER, FLOATING_POINT
|
981
999
|
# },
|
982
1000
|
# message_signal: {
|
983
1001
|
# topic_name: "TopicName", # required
|
@@ -2494,6 +2512,7 @@ module Aws::IoTFleetWise
|
|
2494
2512
|
# resp.signal_decoders[0].can_signal.factor #=> Float
|
2495
2513
|
# resp.signal_decoders[0].can_signal.length #=> Integer
|
2496
2514
|
# resp.signal_decoders[0].can_signal.name #=> String
|
2515
|
+
# resp.signal_decoders[0].can_signal.signal_value_type #=> String, one of "INTEGER", "FLOATING_POINT"
|
2497
2516
|
# resp.signal_decoders[0].obd_signal.pid_response_length #=> Integer
|
2498
2517
|
# resp.signal_decoders[0].obd_signal.service_mode #=> Integer
|
2499
2518
|
# resp.signal_decoders[0].obd_signal.pid #=> Integer
|
@@ -2503,6 +2522,8 @@ module Aws::IoTFleetWise
|
|
2503
2522
|
# resp.signal_decoders[0].obd_signal.byte_length #=> Integer
|
2504
2523
|
# resp.signal_decoders[0].obd_signal.bit_right_shift #=> Integer
|
2505
2524
|
# resp.signal_decoders[0].obd_signal.bit_mask_length #=> Integer
|
2525
|
+
# resp.signal_decoders[0].obd_signal.is_signed #=> Boolean
|
2526
|
+
# resp.signal_decoders[0].obd_signal.signal_value_type #=> String, one of "INTEGER", "FLOATING_POINT"
|
2506
2527
|
# resp.signal_decoders[0].message_signal.topic_name #=> String
|
2507
2528
|
# 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"
|
2508
2529
|
# resp.signal_decoders[0].message_signal.structured_message.primitive_message_definition.ros2_primitive_message_definition.offset #=> Float
|
@@ -3589,6 +3610,7 @@ module Aws::IoTFleetWise
|
|
3589
3610
|
# factor: 1.0, # required
|
3590
3611
|
# length: 1, # required
|
3591
3612
|
# name: "CanSignalName",
|
3613
|
+
# signal_value_type: "INTEGER", # accepts INTEGER, FLOATING_POINT
|
3592
3614
|
# },
|
3593
3615
|
# obd_signal: {
|
3594
3616
|
# pid_response_length: 1, # required
|
@@ -3600,6 +3622,8 @@ module Aws::IoTFleetWise
|
|
3600
3622
|
# byte_length: 1, # required
|
3601
3623
|
# bit_right_shift: 1,
|
3602
3624
|
# bit_mask_length: 1,
|
3625
|
+
# is_signed: false,
|
3626
|
+
# signal_value_type: "INTEGER", # accepts INTEGER, FLOATING_POINT
|
3603
3627
|
# },
|
3604
3628
|
# message_signal: {
|
3605
3629
|
# topic_name: "TopicName", # required
|
@@ -3649,6 +3673,7 @@ module Aws::IoTFleetWise
|
|
3649
3673
|
# factor: 1.0, # required
|
3650
3674
|
# length: 1, # required
|
3651
3675
|
# name: "CanSignalName",
|
3676
|
+
# signal_value_type: "INTEGER", # accepts INTEGER, FLOATING_POINT
|
3652
3677
|
# },
|
3653
3678
|
# obd_signal: {
|
3654
3679
|
# pid_response_length: 1, # required
|
@@ -3660,6 +3685,8 @@ module Aws::IoTFleetWise
|
|
3660
3685
|
# byte_length: 1, # required
|
3661
3686
|
# bit_right_shift: 1,
|
3662
3687
|
# bit_mask_length: 1,
|
3688
|
+
# is_signed: false,
|
3689
|
+
# signal_value_type: "INTEGER", # accepts INTEGER, FLOATING_POINT
|
3663
3690
|
# },
|
3664
3691
|
# message_signal: {
|
3665
3692
|
# topic_name: "TopicName", # required
|
@@ -4101,6 +4128,15 @@ module Aws::IoTFleetWise
|
|
4101
4128
|
|
4102
4129
|
# Updates a vehicle.
|
4103
4130
|
#
|
4131
|
+
# Access to certain Amazon Web Services IoT FleetWise features is
|
4132
|
+
# currently gated. For more information, see [Amazon Web Services Region
|
4133
|
+
# and feature availability][1] in the *Amazon Web Services IoT FleetWise
|
4134
|
+
# Developer Guide*.
|
4135
|
+
#
|
4136
|
+
#
|
4137
|
+
#
|
4138
|
+
# [1]: https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html
|
4139
|
+
#
|
4104
4140
|
# @option params [required, String] :vehicle_name
|
4105
4141
|
# The unique ID of the vehicle to update.
|
4106
4142
|
#
|
@@ -4130,6 +4166,10 @@ module Aws::IoTFleetWise
|
|
4130
4166
|
# @option params [Array<String>] :state_templates_to_remove
|
4131
4167
|
# Remove state templates from the vehicle.
|
4132
4168
|
#
|
4169
|
+
# @option params [Array<Types::StateTemplateAssociation>] :state_templates_to_update
|
4170
|
+
# Change the `stateTemplateUpdateStrategy` of state templates already
|
4171
|
+
# associated with the vehicle.
|
4172
|
+
#
|
4133
4173
|
# @return [Types::UpdateVehicleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4134
4174
|
#
|
4135
4175
|
# * {Types::UpdateVehicleResponse#vehicle_name #vehicle_name} => String
|
@@ -4161,6 +4201,21 @@ module Aws::IoTFleetWise
|
|
4161
4201
|
# },
|
4162
4202
|
# ],
|
4163
4203
|
# state_templates_to_remove: ["ResourceIdentifier"],
|
4204
|
+
# state_templates_to_update: [
|
4205
|
+
# {
|
4206
|
+
# identifier: "ResourceIdentifier", # required
|
4207
|
+
# state_template_update_strategy: { # required
|
4208
|
+
# periodic: {
|
4209
|
+
# state_template_update_rate: { # required
|
4210
|
+
# unit: "MILLISECOND", # required, accepts MILLISECOND, SECOND, MINUTE, HOUR
|
4211
|
+
# value: 1, # required
|
4212
|
+
# },
|
4213
|
+
# },
|
4214
|
+
# on_change: {
|
4215
|
+
# },
|
4216
|
+
# },
|
4217
|
+
# },
|
4218
|
+
# ],
|
4164
4219
|
# })
|
4165
4220
|
#
|
4166
4221
|
# @example Response structure
|
@@ -4193,7 +4248,7 @@ module Aws::IoTFleetWise
|
|
4193
4248
|
tracer: tracer
|
4194
4249
|
)
|
4195
4250
|
context[:gem_name] = 'aws-sdk-iotfleetwise'
|
4196
|
-
context[:gem_version] = '1.
|
4251
|
+
context[:gem_version] = '1.44.0'
|
4197
4252
|
Seahorse::Client::Request.new(handlers, context)
|
4198
4253
|
end
|
4199
4254
|
|
@@ -232,6 +232,7 @@ module Aws::IoTFleetWise
|
|
232
232
|
SignalInformation = Shapes::StructureShape.new(name: 'SignalInformation')
|
233
233
|
SignalInformationList = Shapes::ListShape.new(name: 'SignalInformationList')
|
234
234
|
SignalNodeType = Shapes::StringShape.new(name: 'SignalNodeType')
|
235
|
+
SignalValueType = Shapes::StringShape.new(name: 'SignalValueType')
|
235
236
|
SpoolingMode = Shapes::StringShape.new(name: 'SpoolingMode')
|
236
237
|
StateTemplateAssociation = Shapes::StructureShape.new(name: 'StateTemplateAssociation')
|
237
238
|
StateTemplateAssociationIdentifiers = Shapes::ListShape.new(name: 'StateTemplateAssociationIdentifiers')
|
@@ -444,6 +445,7 @@ module Aws::IoTFleetWise
|
|
444
445
|
CanSignal.add_member(:factor, Shapes::ShapeRef.new(shape: double, required: true, location_name: "factor"))
|
445
446
|
CanSignal.add_member(:length, Shapes::ShapeRef.new(shape: nonNegativeInteger, required: true, location_name: "length"))
|
446
447
|
CanSignal.add_member(:name, Shapes::ShapeRef.new(shape: CanSignalName, location_name: "name"))
|
448
|
+
CanSignal.add_member(:signal_value_type, Shapes::ShapeRef.new(shape: SignalValueType, location_name: "signalValueType"))
|
447
449
|
CanSignal.struct_class = Types::CanSignal
|
448
450
|
|
449
451
|
CloudWatchLogDeliveryOptions.add_member(:log_type, Shapes::ShapeRef.new(shape: LogType, required: true, location_name: "logType"))
|
@@ -1144,6 +1146,8 @@ module Aws::IoTFleetWise
|
|
1144
1146
|
ObdSignal.add_member(:byte_length, Shapes::ShapeRef.new(shape: ObdByteLength, required: true, location_name: "byteLength"))
|
1145
1147
|
ObdSignal.add_member(:bit_right_shift, Shapes::ShapeRef.new(shape: nonNegativeInteger, location_name: "bitRightShift"))
|
1146
1148
|
ObdSignal.add_member(:bit_mask_length, Shapes::ShapeRef.new(shape: ObdBitmaskLength, location_name: "bitMaskLength"))
|
1149
|
+
ObdSignal.add_member(:is_signed, Shapes::ShapeRef.new(shape: PrimitiveBoolean, location_name: "isSigned", metadata: {"box"=>true}))
|
1150
|
+
ObdSignal.add_member(:signal_value_type, Shapes::ShapeRef.new(shape: SignalValueType, location_name: "signalValueType"))
|
1147
1151
|
ObdSignal.struct_class = Types::ObdSignal
|
1148
1152
|
|
1149
1153
|
OnChangeStateTemplateUpdateStrategy.struct_class = Types::OnChangeStateTemplateUpdateStrategy
|
@@ -1449,6 +1453,7 @@ module Aws::IoTFleetWise
|
|
1449
1453
|
UpdateVehicleRequest.add_member(:attribute_update_mode, Shapes::ShapeRef.new(shape: UpdateMode, location_name: "attributeUpdateMode"))
|
1450
1454
|
UpdateVehicleRequest.add_member(:state_templates_to_add, Shapes::ShapeRef.new(shape: StateTemplateAssociations, location_name: "stateTemplatesToAdd"))
|
1451
1455
|
UpdateVehicleRequest.add_member(:state_templates_to_remove, Shapes::ShapeRef.new(shape: StateTemplateAssociationIdentifiers, location_name: "stateTemplatesToRemove"))
|
1456
|
+
UpdateVehicleRequest.add_member(:state_templates_to_update, Shapes::ShapeRef.new(shape: StateTemplateAssociations, location_name: "stateTemplatesToUpdate"))
|
1452
1457
|
UpdateVehicleRequest.struct_class = Types::UpdateVehicleRequest
|
1453
1458
|
|
1454
1459
|
UpdateVehicleRequestItem.add_member(:vehicle_name, Shapes::ShapeRef.new(shape: vehicleName, required: true, location_name: "vehicleName"))
|
@@ -1458,6 +1463,7 @@ module Aws::IoTFleetWise
|
|
1458
1463
|
UpdateVehicleRequestItem.add_member(:attribute_update_mode, Shapes::ShapeRef.new(shape: UpdateMode, location_name: "attributeUpdateMode"))
|
1459
1464
|
UpdateVehicleRequestItem.add_member(:state_templates_to_add, Shapes::ShapeRef.new(shape: StateTemplateAssociations, location_name: "stateTemplatesToAdd"))
|
1460
1465
|
UpdateVehicleRequestItem.add_member(:state_templates_to_remove, Shapes::ShapeRef.new(shape: StateTemplateAssociationIdentifiers, location_name: "stateTemplatesToRemove"))
|
1466
|
+
UpdateVehicleRequestItem.add_member(:state_templates_to_update, Shapes::ShapeRef.new(shape: StateTemplateAssociations, location_name: "stateTemplatesToUpdate"))
|
1461
1467
|
UpdateVehicleRequestItem.struct_class = Types::UpdateVehicleRequestItem
|
1462
1468
|
|
1463
1469
|
UpdateVehicleResponse.add_member(:vehicle_name, Shapes::ShapeRef.new(shape: vehicleName, location_name: "vehicleName"))
|
@@ -389,7 +389,11 @@ module Aws::IoTFleetWise
|
|
389
389
|
# @return [Boolean]
|
390
390
|
#
|
391
391
|
# @!attribute [rw] is_signed
|
392
|
-
#
|
392
|
+
# Determines whether the message is signed (`true`) or not (`false`).
|
393
|
+
# If it's signed, the message can represent both positive and
|
394
|
+
# negative numbers. The `isSigned` parameter only applies to the
|
395
|
+
# `INTEGER` raw signal type, and it doesn't affect the
|
396
|
+
# `FLOATING_POINT` raw signal type.
|
393
397
|
# @return [Boolean]
|
394
398
|
#
|
395
399
|
# @!attribute [rw] start_bit
|
@@ -420,6 +424,10 @@ module Aws::IoTFleetWise
|
|
420
424
|
# The name of the signal.
|
421
425
|
# @return [String]
|
422
426
|
#
|
427
|
+
# @!attribute [rw] signal_value_type
|
428
|
+
# The value type of the signal. The default value is `INTEGER`.
|
429
|
+
# @return [String]
|
430
|
+
#
|
423
431
|
class CanSignal < Struct.new(
|
424
432
|
:message_id,
|
425
433
|
:is_big_endian,
|
@@ -428,7 +436,8 @@ module Aws::IoTFleetWise
|
|
428
436
|
:offset,
|
429
437
|
:factor,
|
430
438
|
:length,
|
431
|
-
:name
|
439
|
+
:name,
|
440
|
+
:signal_value_type)
|
432
441
|
SENSITIVE = []
|
433
442
|
include Aws::Structure
|
434
443
|
end
|
@@ -3699,6 +3708,18 @@ module Aws::IoTFleetWise
|
|
3699
3708
|
# The number of bits to mask in a message.
|
3700
3709
|
# @return [Integer]
|
3701
3710
|
#
|
3711
|
+
# @!attribute [rw] is_signed
|
3712
|
+
# Determines whether the message is signed (`true`) or not (`false`).
|
3713
|
+
# If it's signed, the message can represent both positive and
|
3714
|
+
# negative numbers. The `isSigned` parameter only applies to the
|
3715
|
+
# `INTEGER` raw signal type, and it doesn't affect the
|
3716
|
+
# `FLOATING_POINT` raw signal type. The default value is `false`.
|
3717
|
+
# @return [Boolean]
|
3718
|
+
#
|
3719
|
+
# @!attribute [rw] signal_value_type
|
3720
|
+
# The value type of the signal. The default value is `INTEGER`.
|
3721
|
+
# @return [String]
|
3722
|
+
#
|
3702
3723
|
class ObdSignal < Struct.new(
|
3703
3724
|
:pid_response_length,
|
3704
3725
|
:service_mode,
|
@@ -3708,7 +3729,9 @@ module Aws::IoTFleetWise
|
|
3708
3729
|
:start_byte,
|
3709
3730
|
:byte_length,
|
3710
3731
|
:bit_right_shift,
|
3711
|
-
:bit_mask_length
|
3732
|
+
:bit_mask_length,
|
3733
|
+
:is_signed,
|
3734
|
+
:signal_value_type)
|
3712
3735
|
SENSITIVE = []
|
3713
3736
|
include Aws::Structure
|
3714
3737
|
end
|
@@ -5151,6 +5174,11 @@ module Aws::IoTFleetWise
|
|
5151
5174
|
# Remove state templates from the vehicle.
|
5152
5175
|
# @return [Array<String>]
|
5153
5176
|
#
|
5177
|
+
# @!attribute [rw] state_templates_to_update
|
5178
|
+
# Change the `stateTemplateUpdateStrategy` of state templates already
|
5179
|
+
# associated with the vehicle.
|
5180
|
+
# @return [Array<Types::StateTemplateAssociation>]
|
5181
|
+
#
|
5154
5182
|
class UpdateVehicleRequest < Struct.new(
|
5155
5183
|
:vehicle_name,
|
5156
5184
|
:model_manifest_arn,
|
@@ -5158,13 +5186,23 @@ module Aws::IoTFleetWise
|
|
5158
5186
|
:attributes,
|
5159
5187
|
:attribute_update_mode,
|
5160
5188
|
:state_templates_to_add,
|
5161
|
-
:state_templates_to_remove
|
5189
|
+
:state_templates_to_remove,
|
5190
|
+
:state_templates_to_update)
|
5162
5191
|
SENSITIVE = []
|
5163
5192
|
include Aws::Structure
|
5164
5193
|
end
|
5165
5194
|
|
5166
5195
|
# Information about the vehicle to update.
|
5167
5196
|
#
|
5197
|
+
# Access to certain Amazon Web Services IoT FleetWise features is
|
5198
|
+
# currently gated. For more information, see [Amazon Web Services Region
|
5199
|
+
# and feature availability][1] in the *Amazon Web Services IoT FleetWise
|
5200
|
+
# Developer Guide*.
|
5201
|
+
#
|
5202
|
+
#
|
5203
|
+
#
|
5204
|
+
# [1]: https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html
|
5205
|
+
#
|
5168
5206
|
# @!attribute [rw] vehicle_name
|
5169
5207
|
# The unique ID of the vehicle to update.
|
5170
5208
|
# @return [String]
|
@@ -5204,6 +5242,11 @@ module Aws::IoTFleetWise
|
|
5204
5242
|
# Remove existing state template associations from the vehicle.
|
5205
5243
|
# @return [Array<String>]
|
5206
5244
|
#
|
5245
|
+
# @!attribute [rw] state_templates_to_update
|
5246
|
+
# Change the `stateTemplateUpdateStrategy` of state templates already
|
5247
|
+
# associated with the vehicle.
|
5248
|
+
# @return [Array<Types::StateTemplateAssociation>]
|
5249
|
+
#
|
5207
5250
|
class UpdateVehicleRequestItem < Struct.new(
|
5208
5251
|
:vehicle_name,
|
5209
5252
|
:model_manifest_arn,
|
@@ -5211,7 +5254,8 @@ module Aws::IoTFleetWise
|
|
5211
5254
|
:attributes,
|
5212
5255
|
:attribute_update_mode,
|
5213
5256
|
:state_templates_to_add,
|
5214
|
-
:state_templates_to_remove
|
5257
|
+
:state_templates_to_remove,
|
5258
|
+
:state_templates_to_update)
|
5215
5259
|
SENSITIVE = []
|
5216
5260
|
include Aws::Structure
|
5217
5261
|
end
|
data/lib/aws-sdk-iotfleetwise.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -157,7 +157,22 @@ module Aws
|
|
157
157
|
}
|
158
158
|
},
|
159
159
|
]?,
|
160
|
-
state_templates_to_remove: Array[::String]
|
160
|
+
state_templates_to_remove: Array[::String]?,
|
161
|
+
state_templates_to_update: Array[
|
162
|
+
{
|
163
|
+
identifier: ::String,
|
164
|
+
state_template_update_strategy: {
|
165
|
+
periodic: {
|
166
|
+
state_template_update_rate: {
|
167
|
+
unit: ("MILLISECOND" | "SECOND" | "MINUTE" | "HOUR"),
|
168
|
+
value: ::Integer
|
169
|
+
}
|
170
|
+
}?,
|
171
|
+
on_change: {
|
172
|
+
}?
|
173
|
+
}
|
174
|
+
},
|
175
|
+
]?
|
161
176
|
},
|
162
177
|
]
|
163
178
|
) -> _BatchUpdateVehicleResponseSuccess
|
@@ -287,7 +302,8 @@ module Aws
|
|
287
302
|
offset: ::Float,
|
288
303
|
factor: ::Float,
|
289
304
|
length: ::Integer,
|
290
|
-
name: ::String
|
305
|
+
name: ::String?,
|
306
|
+
signal_value_type: ("INTEGER" | "FLOATING_POINT")?
|
291
307
|
}?,
|
292
308
|
obd_signal: {
|
293
309
|
pid_response_length: ::Integer,
|
@@ -298,7 +314,9 @@ module Aws
|
|
298
314
|
start_byte: ::Integer,
|
299
315
|
byte_length: ::Integer,
|
300
316
|
bit_right_shift: ::Integer?,
|
301
|
-
bit_mask_length: ::Integer
|
317
|
+
bit_mask_length: ::Integer?,
|
318
|
+
is_signed: bool?,
|
319
|
+
signal_value_type: ("INTEGER" | "FLOATING_POINT")?
|
302
320
|
}?,
|
303
321
|
message_signal: {
|
304
322
|
topic_name: ::String,
|
@@ -1147,7 +1165,8 @@ module Aws
|
|
1147
1165
|
offset: ::Float,
|
1148
1166
|
factor: ::Float,
|
1149
1167
|
length: ::Integer,
|
1150
|
-
name: ::String
|
1168
|
+
name: ::String?,
|
1169
|
+
signal_value_type: ("INTEGER" | "FLOATING_POINT")?
|
1151
1170
|
}?,
|
1152
1171
|
obd_signal: {
|
1153
1172
|
pid_response_length: ::Integer,
|
@@ -1158,7 +1177,9 @@ module Aws
|
|
1158
1177
|
start_byte: ::Integer,
|
1159
1178
|
byte_length: ::Integer,
|
1160
1179
|
bit_right_shift: ::Integer?,
|
1161
|
-
bit_mask_length: ::Integer
|
1180
|
+
bit_mask_length: ::Integer?,
|
1181
|
+
is_signed: bool?,
|
1182
|
+
signal_value_type: ("INTEGER" | "FLOATING_POINT")?
|
1162
1183
|
}?,
|
1163
1184
|
message_signal: {
|
1164
1185
|
topic_name: ::String,
|
@@ -1203,7 +1224,8 @@ module Aws
|
|
1203
1224
|
offset: ::Float,
|
1204
1225
|
factor: ::Float,
|
1205
1226
|
length: ::Integer,
|
1206
|
-
name: ::String
|
1227
|
+
name: ::String?,
|
1228
|
+
signal_value_type: ("INTEGER" | "FLOATING_POINT")?
|
1207
1229
|
}?,
|
1208
1230
|
obd_signal: {
|
1209
1231
|
pid_response_length: ::Integer,
|
@@ -1214,7 +1236,9 @@ module Aws
|
|
1214
1236
|
start_byte: ::Integer,
|
1215
1237
|
byte_length: ::Integer,
|
1216
1238
|
bit_right_shift: ::Integer?,
|
1217
|
-
bit_mask_length: ::Integer
|
1239
|
+
bit_mask_length: ::Integer?,
|
1240
|
+
is_signed: bool?,
|
1241
|
+
signal_value_type: ("INTEGER" | "FLOATING_POINT")?
|
1218
1242
|
}?,
|
1219
1243
|
message_signal: {
|
1220
1244
|
topic_name: ::String,
|
@@ -1517,7 +1541,22 @@ module Aws
|
|
1517
1541
|
}
|
1518
1542
|
},
|
1519
1543
|
],
|
1520
|
-
?state_templates_to_remove: Array[::String]
|
1544
|
+
?state_templates_to_remove: Array[::String],
|
1545
|
+
?state_templates_to_update: Array[
|
1546
|
+
{
|
1547
|
+
identifier: ::String,
|
1548
|
+
state_template_update_strategy: {
|
1549
|
+
periodic: {
|
1550
|
+
state_template_update_rate: {
|
1551
|
+
unit: ("MILLISECOND" | "SECOND" | "MINUTE" | "HOUR"),
|
1552
|
+
value: ::Integer
|
1553
|
+
}
|
1554
|
+
}?,
|
1555
|
+
on_change: {
|
1556
|
+
}?
|
1557
|
+
}
|
1558
|
+
},
|
1559
|
+
]
|
1521
1560
|
) -> _UpdateVehicleResponseSuccess
|
1522
1561
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVehicleResponseSuccess
|
1523
1562
|
end
|
data/sig/types.rbs
CHANGED
@@ -117,6 +117,7 @@ module Aws::IoTFleetWise
|
|
117
117
|
attr_accessor factor: ::Float
|
118
118
|
attr_accessor length: ::Integer
|
119
119
|
attr_accessor name: ::String
|
120
|
+
attr_accessor signal_value_type: ("INTEGER" | "FLOATING_POINT")
|
120
121
|
SENSITIVE: []
|
121
122
|
end
|
122
123
|
|
@@ -1049,6 +1050,8 @@ module Aws::IoTFleetWise
|
|
1049
1050
|
attr_accessor byte_length: ::Integer
|
1050
1051
|
attr_accessor bit_right_shift: ::Integer
|
1051
1052
|
attr_accessor bit_mask_length: ::Integer
|
1053
|
+
attr_accessor is_signed: bool
|
1054
|
+
attr_accessor signal_value_type: ("INTEGER" | "FLOATING_POINT")
|
1052
1055
|
SENSITIVE: []
|
1053
1056
|
end
|
1054
1057
|
|
@@ -1446,6 +1449,7 @@ module Aws::IoTFleetWise
|
|
1446
1449
|
attr_accessor attribute_update_mode: ("Overwrite" | "Merge")
|
1447
1450
|
attr_accessor state_templates_to_add: ::Array[Types::StateTemplateAssociation]
|
1448
1451
|
attr_accessor state_templates_to_remove: ::Array[::String]
|
1452
|
+
attr_accessor state_templates_to_update: ::Array[Types::StateTemplateAssociation]
|
1449
1453
|
SENSITIVE: []
|
1450
1454
|
end
|
1451
1455
|
|
@@ -1457,6 +1461,7 @@ module Aws::IoTFleetWise
|
|
1457
1461
|
attr_accessor attribute_update_mode: ("Overwrite" | "Merge")
|
1458
1462
|
attr_accessor state_templates_to_add: ::Array[Types::StateTemplateAssociation]
|
1459
1463
|
attr_accessor state_templates_to_remove: ::Array[::String]
|
1464
|
+
attr_accessor state_templates_to_update: ::Array[Types::StateTemplateAssociation]
|
1460
1465
|
SENSITIVE: []
|
1461
1466
|
end
|
1462
1467
|
|
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.44.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|