aws-sdk-iotfleetwise 1.43.0 → 1.45.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: 8531874835655528651adf0ad6cdb02f80eb95554a4110b791d3671e911b844c
4
- data.tar.gz: 2b490a9c0e6826b32018f1749ea59d3d0bba176f2376f3dfcc6b169235f40933
3
+ metadata.gz: 4715d6b3b865d169456a2932cbc6c1de7b7cf2e90846a3d9d87be1be74adaebb
4
+ data.tar.gz: 6b0847a5b5d56733fc922ef53669728de3b971e572e9b6629f7ef173072369cd
5
5
  SHA512:
6
- metadata.gz: 3be76292bdeaa4b460e78e76fb748ddd944d28cb9003f56038ff9a7dcba61fe1b0e46fbffdef9420a1f23258630a21cfca1ac5433f788f95ae2535b138873f6f
7
- data.tar.gz: f30887eae56301e14a0944b065e4e3d9b4f77e07ff4c239d9a7273f3bfae69f00734a89bae67292027a00faf3bdf810be82c3b2d660dcfa4290105316b09d3cb
6
+ metadata.gz: 74ae84b453be7642d8d55741f4e1ab87cfe6e6b4297bab1050e7032641ac31ea655ffafa3cd6c2e68d76cc02b344620e7049d55b42ec3a0a624a23900098d382
7
+ data.tar.gz: 8a765e3a17b4f6cf254648f96faa9529a4cc92f3e9b20da63700af2117002b35468b3db7f11535aa7de129985990f9c0ccbab6f9a5f01a9e867a2d35fc469137
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.45.0 (2025-04-17)
5
+ ------------------
6
+
7
+ * Feature - We've added stricter parameter validations to AWS IoT FleetWise signal catalog, model manifest, and decoder manifest APIs.
8
+
9
+ 1.44.0 (2025-04-08)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.43.0 (2025-03-05)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.43.0
1
+ 1.45.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
  # })
@@ -952,7 +967,7 @@ module Aws::IoTFleetWise
952
967
  # resp = client.create_decoder_manifest({
953
968
  # name: "resourceName", # required
954
969
  # description: "description",
955
- # model_manifest_arn: "arn", # required
970
+ # model_manifest_arn: "CreateDecoderManifestRequestModelManifestArnString", # required
956
971
  # signal_decoders: [
957
972
  # {
958
973
  # fully_qualified_name: "FullyQualifiedName", # required
@@ -1207,13 +1222,13 @@ module Aws::IoTFleetWise
1207
1222
  # nodes: [
1208
1223
  # {
1209
1224
  # branch: {
1210
- # fully_qualified_name: "string", # required
1225
+ # fully_qualified_name: "BranchFullyQualifiedNameString", # required
1211
1226
  # description: "description",
1212
1227
  # deprecation_message: "message",
1213
1228
  # comment: "message",
1214
1229
  # },
1215
1230
  # sensor: {
1216
- # fully_qualified_name: "string", # required
1231
+ # fully_qualified_name: "SensorFullyQualifiedNameString", # required
1217
1232
  # 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
1218
1233
  # description: "description",
1219
1234
  # unit: "string",
@@ -1225,7 +1240,7 @@ module Aws::IoTFleetWise
1225
1240
  # struct_fully_qualified_name: "NodePath",
1226
1241
  # },
1227
1242
  # actuator: {
1228
- # fully_qualified_name: "string", # required
1243
+ # fully_qualified_name: "ActuatorFullyQualifiedNameString", # required
1229
1244
  # 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
1230
1245
  # description: "description",
1231
1246
  # unit: "string",
@@ -1238,7 +1253,7 @@ module Aws::IoTFleetWise
1238
1253
  # struct_fully_qualified_name: "NodePath",
1239
1254
  # },
1240
1255
  # attribute: {
1241
- # fully_qualified_name: "string", # required
1256
+ # fully_qualified_name: "AttributeFullyQualifiedNameString", # required
1242
1257
  # 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
