aws-sdk-iotanalytics 1.75.0 → 1.77.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: b9b7b53911166d4b6d7fea9c10cb2a55665f32b9f7c342abc33c96d601f83534
4
- data.tar.gz: 7f9bbf1a32fc3c21cc3435af3053cc5258f141ca00823e9647b7578f0dc15f0e
3
+ metadata.gz: '082f08e334e5ecf60ee6c3048d5fe47e73726654c77ecee9720102d96166627b'
4
+ data.tar.gz: 1589048e078d5ab6d54d54830b54afce8aed70762dff3e96d3aa845effd90409
5
5
  SHA512:
6
- metadata.gz: 36b4106df759090631afc8cab4281a04932d9766d555fdce2d41c7556ffbd732eafbfba1e9b85dbd4fda1ccddfd5ff3891e722c086f5d2034aa487648867e591
7
- data.tar.gz: dfc885daf59c68547286c92542ffd44be33260af6bfdc602456f6896ca06e299d22568f2feba6cea2618fc71fc9a36c90291851d04ecc219a83807a1c7ded2d4
6
+ metadata.gz: cdf8fd4c9125bce2edb6df1493cb9a65b4826bc0eebb0e972a87a360b9c9a12e23c18915518fe0eef05f10db0592b412799cfccad92f4136f0c499cb68ffdcce
7
+ data.tar.gz: 95632c6e8a92fcc7a9066ae76f67f2a714350e4f682634953b515baac1ca6804e5f026edc37f7facf40509b4d216d04ce068c8cf40fdb54b185d95dcc9f2a483
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.77.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.76.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.75.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.75.0
1
+ 1.77.0
@@ -257,11 +257,34 @@ module Aws::IoTAnalytics
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.
@@ -453,8 +476,8 @@ module Aws::IoTAnalytics
453
476
  # The name of the channel where the messages are sent.
454
477
  #
455
478
  # @option params [required, Array<Types::Message>] :messages
456
- # The list of messages to be sent. Each message has the format: \\\{
457
- # "messageId": "string", "payload": "string"\\}.
479
+ # The list of messages to be sent. Each message has the format: \{
480
+ # "messageId": "string", "payload": "string"}.
458
481
  #
459
482
  # The field names of message payloads (data) that you send to IoT
460
483
  # Analytics:
@@ -474,9 +497,9 @@ module Aws::IoTAnalytics
474
497
  # * Are case insensitive. (Fields named foo and FOO in the same payload
475
498
  # are considered duplicates.)
476
499
  #
477
- # For example, \\\{"temp\_01": 29\\} or \\\{"\_temp\_01": 29\\} are
478
- # valid, but \\\{"temp-01": 29\\}, \\\{"01\_temp": 29\\} or
479
- # \\\{"\_\_temp\_01": 29\\} are invalid in message payloads.
500
+ # For example, \{"temp\_01": 29} or \{"\_temp\_01": 29} are valid,
501
+ # but \{"temp-01": 29}, \{"01\_temp": 29} or \{"\_\_temp\_01": 29}
502
+ # are invalid in message payloads.
480
503
  #
481
504
  # @return [Types::BatchPutMessageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
482
505
  #
@@ -943,8 +966,8 @@ module Aws::IoTAnalytics
943
966
  # a `channel` and a `datastore` activity. Each entry in the list must
944
967
  # contain only one activity. For example:
945
968
  #
946
- # `pipelineActivities = [ \{ "channel": \{ ... \} \}, \{ "lambda": \{
947
- # ... \} \}, ... ]`
969
+ # `pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... } },
970
+ # ... ]`
948
971
  #
949
972
  # @option params [Array<Types::Tag>] :tags
950
973
  # Metadata which can be used to manage the pipeline.
@@ -2263,8 +2286,8 @@ module Aws::IoTAnalytics
2263
2286
  # a `channel` and a `datastore` activity. Each entry in the list must
2264
2287
  # contain only one activity. For example:
2265
2288
  #
2266
- # `pipelineActivities = [ \{ "channel": \{ ... \} \}, \{ "lambda": \{
2267
- # ... \} \}, ... ]`
2289
+ # `pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... } },
2290
+ # ... ]`
2268
2291
  #
2269
2292
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2270
2293
  #
@@ -2360,7 +2383,7 @@ module Aws::IoTAnalytics
2360
2383
  tracer: tracer
2361
2384
  )
2362
2385
  context[:gem_name] = 'aws-sdk-iotanalytics'
2363
- context[:gem_version] = '1.75.0'
2386
+ context[:gem_version] = '1.77.0'
2364
2387
  Seahorse::Client::Request.new(handlers, context)
2365
2388
  end
2366
2389
 
