aws-sdk-iotfleetwise 1.41.0 → 1.43.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cdaee93884a41989b464941f16890c4385a6962fb6e67f1940a385f383c171c0
4
- data.tar.gz: 846380dfaca242077ded2d1491087f113ffbf77c2eb79ebb64c61a5b43b9701b
3
+ metadata.gz: 8531874835655528651adf0ad6cdb02f80eb95554a4110b791d3671e911b844c
4
+ data.tar.gz: 2b490a9c0e6826b32018f1749ea59d3d0bba176f2376f3dfcc6b169235f40933
5
5
  SHA512:
6
- metadata.gz: c29359a515152ccd48a15349009512afe33f29603cffa26f5aceb7f8f31a0af1e1dba3ac10e631ed110b0c502df78c37fb1f1281e863676c5f949b3c90de39ca
7
- data.tar.gz: 8dd03d77669f8e121359b447326fb0722ac52212db8cc14295d3c0e47d0a776460a7d8c522b1d0697e6227ec1a6e124ed0b3a4595f3d7309ff3e319978ca4c68
6
+ metadata.gz: 3be76292bdeaa4b460e78e76fb748ddd944d28cb9003f56038ff9a7dcba61fe1b0e46fbffdef9420a1f23258630a21cfca1ac5433f788f95ae2535b138873f6f
7
+ data.tar.gz: f30887eae56301e14a0944b065e4e3d9b4f77e07ff4c239d9a7273f3bfae69f00734a89bae67292027a00faf3bdf810be82c3b2d660dcfa4290105316b09d3cb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2025-03-05)
5
+ ------------------
6
+
7
+ * Feature - This release adds floating point support for CAN/OBD signals and adds support for signed OBD signals.
8
+
9
+ 1.42.0 (2025-02-26)
10
+ ------------------
11
+
12
+ * Feature - This release adds an optional listResponseScope request parameter in certain list API requests to limit the response to metadata only.
13
+
4
14
  1.41.0 (2025-02-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.43.0
@@ -967,6 +967,7 @@ module Aws::IoTFleetWise
967
967
  # factor: 1.0, # required
968
968
  # length: 1, # required
969
969
  # name: "CanSignalName",
970
+ # signal_value_type: "INTEGER", # accepts INTEGER, FLOATING_POINT
970
971
  # },
971
972
  # obd_signal: {
972
973
  # pid_response_length: 1, # required
@@ -978,6 +979,8 @@ module Aws::IoTFleetWise
978
979
  # byte_length: 1, # required
979
980
  # bit_right_shift: 1,
980
981
  # bit_mask_length: 1,
982
+ # is_signed: false,
983
+ # signal_value_type: "INTEGER", # accepts INTEGER, FLOATING_POINT
981
984
  # },
982
985
  # message_signal: {
983
986
  # topic_name: "TopicName", # required
@@ -1630,7 +1633,7 @@ module Aws::IoTFleetWise
1630
1633
  # Deletes a state template.
1631
1634
  #
1632
1635
  # @option params [required, String] :identifier
1633
- # A unique, service-generated identifier.
1636
+ # The unique ID of the state template.
1634
1637
  #
1635
1638
  # @return [Types::DeleteStateTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1636
1639
  #
@@ -2079,7 +2082,7 @@ module Aws::IoTFleetWise
2079
2082
  # [1]: https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html
2080
2083
  #
2081
2084
  # @option params [required, String] :identifier
2082
- # A unique, service-generated identifier.
2085
+ # The unique ID of the state template.
2083
2086
  #
2084
2087
  # @return [Types::GetStateTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2085
2088
  #
@@ -2337,6 +2340,11 @@ module Aws::IoTFleetWise
2337
2340
  # created campaign in your account. The status can be one of:
2338
2341
  # `CREATING`, `WAITING_FOR_APPROVAL`, `RUNNING`, or `SUSPENDED`.
2339
2342
  #
2343
+ # @option params [String] :list_response_scope
2344
+ # When you set the `listResponseScope` parameter to `METADATA_ONLY`, the
2345
+ # list response includes: campaign name, Amazon Resource Name (ARN),
2346
+ # creation time, and last modification time.
2347
+ #
2340
2348
  # @return [Types::ListCampaignsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2341
2349
  #
2342
2350
  # * {Types::ListCampaignsResponse#campaign_summaries #campaign_summaries} => Array<Types::CampaignSummary>
@@ -2350,6 +2358,7 @@ module Aws::IoTFleetWise
2350
2358
  # next_token: "nextToken",
2351
2359
  # max_results: 1,
2352
2360
  # status: "statusStr",
2361
+ # list_response_scope: "METADATA_ONLY", # accepts METADATA_ONLY
2353
2362
  # })
2354
2363
  #
2355
2364
  # @example Response structure
@@ -2488,6 +2497,7 @@ module Aws::IoTFleetWise
2488
2497
  # resp.signal_decoders[0].can_signal.factor #=> Float
2489
2498
  # resp.signal_decoders[0].can_signal.length #=> Integer
2490
2499
  # resp.signal_decoders[0].can_signal.name #=> String
2500
+ # resp.signal_decoders[0].can_signal.signal_value_type #=> String, one of "INTEGER", "FLOATING_POINT"
2491
2501
  # resp.signal_decoders[0].obd_signal.pid_response_length #=> Integer
2492
2502
  # resp.signal_decoders[0].obd_signal.service_mode #=> Integer
2493
2503
  # resp.signal_decoders[0].obd_signal.pid #=> Integer
@@ -2497,6 +2507,8 @@ module Aws::IoTFleetWise
2497
2507
  # resp.signal_decoders[0].obd_signal.byte_length #=> Integer
2498
2508
  # resp.signal_decoders[0].obd_signal.bit_right_shift #=> Integer
2499
2509
  # resp.signal_decoders[0].obd_signal.bit_mask_length #=> Integer
2510
+ # resp.signal_decoders[0].obd_signal.is_signed #=> Boolean
2511
+ # resp.signal_decoders[0].obd_signal.signal_value_type #=> String, one of "INTEGER", "FLOATING_POINT"
2500
2512
  # resp.signal_decoders[0].message_signal.topic_name #=> String
2501
2513
  # 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"
2502
2514
  # resp.signal_decoders[0].message_signal.structured_message.primitive_message_definition.ros2_primitive_message_definition.offset #=> Float
@@ -2542,6 +2554,11 @@ module Aws::IoTFleetWise
2542
2554
  # @option params [Integer] :max_results
2543
2555
  # The maximum number of items to return, between 1 and 100, inclusive.
2544
2556
  #
2557
+ # @option params [String] :list_response_scope
2558
+ # When you set the `listResponseScope` parameter to `METADATA_ONLY`, the
2559
+ # list response includes: decoder manifest name, Amazon Resource Name
2560
+ # (ARN), creation time, and last modification time.
2561
+ #
2545
2562
  # @return [Types::ListDecoderManifestsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2546
2563
  #
2547
2564
  # * {Types::ListDecoderManifestsResponse#summaries #summaries} => Array<Types::DecoderManifestSummary>
@@ -2555,6 +2572,7 @@ module Aws::IoTFleetWise
2555
2572
  # model_manifest_arn: "arn",
2556
2573
  # next_token: "nextToken",
2557
2574
  # max_results: 1,
2575
+ # list_response_scope: "METADATA_ONLY", # accepts METADATA_ONLY
2558
2576
  # })
2559
2577
  #
2560
2578
  # @example Response structure
@@ -2597,6 +2615,11 @@ module Aws::IoTFleetWise
2597
2615
  # @option params [Integer] :max_results
2598
2616
  # The maximum number of items to return, between 1 and 100, inclusive.
2599
2617
  #
2618
+ # @option params [String] :list_response_scope
2619
+ # When you set the `listResponseScope` parameter to `METADATA_ONLY`, the
2620
+ # list response includes: fleet ID, Amazon Resource Name (ARN), creation
2621
+ # time, and last modification time.
2622
+ #
2600
2623
  # @return [Types::ListFleetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2601
2624
  #
2602
2625
  # * {Types::ListFleetsResponse#fleet_summaries #fleet_summaries} => Array<Types::FleetSummary>
@@ -2609,6 +2632,7 @@ module Aws::IoTFleetWise
2609
2632
  # resp = client.list_fleets({
2610
2633
  # next_token: "nextToken",
2611
2634
  # max_results: 1,
2635
+ # list_response_scope: "METADATA_ONLY", # accepts METADATA_ONLY
2612
2636
  # })
2613
2637
  #
2614
2638
  # @example Response structure
@@ -2803,6 +2827,11 @@ module Aws::IoTFleetWise
2803
2827
  # @option params [Integer] :max_results
2804
2828
  # The maximum number of items to return, between 1 and 100, inclusive.
2805
2829
  #
2830
+ # @option params [String] :list_response_scope
2831
+ # When you set the `listResponseScope` parameter to `METADATA_ONLY`, the
2832
+ # list response includes: model manifest name, Amazon Resource Name
2833
+ # (ARN), creation time, and last modification time.
2834
+ #
2806
2835
  # @return [Types::ListModelManifestsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2807
2836
  #
2808
2837
  # * {Types::ListModelManifestsResponse#summaries #summaries} => Array<Types::ModelManifestSummary>
@@ -2816,6 +2845,7 @@ module Aws::IoTFleetWise
2816
2845
  # signal_catalog_arn: "arn",
2817
2846
  # next_token: "nextToken",
2818
2847
  # max_results: 1,
2848
+ # list_response_scope: "METADATA_ONLY", # accepts METADATA_ONLY
2819
2849
  # })
2820
2850
  #
2821
2851
  # @example Response structure
@@ -3012,6 +3042,11 @@ module Aws::IoTFleetWise
3012
3042
  # @option params [Integer] :max_results
3013
3043
  # The maximum number of items to return, between 1 and 100, inclusive.
3014
3044
  #
3045
+ # @option params [String] :list_response_scope
3046
+ # When you set the `listResponseScope` parameter to `METADATA_ONLY`, the
3047
+ # list response includes: state template ID, Amazon Resource Name (ARN),
3048
+ # creation time, and last modification time.
3049
+ #
3015
3050
  # @return [Types::ListStateTemplatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3016
3051
  #
3017
3052
  # * {Types::ListStateTemplatesResponse#summaries #summaries} => Array<Types::StateTemplateSummary>
@@ -3024,6 +3059,7 @@ module Aws::IoTFleetWise
3024
3059
  # resp = client.list_state_templates({
3025
3060
  # next_token: "nextToken",
3026
3061
  # max_results: 1,
3062
+ # list_response_scope: "METADATA_ONLY", # accepts METADATA_ONLY
3027
3063
  # })
3028
3064
  #
3029
3065
  # @example Response structure
@@ -3125,6 +3161,11 @@ module Aws::IoTFleetWise
3125
3161
  # @option params [Integer] :max_results
3126
3162
  # The maximum number of items to return, between 1 and 100, inclusive.
3127
3163
  #
3164
+ # @option params [String] :list_response_scope
3165
+ # When you set the `listResponseScope` parameter to `METADATA_ONLY`, the
3166
+ # list response includes: vehicle name, Amazon Resource Name (ARN),
3167
+ # creation time, and last modification time.
3168
+ #
3128
3169
  # @return [Types::ListVehiclesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3129
3170
  #
3130
3171
  # * {Types::ListVehiclesResponse#vehicle_summaries #vehicle_summaries} => Array<Types::VehicleSummary>
@@ -3140,6 +3181,7 @@ module Aws::IoTFleetWise
3140
3181
  # attribute_values: ["attributeValue"],
3141
3182
  # next_token: "nextToken",
3142
3183
  # max_results: 1,
3184
+ # list_response_scope: "METADATA_ONLY", # accepts METADATA_ONLY
3143
3185
  # })
3144
3186
  #
3145
3187
  # @example Response structure
@@ -3553,6 +3595,7 @@ module Aws::IoTFleetWise
3553
3595
  # factor: 1.0, # required
3554
3596
  # length: 1, # required
3555
3597
  # name: "CanSignalName",
3598
+ # signal_value_type: "INTEGER", # accepts INTEGER, FLOATING_POINT
3556
3599
  # },
3557
3600
  # obd_signal: {
3558
3601
  # pid_response_length: 1, # required
@@ -3564,6 +3607,8 @@ module Aws::IoTFleetWise
3564
3607
  # byte_length: 1, # required
3565
3608
  # bit_right_shift: 1,
3566
3609
  # bit_mask_length: 1,
3610
+ # is_signed: false,
3611
+ # signal_value_type: "INTEGER", # accepts INTEGER, FLOATING_POINT
3567
3612
  # },
3568
3613
  # message_signal: {
3569
3614
  # topic_name: "TopicName", # required
@@ -3613,6 +3658,7 @@ module Aws::IoTFleetWise
3613
3658
  # factor: 1.0, # required
3614
3659
  # length: 1, # required
3615
3660
  # name: "CanSignalName",
3661
+ # signal_value_type: "INTEGER", # accepts INTEGER, FLOATING_POINT
3616
3662
  # },
3617
3663
  # obd_signal: {
3618
3664
  # pid_response_length: 1, # required
@@ -3624,6 +3670,8 @@ module Aws::IoTFleetWise
3624
3670
  # byte_length: 1, # required
3625
3671
  # bit_right_shift: 1,
3626
3672
  # bit_mask_length: 1,
3673
+ # is_signed: false,
3674
+ # signal_value_type: "INTEGER", # accepts INTEGER, FLOATING_POINT
3627
3675
  # },
3628
3676
  # message_signal: {
3629
3677
  # topic_name: "TopicName", # required
@@ -3993,7 +4041,7 @@ module Aws::IoTFleetWise
3993
4041
  # [1]: https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html
3994
4042
  #
3995
4043
  # @option params [required, String] :identifier
3996
- # A unique, service-generated identifier.
4044
+ # The unique ID of the state template.
3997
4045
  #
3998
4046
  # @option params [String] :description
3999
4047
  # A brief description of the state template.
@@ -4157,7 +4205,7 @@ module Aws::IoTFleetWise
4157
4205
  tracer: tracer
4158
4206
  )