1243
1258
  # description: "description",
1244
1259
  # unit: "string",
@@ -1251,13 +1266,13 @@ module Aws::IoTFleetWise
1251
1266
  # comment: "message",
1252
1267
  # },
1253
1268
  # struct: {
1254
- # fully_qualified_name: "string", # required
1269
+ # fully_qualified_name: "CustomStructFullyQualifiedNameString", # required
1255
1270
  # description: "description",
1256
1271
  # deprecation_message: "message",
1257
1272
  # comment: "message",
1258
1273
  # },
1259
1274
  # property: {
1260
- # fully_qualified_name: "string", # required
1275
+ # fully_qualified_name: "CustomPropertyFullyQualifiedNameString", # required
1261
1276
  # 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
1262
1277
  # data_encoding: "BINARY", # accepts BINARY, TYPED
1263
1278
  # description: "description",
@@ -3891,13 +3906,13 @@ module Aws::IoTFleetWise
3891
3906
  # nodes_to_add: [
3892
3907
  # {
3893
3908
  # branch: {
3894
- # fully_qualified_name: "string", # required
3909
+ # fully_qualified_name: "BranchFullyQualifiedNameString", # required
3895
3910
  # description: "description",
3896
3911
  # deprecation_message: "message",
3897
3912
  # comment: "message",
3898
3913
  # },
3899
3914
  # sensor: {
3900
- # fully_qualified_name: "string", # required
3915
+ # fully_qualified_name: "SensorFullyQualifiedNameString", # required
3901
3916
  # 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
3902
3917
  # description: "description",
3903
3918
  # unit: "string",
@@ -3909,7 +3924,7 @@ module Aws::IoTFleetWise
3909
3924
  # struct_fully_qualified_name: "NodePath",
3910
3925
  # },
3911
3926
  # actuator: {
3912
- # fully_qualified_name: "string", # required
3927
+ # fully_qualified_name: "ActuatorFullyQualifiedNameString", # required
3913
3928
  # 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
3914
3929
  # description: "description",
3915
3930
  # unit: "string",
@@ -3922,7 +3937,7 @@ module Aws::IoTFleetWise
3922
3937
  # struct_fully_qualified_name: "NodePath",
3923
3938
  # },
3924
3939
  # attribute: {
3925
- # fully_qualified_name: "string", # required
3940
+ # fully_qualified_name: "AttributeFullyQualifiedNameString", # required
3926
3941
  # 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
3927
3942
  # description: "description",
3928
3943
  # unit: "string",
@@ -3935,13 +3950,13 @@ module Aws::IoTFleetWise
3935
3950
  # comment: "message",
3936
3951
  # },
3937
3952
  # struct: {
3938
- # fully_qualified_name: "string", # required
3953
+ # fully_qualified_name: "CustomStructFullyQualifiedNameString", # required
3939
3954
  # description: "description",
3940
3955
  # deprecation_message: "message",
3941
3956
  # comment: "message",
3942
3957
  # },
3943
3958
  # property: {
3944
- # fully_qualified_name: "string", # required
3959
+ # fully_qualified_name: "CustomPropertyFullyQualifiedNameString", # required
3945
3960
  # 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
3946
3961
  # data_encoding: "BINARY", # accepts BINARY, TYPED
3947
3962
  # description: "description",
@@ -3954,13 +3969,13 @@ module Aws::IoTFleetWise
3954
3969
  # nodes_to_update: [
3955
3970
  # {
3956
3971
  # branch: {
3957
- # fully_qualified_name: "string", # required
3972
+ # fully_qualified_name: "BranchFullyQualifiedNameString", # required
3958
3973
  # description: "description",
3959
3974
  # deprecation_message: "message",
3960
3975
  # comment: "message",
3961
3976
  # },
3962
3977
  # sensor: {
3963
- # fully_qualified_name: "string", # required
3978
+ # fully_qualified_name: "SensorFullyQualifiedNameString", # required
3964
3979
  # 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