@@ -67,8 +67,8 @@ module Aws::IoTAnalytics
67
67
  # @return [String]
68
68
  #
69
69
  # @!attribute [rw] messages
70
- # The list of messages to be sent. Each message has the format: \\\{
71
- # "messageId": "string", "payload": "string"\\}.
70
+ # The list of messages to be sent. Each message has the format: \{
71
+ # "messageId": "string", "payload": "string"}.
72
72
  #
73
73
  # The field names of message payloads (data) that you send to IoT
74
74
  # Analytics:
@@ -88,9 +88,9 @@ module Aws::IoTAnalytics
88
88
  # * Are case insensitive. (Fields named foo and FOO in the same
89
89
  # payload are considered duplicates.)
90
90
  #
91
- # For example, \\\{"temp\_01": 29\\} or \\\{"\_temp\_01": 29\\}
92
- # are valid, but \\\{"temp-01": 29\\}, \\\{"01\_temp": 29\\} or
93
- # \\\{"\_\_temp\_01": 29\\} are invalid in message payloads.
91
+ # For example, \{"temp\_01": 29} or \{"\_temp\_01": 29} are valid,
92
+ # but \{"temp-01": 29}, \{"01\_temp": 29} or \{"\_\_temp\_01":
93
+ # 29} are invalid in message payloads.
94
94
  # @return [Array<Types::Message>]
95
95
  #
96
96
  class BatchPutMessageRequest < Struct.new(
@@ -643,8 +643,8 @@ module Aws::IoTAnalytics
643
643
  # both a `channel` and a `datastore` activity. Each entry in the list
644
644
  # must contain only one activity. For example:
645
645
  #
646
- # `pipelineActivities = [ \{ "channel": \{ ... \} \}, \{ "lambda": \{
647
- # ... \} \}, ... ]`
646
+ # `pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... }
647
+ # }, ... ]`
648
648
  # @return [Array<Types::PipelineActivity>]
649
649
  #
650
650
  # @!attribute [rw] tags
@@ -2606,19 +2606,19 @@ module Aws::IoTAnalytics
2606
2606
  #
2607
2607
  # You can create a unique key with the following options:
2608
2608
  #
2609
- # * Use `!\{iotanalytics:scheduleTime\}` to insert the time of a
2609
+ # * Use `!{iotanalytics:scheduleTime}` to insert the time of a
2610
2610
  # scheduled SQL query run.
2611
2611
  #
2612
- # * Use `!\{iotanalytics:versionId\}` to insert a unique hash that
2612
+ # * Use `!{iotanalytics:versionId}` to insert a unique hash that
2613
2613
  # identifies a dataset content.
2614
2614
  #
2615
- # * Use `!\{iotanalytics:creationTime\}` to insert the creation time
2616
- # of a dataset content.
2615
+ # * Use `!{iotanalytics:creationTime}` to insert the creation time of
2616
+ # a dataset content.
2617
2617
  #
2618
2618
  # The following example creates a unique key for a CSV file:
2619
- # `dataset/mydataset/!\{iotanalytics:scheduleTime\}/!\{iotanalytics:versionId\}.csv`
2619
+ # `dataset/mydataset/!{iotanalytics:scheduleTime}/!{iotanalytics:versionId}.csv`
2620
2620
  #
2621
- # <note markdown="1"> If you don't use `!\{iotanalytics:versionId\}` to specify the key,
2621
+ # <note markdown="1"> If you don't use `!{iotanalytics:versionId}` to specify the key,
2622
2622
  # you might get duplicate keys. For example, you might have two
2623
2623
  # dataset contents with the same `scheduleTime` but different
2624
2624
  # `versionId`s. This means that one dataset content overwrites the
@@ -3071,8 +3071,8 @@ module Aws::IoTAnalytics
3071
3071
  # both a `channel` and a `datastore` activity. Each entry in the list
3072
3072
  # must contain only one activity. For example:
3073
3073
  #
3074
- # `pipelineActivities = [ \{ "channel": \{ ... \} \}, \{ "lambda": \{
3075
- # ... \} \}, ... ]`
3074
+ # `pipelineActivities = [ { "channel": { ... } }, { "lambda": { ... }
3075
+ # }, ... ]`
3076
3076
  # @return [Array<Types::PipelineActivity>]
3077
3077
  #
3078
3078
  class UpdatePipelineRequest < Struct.new(
@@ -54,7 +54,7 @@ module Aws::IoTAnalytics
54
54
  autoload :EndpointProvider, 'aws-sdk-iotanalytics/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-iotanalytics/endpoints'
56
56
 
57
- GEM_VERSION = '1.75.0'
57
+ GEM_VERSION = '1.77.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-iotanalytics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.75.0
4
+ version: 1.77.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