4159
4207
  context[:gem_name] = 'aws-sdk-iotfleetwise'
4160
- context[:gem_version] = '1.41.0'
4208
+ context[:gem_version] = '1.43.0'
4161
4209
  Seahorse::Client::Request.new(handlers, context)
4162
4210
  end
4163
4211
 
@@ -155,6 +155,7 @@ module Aws::IoTFleetWise
155
155
  ListModelManifestNodesResponse = Shapes::StructureShape.new(name: 'ListModelManifestNodesResponse')
156
156
  ListModelManifestsRequest = Shapes::StructureShape.new(name: 'ListModelManifestsRequest')
157
157
  ListModelManifestsResponse = Shapes::StructureShape.new(name: 'ListModelManifestsResponse')
158
+ ListResponseScope = Shapes::StringShape.new(name: 'ListResponseScope')
158
159
  ListSignalCatalogNodesRequest = Shapes::StructureShape.new(name: 'ListSignalCatalogNodesRequest')
159
160
  ListSignalCatalogNodesResponse = Shapes::StructureShape.new(name: 'ListSignalCatalogNodesResponse')
160
161
  ListSignalCatalogsRequest = Shapes::StructureShape.new(name: 'ListSignalCatalogsRequest')
@@ -231,6 +232,7 @@ module Aws::IoTFleetWise
231
232
  SignalInformation = Shapes::StructureShape.new(name: 'SignalInformation')
