aws-sdk-iotfleetwise 1.23.0 → 1.24.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e012eed80332b1fbee644218f295c32d58acdfc46cda445090db776ce674a29
4
- data.tar.gz: f2e082cf5a17a382f353085c373ce3eb39c27d9a3351307c03baa66e3b74bbef
3
+ metadata.gz: 02f956f61c126df6d9c169ea2ff913fa89817e4e7f592e82da0b07b223a195d0
4
+ data.tar.gz: be37acc9966ad192a983a9bcaa4df1f4d40c3e2a629b9e3898bf3862b8e9df8f
5
5
  SHA512:
6
- metadata.gz: e9be7ff77ff8aaa734d54dbcbb411809c3f428d65adc76753549da51f19f3365d5a549aa5eada33fe47df2b11c303b67931cc7731af1ad9e3ae522ada5a39663
7
- data.tar.gz: 418e4aaa492cf0e22ab25bb7eb064c3e997aded75a544b62ce58800989f5be8bb14e11f7d238e70eecf49537bbcc6025816345c9b8f086d5aa8f91865f235910
6
+ metadata.gz: 5752bfd84d697ca9925a7aeebdb5730ad35437948744080a21776afef04234bb490d0980ca8520ff16953ac88f6eb466c5a653bd1df40fffe1c677c53dedb862
7
+ data.tar.gz: 68ec8ec9d6ec9c54986de14adbd3c9e2db115d68352d0a57da832ec7f21760b305f191571adc38cc287a406aa4963593be3ff255ac6e374247aa35096fa304d0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.24.0 (2024-05-24)
5
+ ------------------
6
+
7
+ * Feature - AWS IoT FleetWise now supports listing vehicles with attributes filter, ListVehicles API is updated to support additional attributes filter.
8
+
4
9
  1.23.0 (2024-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.23.0
1
+ 1.24.0
@@ -588,8 +588,8 @@ module Aws::IoTFleetWise
588
588
  # An optional description of the campaign to help identify its purpose.
589
589
  #
590
590
  # @option params [required, String] :signal_catalog_arn
591
- # (Optional) The Amazon Resource Name (ARN) of the signal catalog to
592
- # associate with the campaign.
591
+ # The Amazon Resource Name (ARN) of the signal catalog to associate with
592
+ # the campaign.
593
593
  #
594
594
  # @option params [required, String] :target_arn
595
595
  # The ARN of the vehicle or fleet to deploy a campaign to.
@@ -2656,6 +2656,16 @@ module Aws::IoTFleetWise
2656
2656
  # You can use this optional parameter to list only the vehicles created
2657
2657
  # from a certain vehicle model.
2658
2658
  #
2659
+ # @option params [Array<String>] :attribute_names
2660
+ # The fully qualified names of the attributes. For example, the fully
2661
+ # qualified name of an attribute might be `Vehicle.Body.Engine.Type`.
2662
+ #
2663
+ # @option params [Array<String>] :attribute_values
2664
+ # Static information about a vehicle attribute value in string format.
2665
+ # For example:
2666
+ #
2667
+ # `"1.3 L R2"`
2668
+ #
2659
2669
  # @option params [String] :next_token
2660
2670
  # A pagination token for the next set of results.
2661
2671
  #
@@ -2679,6 +2689,8 @@ module Aws::IoTFleetWise
2679
2689
  #
2680
2690
  # resp = client.list_vehicles({
2681
2691
  # model_manifest_arn: "arn",
2692
+ # attribute_names: ["attributeName"],
2693
+ # attribute_values: ["attributeValue"],
2682
2694
  # next_token: "nextToken",
2683
2695
  # max_results: 1,
2684
2696
  # })
@@ -3568,7 +3580,7 @@ module Aws::IoTFleetWise
3568
3580
  params: params,
3569
3581
  config: config)
3570
3582
  context[:gem_name] = 'aws-sdk-iotfleetwise'
3571
- context[:gem_version] = '1.23.0'
3583
+ context[:gem_version] = '1.24.0'
3572
3584
  Seahorse::Client::Request.new(handlers, context)
3573
3585
  end
3574
3586
 
@@ -260,7 +260,9 @@ module Aws::IoTFleetWise
260
260
  VehicleSummary = Shapes::StructureShape.new(name: 'VehicleSummary')
261
261
  arn = Shapes::StringShape.new(name: 'arn')
262
262
  attributeName = Shapes::StringShape.new(name: 'attributeName')
263
+ attributeNamesList = Shapes::ListShape.new(name: 'attributeNamesList')
263
264
  attributeValue = Shapes::StringShape.new(name: 'attributeValue')
265
+ attributeValuesList = Shapes::ListShape.new(name: 'attributeValuesList')
264
266
  attributesMap = Shapes::MapShape.new(name: 'attributesMap')
265
267
  campaignName = Shapes::StringShape.new(name: 'campaignName')
