aws-sdk-iotevents 1.60.0 → 1.62.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: 49c0ab1693e410def6be70ce473466335b6b1b699408e0fde02ea4be1b9b5c53
4
- data.tar.gz: c1a0aab279f525cf9ad6eef29f8ec2dd837c85745094c92d040247f2dfc4728c
3
+ metadata.gz: 1738ca2df430490f3f0544a1a22f9fe2b774aa95c3599655fc53f8517ef46fb0
4
+ data.tar.gz: 2618c9f5c12eba296a33dcc9047a8b9f79faa6ad7489b622f54a6e4a1e17547d
5
5
  SHA512:
6
- metadata.gz: 41c402ac45a85bd7eae012f1bcfca1a55e48bb7f9a0e8cea9ebf14d465f5ffece4728b50d6085512a240d6599ac8f5f2a3c0bb73c2185a7b256b9ddc9380368f
7
- data.tar.gz: 43f9238101af568d16d4d9fece94e72e659afebc2d6adfae2b029985f8a9c128479f2aac02c0fed12e57aa186a5ba278de15903faa296e9813a7c745d3c7345c
6
+ metadata.gz: ade5517cb4c6f35daa3177d1356595c86743b49d75d790a913e226f22ebcfcdf6ad9a182af2c21891208f1791efd5f7bd64429c2c61ab263e8ab7e771fa3ae52
7
+ data.tar.gz: 37b4671f6a4811a0f7bd94a798fe5b636993bbc0c66990655921b5695c7c3745f6e3df031725c51cd2d5a56bf442c5cf11e71dddfbf0c4b952e954d54c8945d5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.62.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.61.0 (2024-11-06)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.60.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.60.0
1
+ 1.62.0
@@ -257,11 +257,34 @@ module Aws::IoTEvents
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -3508,7 +3531,7 @@ module Aws::IoTEvents
3508
3531
  tracer: tracer
3509
3532
  )
3510
3533
  context[:gem_name] = 'aws-sdk-iotevents'
3511
- context[:gem_version] = '1.60.0'
3534
+ context[:gem_version] = '1.62.0'
3512
3535
  Seahorse::Client::Request.new(handlers, context)
3513
3536
  end
3514
3537
 
@@ -183,15 +183,15 @@ module Aws::IoTEvents
183
183
  # For example, the value for the `hashKeyField` parameter can be
184
184
  # `$input.GreenhouseInput.name`.
185
185
  #
186
- # * For a substitution template, you must use `$\{\}`, and the
187
- # template must be in single quotes. A substitution template can
188
- # also contain a combination of literals, operators, functions,
189
- # references, and substitution templates.
186
+ # * For a substitution template, you must use `${}`, and the template
187
+ # must be in single quotes. A substitution template can also contain
188
+ # a combination of literals, operators, functions, references, and
189
+ # substitution templates.
190
190
  #
191
191
  # In the following example, the value for the `hashKeyValue`
192
192
  # parameter uses a substitution template.
193
193
  #
194
- # `'$\{$input.GreenhouseInput.temperature * 6 / 5 + 32\} in
194
+ # `'${$input.GreenhouseInput.temperature * 6 / 5 + 32} in
195
195
  # Fahrenheit'`
196
196
  #
197
197
  # * For a string concatenation, you must use `+`. A string
@@ -239,17 +239,17 @@ module Aws::IoTEvents
239
239
  # For example, the value for the `tableName` parameter can be
240
240
  # `$variable.ddbtableName`.
241
241
  #
242
- # * For a substitution template, you must use `$\{\}`, and the
243
- # template must be in single quotes. A substitution template can
244
- # also contain a combination of literals, operators, functions,
245
- # references, and substitution templates.
242
+ # * For a substitution template, you must use `${}`, and the template
243
+ # must be in single quotes. A substitution template can also contain
244
+ # a combination of literals, operators, functions, references, and
245
+ # substitution templates.
246
246
  #
247
247
  # In the following example, the value for the `contentExpression`
248
248
  # parameter in `Payload` uses a substitution template.
249
249
  #
250
- # `'\{"sensorID": "$\{$input.GreenhouseInput.sensor_id\}",
251
- # "temperature": "$\{$input.GreenhouseInput.temperature * 9 / 5 +
252
- # 32\}"\}'`
250
+ # `'{"sensorID": "${$input.GreenhouseInput.sensor_id}",
251
+ # "temperature": "${$input.GreenhouseInput.temperature * 9 / 5 +
252
+ # 32}"}'`
253
253
  #
254
254
  # * For a string concatenation, you must use `+`. A string
255
255
  # concatenation can also contain a combination of literals,
@@ -290,16 +290,16 @@ module Aws::IoTEvents
290
290
  # For example, the value for the `assetId` parameter can be
291
291
  # `$input.TurbineInput.assetId1`.
292
292
  #
293
- # * For a substitution template, you must use `$\{\}`, and the
294
- # template must be in single quotes. A substitution template can
295
- # also contain a combination of literals, operators, functions,
296
- # references, and substitution templates.
293
+ # * For a substitution template, you must use `${}`, and the template
294
+ # must be in single quotes. A substitution template can also contain
295
+ # a combination of literals, operators, functions, references, and
296
+ # substitution templates.
297
297
  #
298
298
  # In the following example, the value for the `propertyAlias`
299
299
  # parameter uses a substitution template.
300
300
  #
301
- # `'company/windfarm/$\{$input.TemperatureInput.sensorData.windfarmID\}/turbine/
302
- # $\{$input.TemperatureInput.sensorData.turbineID\}/temperature'`
301
+ # `'company/windfarm/${$input.TemperatureInput.sensorData.windfarmID}/turbine/
302
+ # ${$input.TemperatureInput.sensorData.turbineID}/temperature'`
303
303
  #
304
304
  # You must specify either `propertyAlias` or both `assetId` and
305
305
  # `propertyId` to identify the target asset property in AWS IoT
@@ -587,7 +587,7 @@ module Aws::IoTEvents
587
587
  # For example, the value for the `offsetInNanos` parameter can be
588
588
  # `$variable.time`.
589
589
  #
590
- # * For a substitution template, you must use `$\{\}`, and the template
590
+ # * For a substitution template, you must use `${}`, and the template
591
591
  # must be in single quotes. A substitution template can also contain a
592
592
  # combination of literals, operators, functions, references, and
593
593
  # substitution templates.
@@ -595,7 +595,7 @@ module Aws::IoTEvents
595
595
  # In the following example, the value for the `timeInSeconds`
596
596
  # parameter uses a substitution template.
597
597
  #
598
- # `'$\{$input.TemperatureInput.sensorData.timestamp / 1000\}'`
598
+ # `'${$input.TemperatureInput.sensorData.timestamp / 1000}'`
599
599
  #
600
600
  # For more information, see [Expressions][2] in the *AWS IoT Events
601
601
  # Developer Guide*.
@@ -684,7 +684,7 @@ module Aws::IoTEvents
684
684
  # example, the value for the `booleanValue` parameter can be
685
685
  # `$variable.offline`.
686
686
  #
687
- # * For a substitution template, you must use `$\{\}`, and the template
687
+ # * For a substitution template, you must use `${}`, and the template
688
688
  # must be in single quotes. A substitution template can also contain a
689
689
  # combination of literals, operators, functions, references, and
690
690
  # substitution templates.
@@ -692,7 +692,7 @@ module Aws::IoTEvents
692
692
  # In the following example, the value for the `doubleValue` parameter
693
693
  # uses a substitution template.
694
694
  #
695
- # `'$\{$input.TemperatureInput.sensorData.temperature * 6 / 5 + 32\}'`
695
+ # `'${$input.TemperatureInput.sensorData.temperature * 6 / 5 + 32}'`
696
696
  #
697
697
  # For more information, see [Expressions][2] in the *AWS IoT Events
698
698
  # Developer Guide*.
@@ -1457,7 +1457,7 @@ module Aws::IoTEvents
1457
1457
  # For example, the value for the `hashKeyField` parameter can be
1458
1458
  # `$input.GreenhouseInput.name`.
1459
1459
  #
1460
- # * For a substitution template, you must use `$\{\}`, and the template
1460
+ # * For a substitution template, you must use `${}`, and the template
1461
1461
  # must be in single quotes. A substitution template can also contain a
1462
1462
  # combination of literals, operators, functions, references, and
1463
1463
  # substitution templates.
