aws-sdk-iotfleetwise 1.22.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: e13fc397407e133075ec05fd0494d1ef3ac8844eca68608a94d3830df0f9d262
4
- data.tar.gz: 071dbd7dd69990c955dda8c56b7b3c30c754e8c7fcd73e17393d706d1c2e3c61
3
+ metadata.gz: 02f956f61c126df6d9c169ea2ff913fa89817e4e7f592e82da0b07b223a195d0
4
+ data.tar.gz: be37acc9966ad192a983a9bcaa4df1f4d40c3e2a629b9e3898bf3862b8e9df8f
5
5
  SHA512:
6
- metadata.gz: 95f92c859ea7bf55db143f8533affcd3ba93f1ccf0f489901ed1b1cae99148b6c369b3f5e84720e02c71dbf124fe8743cdd1c162b7eee42119c9a89c962fc927
7
- data.tar.gz: fd5df935a0b61bf51431369a802433a3bfe82effb9fd7bcf5eb5e1a3b8bef390c1377cd5e34bedbd382f5bd2d586c79f5fcd72b722f98542d3c13bc93c195ca1
6
+ metadata.gz: 5752bfd84d697ca9925a7aeebdb5730ad35437948744080a21776afef04234bb490d0980ca8520ff16953ac88f6eb466c5a653bd1df40fffe1c677c53dedb862
7
+ data.tar.gz: 68ec8ec9d6ec9c54986de14adbd3c9e2db115d68352d0a57da832ec7f21760b305f191571adc38cc287a406aa4963593be3ff255ac6e374247aa35096fa304d0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.23.0 (2024-05-13)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.22.0 (2024-04-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.24.0
@@ -301,8 +301,9 @@ module Aws::IoTFleetWise
301
301
  #
302
302
  # @option options [String] :sdk_ua_app_id
303
303
  # A unique and opaque application ID that is appended to the
304
- # User-Agent header as app/<sdk_ua_app_id>. It should have a
305
- # maximum length of 50.
304
+ # User-Agent header as app/sdk_ua_app_id. It should have a
305
+ # maximum length of 50. This variable is sourced from environment
306
+ # variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
306
307
  #
307
308
  # @option options [String] :secret_access_key
308
309
  #
@@ -587,8 +588,8 @@ module Aws::IoTFleetWise
587
588
  # An optional description of the campaign to help identify its purpose.
588
589
  #
589
590
  # @option params [required, String] :signal_catalog_arn
590
- # (Optional) The Amazon Resource Name (ARN) of the signal catalog to
591
- # associate with the campaign.
591
+ # The Amazon Resource Name (ARN) of the signal catalog to associate with
592
+ # the campaign.
592
593
  #
593
594
  # @option params [required, String] :target_arn
594
595
  # The ARN of the vehicle or fleet to deploy a campaign to.
@@ -2655,6 +2656,16 @@ module Aws::IoTFleetWise
2655
2656
  # You can use this optional parameter to list only the vehicles created
2656
2657
  # from a certain vehicle model.
2657
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
+ #
2658
2669
  # @option params [String] :next_token
2659
2670
  # A pagination token for the next set of results.
2660
2671
  #
@@ -2678,6 +2689,8 @@ module Aws::IoTFleetWise
2678
2689
  #
2679
2690
  # resp = client.list_vehicles({
2680
2691
  # model_manifest_arn: "arn",
2692
+ # attribute_names: ["attributeName"],
2693
+ # attribute_values: ["attributeValue"],
2681
2694
  # next_token: "nextToken",
2682
2695
  # max_results: 1,
2683
2696
  # })
@@ -3567,7 +3580,7 @@ module Aws::IoTFleetWise
3567
3580
  params: params,
3568
3581
  config: config)
3569
3582
  context[:gem_name] = 'aws-sdk-iotfleetwise'
3570
- context[:gem_version] = '1.22.0'
3583
+ context[:gem_version] = '1.24.0'
3571
3584
  Seahorse::Client::Request.new(handlers, context)
3572
3585
  end
3573
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.22.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.22.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-04-25 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