3965
3980
  # description: "description",
3966
3981
  # unit: "string",
@@ -3972,7 +3987,7 @@ module Aws::IoTFleetWise
3972
3987
  # struct_fully_qualified_name: "NodePath",
3973
3988
  # },
3974
3989
  # actuator: {
3975
- # fully_qualified_name: "string", # required
3990
+ # fully_qualified_name: "ActuatorFullyQualifiedNameString", # required
3976
3991
  # 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
3977
3992
  # description: "description",
3978
3993
  # unit: "string",
@@ -3985,7 +4000,7 @@ module Aws::IoTFleetWise
3985
4000
  # struct_fully_qualified_name: "NodePath",
3986
4001
  # },
3987
4002
  # attribute: {
3988
- # fully_qualified_name: "string", # required
4003
+ # fully_qualified_name: "AttributeFullyQualifiedNameString", # required
3989
4004
  # 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
3990
4005
  # description: "description",
3991
4006
  # unit: "string",
@@ -3998,13 +4013,13 @@ module Aws::IoTFleetWise
3998
4013
  # comment: "message",
3999
4014
  # },
4000
4015
  # struct: {
4001
- # fully_qualified_name: "string", # required
4016
+ # fully_qualified_name: "CustomStructFullyQualifiedNameString", # required
4002
4017
  # description: "description",
4003
4018
  # deprecation_message: "message",
4004
4019
  # comment: "message",
4005
4020
  # },
4006
4021
  # property: {
4007
- # fully_qualified_name: "string", # required
4022
+ # fully_qualified_name: "CustomPropertyFullyQualifiedNameString", # required
4008
4023
  # 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
4009
4024
  # data_encoding: "BINARY", # accepts BINARY, TYPED
4010
4025
  # description: "description",
@@ -4113,6 +4128,15 @@ module Aws::IoTFleetWise
4113
4128
 
4114
4129
  # Updates a vehicle.
4115
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
+ #
4116
4140
  # @option params [required, String] :vehicle_name
4117
4141
  # The unique ID of the vehicle to update.
4118
4142
  #
@@ -4142,6 +4166,10 @@ module Aws::IoTFleetWise
4142
4166
  # @option params [Array<String>] :state_templates_to_remove
4143
4167
  # Remove state templates from the vehicle.
4144
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
+ #
4145
4173
  # @return [Types::UpdateVehicleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4146
4174
  #
4147
4175
  # * {Types::UpdateVehicleResponse#vehicle_name #vehicle_name} => String
@@ -4173,6 +4201,21 @@ module Aws::IoTFleetWise
4173
4201
  # },
4174
4202
  # ],
4175
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
+ # ],
4176
4219
  # })
4177
4220
  #
4178
4221
  # @example Response structure
@@ -4205,7 +4248,7 @@ module Aws::IoTFleetWise
4205
4248
  tracer: tracer
4206
4249
  )
4207
4250
  context[:gem_name] = 'aws-sdk-iotfleetwise'
4208
- context[:gem_version] = '1.43.0'
4251
+ context[:gem_version] = '1.45.0'
4209
4252
  Seahorse::Client::Request.new(handlers, context)
4210
4253
  end
4211
4254
 
@@ -16,15 +16,18 @@ module Aws::IoTFleetWise
16
16
 
17
17
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
18
18
  Actuator = Shapes::StructureShape.new(name: 'Actuator')
19
+ ActuatorFullyQualifiedNameString = Shapes::StringShape.new(name: 'ActuatorFullyQualifiedNameString')
19
20
  AmazonResourceName = Shapes::StringShape.new(name: 'AmazonResourceName')
20
21
  AssociateVehicleFleetRequest = Shapes::StructureShape.new(name: 'AssociateVehicleFleetRequest')
21
22
  AssociateVehicleFleetResponse = Shapes::StructureShape.new(name: 'AssociateVehicleFleetResponse')