@@ -1465,8 +1465,7 @@ module Aws::IoTEvents
1465
1465
  # In the following example, the value for the `hashKeyValue` parameter
1466
1466
  # uses a substitution template.
1467
1467
  #
1468
- # `'$\{$input.GreenhouseInput.temperature * 6 / 5 + 32\} in
1469
- # Fahrenheit'`
1468
+ # `'${$input.GreenhouseInput.temperature * 6 / 5 + 32} in Fahrenheit'`
1470
1469
  #
1471
1470
  # * For a string concatenation, you must use `+`. A string concatenation
1472
1471
  # can also contain a combination of literals, operators, functions,
@@ -1614,7 +1613,7 @@ module Aws::IoTEvents
1614
1613
  # For example, the value for the `tableName` parameter can be
1615
1614
  # `$variable.ddbtableName`.
1616
1615
  #
1617
- # * For a substitution template, you must use `$\{\}`, and the template
1616
+ # * For a substitution template, you must use `${}`, and the template
1618
1617
  # must be in single quotes. A substitution template can also contain a
1619
1618
  # combination of literals, operators, functions, references, and
1620
1619
  # substitution templates.
@@ -1622,9 +1621,9 @@ module Aws::IoTEvents
1622
1621
  # In the following example, the value for the `contentExpression`
1623
1622
  # parameter in `Payload` uses a substitution template.
1624
1623
  #
1625
- # `'\{"sensorID": "$\{$input.GreenhouseInput.sensor_id\}",
1626
- # "temperature": "$\{$input.GreenhouseInput.temperature * 9 / 5 +
1627
- # 32\}"\}'`
1624
+ # `'{"sensorID": "${$input.GreenhouseInput.sensor_id}",
1625
+ # "temperature": "${$input.GreenhouseInput.temperature * 9 / 5 +
1626
+ # 32}"}'`
1628
1627
  #
1629
1628
  # * For a string concatenation, you must use `+`. A string concatenation
1630
1629
  # can also contain a combination of literals, operators, functions,
@@ -2045,7 +2044,7 @@ module Aws::IoTEvents
2045
2044
  # For example, the value for the `assetId` parameter can be
2046
2045
  # `$input.TurbineInput.assetId1`.
2047
2046
  #
2048
- # * For a substitution template, you must use `$\{\}`, and the template
2047
+ # * For a substitution template, you must use `${}`, and the template
2049
2048
  # must be in single quotes. A substitution template can also contain a
2050
2049
  # combination of literals, operators, functions, references, and
2051
2050
  # substitution templates.
@@ -2053,8 +2052,8 @@ module Aws::IoTEvents
2053
2052
  # In the following example, the value for the `propertyAlias`
2054
2053
  # parameter uses a substitution template.
2055
2054
  #
2056
- # `'company/windfarm/$\{$input.TemperatureInput.sensorData.windfarmID\}/turbine/
2057
- # $\{$input.TemperatureInput.sensorData.turbineID\}/temperature'`
2055
+ # `'company/windfarm/${$input.TemperatureInput.sensorData.windfarmID}/turbine/
2056
+ # ${$input.TemperatureInput.sensorData.turbineID}/temperature'`
2058
2057
  #
2059
2058
  # You must specify either `propertyAlias` or both `assetId` and
2060
2059
  # `propertyId` to identify the target asset property in AWS IoT
@@ -2541,7 +2540,7 @@ module Aws::IoTEvents
2541
2540
  # includes quoted strings (`'<string>'`), variables
2542
2541
  # (`$variable.<variable-name>`), input values
2543
2542
  # (`$input.<input-name>.<path-to-datum>`), string concatenations, and
2544
- # quoted strings that contain `$\{\}` as the content. The recommended
2543
+ # quoted strings that contain `${}` as the content. The recommended
2545
2544
  # maximum size of a content expression is 1 KB.
2546
2545
  # @return [String]
2547
2546
  #
@@ -54,7 +54,7 @@ module Aws::IoTEvents
54
54
  autoload :EndpointProvider, 'aws-sdk-iotevents/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-iotevents/endpoints'
56
56
 
57
- GEM_VERSION = '1.60.0'
57
+ GEM_VERSION = '1.62.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotevents
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.60.0
4
+ version: 1.62.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-10-18 00:00:00.000000000 Z
11
+ date: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement