aws-sdk-timestreamwrite 1.62.0 → 1.64.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: 67f5beab2e132f19ce8058f02503c1feda74faaf37d44dff53d6fc5483b1619b
4
- data.tar.gz: 9413abf9cbf4077946b21b77e8b17475c1b3bd6192e168064ec3d75fec245714
3
+ metadata.gz: cfb95c1a76d4753740ef86ac9863ec5334a9a6af260b9ac20714981ab4cfcfbb
4
+ data.tar.gz: 6e10549cc4258fabd08a352a5365310b3c5332c537ba1924bf96dea62bbab046
5
5
  SHA512:
6
- metadata.gz: 45bad20e1c0f1f7fc9c95ffa97649e88fe3144b996f8ac9785e94e641d0b3ee686b9e151c21435486360c29870de3515ca468cc1b8bd8476d3477ab3839cfc09
7
- data.tar.gz: 7431cce83f8b08c88b03c0ff931814cf029aa8e2c56960dc9ee37c5e743e7a79d3414f77ca352bcb1fa47de349a78274f5a8b4560fbd2f50223cf53d671a4e64
6
+ metadata.gz: 2a8d64851ac413e0d22da892ab7bf62534f04fac637f617fe073643973755f099d8a064d03aed4db0e7aa8ad489b3f91cebde2a041e96977d16382fad828b97f
7
+ data.tar.gz: c13358b6a4c2c89a9982a02dd92646684ffbe514a932c5a44cc9a29d1af6bf351f012940f539c563d4770ae2afc2eb2c4db8bf36d46dd76cfddde3f9371a761a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.64.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.63.0 (2026-05-19)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.62.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.64.0
@@ -199,7 +199,7 @@ module Aws::TimestreamWrite
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::TimestreamWrite
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -1684,7 +1682,7 @@ module Aws::TimestreamWrite
1684
1682
  tracer: tracer
1685
1683
  )
1686
1684
  context[:gem_name] = 'aws-sdk-timestreamwrite'
1687
- context[:gem_version] = '1.62.0'
1685
+ context[:gem_version] = '1.64.0'
1688
1686
  Seahorse::Client::Request.new(handlers, context)
1689
1687
  end
1690
1688
 
@@ -54,7 +54,7 @@ module Aws::TimestreamWrite
54
54
  autoload :EndpointProvider, 'aws-sdk-timestreamwrite/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-timestreamwrite/endpoints'
56
56
 
57
- GEM_VERSION = '1.62.0'
57
+ GEM_VERSION = '1.64.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -94,7 +94,7 @@ module Aws
94
94
  {
95
95
  source_column: ::String?,
96
96
  destination_column: ::String?
97
- },
97
+ }
98
98
  ],
99
99
  multi_measure_mappings: {
100
100
  target_multi_measure_name: ::String?,
@@ -103,7 +103,7 @@ module Aws
103
103
  source_column: ::String,
104
104
  target_multi_measure_attribute_name: ::String?,
105
105
  measure_value_type: ("DOUBLE" | "BIGINT" | "BOOLEAN" | "VARCHAR" | "TIMESTAMP")?
106
- },
106
+ }
107
107
  ]
108
108
  }?,
109
109
  mixed_measure_mappings: Array[
@@ -117,9 +117,9 @@ module Aws
117
117
  source_column: ::String,
118
118
  target_multi_measure_attribute_name: ::String?,
119
119
  measure_value_type: ("DOUBLE" | "BIGINT" | "BOOLEAN" | "VARCHAR" | "TIMESTAMP")?
120
- },
120
+ }
121
121
  ]?
122
- },
122
+ }
123
123
  ]?,
124
124
  measure_name_column: ::String?
125
125
  }?,
@@ -168,7 +168,7 @@ module Aws
168
168
  {
169
169
  key: ::String,
170
170
  value: ::String
171
- },
171
+ }
172
172
  ]
173
173
  ) -> _CreateDatabaseResponseSuccess
174
174
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatabaseResponseSuccess
@@ -189,26 +189,16 @@ module Aws
189
189
  {
190
190
  key: ::String,
191
191
  value: ::String
192
- },
192
+ }
193
193
  ],
194
- ?magnetic_store_write_properties: {
195
- enable_magnetic_store_writes: bool,
196
- magnetic_store_rejected_data_location: {
197
- s3_configuration: {
198
- bucket_name: ::String?,
199
- object_key_prefix: ::String?,
200
- encryption_option: ("SSE_S3" | "SSE_KMS")?,
201
- kms_key_id: ::String?
202
- }?
203
- }?
204
- },
194
+ ?magnetic_store_write_properties: Params::magnetic_store_write_properties,
205
195
  ?schema: {
206
196
  composite_partition_key: Array[
207
197
  {
208
198
  type: ("DIMENSION" | "MEASURE"),
209
199
  name: ::String?,
210
200
  enforcement_in_record: ("REQUIRED" | "OPTIONAL")?
211
- },
201
+ }
212
202
  ]?
213
203
  }
214
204
  ) -> _CreateTableResponseSuccess
@@ -334,7 +324,7 @@ module Aws
334
324
  {
335
325
  key: ::String,
336
326
  value: ::String
337
- },
327
+ }
338
328
  ]