22
23
  Attribute = Shapes::StructureShape.new(name: 'Attribute')
24
+ AttributeFullyQualifiedNameString = Shapes::StringShape.new(name: 'AttributeFullyQualifiedNameString')
23
25
  BatchCreateVehicleRequest = Shapes::StructureShape.new(name: 'BatchCreateVehicleRequest')
24
26
  BatchCreateVehicleResponse = Shapes::StructureShape.new(name: 'BatchCreateVehicleResponse')
25
27
  BatchUpdateVehicleRequest = Shapes::StructureShape.new(name: 'BatchUpdateVehicleRequest')
26
28
  BatchUpdateVehicleResponse = Shapes::StructureShape.new(name: 'BatchUpdateVehicleResponse')
27
29
  Branch = Shapes::StructureShape.new(name: 'Branch')
30
+ BranchFullyQualifiedNameString = Shapes::StringShape.new(name: 'BranchFullyQualifiedNameString')
28
31
  CampaignStatus = Shapes::StringShape.new(name: 'CampaignStatus')
29
32
  CampaignSummary = Shapes::StructureShape.new(name: 'CampaignSummary')
30
33
  CanDbcDefinition = Shapes::StructureShape.new(name: 'CanDbcDefinition')
@@ -42,10 +45,12 @@ module Aws::IoTFleetWise
42
45
  CreateCampaignRequest = Shapes::StructureShape.new(name: 'CreateCampaignRequest')
43
46
  CreateCampaignResponse = Shapes::StructureShape.new(name: 'CreateCampaignResponse')
44
47
  CreateDecoderManifestRequest = Shapes::StructureShape.new(name: 'CreateDecoderManifestRequest')
48
+ CreateDecoderManifestRequestModelManifestArnString = Shapes::StringShape.new(name: 'CreateDecoderManifestRequestModelManifestArnString')
45
49
  CreateDecoderManifestResponse = Shapes::StructureShape.new(name: 'CreateDecoderManifestResponse')
46
50
  CreateFleetRequest = Shapes::StructureShape.new(name: 'CreateFleetRequest')
47
51
  CreateFleetResponse = Shapes::StructureShape.new(name: 'CreateFleetResponse')
48
52
  CreateModelManifestRequest = Shapes::StructureShape.new(name: 'CreateModelManifestRequest')
53
+ CreateModelManifestRequestNodesList = Shapes::ListShape.new(name: 'CreateModelManifestRequestNodesList')
49
54
  CreateModelManifestResponse = Shapes::StructureShape.new(name: 'CreateModelManifestResponse')
50
55
  CreateSignalCatalogRequest = Shapes::StructureShape.new(name: 'CreateSignalCatalogRequest')
51
56
  CreateSignalCatalogResponse = Shapes::StructureShape.new(name: 'CreateSignalCatalogResponse')
@@ -61,7 +66,9 @@ module Aws::IoTFleetWise
61
66
  CustomDecodingSignal = Shapes::StructureShape.new(name: 'CustomDecodingSignal')
62
67
  CustomDecodingSignalInterfaceName = Shapes::StringShape.new(name: 'CustomDecodingSignalInterfaceName')
63
68
  CustomProperty = Shapes::StructureShape.new(name: 'CustomProperty')
69
+ CustomPropertyFullyQualifiedNameString = Shapes::StringShape.new(name: 'CustomPropertyFullyQualifiedNameString')
64
70
  CustomStruct = Shapes::StructureShape.new(name: 'CustomStruct')
71
+ CustomStructFullyQualifiedNameString = Shapes::StringShape.new(name: 'CustomStructFullyQualifiedNameString')
65
72
  DataDestinationConfig = Shapes::UnionShape.new(name: 'DataDestinationConfig')
66
73
  DataDestinationConfigs = Shapes::ListShape.new(name: 'DataDestinationConfigs')
67
74
  DataExtraDimensionNodePathList = Shapes::ListShape.new(name: 'DataExtraDimensionNodePathList')