266
268
  campaignSummaries = Shapes::ListShape.new(name: 'campaignSummaries')
@@ -900,6 +902,8 @@ module Aws::IoTFleetWise
900
902
  ListVehiclesInFleetResponse.struct_class = Types::ListVehiclesInFleetResponse
901
903
 
902
904
  ListVehiclesRequest.add_member(:model_manifest_arn, Shapes::ShapeRef.new(shape: arn, location_name: "modelManifestArn"))
905
+ ListVehiclesRequest.add_member(:attribute_names, Shapes::ShapeRef.new(shape: attributeNamesList, location_name: "attributeNames"))
906
+ ListVehiclesRequest.add_member(:attribute_values, Shapes::ShapeRef.new(shape: attributeValuesList, location_name: "attributeValues"))
903
907
  ListVehiclesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: nextToken, location_name: "nextToken"))
904
908
  ListVehiclesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: listVehiclesMaxResults, location_name: "maxResults"))
905
909
  ListVehiclesRequest.struct_class = Types::ListVehiclesRequest
@@ -1256,6 +1260,10 @@ module Aws::IoTFleetWise
1256
1260
  VehicleSummary.add_member(:attributes, Shapes::ShapeRef.new(shape: attributesMap, location_name: "attributes"))
1257
1261
  VehicleSummary.struct_class = Types::VehicleSummary
1258
1262
 
1263
+ attributeNamesList.member = Shapes::ShapeRef.new(shape: attributeName)
1264
+
1265
+ attributeValuesList.member = Shapes::ShapeRef.new(shape: attributeValue)
1266
+
1259
1267
  attributesMap.key = Shapes::ShapeRef.new(shape: attributeName)
1260
1268
  attributesMap.value = Shapes::ShapeRef.new(shape: attributeValue)
1261
1269
 
@@ -552,8 +552,8 @@ module Aws::IoTFleetWise
552
552
  # @return [String]
553
553
  #
554
554
  # @!attribute [rw] signal_catalog_arn
555
- # (Optional) The Amazon Resource Name (ARN) of the signal catalog to
556
- # associate with the campaign.
555
+ # The Amazon Resource Name (ARN) of the signal catalog to associate
556
+ # with the campaign.
557
557
  # @return [String]
558
558
  #
559
559
  # @!attribute [rw] target_arn
@@ -2745,6 +2745,18 @@ module Aws::IoTFleetWise
2745
2745
  # created from a certain vehicle model.
2746
2746
  # @return [String]
2747
2747
  #
2748
+ # @!attribute [rw] attribute_names
2749
+ # The fully qualified names of the attributes. For example, the fully
2750
+ # qualified name of an attribute might be `Vehicle.Body.Engine.Type`.
2751
+ # @return [Array<String>]
2752
+ #
2753
+ # @!attribute [rw] attribute_values
2754
+ # Static information about a vehicle attribute value in string format.
2755
+ # For example:
2756
+ #
2757
+ # `"1.3 L R2"`
2758
+ # @return [Array<String>]
2759
+ #
2748
2760
  # @!attribute [rw] next_token
2749
2761
  # A pagination token for the next set of results.
2750
2762
  #
@@ -2761,6 +2773,8 @@ module Aws::IoTFleetWise
2761
2773
  #
2762
2774
  class ListVehiclesRequest < Struct.new(
2763
2775
  :model_manifest_arn,
2776
+ :attribute_names,
2777
+ :attribute_values,
2764
2778
  :next_token,
2765
2779
  :max_results)
2766
2780
  SENSITIVE = []
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-iotfleetwise/customizations'
53
53
  # @!group service
54
54
  module Aws::IoTFleetWise
55
55
 
56
- GEM_VERSION = '1.23.0'
56
+ GEM_VERSION = '1.24.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -846,6 +846,8 @@ module Aws
846
846
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_vehicles-instance_method
847
847
  def list_vehicles: (
848
848
  ?model_manifest_arn: ::String,
849
+ ?attribute_names: Array[::String],
850
+ ?attribute_values: Array[::String],
849
851
  ?next_token: ::String,
850
852
  ?max_results: ::Integer
851
853
  ) -> _ListVehiclesResponseSuccess
data/sig/types.rbs CHANGED
@@ -820,6 +820,8 @@ module Aws::IoTFleetWise
820
820
 
821
821
  class ListVehiclesRequest
822
822
  attr_accessor model_manifest_arn: ::String
823
+ attr_accessor attribute_names: ::Array[::String]
824
+ attr_accessor attribute_values: ::Array[::String]
823
825
  attr_accessor next_token: ::String
824
826
  attr_accessor max_results: ::Integer
825
827
  SENSITIVE: []
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.23.0
4
+ version: 1.24.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: 2024-05-13 00:00:00.000000000 Z
11
+ date: 2024-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core