aws-sdk-iotfleetwise 1.43.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotfleetwise/client.rb +44 -1
- data/lib/aws-sdk-iotfleetwise/client_api.rb +2 -0
- data/lib/aws-sdk-iotfleetwise/types.rb +23 -2
- data/lib/aws-sdk-iotfleetwise.rb +1 -1
- data/sig/client.rbs +32 -2
- data/sig/types.rbs +2 -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,11 @@
|
|
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
|
+
|
4
9
|
1.43.0 (2025-03-05)
|
5
10
|
------------------
|
6
11
|
|
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
|
# })
|
@@ -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.
|
4251
|
+
context[:gem_version] = '1.44.0'
|
4209
4252
|
Seahorse::Client::Request.new(handlers, context)
|
4210
4253
|
end
|
4211
4254
|
|
@@ -1453,6 +1453,7 @@ module Aws::IoTFleetWise
|
|
1453
1453
|
UpdateVehicleRequest.add_member(:attribute_update_mode, Shapes::ShapeRef.new(shape: UpdateMode, location_name: "attributeUpdateMode"))
|
1454
1454
|
UpdateVehicleRequest.add_member(:state_templates_to_add, Shapes::ShapeRef.new(shape: StateTemplateAssociations, location_name: "stateTemplatesToAdd"))
|
1455
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"))
|
1456
1457
|
UpdateVehicleRequest.struct_class = Types::UpdateVehicleRequest
|
1457
1458
|
|
1458
1459
|
UpdateVehicleRequestItem.add_member(:vehicle_name, Shapes::ShapeRef.new(shape: vehicleName, required: true, location_name: "vehicleName"))
|
@@ -1462,6 +1463,7 @@ module Aws::IoTFleetWise
|
|
1462
1463
|
UpdateVehicleRequestItem.add_member(:attribute_update_mode, Shapes::ShapeRef.new(shape: UpdateMode, location_name: "attributeUpdateMode"))
|
1463
1464
|
UpdateVehicleRequestItem.add_member(:state_templates_to_add, Shapes::ShapeRef.new(shape: StateTemplateAssociations, location_name: "stateTemplatesToAdd"))
|
1464
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"))
|
1465
1467
|
UpdateVehicleRequestItem.struct_class = Types::UpdateVehicleRequestItem
|
1466
1468
|
|
1467
1469
|
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
|
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
|
@@ -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.
|
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
|