@@ -221,6 +228,7 @@ module Aws::IoTFleetWise
221
228
  S3BucketArn = Shapes::StringShape.new(name: 'S3BucketArn')
222
229
  S3Config = Shapes::StructureShape.new(name: 'S3Config')
223
230
  Sensor = Shapes::StructureShape.new(name: 'Sensor')
231
+ SensorFullyQualifiedNameString = Shapes::StringShape.new(name: 'SensorFullyQualifiedNameString')
224
232
  SignalCatalogSummary = Shapes::StructureShape.new(name: 'SignalCatalogSummary')
225
233
  SignalDecoder = Shapes::StructureShape.new(name: 'SignalDecoder')
226
234
  SignalDecoderFailureReason = Shapes::StringShape.new(name: 'SignalDecoderFailureReason')
@@ -365,7 +373,7 @@ module Aws::IoTFleetWise
365
373
  AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: string, required: true, location_name: "message"))
366
374
  AccessDeniedException.struct_class = Types::AccessDeniedException
367
375
 
368
- Actuator.add_member(:fully_qualified_name, Shapes::ShapeRef.new(shape: string, required: true, location_name: "fullyQualifiedName"))
376
+ Actuator.add_member(:fully_qualified_name, Shapes::ShapeRef.new(shape: ActuatorFullyQualifiedNameString, required: true, location_name: "fullyQualifiedName"))
369
377
  Actuator.add_member(:data_type, Shapes::ShapeRef.new(shape: NodeDataType, required: true, location_name: "dataType"))
370
378
  Actuator.add_member(:description, Shapes::ShapeRef.new(shape: description, location_name: "description"))
371
379
  Actuator.add_member(:unit, Shapes::ShapeRef.new(shape: string, location_name: "unit"))
@@ -384,7 +392,7 @@ module Aws::IoTFleetWise
384
392
 
385
393
  AssociateVehicleFleetResponse.struct_class = Types::AssociateVehicleFleetResponse
386
394
 
387
- Attribute.add_member(:fully_qualified_name, Shapes::ShapeRef.new(shape: string, required: true, location_name: "fullyQualifiedName"))
395
+ Attribute.add_member(:fully_qualified_name, Shapes::ShapeRef.new(shape: AttributeFullyQualifiedNameString, required: true, location_name: "fullyQualifiedName"))
388
396
  Attribute.add_member(:data_type, Shapes::ShapeRef.new(shape: NodeDataType, required: true, location_name: "dataType"))
389
397
  Attribute.add_member(:description, Shapes::ShapeRef.new(shape: description, location_name: "description"))
390
398
  Attribute.add_member(:unit, Shapes::ShapeRef.new(shape: string, location_name: "unit"))
@@ -411,7 +419,7 @@ module Aws::IoTFleetWise
411
419
  BatchUpdateVehicleResponse.add_member(:errors, Shapes::ShapeRef.new(shape: updateVehicleErrors, location_name: "errors"))
412
420
  BatchUpdateVehicleResponse.struct_class = Types::BatchUpdateVehicleResponse
413
421
 
414
- Branch.add_member(:fully_qualified_name, Shapes::ShapeRef.new(shape: string, required: true, location_name: "fullyQualifiedName"))
422
+ Branch.add_member(:fully_qualified_name, Shapes::ShapeRef.new(shape: BranchFullyQualifiedNameString, required: true, location_name: "fullyQualifiedName"))
415
423
  Branch.add_member(:description, Shapes::ShapeRef.new(shape: description, location_name: "description"))
416
424
  Branch.add_member(:deprecation_message, Shapes::ShapeRef.new(shape: message, location_name: "deprecationMessage"))
417
425
  Branch.add_member(:comment, Shapes::ShapeRef.new(shape: message, location_name: "comment"))
@@ -501,7 +509,7 @@ module Aws::IoTFleetWise
501
509
 
502
510
  CreateDecoderManifestRequest.add_member(:name, Shapes::ShapeRef.new(shape: resourceName, required: true, location_name: "name"))
