aws-sdk-iotfleetwise 1.18.0 → 1.19.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: cf99aca93e70a90f51a19d7ddbf0b61b68915eb77fe57b16d470a49db00f041a
4
- data.tar.gz: 677ffa6f6ad5adffe2042a42aac4ab4152a17bb5c57c7de4f3b8661dc29f5507
3
+ metadata.gz: babe385c9eddef847e81777ab8d07d0f994342381c09b49f959fb340c884e444
4
+ data.tar.gz: e4266ceacbc20a5e4198d1b232d97b456bd7bc28d9f0f0d866a2de3c9ad45e5c
5
5
  SHA512:
6
- metadata.gz: 0c8746a0012156a439b88c421968bf7f635ddd9b4d59a0cdf75896c4b89823ac8472401f5612213822f7294748ae18a51a3db0bca27843d9261958fadec86c23
7
- data.tar.gz: 242394e8771b7676f8775dcbb887fea6afdca73cad443a83cc8c76a2f5f665824a124ec2f9201871e7f1918cb42a1df81a63780b1f9fd5cadc5fd9ab63c1f574
6
+ metadata.gz: 07635b7bf90877db00748991e0b9d0d7e4c789c2044c641dc8e086f7466c1792c7c654890de2c8e7140990fcc5c731628e4f6899221c1c4665c30840438ffd81
7
+ data.tar.gz: be2b990a1c183701dc874adc725ef8357bc731c0503b63555be6a2b4112133cd3d3070efe68e13f548695235a4892f214114165b5ba2bbdba1e9ebb07d72229f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.19.0 (2024-01-11)
5
+ ------------------
6
+
7
+ * Feature - The following dataTypes have been removed: CUSTOMER_DECODED_INTERFACE in NetworkInterfaceType; CUSTOMER_DECODED_SIGNAL_INFO_IS_NULL in SignalDecoderFailureReason; CUSTOMER_DECODED_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL in NetworkInterfaceFailureReason; CUSTOMER_DECODED_SIGNAL in SignalDecoderType
8
+
4
9
  1.18.0 (2023-11-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.18.0
1
+ 1.19.0
@@ -772,7 +772,7 @@ module Aws::IoTFleetWise
772
772
  # signal_decoders: [
773
773
  # {
774
774
  # fully_qualified_name: "FullyQualifiedName", # required
775
- # type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL, CUSTOMER_DECODED_SIGNAL
775
+ # type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL
776
776
  # interface_id: "InterfaceId", # required
777
777
  # can_signal: {
778
778
  # message_id: 1, # required
@@ -829,7 +829,7 @@ module Aws::IoTFleetWise
829
829
  # network_interfaces: [
830
830
  # {
831
831
  # interface_id: "InterfaceId", # required
832
- # type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE, CUSTOMER_DECODED_INTERFACE
832
+ # type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE
833
833
  # can_interface: {
834
834
  # name: "CanInterfaceName", # required
835
835
  # protocol_name: "ProtocolName",
@@ -2012,7 +2012,7 @@ module Aws::IoTFleetWise
2012
2012
  #
2013
2013
  # resp.network_interfaces #=> Array
2014
2014
  # resp.network_interfaces[0].interface_id #=> String
2015
- # resp.network_interfaces[0].type #=> String, one of "CAN_INTERFACE", "OBD_INTERFACE", "VEHICLE_MIDDLEWARE", "CUSTOMER_DECODED_INTERFACE"
2015
+ # resp.network_interfaces[0].type #=> String, one of "CAN_INTERFACE", "OBD_INTERFACE", "VEHICLE_MIDDLEWARE"
2016
2016
  # resp.network_interfaces[0].can_interface.name #=> String
2017
2017
  # resp.network_interfaces[0].can_interface.protocol_name #=> String
2018
2018
  # resp.network_interfaces[0].can_interface.protocol_version #=> String
@@ -2076,7 +2076,7 @@ module Aws::IoTFleetWise
2076
2076
  #
2077
2077
  # resp.signal_decoders #=> Array
2078
2078
  # resp.signal_decoders[0].fully_qualified_name #=> String
2079
- # resp.signal_decoders[0].type #=> String, one of "CAN_SIGNAL", "OBD_SIGNAL", "MESSAGE_SIGNAL", "CUSTOMER_DECODED_SIGNAL"
2079
+ # resp.signal_decoders[0].type #=> String, one of "CAN_SIGNAL", "OBD_SIGNAL", "MESSAGE_SIGNAL"
2080
2080
  # resp.signal_decoders[0].interface_id #=> String
2081
2081
  # resp.signal_decoders[0].can_signal.message_id #=> Integer
2082
2082
  # resp.signal_decoders[0].can_signal.is_big_endian #=> Boolean
@@ -3039,7 +3039,7 @@ module Aws::IoTFleetWise
3039
3039
  # signal_decoders_to_add: [
3040
3040
  # {
3041
3041
  # fully_qualified_name: "FullyQualifiedName", # required
3042
- # type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL, CUSTOMER_DECODED_SIGNAL
3042
+ # type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL
3043
3043
  # interface_id: "InterfaceId", # required
3044
3044
  # can_signal: {
3045
3045
  # message_id: 1, # required
@@ -3096,7 +3096,7 @@ module Aws::IoTFleetWise
3096
3096
  # signal_decoders_to_update: [
3097
3097
  # {
3098
3098
  # fully_qualified_name: "FullyQualifiedName", # required
3099
- # type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL, CUSTOMER_DECODED_SIGNAL
3099
+ # type: "CAN_SIGNAL", # required, accepts CAN_SIGNAL, OBD_SIGNAL, MESSAGE_SIGNAL
3100
3100
  # interface_id: "InterfaceId", # required
3101
3101
  # can_signal: {
3102
3102
  # message_id: 1, # required
@@ -3154,7 +3154,7 @@ module Aws::IoTFleetWise
3154
3154
  # network_interfaces_to_add: [
3155
3155
  # {
3156
3156
  # interface_id: "InterfaceId", # required
3157
- # type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE, CUSTOMER_DECODED_INTERFACE
3157
+ # type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE
3158
3158
  # can_interface: {
3159
3159
  # name: "CanInterfaceName", # required
3160
3160
  # protocol_name: "ProtocolName",
@@ -3178,7 +3178,7 @@ module Aws::IoTFleetWise
3178
3178
  # network_interfaces_to_update: [
3179
3179
  # {
3180
3180
  # interface_id: "InterfaceId", # required
3181
- # type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE, CUSTOMER_DECODED_INTERFACE
3181
+ # type: "CAN_INTERFACE", # required, accepts CAN_INTERFACE, OBD_INTERFACE, VEHICLE_MIDDLEWARE
3182
3182
  # can_interface: {
3183
3183
  # name: "CanInterfaceName", # required
3184
3184
  # protocol_name: "ProtocolName",
@@ -3537,7 +3537,7 @@ module Aws::IoTFleetWise
3537
3537
  params: params,
3538
3538
  config: config)
3539
3539
  context[:gem_name] = 'aws-sdk-iotfleetwise'
3540
- context[:gem_version] = '1.18.0'
3540
+ context[:gem_version] = '1.19.0'
3541
3541
  Seahorse::Client::Request.new(handlers, context)
3542
3542
  end
3543
3543
 
@@ -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.18.0'
56
+ GEM_VERSION = '1.19.0'
57
57
 
58
58
  end
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.18.0
4
+ version: 1.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -73,7 +73,7 @@ licenses:
73
73
  metadata:
74
74
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotfleetwise
75
75
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotfleetwise/CHANGELOG.md
76
- post_install_message:
76
+ post_install_message:
77
77
  rdoc_options: []
78
78
  require_paths:
79
79
  - lib
@@ -88,8 +88,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  requirements: []
91
- rubygems_version: 3.1.6
92
- signing_key:
91
+ rubygems_version: 3.4.10
92
+ signing_key:
93
93
  specification_version: 4
94
94
  summary: AWS SDK for Ruby - AWS IoT FleetWise
95
95
  test_files: []