232
233
  SignalInformationList = Shapes::ListShape.new(name: 'SignalInformationList')
233
234
  SignalNodeType = Shapes::StringShape.new(name: 'SignalNodeType')
235
+ SignalValueType = Shapes::StringShape.new(name: 'SignalValueType')
234
236
  SpoolingMode = Shapes::StringShape.new(name: 'SpoolingMode')
235
237
  StateTemplateAssociation = Shapes::StructureShape.new(name: 'StateTemplateAssociation')
236
238
  StateTemplateAssociationIdentifiers = Shapes::ListShape.new(name: 'StateTemplateAssociationIdentifiers')
@@ -443,6 +445,7 @@ module Aws::IoTFleetWise
443
445
  CanSignal.add_member(:factor, Shapes::ShapeRef.new(shape: double, required: true, location_name: "factor"))
444
446
  CanSignal.add_member(:length, Shapes::ShapeRef.new(shape: nonNegativeInteger, required: true, location_name: "length"))
445
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"))
446
449
  CanSignal.struct_class = Types::CanSignal
447
450
 
448
451
  CloudWatchLogDeliveryOptions.add_member(:log_type, Shapes::ShapeRef.new(shape: LogType, required: true, location_name: "logType"))
@@ -930,6 +933,7 @@ module Aws::IoTFleetWise
930
933
  ListCampaignsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: nextToken, location_name: "nextToken"))