503
511
  CreateDecoderManifestRequest.add_member(:description, Shapes::ShapeRef.new(shape: description, location_name: "description"))
504
- CreateDecoderManifestRequest.add_member(:model_manifest_arn, Shapes::ShapeRef.new(shape: arn, required: true, location_name: "modelManifestArn"))
512
+ CreateDecoderManifestRequest.add_member(:model_manifest_arn, Shapes::ShapeRef.new(shape: CreateDecoderManifestRequestModelManifestArnString, required: true, location_name: "modelManifestArn"))
505
513
  CreateDecoderManifestRequest.add_member(:signal_decoders, Shapes::ShapeRef.new(shape: SignalDecoders, location_name: "signalDecoders"))
506
514
  CreateDecoderManifestRequest.add_member(:network_interfaces, Shapes::ShapeRef.new(shape: NetworkInterfaces, location_name: "networkInterfaces"))
507
515
  CreateDecoderManifestRequest.add_member(:default_for_unmapped_signals, Shapes::ShapeRef.new(shape: DefaultForUnmappedSignalsType, location_name: "defaultForUnmappedSignals"))
@@ -524,11 +532,13 @@ module Aws::IoTFleetWise
524
532
 
525
533
  CreateModelManifestRequest.add_member(:name, Shapes::ShapeRef.new(shape: resourceName, required: true, location_name: "name"))
526
534
  CreateModelManifestRequest.add_member(:description, Shapes::ShapeRef.new(shape: description, location_name: "description"))
527
- CreateModelManifestRequest.add_member(:nodes, Shapes::ShapeRef.new(shape: listOfStrings, required: true, location_name: "nodes"))
535
+ CreateModelManifestRequest.add_member(:nodes, Shapes::ShapeRef.new(shape: CreateModelManifestRequestNodesList, required: true, location_name: "nodes"))
528
536
  CreateModelManifestRequest.add_member(:signal_catalog_arn, Shapes::ShapeRef.new(shape: arn, required: true, location_name: "signalCatalogArn"))
529
537
  CreateModelManifestRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
530
538
  CreateModelManifestRequest.struct_class = Types::CreateModelManifestRequest
531
539
 
540
+ CreateModelManifestRequestNodesList.member = Shapes::ShapeRef.new(shape: string)
541
+
532
542
  CreateModelManifestResponse.add_member(:name, Shapes::ShapeRef.new(shape: resourceName, required: true, location_name: "name"))
533
543
  CreateModelManifestResponse.add_member(:arn, Shapes::ShapeRef.new(shape: arn, required: true, location_name: "arn"))
534
544
  CreateModelManifestResponse.struct_class = Types::CreateModelManifestResponse
@@ -596,7 +606,7 @@ module Aws::IoTFleetWise
596
606
  CustomDecodingSignal.add_member(:id, Shapes::ShapeRef.new(shape: CustomDecodingId, required: true, location_name: "id"))
597
607
  CustomDecodingSignal.struct_class = Types::CustomDecodingSignal
598
608
 
599
- CustomProperty.add_member(:fully_qualified_name, Shapes::ShapeRef.new(shape: string, required: true, location_name: "fullyQualifiedName"))
609
+ CustomProperty.add_member(:fully_qualified_name, Shapes::ShapeRef.new(shape: CustomPropertyFullyQualifiedNameString, required: true, location_name: "fullyQualifiedName"))
600
610
  CustomProperty.add_member(:data_type, Shapes::ShapeRef.new(shape: NodeDataType, required: true, location_name: "dataType"))
601
611
  CustomProperty.add_member(:data_encoding, Shapes::ShapeRef.new(shape: NodeDataEncoding, location_name: "dataEncoding"))
602
612
  CustomProperty.add_member(:description, Shapes::ShapeRef.new(shape: description, location_name: "description"))
