aws-sdk-timestreaminfluxdb 1.16.0 → 1.18.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: acd64d6f630ec44075640d97d9373a60d373872e6697da01ddcbc4fc2fa6efa5
4
- data.tar.gz: e1e98fb62d9779f655990a8c99f9b997f8a27eb6013b06fe43ee0c3f7bbac07c
3
+ metadata.gz: dfb34b37e482ecfa4cbcdc7711fc8e248f1b03b079861b7864a74b38802b27d1
4
+ data.tar.gz: 4d8dfccc63bcc8c440dc16d9a5e4f03fb1694868d0790938be9f77556d4ce8eb
5
5
  SHA512:
6
- metadata.gz: 8d6ca4a342826487db64edb523bbf4c4eb1410231649f5852ce9556df5daeb5b03d414bef1cb219b0c96dceb8ba989b1729895795a6653db77f4d66f7102c6e4
7
- data.tar.gz: 45c256d4d77ee5826fb4c1398e7f4ad4b705e0282c72826057c8e2b146b8bdc8fff8cfcdcccfe65f5ad4040cb9d0b31b05312122e80e2e2956872c5661928a18
6
+ metadata.gz: 51da67bdb4632c7f78696c8c2339f188a51a112cc1713c41cb9ae5cd866f96d3f25c187920f30435af730eb516b612044dac89c8677f524987fe02409646d785
7
+ data.tar.gz: f84e7874955c223f5432f3b70a9619645158b4b458f6ffd8775abf82344b315335ecd7070376d31f3ce18365422e65d665c1fc76723e147b26989c38aba4eebc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.18.0 (2025-01-28)
5
+ ------------------
6
+
7
+ * Feature - Adds 'allocatedStorage' parameter to UpdateDbInstance API that allows increasing the database instance storage size and 'dbStorageType' parameter to UpdateDbInstance API that allows changing the storage type of the database instance
8
+
9
+ 1.17.0 (2025-01-15)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.16.0 (2024-12-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.18.0
@@ -257,11 +257,34 @@ module Aws::TimestreamInfluxDB
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.
@@ -1212,6 +1235,14 @@ module Aws::TimestreamInfluxDB
1212
1235
  # Specifies whether the DB instance will be deployed as a standalone
1213
1236
  # instance or with a Multi-AZ standby for high availability.
1214
1237
  #
1238
+ # @option params [String] :db_storage_type
1239
+ # The Timestream for InfluxDB DB storage type that InfluxDB stores data
1240
+ # on.
1241
+ #
1242
+ # @option params [Integer] :allocated_storage
1243
+ # The amount of storage to allocate for your DB storage type (in
1244
+ # gibibytes).
1245
+ #
1215
1246
  # @return [Types::UpdateDbInstanceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1216
1247
  #
1217
1248
  # * {Types::UpdateDbInstanceOutput#id #id} => String
@@ -1248,6 +1279,8 @@ module Aws::TimestreamInfluxDB
1248
1279
  # port: 1,
1249
1280
  # db_instance_type: "db.influx.medium", # accepts db.influx.medium, db.influx.large, db.influx.xlarge, db.influx.2xlarge, db.influx.4xlarge, db.influx.8xlarge, db.influx.12xlarge, db.influx.16xlarge
1250
1281
  # deployment_type: "SINGLE_AZ", # accepts SINGLE_AZ, WITH_MULTIAZ_STANDBY
1282
+ # db_storage_type: "InfluxIOIncludedT1", # accepts InfluxIOIncludedT1, InfluxIOIncludedT2, InfluxIOIncludedT3
1283
+ # allocated_storage: 1,
1251
1284
  # })
1252
1285
  #
1253
1286
  # @example Response structure
@@ -1302,7 +1335,7 @@ module Aws::TimestreamInfluxDB
1302
1335
  tracer: tracer
1303
1336
  )
1304
1337
  context[:gem_name] = 'aws-sdk-timestreaminfluxdb'