931
934
  ListCampaignsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: maxResults, location_name: "maxResults"))
932
935
  ListCampaignsRequest.add_member(:status, Shapes::ShapeRef.new(shape: statusStr, location_name: "status"))
936
+ ListCampaignsRequest.add_member(:list_response_scope, Shapes::ShapeRef.new(shape: ListResponseScope, location_name: "listResponseScope"))
933
937
  ListCampaignsRequest.struct_class = Types::ListCampaignsRequest
934
938
 
935
939
  ListCampaignsResponse.add_member(:campaign_summaries, Shapes::ShapeRef.new(shape: campaignSummaries, location_name: "campaignSummaries"))
@@ -957,6 +961,7 @@ module Aws::IoTFleetWise
957
961
  ListDecoderManifestsRequest.add_member(:model_manifest_arn, Shapes::ShapeRef.new(shape: arn, location_name: "modelManifestArn"))
958
962
  ListDecoderManifestsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: nextToken, location_name: "nextToken"))
959
963
  ListDecoderManifestsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: maxResults, location_name: "maxResults"))
964
+ ListDecoderManifestsRequest.add_member(:list_response_scope, Shapes::ShapeRef.new(shape: ListResponseScope, location_name: "listResponseScope"))
960
965
  ListDecoderManifestsRequest.struct_class = Types::ListDecoderManifestsRequest
961
966
 
962
967
  ListDecoderManifestsResponse.add_member(:summaries, Shapes::ShapeRef.new(shape: decoderManifestSummaries, location_name: "summaries"))
@@ -974,6 +979,7 @@ module Aws::IoTFleetWise
974
979
 
975
980
  ListFleetsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: nextToken, location_name: "nextToken"))
976
981
  ListFleetsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: maxResults, location_name: "maxResults"))
982
+ ListFleetsRequest.add_member(:list_response_scope, Shapes::ShapeRef.new(shape: ListResponseScope, location_name: "listResponseScope"))
977
983
  ListFleetsRequest.struct_class = Types::ListFleetsRequest
978
984
 
979
985
  ListFleetsResponse.add_member(:fleet_summaries, Shapes::ShapeRef.new(shape: fleetSummaries, location_name: "fleetSummaries"))
@@ -992,6 +998,7 @@ module Aws::IoTFleetWise
992
998
  ListModelManifestsRequest.add_member(:signal_catalog_arn, Shapes::ShapeRef.new(shape: arn, location_name: "signalCatalogArn"))
993
999
  ListModelManifestsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: nextToken, location_name: "nextToken"))
994
1000
  ListModelManifestsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: maxResults, location_name: "maxResults"))
1001
+ ListModelManifestsRequest.add_member(:list_response_scope, Shapes::ShapeRef.new(shape: ListResponseScope, location_name: "listResponseScope"))
995
1002
  ListModelManifestsRequest.struct_class = Types::ListModelManifestsRequest
996
1003
 
997
1004
  ListModelManifestsResponse.add_member(:summaries, Shapes::ShapeRef.new(shape: modelManifestSummaries, location_name: "summaries"))
@@ -1018,6 +1025,7 @@ module Aws::IoTFleetWise
1018
1025
 
1019
1026
  ListStateTemplatesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: nextToken, location_name: "nextToken"))
1020
1027
  ListStateTemplatesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: maxResults, location_name: "maxResults"))
1028
+ ListStateTemplatesRequest.add_member(:list_response_scope, Shapes::ShapeRef.new(shape: ListResponseScope, location_name: "listResponseScope"))
1021
1029
  ListStateTemplatesRequest.struct_class = Types::ListStateTemplatesRequest
