aws-sdk-timestreaminfluxdb 1.17.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: b770ac902e533a305e9d2f17983815270a0394a3c33325fc5a4baf0728853d76
4
- data.tar.gz: 941baf751806b2577ff80e12be6a7576d4ecc6f9cdd5d0b1965f7aa6e338d6c3
3
+ metadata.gz: dfb34b37e482ecfa4cbcdc7711fc8e248f1b03b079861b7864a74b38802b27d1
4
+ data.tar.gz: 4d8dfccc63bcc8c440dc16d9a5e4f03fb1694868d0790938be9f77556d4ce8eb
5
5
  SHA512:
6
- metadata.gz: c2c0655c8be7262322c21a713a0e850b43e9f34e62a12b0b720bd3ac646cdab0022232a0dd1256f7a3630140a438ed6d6cc6e6d09a3f7243ef68476e29fe9bfd
7
- data.tar.gz: 8b9f9b15216255363908dc643dedb72321ba17eebdc2af6a4575154004d2e46a0614612d2ede191aca7223f25c4c7b9e0c3891ce2397a9f8481f035e17d90066
6
+ metadata.gz: 51da67bdb4632c7f78696c8c2339f188a51a112cc1713c41cb9ae5cd866f96d3f25c187920f30435af730eb516b612044dac89c8677f524987fe02409646d785
7
+ data.tar.gz: f84e7874955c223f5432f3b70a9619645158b4b458f6ffd8775abf82344b315335ecd7070376d31f3ce18365422e65d665c1fc76723e147b26989c38aba4eebc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.17.0 (2025-01-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.0
1
+ 1.18.0
@@ -1235,6 +1235,14 @@ module Aws::TimestreamInfluxDB
1235
1235
  # Specifies whether the DB instance will be deployed as a standalone
1236
1236
  # instance or with a Multi-AZ standby for high availability.
1237
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
+ #
1238
1246
  # @return [Types::UpdateDbInstanceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1239
1247
  #
1240
1248
  # * {Types::UpdateDbInstanceOutput#id #id} => String
@@ -1271,6 +1279,8 @@ module Aws::TimestreamInfluxDB
1271
1279
  # port: 1,
1272
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
1273
1281
  # deployment_type: "SINGLE_AZ", # accepts SINGLE_AZ, WITH_MULTIAZ_STANDBY
1282
+ # db_storage_type: "InfluxIOIncludedT1", # accepts InfluxIOIncludedT1, InfluxIOIncludedT2, InfluxIOIncludedT3
1283
+ # allocated_storage: 1,
1274
1284
  # })
1275
1285
  #
1276
1286
  # @example Response structure
@@ -1325,7 +1335,7 @@ module Aws::TimestreamInfluxDB
1325
1335
  tracer: tracer
1326
1336
  )
1327
1337
  context[:gem_name] = 'aws-sdk-timestreaminfluxdb'
1328
- context[:gem_version] = '1.17.0'
1338
+ context[:gem_version] = '1.18.0'
1329
1339
  Seahorse::Client::Request.new(handlers, context)
1330
1340
  end
1331
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.17.0'
57
+ GEM_VERSION = '1.18.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -357,7 +357,9 @@ module Aws
357
357
  ?db_parameter_group_identifier: ::String,
358
358
  ?port: ::Integer,
359
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"),
360
- ?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
361
363
  ) -> _UpdateDbInstanceResponseSuccess
362
364
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDbInstanceResponseSuccess
363
365
  end
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.17.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: 2025-01-15 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