@@ -605,7 +615,7 @@ module Aws::IoTFleetWise
605
615
  CustomProperty.add_member(:struct_fully_qualified_name, Shapes::ShapeRef.new(shape: NodePath, location_name: "structFullyQualifiedName"))
606
616
  CustomProperty.struct_class = Types::CustomProperty
607
617
 
608
- CustomStruct.add_member(:fully_qualified_name, Shapes::ShapeRef.new(shape: string, required: true, location_name: "fullyQualifiedName"))
618
+ CustomStruct.add_member(:fully_qualified_name, Shapes::ShapeRef.new(shape: CustomStructFullyQualifiedNameString, required: true, location_name: "fullyQualifiedName"))
609
619
  CustomStruct.add_member(:description, Shapes::ShapeRef.new(shape: description, location_name: "description"))
610
620
  CustomStruct.add_member(:deprecation_message, Shapes::ShapeRef.new(shape: message, location_name: "deprecationMessage"))
611
621
  CustomStruct.add_member(:comment, Shapes::ShapeRef.new(shape: message, location_name: "comment"))
@@ -1203,7 +1213,7 @@ module Aws::IoTFleetWise
1203
1213
  S3Config.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "prefix"))
1204
1214
  S3Config.struct_class = Types::S3Config
1205
1215
 
1206
- Sensor.add_member(:fully_qualified_name, Shapes::ShapeRef.new(shape: string, required: true, location_name: "fullyQualifiedName"))
1216
+ Sensor.add_member(:fully_qualified_name, Shapes::ShapeRef.new(shape: SensorFullyQualifiedNameString, required: true, location_name: "fullyQualifiedName"))
1207
1217
  Sensor.add_member(:data_type, Shapes::ShapeRef.new(shape: NodeDataType, required: true, location_name: "dataType"))
1208
1218
  Sensor.add_member(:description, Shapes::ShapeRef.new(shape: description, location_name: "description"))
1209
1219
  Sensor.add_member(:unit, Shapes::ShapeRef.new(shape: string, location_name: "unit"))
@@ -1453,6 +1463,7 @@ module Aws::IoTFleetWise
1453
1463
  UpdateVehicleRequest.add_member(:attribute_update_mode, Shapes::ShapeRef.new(shape: UpdateMode, location_name: "attributeUpdateMode"))
1454
1464
  UpdateVehicleRequest.add_member(:state_templates_to_add, Shapes::ShapeRef.new(shape: StateTemplateAssociations, location_name: "stateTemplatesToAdd"))
1455
1465
  UpdateVehicleRequest.add_member(:state_templates_to_remove, Shapes::ShapeRef.new(shape: StateTemplateAssociationIdentifiers, location_name: "stateTemplatesToRemove"))
1466
+ UpdateVehicleRequest.add_member(:state_templates_to_update, Shapes::ShapeRef.new(shape: StateTemplateAssociations, location_name: "stateTemplatesToUpdate"))
1456
1467
  UpdateVehicleRequest.struct_class = Types::UpdateVehicleRequest
1457
1468
 
1458
1469
  UpdateVehicleRequestItem.add_member(:vehicle_name, Shapes::ShapeRef.new(shape: vehicleName, required: true, location_name: "vehicleName"))
@@ -1462,6 +1473,7 @@ module Aws::IoTFleetWise
1462
1473
  UpdateVehicleRequestItem.add_member(:attribute_update_mode, Shapes::ShapeRef.new(shape: UpdateMode, location_name: "attributeUpdateMode"))
1463
1474
  UpdateVehicleRequestItem.add_member(:state_templates_to_add, Shapes::ShapeRef.new(shape: StateTemplateAssociations, location_name: "stateTemplatesToAdd"))
1464
1475
  UpdateVehicleRequestItem.add_member(:state_templates_to_remove, Shapes::ShapeRef.new(shape: StateTemplateAssociationIdentifiers, location_name: "stateTemplatesToRemove"))