1022
1030
 
1023
1031
  ListStateTemplatesResponse.add_member(:summaries, Shapes::ShapeRef.new(shape: StateTemplateSummaries, location_name: "summaries"))
@@ -1044,6 +1052,7 @@ module Aws::IoTFleetWise
1044
1052
  ListVehiclesRequest.add_member(:attribute_values, Shapes::ShapeRef.new(shape: attributeValuesList, location_name: "attributeValues"))
1045
1053
  ListVehiclesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: nextToken, location_name: "nextToken"))
1046
1054
  ListVehiclesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: listVehiclesMaxResults, location_name: "maxResults"))
1055
+ ListVehiclesRequest.add_member(:list_response_scope, Shapes::ShapeRef.new(shape: ListResponseScope, location_name: "listResponseScope"))
1047
1056
  ListVehiclesRequest.struct_class = Types::ListVehiclesRequest
1048
1057
 
1049
1058
  ListVehiclesResponse.add_member(:vehicle_summaries, Shapes::ShapeRef.new(shape: vehicleSummaries, location_name: "vehicleSummaries"))
@@ -1137,6 +1146,8 @@ module Aws::IoTFleetWise
1137
1146
  ObdSignal.add_member(:byte_length, Shapes::ShapeRef.new(shape: ObdByteLength, required: true, location_name: "byteLength"))
1138
1147
  ObdSignal.add_member(:bit_right_shift, Shapes::ShapeRef.new(shape: nonNegativeInteger, location_name: "bitRightShift"))
1139
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"))
1140
1151
  ObdSignal.struct_class = Types::ObdSignal
1141
1152
 
1142
1153
  OnChangeStateTemplateUpdateStrategy.struct_class = Types::OnChangeStateTemplateUpdateStrategy
@@ -389,7 +389,11 @@ module Aws::IoTFleetWise
389
389
  # @return [Boolean]
390
390
  #
391
391
  # @!attribute [rw] is_signed
392
- # Whether the message data is specified as a signed value.
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
@@ -714,7 +723,7 @@ module Aws::IoTFleetWise
714
723
  :data_destination_configs,
715
724
  :data_partitions,
716
725
  :signals_to_fetch)
717
- SENSITIVE = [:signals_to_collect, :data_extra_dimensions]
726
+ SENSITIVE = [:signals_to_collect, :data_extra_dimensions, :signals_to_fetch]
718
727
  include Aws::Structure
719
728
  end
720
729
 
@@ -1651,7 +1660,7 @@ module Aws::IoTFleetWise
1651
1660
  end
1652
1661
 
1653
1662
  # @!attribute [rw] identifier
1654
- # A unique, service-generated identifier.
1663
+ # The unique ID of the state template.
1655
1664
  # @return [String]
1656
1665
  #
1657
1666
  class DeleteStateTemplateRequest < Struct.new(
@@ -1932,7 +1941,7 @@ module Aws::IoTFleetWise
1932
1941
  :data_destination_configs,
1933
1942
  :data_partitions,
1934
1943
  :signals_to_fetch)
1935
- SENSITIVE = [:signals_to_collect, :data_extra_dimensions]
1944
+ SENSITIVE = [:signals_to_collect, :data_extra_dimensions, :signals_to_fetch]
1936
1945
  include Aws::Structure
1937
1946
  end
1938
1947
 
@@ -2258,7 +2267,7 @@ module Aws::IoTFleetWise
2258
2267
  end
2259
2268
 
2260
2269
  # @!attribute [rw] identifier
2261
- # A unique, service-generated identifier.
2270
+ # The unique ID of the state template.
2262
2271
  # @return [String]
2263
2272
  #
2264
2273
  class GetStateTemplateRequest < Struct.new(
@@ -2712,10 +2721,17 @@ module Aws::IoTFleetWise
2712
2721
  # `CREATING`, `WAITING_FOR_APPROVAL`, `RUNNING`, or `SUSPENDED`.
2713
2722
  # @return [String]
2714
2723
  #
2724
+ # @!attribute [rw] list_response_scope
2725
+ # When you set the `listResponseScope` parameter to `METADATA_ONLY`,
2726
+ # the list response includes: campaign name, Amazon Resource Name
2727
+ # (ARN), creation time, and last modification time.
2728
+ # @return [String]
2729
+ #
2715
2730
  class ListCampaignsRequest < Struct.new(
2716
2731
  :next_token,
2717
2732
  :max_results,
2718
- :status)
2733
+ :status,
2734
+ :list_response_scope)
2719
2735
  SENSITIVE = []
2720
2736
  include Aws::Structure
2721
2737
  end
@@ -2839,10 +2855,17 @@ module Aws::IoTFleetWise
2839
2855
  # The maximum number of items to return, between 1 and 100, inclusive.
2840
2856
  # @return [Integer]
2841
2857
  #
2858
+ # @!attribute [rw] list_response_scope
2859
+ # When you set the `listResponseScope` parameter to `METADATA_ONLY`,
2860
+ # the list response includes: decoder manifest name, Amazon Resource
2861
+ # Name (ARN), creation time, and last modification time.
2862
+ # @return [String]
2863
+ #
2842
2864
  class ListDecoderManifestsRequest < Struct.new(
2843
2865
  :model_manifest_arn,
2844
2866
  :next_token,
2845
- :max_results)
2867
+ :max_results,
2868
+ :list_response_scope)
2846
2869
  SENSITIVE = []
2847
2870
  include Aws::Structure
2848
2871
  end
@@ -2919,9 +2942,16 @@ module Aws::IoTFleetWise
2919
2942
  # The maximum number of items to return, between 1 and 100, inclusive.
2920
2943
  # @return [Integer]
2921
2944
  #
2945
+ # @!attribute [rw] list_response_scope
2946
+ # When you set the `listResponseScope` parameter to `METADATA_ONLY`,
2947
+ # the list response includes: fleet ID, Amazon Resource Name (ARN),
2948
+ # creation time, and last modification time.
2949
+ # @return [String]
2950
+ #
2922
2951
  class ListFleetsRequest < Struct.new(
2923
2952
  :next_token,
2924
- :max_results)
2953
+ :max_results,
2954
+ :list_response_scope)
2925
2955
  SENSITIVE = []
2926
2956
  include Aws::Structure
2927
2957
  end
@@ -3003,10 +3033,17 @@ module Aws::IoTFleetWise
3003
3033
  # The maximum number of items to return, between 1 and 100, inclusive.
3004
3034
  # @return [Integer]
3005
3035
  #
3036
+ # @!attribute [rw] list_response_scope
3037
+ # When you set the `listResponseScope` parameter to `METADATA_ONLY`,
3038
+ # the list response includes: model manifest name, Amazon Resource
3039
+ # Name (ARN), creation time, and last modification time.
3040
+ # @return [String]
3041
+ #
3006
3042
  class ListModelManifestsRequest < Struct.new(
3007
3043
  :signal_catalog_arn,
3008
3044
  :next_token,
3009
- :max_results)
3045
+ :max_results,
3046
+ :list_response_scope)
3010
3047
  SENSITIVE = []
3011
3048
  include Aws::Structure
3012
3049
  end
@@ -3120,9 +3157,16 @@ module Aws::IoTFleetWise
3120
3157
  # The maximum number of items to return, between 1 and 100, inclusive.
3121
3158
  # @return [Integer]
3122
3159
  #
3160
+ # @!attribute [rw] list_response_scope
3161
+ # When you set the `listResponseScope` parameter to `METADATA_ONLY`,
3162
+ # the list response includes: state template ID, Amazon Resource Name
3163
+ # (ARN), creation time, and last modification time.
3164
+ # @return [String]
3165
+ #
3123
3166
  class ListStateTemplatesRequest < Struct.new(
3124
3167
  :next_token,
3125
- :max_results)
3168
+ :max_results,
3169
+ :list_response_scope)
3126
3170
  SENSITIVE = []
3127
3171
  include Aws::Structure
3128
3172
  end
@@ -3256,12 +3300,19 @@ module Aws::IoTFleetWise
3256
3300
  # The maximum number of items to return, between 1 and 100, inclusive.
3257
3301
  # @return [Integer]
3258
3302
  #
3303
+ # @!attribute [rw] list_response_scope
3304
+ # When you set the `listResponseScope` parameter to `METADATA_ONLY`,
3305
+ # the list response includes: vehicle name, Amazon Resource Name
3306
+ # (ARN), creation time, and last modification time.
3307
+ # @return [String]
3308
+ #
3259
3309
  class ListVehiclesRequest < Struct.new(
3260
3310
  :model_manifest_arn,
3261
3311
  :attribute_names,
3262
3312
  :attribute_values,
3263
3313
  :next_token,
3264
- :max_results)
3314
+ :max_results,
3315
+ :list_response_scope)
3265
3316
  SENSITIVE = []
3266
3317
  include Aws::Structure
3267
3318
  end
@@ -3657,6 +3708,18 @@ module Aws::IoTFleetWise
3657
3708
  # The number of bits to mask in a message.
3658
3709
  # @return [Integer]
3659
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
+ #
3660
3723
  class ObdSignal < Struct.new(
3661
3724
  :pid_response_length,
3662
3725
  :service_mode,
@@ -3666,7 +3729,9 @@ module Aws::IoTFleetWise
3666
3729
  :start_byte,
3667
3730
  :byte_length,
3668
3731
  :bit_right_shift,
3669
- :bit_mask_length)
3732
+ :bit_mask_length,
3733
+ :is_signed,
3734
+ :signal_value_type)
3670
3735
  SENSITIVE = []
3671
3736
  include Aws::Structure
3672
3737
  end
@@ -4226,7 +4291,7 @@ module Aws::IoTFleetWise
4226
4291
  # [1]: https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html
4227
4292
  #
4228
4293
  # @!attribute [rw] identifier
4229
- # A unique, service-generated identifier.
4294
+ # The unique ID of the state template.
4230
4295
  # @return [String]
4231
4296
  #
4232
4297
  # @!attribute [rw] state_template_update_strategy
@@ -4973,7 +5038,7 @@ module Aws::IoTFleetWise
4973
5038
  end