339
329
  ) -> _TagResourceResponseSuccess
340
330
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
@@ -372,24 +362,14 @@ module Aws
372
362
  memory_store_retention_period_in_hours: ::Integer,
373
363
  magnetic_store_retention_period_in_days: ::Integer
374
364
  },
375
- ?magnetic_store_write_properties: {
376
- enable_magnetic_store_writes: bool,
377
- magnetic_store_rejected_data_location: {
378
- s3_configuration: {
379
- bucket_name: ::String?,
380
- object_key_prefix: ::String?,
381
- encryption_option: ("SSE_S3" | "SSE_KMS")?,
382
- kms_key_id: ::String?
383
- }?
384
- }?
385
- },
365
+ ?magnetic_store_write_properties: Params::magnetic_store_write_properties,
386
366
  ?schema: {
387
367
  composite_partition_key: Array[
388
368
  {
389
369
  type: ("DIMENSION" | "MEASURE"),
390
370
  name: ::String?,
391
371
  enforcement_in_record: ("REQUIRED" | "OPTIONAL")?
392
- },
372
+ }
393
373
  ]?
394
374
  }
395
375
  ) -> _UpdateTableResponseSuccess
@@ -403,51 +383,9 @@ module Aws
403
383
  def write_records: (
404
384
  database_name: ::String,
405
385
  table_name: ::String,
406
- ?common_attributes: {
407
- dimensions: Array[
408
- {
409
- name: ::String,
410
- value: ::String,
411
- dimension_value_type: ("VARCHAR")?
412
- },
413
- ]?,
414
- measure_name: ::String?,
415
- measure_value: ::String?,
416
- measure_value_type: ("DOUBLE" | "BIGINT" | "VARCHAR" | "BOOLEAN" | "TIMESTAMP" | "MULTI")?,
417
- time: ::String?,
418
- time_unit: ("MILLISECONDS" | "SECONDS" | "MICROSECONDS" | "NANOSECONDS")?,
419
- version: ::Integer?,
420
- measure_values: Array[
421
- {
422
- name: ::String,
423
- value: ::String,
424
- type: ("DOUBLE" | "BIGINT" | "VARCHAR" | "BOOLEAN" | "TIMESTAMP" | "MULTI")
425
- },
426
- ]?
427
- },
386
+ ?common_attributes: Params::record,
428
387
  records: Array[
429
- {
430
- dimensions: Array[
431
- {
432
- name: ::String,
433
- value: ::String,
434
- dimension_value_type: ("VARCHAR")?
435
- },
436
- ]?,
437
- measure_name: ::String?,
438
- measure_value: ::String?,
439
- measure_value_type: ("DOUBLE" | "BIGINT" | "VARCHAR" | "BOOLEAN" | "TIMESTAMP" | "MULTI")?,
440
- time: ::String?,
441
- time_unit: ("MILLISECONDS" | "SECONDS" | "MICROSECONDS" | "NANOSECONDS")?,
442
- version: ::Integer?,
443
- measure_values: Array[
444
- {
445
- name: ::String,
446
- value: ::String,
447
- type: ("DOUBLE" | "BIGINT" | "VARCHAR" | "BOOLEAN" | "TIMESTAMP" | "MULTI")
448
- },
449
- ]?
450
- },
388
+ Params::record
451
389
  ]
452
390
  ) -> _WriteRecordsResponseSuccess
453
391
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _WriteRecordsResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,50 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module TimestreamWrite
10
+ module Params
11
+ type magnetic_store_rejected_data_location = {
12
+ s3_configuration: {
13
+ bucket_name: ::String?,
14
+ object_key_prefix: ::String?,
15
+ encryption_option: ("SSE_S3" | "SSE_KMS")?,
16
+ kms_key_id: ::String?
17
+ }?
18
+ }
19
+
20
+ type magnetic_store_write_properties = {
21
+ enable_magnetic_store_writes: bool,
22
+ magnetic_store_rejected_data_location: Params::magnetic_store_rejected_data_location?
23
+ }
24
+
25
+ type record = {
26
+ dimensions: Array[
27
+ {
28
+ name: ::String,
29
+ value: ::String,
30
+ dimension_value_type: ("VARCHAR")?
31
+ }
32
+ ]?,
33
+ measure_name: ::String?,
34
+ measure_value: ::String?,
35
+ measure_value_type: ("DOUBLE" | "BIGINT" | "VARCHAR" | "BOOLEAN" | "TIMESTAMP" | "MULTI")?,
36
+ time: ::String?,
37
+ time_unit: ("MILLISECONDS" | "SECONDS" | "MICROSECONDS" | "NANOSECONDS")?,
38
+ version: ::Integer?,
39
+ measure_values: Array[
40
+ {
41
+ name: ::String,
42
+ value: ::String,
43
+ type: ("DOUBLE" | "BIGINT" | "VARCHAR" | "BOOLEAN" | "TIMESTAMP" | "MULTI")
44
+ }
45
+ ]?
46
+ }
47
+
48
+ end
49
+ end
50
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-timestreamwrite
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.62.0
4
+ version: 1.64.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.247.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-timestreamwrite/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs