aws-sdk-iotfleetwise 1.48.0 → 1.49.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: b78a496d6c56f36805216b2eec875a7218386c6da63eba3fd2e9f017a8f8e775
4
- data.tar.gz: e13bafdb0cf9ca6b58ac3e986a016b00549521ad6b6b15a5f28159a65d1493ba
3
+ metadata.gz: e170c2b2f155fdf9a7da4539d8822e44476ea273db8a9bb7e6e36053b902f90a
4
+ data.tar.gz: 2fd985170cd03a22f31491039dc6950863eed32c57e76a87f9864e802d49fe1c
5
5
  SHA512:
6
- metadata.gz: 71595213ca7ae80207bc1894941d2c9c8e552e470fe1aa06d9fa26baa141a74f1f971cffb0c2d4a234cc3d89bf76f50b76ef842885dac1acdc748a5c8a96db93
7
- data.tar.gz: 24eed3838f4fb287742a474acbe99015219468d1350a44103bfb5c8b698d4c325b6e3428868cc4186fdd01abad44ccdbf3da2d98a7d6fd2f6e0afcd831a5438a
6
+ metadata.gz: 6582f82ccd639a9bb3289a580100ceea09abab9472e67daf05d1b192af8d6b3c5af79ecce0ce8efa6f7f2671fbf1b66f4baee550c73b157785c3bfdcbd2bb8a4
7
+ data.tar.gz: df10977f568508fd90ce5f3a52f07b80be7625c0473007e7636401b669e30387d95b550f1fd5b60e6816546727c4c2f8c3ed6d4744a4e46828de1de9f0119ca0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.49.0 (2025-06-12)
5
+ ------------------
6
+
7
+ * Feature - Add new status READY_FOR_CHECKIN used for vehicle synchronisation
8
+
4
9
  1.48.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.48.0
1
+ 1.49.0
@@ -2224,7 +2224,7 @@ module Aws::IoTFleetWise
2224
2224
  # resp.campaigns #=> Array
2225
2225
  # resp.campaigns[0].campaign_name #=> String
2226
2226
  # resp.campaigns[0].vehicle_name #=> String
2227
- # resp.campaigns[0].status #=> String, one of "CREATED", "READY", "HEALTHY", "SUSPENDED", "DELETING"
2227
+ # resp.campaigns[0].status #=> String, one of "CREATED", "READY", "HEALTHY", "SUSPENDED", "DELETING", "READY_FOR_CHECKIN"
2228
2228
  # resp.next_token #=> String
2229
2229
  #
2230
2230
  # @overload get_vehicle_status(params = {})
@@ -4247,7 +4247,7 @@ module Aws::IoTFleetWise
4247
4247
  tracer: tracer
4248
4248
  )
4249
4249
  context[:gem_name] = 'aws-sdk-iotfleetwise'
4250
- context[:gem_version] = '1.48.0'
4250
+ context[:gem_version] = '1.49.0'
4251
4251
  Seahorse::Client::Request.new(handlers, context)
4252
4252
  end
4253
4253
 
@@ -4807,10 +4807,9 @@ module Aws::IoTFleetWise
4807
4807
  # * `CREATING` - Amazon Web Services IoT FleetWise is processing your
4808
4808
  # request to create the campaign.
4809
4809
  #
4810
- # * `WAITING_FOR_APPROVAL` - After a campaign is created, it enters
4811
- # the `WAITING_FOR_APPROVAL` state. To allow Amazon Web Services IoT
4812
- # FleetWise to deploy the campaign to the target vehicle or fleet,
4813
- # use the API operation to approve the campaign.
4810
+ # * `WAITING_FOR_APPROVAL` - After you create a campaign, it enters
4811
+ # this state. Use the API operation to approve the campaign for
4812
+ # deployment to the target vehicle or fleet.
4814
4813
  #
4815
4814
  # * `RUNNING` - The campaign is active.
4816
4815
  #
@@ -5365,18 +5364,20 @@ module Aws::IoTFleetWise
5365
5364
  # @!attribute [rw] status
5366
5365
  # The status of a campaign, which can be one of the following:
5367
5366
  #
5368
- # * `CREATED` - The campaign has been created successfully but has not
5369
- # been approved.
5367
+ # * `CREATED` - The campaign exists but is not yet approved.
5370
5368
  #
5371
- # * `READY` - The campaign has been approved but has not been deployed
5372
- # to the vehicle.
5369
+ # * `READY` - The campaign is approved but has not been deployed to
5370
+ # the vehicle. Data has not arrived at the vehicle yet.
5373
5371
  #
5374
- # * `HEALTHY` - The campaign has been deployed to the vehicle.
5372
+ # * `HEALTHY` - The campaign is deployed to the vehicle.
5375
5373
  #
5376
- # * `SUSPENDED` - The campaign has been suspended and data collection
5377
- # is paused.
5374
+ # * `SUSPENDED` - The campaign is suspended and data collection is
5375
+ # paused.
5378
5376
  #
5379
5377
  # * `DELETING` - The campaign is being removed from the vehicle.
5378
+ #
5379
+ # * `READY_FOR_CHECKIN` - The campaign is approved and waiting for
5380
+ # vehicle check-in before deployment.
5380
5381
  # @return [String]
5381
5382
  #
5382
5383
  class VehicleStatus < Struct.new(
@@ -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.48.0'
58
+ GEM_VERSION = '1.49.0'
59
59
 
60
60
  end
61
61
 
data/sig/types.rbs CHANGED
@@ -1499,7 +1499,7 @@ module Aws::IoTFleetWise
1499
1499
  class VehicleStatus
1500
1500
  attr_accessor campaign_name: ::String
1501
1501
  attr_accessor vehicle_name: ::String
1502
- attr_accessor status: ("CREATED" | "READY" | "HEALTHY" | "SUSPENDED" | "DELETING")
1502
+ attr_accessor status: ("CREATED" | "READY" | "HEALTHY" | "SUSPENDED" | "DELETING" | "READY_FOR_CHECKIN")
1503
1503
  SENSITIVE: []
1504
1504
  end
1505
1505
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotfleetwise
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.48.0
4
+ version: 1.49.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services