4974
5039
 
4975
5040
  # @!attribute [rw] identifier
4976
- # A unique, service-generated identifier.
5041
+ # The unique ID of the state template.
4977
5042
  # @return [String]
4978
5043
  #
4979
5044
  # @!attribute [rw] description
@@ -55,7 +55,7 @@ module Aws::IoTFleetWise
55
55
  autoload :EndpointProvider, 'aws-sdk-iotfleetwise/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-iotfleetwise/endpoints'
57
57
 
58
- GEM_VERSION = '1.41.0'
58
+ GEM_VERSION = '1.43.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -287,7 +287,8 @@ module Aws
287
287
  offset: ::Float,
288
288
  factor: ::Float,
289
289
  length: ::Integer,
290
- name: ::String?
290
+ name: ::String?,
291
+ signal_value_type: ("INTEGER" | "FLOATING_POINT")?
291
292
  }?,
292
293
  obd_signal: {
293
294
  pid_response_length: ::Integer,
@@ -298,7 +299,9 @@ module Aws
298
299
  start_byte: ::Integer,
299
300
  byte_length: ::Integer,
300
301
  bit_right_shift: ::Integer?,
301
- bit_mask_length: ::Integer?
302
+ bit_mask_length: ::Integer?,
303
+ is_signed: bool?,
304
+ signal_value_type: ("INTEGER" | "FLOATING_POINT")?
302
305
  }?,
303
306
  message_signal: {
304
307
  topic_name: ::String,
@@ -864,7 +867,8 @@ module Aws
864
867
  def list_campaigns: (
865
868
  ?next_token: ::String,
866
869
  ?max_results: ::Integer,
867
- ?status: ::String
870
+ ?status: ::String,
871
+ ?list_response_scope: ("METADATA_ONLY")
868
872
  ) -> _ListCampaignsResponseSuccess
869
873
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCampaignsResponseSuccess
870
874
 
@@ -903,7 +907,8 @@ module Aws
903
907
  def list_decoder_manifests: (
904
908
  ?model_manifest_arn: ::String,
905
909
  ?next_token: ::String,
906
- ?max_results: ::Integer
910
+ ?max_results: ::Integer,
911
+ ?list_response_scope: ("METADATA_ONLY")
907
912
  ) -> _ListDecoderManifestsResponseSuccess
908
913
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDecoderManifestsResponseSuccess
909
914
 
@@ -915,7 +920,8 @@ module Aws
915
920
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_fleets-instance_method
916
921
  def list_fleets: (
917
922
  ?next_token: ::String,
918
- ?max_results: ::Integer
923
+ ?max_results: ::Integer,
924
+ ?list_response_scope: ("METADATA_ONLY")
919
925
  ) -> _ListFleetsResponseSuccess
920
926
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFleetsResponseSuccess
921
927
 
@@ -954,7 +960,8 @@ module Aws
954
960
  def list_model_manifests: (
955
961
  ?signal_catalog_arn: ::String,
956
962
  ?next_token: ::String,
957
- ?max_results: ::Integer
963
+ ?max_results: ::Integer,
964
+ ?list_response_scope: ("METADATA_ONLY")
958
965
  ) -> _ListModelManifestsResponseSuccess
959
966
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListModelManifestsResponseSuccess
960
967
 
@@ -992,7 +999,8 @@ module Aws
992
999
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_state_templates-instance_method
993
1000
  def list_state_templates: (
994
1001
  ?next_token: ::String,
995
- ?max_results: ::Integer
1002
+ ?max_results: ::Integer,
1003
+ ?list_response_scope: ("METADATA_ONLY")
996
1004
  ) -> _ListStateTemplatesResponseSuccess
997
1005
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStateTemplatesResponseSuccess
998
1006
 
@@ -1017,7 +1025,8 @@ module Aws
1017
1025
  ?attribute_names: Array[::String],
1018
1026
  ?attribute_values: Array[::String],
1019
1027
  ?next_token: ::String,
1020
- ?max_results: ::Integer
1028
+ ?max_results: ::Integer,
1029
+ ?list_response_scope: ("METADATA_ONLY")
1021
1030
  ) -> _ListVehiclesResponseSuccess
1022
1031
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVehiclesResponseSuccess
1023
1032
 
@@ -1141,7 +1150,8 @@ module Aws
1141
1150
  offset: ::Float,
1142
1151
  factor: ::Float,
1143
1152
  length: ::Integer,
1144
- name: ::String?
1153
+ name: ::String?,
1154
+ signal_value_type: ("INTEGER" | "FLOATING_POINT")?
1145
1155
  }?,
1146
1156
  obd_signal: {
1147
1157
  pid_response_length: ::Integer,
@@ -1152,7 +1162,9 @@ module Aws
1152
1162
  start_byte: ::Integer,
1153
1163
  byte_length: ::Integer,
1154
1164
  bit_right_shift: ::Integer?,
1155
- bit_mask_length: ::Integer?
1165
+ bit_mask_length: ::Integer?,
1166
+ is_signed: bool?,
1167
+ signal_value_type: ("INTEGER" | "FLOATING_POINT")?
1156
1168
  }?,
1157
1169
  message_signal: {
1158
1170
  topic_name: ::String,
@@ -1197,7 +1209,8 @@ module Aws
1197
1209
  offset: ::Float,
1198
1210
  factor: ::Float,
1199
1211
  length: ::Integer,
1200
- name: ::String?
1212
+ name: ::String?,
1213
+ signal_value_type: ("INTEGER" | "FLOATING_POINT")?
1201
1214
  }?,
1202
1215
  obd_signal: {
1203
1216
  pid_response_length: ::Integer,
@@ -1208,7 +1221,9 @@ module Aws
1208
1221
  start_byte: ::Integer,
1209
1222
  byte_length: ::Integer,
1210
1223
  bit_right_shift: ::Integer?,
1211
- bit_mask_length: ::Integer?
1224
+ bit_mask_length: ::Integer?,
1225
+ is_signed: bool?,
1226
+ signal_value_type: ("INTEGER" | "FLOATING_POINT")?
1212
1227
  }?,
1213
1228
  message_signal: {
1214
1229
  topic_name: ::String,
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
 
@@ -180,7 +181,7 @@ module Aws::IoTFleetWise
180
181
  attr_accessor data_destination_configs: ::Array[Types::DataDestinationConfig]
181
182
  attr_accessor data_partitions: ::Array[Types::DataPartition]
182
183
  attr_accessor signals_to_fetch: ::Array[Types::SignalFetchInformation]
183
- SENSITIVE: [:signals_to_collect, :data_extra_dimensions]
184
+ SENSITIVE: [:signals_to_collect, :data_extra_dimensions, :signals_to_fetch]
184
185
  end
185
186
 
186
187
  class CreateCampaignResponse
@@ -530,7 +531,7 @@ module Aws::IoTFleetWise
530
531
  attr_accessor data_destination_configs: ::Array[Types::DataDestinationConfig]
531
532
  attr_accessor data_partitions: ::Array[Types::DataPartition]
532
533
  attr_accessor signals_to_fetch: ::Array[Types::SignalFetchInformation]
533
- SENSITIVE: [:signals_to_collect, :data_extra_dimensions]
534
+ SENSITIVE: [:signals_to_collect, :data_extra_dimensions, :signals_to_fetch]
534
535
  end
535
536
 
536
537
  class GetDecoderManifestRequest
@@ -766,6 +767,7 @@ module Aws::IoTFleetWise
766
767
  attr_accessor next_token: ::String
767
768
  attr_accessor max_results: ::Integer
768
769
  attr_accessor status: ::String
770
+ attr_accessor list_response_scope: ("METADATA_ONLY")
769
771
  SENSITIVE: []
770
772
  end
771
773
 
@@ -805,6 +807,7 @@ module Aws::IoTFleetWise
805
807
  attr_accessor model_manifest_arn: ::String
806
808
  attr_accessor next_token: ::String
807
809
  attr_accessor max_results: ::Integer
810
+ attr_accessor list_response_scope: ("METADATA_ONLY")
808
811
  SENSITIVE: []
809
812
  end
810
813
 
@@ -830,6 +833,7 @@ module Aws::IoTFleetWise
830
833
  class ListFleetsRequest
831
834
  attr_accessor next_token: ::String
832
835
  attr_accessor max_results: ::Integer
836
+ attr_accessor list_response_scope: ("METADATA_ONLY")
833
837
  SENSITIVE: []
834
838
  end
835
839
 
@@ -856,6 +860,7 @@ module Aws::IoTFleetWise
856
860
  attr_accessor signal_catalog_arn: ::String
857
861
  attr_accessor next_token: ::String
858
862
  attr_accessor max_results: ::Integer
863
+ attr_accessor list_response_scope: ("METADATA_ONLY")
859
864
  SENSITIVE: []
860
865
  end
861
866
 
@@ -894,6 +899,7 @@ module Aws::IoTFleetWise
894
899
  class ListStateTemplatesRequest
895
900
  attr_accessor next_token: ::String
896
901
  attr_accessor max_results: ::Integer
902
+ attr_accessor list_response_scope: ("METADATA_ONLY")
897
903
  SENSITIVE: []
898
904
  end
899
905
 
@@ -932,6 +938,7 @@ module Aws::IoTFleetWise
932
938
  attr_accessor attribute_values: ::Array[::String]
933
939
  attr_accessor next_token: ::String
934
940
  attr_accessor max_results: ::Integer
941
+ attr_accessor list_response_scope: ("METADATA_ONLY")
935
942
  SENSITIVE: []
936
943
  end
937
944
 
@@ -1043,6 +1050,8 @@ module Aws::IoTFleetWise
1043
1050
  attr_accessor byte_length: ::Integer
1044
1051
  attr_accessor bit_right_shift: ::Integer
1045
1052
  attr_accessor bit_mask_length: ::Integer
1053
+ attr_accessor is_signed: bool
1054
+ attr_accessor signal_value_type: ("INTEGER" | "FLOATING_POINT")
1046
1055
  SENSITIVE: []
1047
1056
  end
1048
1057
 
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.41.0
4
+ version: 1.43.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-02-18 00:00:00.000000000 Z
11
+ date: 2025-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core