1305
- context[:gem_version] = '1.16.0'
1338
+ context[:gem_version] = '1.18.0'
1306
1339
  Seahorse::Client::Request.new(handlers, context)
1307
1340
  end
1308
1341
 
@@ -361,6 +361,8 @@ module Aws::TimestreamInfluxDB
361
361
  UpdateDbInstanceInput.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
362
362
  UpdateDbInstanceInput.add_member(:db_instance_type, Shapes::ShapeRef.new(shape: DbInstanceType, location_name: "dbInstanceType"))
363
363
  UpdateDbInstanceInput.add_member(:deployment_type, Shapes::ShapeRef.new(shape: DeploymentType, location_name: "deploymentType"))
364
+ UpdateDbInstanceInput.add_member(:db_storage_type, Shapes::ShapeRef.new(shape: DbStorageType, location_name: "dbStorageType"))
365
+ UpdateDbInstanceInput.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: AllocatedStorage, location_name: "allocatedStorage"))
364
366
  UpdateDbInstanceInput.struct_class = Types::UpdateDbInstanceInput
365
367
 
366
368
  UpdateDbInstanceOutput.add_member(:id, Shapes::ShapeRef.new(shape: DbInstanceId, required: true, location_name: "id"))
@@ -1400,6 +1400,16 @@ module Aws::TimestreamInfluxDB
1400
1400
  # instance or with a Multi-AZ standby for high availability.
1401
1401
  # @return [String]
1402
1402
  #
1403
+ # @!attribute [rw] db_storage_type
1404
+ # The Timestream for InfluxDB DB storage type that InfluxDB stores
1405
+ # data on.
1406
+ # @return [String]
1407
+ #
1408
+ # @!attribute [rw] allocated_storage
1409
+ # The amount of storage to allocate for your DB storage type (in
1410
+ # gibibytes).
1411
+ # @return [Integer]
1412
+ #
1403
1413
  # @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/UpdateDbInstanceInput AWS API Documentation
1404
1414
  #
1405
1415
  class UpdateDbInstanceInput < Struct.new(
@@ -1408,7 +1418,9 @@ module Aws::TimestreamInfluxDB
1408
1418
  :db_parameter_group_identifier,
1409
1419
  :port,
1410
1420
  :db_instance_type,
1411
- :deployment_type)
1421
+ :deployment_type,
1422
+ :db_storage_type,
1423
+ :allocated_storage)
1412
1424
  SENSITIVE = []
1413
1425
  include Aws::Structure
1414
1426
  end
@@ -54,7 +54,7 @@ module Aws::TimestreamInfluxDB
54
54
  autoload :EndpointProvider, 'aws-sdk-timestreaminfluxdb/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-timestreaminfluxdb/endpoints'
56
56
 
57
- GEM_VERSION = '1.16.0'
57
+ GEM_VERSION = '1.18.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),
@@ -355,7 +357,9 @@ module Aws
355
357
  ?db_parameter_group_identifier: ::String,
356
358
  ?port: ::Integer,
357
359
  ?db_instance_type: ("db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge"),
358
- ?deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
360
+ ?deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY"),
361
+ ?db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3"),
362
+ ?allocated_storage: ::Integer
359
363
  ) -> _UpdateDbInstanceResponseSuccess
360
364
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDbInstanceResponseSuccess
361
365
  end
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),
data/sig/types.rbs CHANGED
@@ -316,6 +316,8 @@ module Aws::TimestreamInfluxDB
316
316
  attr_accessor port: ::Integer
317
317
  attr_accessor db_instance_type: ("db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge")
318
318
  attr_accessor deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
319
+ attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
320
+ attr_accessor allocated_storage: ::Integer
319
321
  SENSITIVE: []
320
322
  end
321
323
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-timestreaminfluxdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.18.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-12-11 00:00:00.000000000 Z
11
+ date: 2025-01-28 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