1476
+ UpdateVehicleRequestItem.add_member(:state_templates_to_update, Shapes::ShapeRef.new(shape: StateTemplateAssociations, location_name: "stateTemplatesToUpdate"))
1465
1477
  UpdateVehicleRequestItem.struct_class = Types::UpdateVehicleRequestItem
1466
1478
 
1467
1479
  UpdateVehicleResponse.add_member(:vehicle_name, Shapes::ShapeRef.new(shape: vehicleName, location_name: "vehicleName"))
@@ -5174,6 +5174,11 @@ module Aws::IoTFleetWise
5174
5174
  # Remove state templates from the vehicle.
5175
5175
  # @return [Array<String>]
5176
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
+ #
5177
5182
  class UpdateVehicleRequest < Struct.new(
5178
5183
  :vehicle_name,
5179
5184
  :model_manifest_arn,
@@ -5181,13 +5186,23 @@ module Aws::IoTFleetWise
5181
5186
  :attributes,
5182
5187
  :attribute_update_mode,
5183
5188
  :state_templates_to_add,
5184
- :state_templates_to_remove)
5189
+ :state_templates_to_remove,
5190
+ :state_templates_to_update)
5185
5191
  SENSITIVE = []
5186
5192
  include Aws::Structure
5187
5193
  end
5188
5194
 
5189
5195
  # Information about the vehicle to update.
5190
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
+ #
5191
5206
  # @!attribute [rw] vehicle_name
5192
5207
  # The unique ID of the vehicle to update.
5193
5208
  # @return [String]
@@ -5227,6 +5242,11 @@ module Aws::IoTFleetWise
5227
5242
  # Remove existing state template associations from the vehicle.
5228
5243
  # @return [Array<String>]
5229
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
+ #
5230
5250
  class UpdateVehicleRequestItem < Struct.new(
5231
5251
  :vehicle_name,
5232
5252
  :model_manifest_arn,
@@ -5234,7 +5254,8 @@ module Aws::IoTFleetWise
5234
5254
  :attributes,
5235
5255
  :attribute_update_mode,
5236
5256
  :state_templates_to_add,
5237
- :state_templates_to_remove)
5257
+ :state_templates_to_remove,
5258
+ :state_templates_to_update)
5238
5259
  SENSITIVE = []
5239
5260
  include Aws::Structure
5240
5261
  end
@@ -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.43.0'
58
+ GEM_VERSION = '1.45.0'
59
59
 
60
60
  end
61
61
 
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
@@ -1526,7 +1541,22 @@ module Aws
1526
1541
  }
1527
1542
  },
1528
1543
  ],
1529
- ?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
+ ]
1530
1560
  ) -> _UpdateVehicleResponseSuccess
1531
1561
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVehicleResponseSuccess
1532
1562
  end
data/sig/types.rbs CHANGED
@@ -1449,6 +1449,7 @@ module Aws::IoTFleetWise
1449
1449
  attr_accessor attribute_update_mode: ("Overwrite" | "Merge")
1450
1450
  attr_accessor state_templates_to_add: ::Array[Types::StateTemplateAssociation]
1451
1451
  attr_accessor state_templates_to_remove: ::Array[::String]
1452
+ attr_accessor state_templates_to_update: ::Array[Types::StateTemplateAssociation]
1452
1453
  SENSITIVE: []
1453
1454
  end
1454
1455
 
@@ -1460,6 +1461,7 @@ module Aws::IoTFleetWise
1460
1461
  attr_accessor attribute_update_mode: ("Overwrite" | "Merge")
1461
1462
  attr_accessor state_templates_to_add: ::Array[Types::StateTemplateAssociation]
1462
1463
  attr_accessor state_templates_to_remove: ::Array[::String]
1464
+ attr_accessor state_templates_to_update: ::Array[Types::StateTemplateAssociation]
1463
1465
  SENSITIVE: []
1464
1466
  end
1465
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.43.0
4
+ version: 1.45.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-03-05 00:00:00.000000000 Z
11
+ date: 2025-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core