aws-sdk-timestreaminfluxdb 1.15.0 → 1.17.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: 26673082334bc573c54252d85fc9f3a8a5584c9fb7ffddb21a21a094ba8aef7e
4
- data.tar.gz: 648391e58efa1c633b18a0dec1ea7396531514bffe6506686d802ad25dde14b8
3
+ metadata.gz: b770ac902e533a305e9d2f17983815270a0394a3c33325fc5a4baf0728853d76
4
+ data.tar.gz: 941baf751806b2577ff80e12be6a7576d4ecc6f9cdd5d0b1965f7aa6e338d6c3
5
5
  SHA512:
6
- metadata.gz: 56afa3fc76a79b038c437ad23d84761d7e70db2cc86acb2e20cd97b39ad63098cb03a666a4c691e1d490e174a03a015248b70c1959b675565f2f95e86a7bf116
7
- data.tar.gz: 77d7dfff8334c335743d9df9a75e21c91811d6c57d0f9fdb72de33637bb3691e612e26cdfecc891122d40e64d198296b6245537f0451dcc7ebff4f5d06ca9b00
6
+ metadata.gz: c2c0655c8be7262322c21a713a0e850b43e9f34e62a12b0b720bd3ac646cdab0022232a0dd1256f7a3630140a438ed6d6cc6e6d09a3f7243ef68476e29fe9bfd
7
+ data.tar.gz: 8b9f9b15216255363908dc643dedb72321ba17eebdc2af6a4575154004d2e46a0614612d2ede191aca7223f25c4c7b9e0c3891ce2397a9f8481f035e17d90066
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.17.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.16.0 (2024-12-11)
10
+ ------------------
11
+
12
+ * Feature - Adds networkType parameter to CreateDbInstance API which allows IPv6 support to the InfluxDB endpoint
13
+
4
14
  1.15.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.15.0
1
+ 1.17.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.
@@ -475,7 +498,7 @@ module Aws::TimestreamInfluxDB
475
498
  # password will allow you to access the InfluxDB UI to perform various
476
499
  # administrative tasks and also use the InfluxDB CLI to create an
477
500
  # operator token. These attributes will be stored in a Secret created in
478
- # AWS SecretManager in your account.
501
+ # Amazon Web Services SecretManager in your account.
479
502
  #
480
503
  # @option params [String] :organization
481
504
  # The name of the initial organization for the initial admin user in
@@ -545,6 +568,11 @@ module Aws::TimestreamInfluxDB
545
568
  # Constraints: The value can't be 2375-2376, 7788-7799, 8090, or
546
569
  # 51678-51680
547
570
  #
571
+ # @option params [String] :network_type
572
+ # Specifies whether the networkType of the Timestream for InfluxDB
573
+ # instance is IPV4, which can communicate over IPv4 protocol only, or
574
+ # DUAL, which can communicate over both IPv4 and IPv6 protocols.
575
+ #
548
576
  # @return [Types::CreateDbInstanceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
549
577
  #
550
578
  # * {Types::CreateDbInstanceOutput#id #id} => String
@@ -553,6 +581,7 @@ module Aws::TimestreamInfluxDB
553
581
  # * {Types::CreateDbInstanceOutput#status #status} => String
554
582
  # * {Types::CreateDbInstanceOutput#endpoint #endpoint} => String
555
583
  # * {Types::CreateDbInstanceOutput#port #port} => Integer
584
+ # * {Types::CreateDbInstanceOutput#network_type #network_type} => String
556
585
  # * {Types::CreateDbInstanceOutput#db_instance_type #db_instance_type} => String
557
586
  # * {Types::CreateDbInstanceOutput#db_storage_type #db_storage_type} => String
558
587
  # * {Types::CreateDbInstanceOutput#allocated_storage #allocated_storage} => Integer
@@ -592,6 +621,7 @@ module Aws::TimestreamInfluxDB
592
621
  # "TagKey" => "TagValue",
593
622
  # },
594
623
  # port: 1,
624
+ # network_type: "IPV4", # accepts IPV4, DUAL
595
625
  # })
596
626
  #
597
627
  # @example Response structure
@@ -602,6 +632,7 @@ module Aws::TimestreamInfluxDB
602
632
  # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "MODIFYING", "UPDATING", "DELETED", "FAILED", "UPDATING_DEPLOYMENT_TYPE", "UPDATING_INSTANCE_TYPE"
603
633
  # resp.endpoint #=> String
604
634
  # resp.port #=> Integer
635
+ # resp.network_type #=> String, one of "IPV4", "DUAL"
605
636
  # resp.db_instance_type #=> String, one of "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", "db.influx.16xlarge"
606
637
  # resp.db_storage_type #=> String, one of "InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"
607
638
  # resp.allocated_storage #=> Integer
@@ -794,6 +825,7 @@ module Aws::TimestreamInfluxDB
794
825
  # * {Types::DeleteDbInstanceOutput#status #status} => String
795
826
  # * {Types::DeleteDbInstanceOutput#endpoint #endpoint} => String
796
827
  # * {Types::DeleteDbInstanceOutput#port #port} => Integer
828
+ # * {Types::DeleteDbInstanceOutput#network_type #network_type} => String
797
829
  # * {Types::DeleteDbInstanceOutput#db_instance_type #db_instance_type} => String
798
830
  # * {Types::DeleteDbInstanceOutput#db_storage_type #db_storage_type} => String
799
831
  # * {Types::DeleteDbInstanceOutput#allocated_storage #allocated_storage} => Integer
@@ -821,6 +853,7 @@ module Aws::TimestreamInfluxDB
821
853
  # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "MODIFYING", "UPDATING", "DELETED", "FAILED", "UPDATING_DEPLOYMENT_TYPE", "UPDATING_INSTANCE_TYPE"
822
854
  # resp.endpoint #=> String
823
855
  # resp.port #=> Integer
856
+ # resp.network_type #=> String, one of "IPV4", "DUAL"
824
857
  # resp.db_instance_type #=> String, one of "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", "db.influx.16xlarge"
825
858
  # resp.db_storage_type #=> String, one of "InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"
826
859
  # resp.allocated_storage #=> Integer
@@ -859,6 +892,7 @@ module Aws::TimestreamInfluxDB
859
892
  # * {Types::GetDbInstanceOutput#status #status} => String
860
893
  # * {Types::GetDbInstanceOutput#endpoint #endpoint} => String
861
894
  # * {Types::GetDbInstanceOutput#port #port} => Integer
895
+ # * {Types::GetDbInstanceOutput#network_type #network_type} => String
862
896
  # * {Types::GetDbInstanceOutput#db_instance_type #db_instance_type} => String
863
897
  # * {Types::GetDbInstanceOutput#db_storage_type #db_storage_type} => String
864
898
  # * {Types::GetDbInstanceOutput#allocated_storage #allocated_storage} => Integer
@@ -886,6 +920,7 @@ module Aws::TimestreamInfluxDB
886
920
  # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "MODIFYING", "UPDATING", "DELETED", "FAILED", "UPDATING_DEPLOYMENT_TYPE", "UPDATING_INSTANCE_TYPE"
887
921
  # resp.endpoint #=> String
888
922
  # resp.port #=> Integer
923
+ # resp.network_type #=> String, one of "IPV4", "DUAL"
889
924
  # resp.db_instance_type #=> String, one of "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", "db.influx.16xlarge"
890
925
  # resp.db_storage_type #=> String, one of "InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"
891
926
  # resp.allocated_storage #=> Integer
@@ -1023,6 +1058,7 @@ module Aws::TimestreamInfluxDB
1023
1058
  # resp.items[0].status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "MODIFYING", "UPDATING", "DELETED", "FAILED", "UPDATING_DEPLOYMENT_TYPE", "UPDATING_INSTANCE_TYPE"
1024
1059
  # resp.items[0].endpoint #=> String
1025
1060
  # resp.items[0].port #=> Integer
1061
+ # resp.items[0].network_type #=> String, one of "IPV4", "DUAL"
1026
1062
  # resp.items[0].db_instance_type #=> String, one of "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", "db.influx.16xlarge"
1027
1063
  # resp.items[0].db_storage_type #=> String, one of "InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"
1028
1064
  # resp.items[0].allocated_storage #=> Integer
@@ -1207,6 +1243,7 @@ module Aws::TimestreamInfluxDB
1207
1243
  # * {Types::UpdateDbInstanceOutput#status #status} => String
1208
1244
  # * {Types::UpdateDbInstanceOutput#endpoint #endpoint} => String
1209
1245
  # * {Types::UpdateDbInstanceOutput#port #port} => Integer
1246
+ # * {Types::UpdateDbInstanceOutput#network_type #network_type} => String
1210
1247
  # * {Types::UpdateDbInstanceOutput#db_instance_type #db_instance_type} => String
1211
1248
  # * {Types::UpdateDbInstanceOutput#db_storage_type #db_storage_type} => String
1212
1249
  # * {Types::UpdateDbInstanceOutput#allocated_storage #allocated_storage} => Integer
@@ -1244,6 +1281,7 @@ module Aws::TimestreamInfluxDB
1244
1281
  # resp.status #=> String, one of "CREATING", "AVAILABLE", "DELETING", "MODIFYING", "UPDATING", "DELETED", "FAILED", "UPDATING_DEPLOYMENT_TYPE", "UPDATING_INSTANCE_TYPE"
1245
1282
  # resp.endpoint #=> String
1246
1283
  # resp.port #=> Integer
1284
+ # resp.network_type #=> String, one of "IPV4", "DUAL"
1247
1285
  # resp.db_instance_type #=> String, one of "db.influx.medium", "db.influx.large", "db.influx.xlarge", "db.influx.2xlarge", "db.influx.4xlarge", "db.influx.8xlarge", "db.influx.12xlarge", "db.influx.16xlarge"
1248
1286
  # resp.db_storage_type #=> String, one of "InfluxIOIncludedT1", "InfluxIOIncludedT2", "InfluxIOIncludedT3"
1249
1287
  # resp.allocated_storage #=> Integer
@@ -1287,7 +1325,7 @@ module Aws::TimestreamInfluxDB
1287
1325
  tracer: tracer
1288
1326
  )
1289
1327
  context[:gem_name] = 'aws-sdk-timestreaminfluxdb'
1290
- context[:gem_version] = '1.15.0'
1328
+ context[:gem_version] = '1.17.0'
1291
1329
  Seahorse::Client::Request.new(handlers, context)
1292
1330
  end
1293
1331
 
@@ -76,6 +76,7 @@ module Aws::TimestreamInfluxDB
76
76
  LogDeliveryConfiguration = Shapes::StructureShape.new(name: 'LogDeliveryConfiguration')
77
77
  LogLevel = Shapes::StringShape.new(name: 'LogLevel')
78
78
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
79
+ NetworkType = Shapes::StringShape.new(name: 'NetworkType')
79
80
  NextToken = Shapes::StringShape.new(name: 'NextToken')
80
81
  Organization = Shapes::StringShape.new(name: 'Organization')
81
82
  Parameters = Shapes::UnionShape.new(name: 'Parameters')
@@ -130,6 +131,7 @@ module Aws::TimestreamInfluxDB
130
131
  CreateDbInstanceInput.add_member(:log_delivery_configuration, Shapes::ShapeRef.new(shape: LogDeliveryConfiguration, location_name: "logDeliveryConfiguration"))
131
132
  CreateDbInstanceInput.add_member(:tags, Shapes::ShapeRef.new(shape: RequestTagMap, location_name: "tags"))
132
133
  CreateDbInstanceInput.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
134
+ CreateDbInstanceInput.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
133
135
  CreateDbInstanceInput.struct_class = Types::CreateDbInstanceInput
134
136
 
135
137
  CreateDbInstanceOutput.add_member(:id, Shapes::ShapeRef.new(shape: DbInstanceId, required: true, location_name: "id"))
@@ -138,6 +140,7 @@ module Aws::TimestreamInfluxDB
138
140
  CreateDbInstanceOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
139
141
  CreateDbInstanceOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
140
142
  CreateDbInstanceOutput.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
143
+ CreateDbInstanceOutput.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
141
144
  CreateDbInstanceOutput.add_member(:db_instance_type, Shapes::ShapeRef.new(shape: DbInstanceType, location_name: "dbInstanceType"))
142
145
  CreateDbInstanceOutput.add_member(:db_storage_type, Shapes::ShapeRef.new(shape: DbStorageType, location_name: "dbStorageType"))
143
146
  CreateDbInstanceOutput.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: AllocatedStorage, location_name: "allocatedStorage"))
@@ -171,6 +174,7 @@ module Aws::TimestreamInfluxDB
171
174
  DbInstanceSummary.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
172
175
  DbInstanceSummary.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
173
176
  DbInstanceSummary.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
177
+ DbInstanceSummary.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
174
178
  DbInstanceSummary.add_member(:db_instance_type, Shapes::ShapeRef.new(shape: DbInstanceType, location_name: "dbInstanceType"))
175
179
  DbInstanceSummary.add_member(:db_storage_type, Shapes::ShapeRef.new(shape: DbStorageType, location_name: "dbStorageType"))
176
180
  DbInstanceSummary.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: AllocatedStorage, location_name: "allocatedStorage"))
@@ -196,6 +200,7 @@ module Aws::TimestreamInfluxDB
196
200
  DeleteDbInstanceOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
197
201
  DeleteDbInstanceOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
198
202
  DeleteDbInstanceOutput.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
203
+ DeleteDbInstanceOutput.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
199
204
  DeleteDbInstanceOutput.add_member(:db_instance_type, Shapes::ShapeRef.new(shape: DbInstanceType, location_name: "dbInstanceType"))
200
205
  DeleteDbInstanceOutput.add_member(:db_storage_type, Shapes::ShapeRef.new(shape: DbStorageType, location_name: "dbStorageType"))
201
206
  DeleteDbInstanceOutput.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: AllocatedStorage, location_name: "allocatedStorage"))
@@ -223,6 +228,7 @@ module Aws::TimestreamInfluxDB
223
228
  GetDbInstanceOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
224
229
  GetDbInstanceOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
225
230
  GetDbInstanceOutput.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
231
+ GetDbInstanceOutput.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
226
232
  GetDbInstanceOutput.add_member(:db_instance_type, Shapes::ShapeRef.new(shape: DbInstanceType, location_name: "dbInstanceType"))
227
233
  GetDbInstanceOutput.add_member(:db_storage_type, Shapes::ShapeRef.new(shape: DbStorageType, location_name: "dbStorageType"))
228
234
  GetDbInstanceOutput.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: AllocatedStorage, location_name: "allocatedStorage"))
@@ -363,6 +369,7 @@ module Aws::TimestreamInfluxDB
363
369
  UpdateDbInstanceOutput.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
364
370
  UpdateDbInstanceOutput.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "endpoint"))
365
371
  UpdateDbInstanceOutput.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
372
+ UpdateDbInstanceOutput.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
366
373
  UpdateDbInstanceOutput.add_member(:db_instance_type, Shapes::ShapeRef.new(shape: DbInstanceType, location_name: "dbInstanceType"))
367
374
  UpdateDbInstanceOutput.add_member(:db_storage_type, Shapes::ShapeRef.new(shape: DbStorageType, location_name: "dbStorageType"))
368
375
  UpdateDbInstanceOutput.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: AllocatedStorage, location_name: "allocatedStorage"))
@@ -528,6 +535,7 @@ module Aws::TimestreamInfluxDB
528
535
  o.http_request_uri = "/"
529
536
  o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
530
537
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
538
+ o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
531
539
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
532
540
  end)
533
541
 
@@ -71,7 +71,7 @@ module Aws::TimestreamInfluxDB
71
71
  # password will allow you to access the InfluxDB UI to perform various
72
72
  # administrative tasks and also use the InfluxDB CLI to create an
73
73
  # operator token. These attributes will be stored in a Secret created
74
- # in AWS SecretManager in your account.
74
+ # in Amazon Web Services SecretManager in your account.
75
75
  # @return [String]
76
76
  #
77
77
  # @!attribute [rw] organization
@@ -156,6 +156,12 @@ module Aws::TimestreamInfluxDB
156
156
  # 51678-51680
157
157
  # @return [Integer]
158
158
  #
159
+ # @!attribute [rw] network_type
160
+ # Specifies whether the networkType of the Timestream for InfluxDB
161
+ # instance is IPV4, which can communicate over IPv4 protocol only, or
162
+ # DUAL, which can communicate over both IPv4 and IPv6 protocols.
163
+ # @return [String]
164
+ #
159
165
  # @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/CreateDbInstanceInput AWS API Documentation
160
166
  #
161
167
  class CreateDbInstanceInput < Struct.new(
@@ -174,7 +180,8 @@ module Aws::TimestreamInfluxDB
174
180
  :deployment_type,
175
181
  :log_delivery_configuration,
176
182
  :tags,
177
- :port)
183
+ :port,
184
+ :network_type)
178
185
  SENSITIVE = [:username, :password]
179
186
  include Aws::Structure
180
187
  end
@@ -207,6 +214,12 @@ module Aws::TimestreamInfluxDB
207
214
  # value is 8086.
208
215
  # @return [Integer]
209
216
  #
217
+ # @!attribute [rw] network_type
218
+ # Specifies whether the networkType of the Timestream for InfluxDB
219
+ # instance is IPV4, which can communicate over IPv4 protocol only, or
220
+ # DUAL, which can communicate over both IPv4 and IPv6 protocols.
221
+ # @return [String]
222
+ #
210
223
  # @!attribute [rw] db_instance_type
211
224
  # The Timestream for InfluxDB instance type that InfluxDB runs on.
212
225
  # @return [String]
@@ -257,10 +270,11 @@ module Aws::TimestreamInfluxDB
257
270
  # @return [Types::LogDeliveryConfiguration]
258
271
  #
259
272
  # @!attribute [rw] influx_auth_parameters_secret_arn
260
- # The Amazon Resource Name (ARN) of the AWS Secrets Manager secret
261
- # containing the initial InfluxDB authorization parameters. The secret
262
- # value is a JSON formatted key-value pair holding InfluxDB
263
- # authorization values: organization, bucket, username, and password.
273
+ # The Amazon Resource Name (ARN) of the Amazon Web Services Secrets
274
+ # Manager secret containing the initial InfluxDB authorization
275
+ # parameters. The secret value is a JSON formatted key-value pair
276
+ # holding InfluxDB authorization values: organization, bucket,
277
+ # username, and password.
264
278
  # @return [String]
265
279
  #
266
280
  # @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/CreateDbInstanceOutput AWS API Documentation
@@ -272,6 +286,7 @@ module Aws::TimestreamInfluxDB
272
286
  :status,
273
287
  :endpoint,
274
288
  :port,
289
+ :network_type,
275
290
  :db_instance_type,
276
291
  :db_storage_type,
277
292
  :allocated_storage,
@@ -358,8 +373,8 @@ module Aws::TimestreamInfluxDB
358
373
  #
359
374
  # @!attribute [rw] name
360
375
  # This customer-supplied name uniquely identifies the DB instance when
361
- # interacting with the Amazon Timestream for InfluxDB API and AWS CLI
362
- # commands.
376
+ # interacting with the Amazon Timestream for InfluxDB API and Amazon
377
+ # Web Services CLI commands.
363
378
  # @return [String]
364
379
  #
365
380
  # @!attribute [rw] arn
@@ -379,6 +394,12 @@ module Aws::TimestreamInfluxDB
379
394
  # The port number on which InfluxDB accepts connections.
380
395
  # @return [Integer]
381
396
  #
397
+ # @!attribute [rw] network_type
398
+ # Specifies whether the networkType of the Timestream for InfluxDB
399
+ # instance is IPV4, which can communicate over IPv4 protocol only, or
400
+ # DUAL, which can communicate over both IPv4 and IPv6 protocols.
401
+ # @return [String]
402
+ #
382
403
  # @!attribute [rw] db_instance_type
383
404
  # The Timestream for InfluxDB instance type to run InfluxDB on.
384
405
  # @return [String]
@@ -405,6 +426,7 @@ module Aws::TimestreamInfluxDB
405
426
  :status,
406
427
  :endpoint,
407
428
  :port,
429
+ :network_type,
408
430
  :db_instance_type,
409
431
  :db_storage_type,
410
432
  :allocated_storage,
@@ -481,6 +503,12 @@ module Aws::TimestreamInfluxDB
481
503
  # The port number on which InfluxDB accepts connections.
482
504
  # @return [Integer]
483
505
  #
506
+ # @!attribute [rw] network_type
507
+ # Specifies whether the networkType of the Timestream for InfluxDB
508
+ # instance is IPV4, which can communicate over IPv4 protocol only, or
509
+ # DUAL, which can communicate over both IPv4 and IPv6 protocols.
510
+ # @return [String]
511
+ #
484
512
  # @!attribute [rw] db_instance_type
485
513
  # The Timestream for InfluxDB instance type that InfluxDB runs on.
486
514
  # @return [String]
@@ -531,10 +559,11 @@ module Aws::TimestreamInfluxDB
531
559
  # @return [Types::LogDeliveryConfiguration]
532
560
  #
533
561
  # @!attribute [rw] influx_auth_parameters_secret_arn
534
- # The Amazon Resource Name (ARN) of the AWS Secrets Manager secret
535
- # containing the initial InfluxDB authorization parameters. The secret
536
- # value is a JSON formatted key-value pair holding InfluxDB
537
- # authorization values: organization, bucket, username, and password.
562
+ # The Amazon Resource Name (ARN) of the Amazon Web Services Secrets
563
+ # Manager secret containing the initial InfluxDB authorization
564
+ # parameters. The secret value is a JSON formatted key-value pair
565
+ # holding InfluxDB authorization values: organization, bucket,
566
+ # username, and password.
538
567
  # @return [String]
539
568
  #
540
569
  # @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/DeleteDbInstanceOutput AWS API Documentation
@@ -546,6 +575,7 @@ module Aws::TimestreamInfluxDB
546
575
  :status,
547
576
  :endpoint,
548
577
  :port,
578
+ :network_type,
549
579
  :db_instance_type,
550
580
  :db_storage_type,
551
581
  :allocated_storage,
@@ -620,6 +650,12 @@ module Aws::TimestreamInfluxDB
620
650
  # The port number on which InfluxDB accepts connections.
621
651
  # @return [Integer]
622
652
  #
653
+ # @!attribute [rw] network_type
654
+ # Specifies whether the networkType of the Timestream for InfluxDB
655
+ # instance is IPV4, which can communicate over IPv4 protocol only, or
656
+ # DUAL, which can communicate over both IPv4 and IPv6 protocols.
657
+ # @return [String]
658
+ #
623
659
  # @!attribute [rw] db_instance_type
624
660
  # The Timestream for InfluxDB instance type that InfluxDB runs on.
625
661
  # @return [String]
@@ -670,10 +706,11 @@ module Aws::TimestreamInfluxDB
670
706
  # @return [Types::LogDeliveryConfiguration]
671
707
  #
672
708
  # @!attribute [rw] influx_auth_parameters_secret_arn
673
- # The Amazon Resource Name (ARN) of the AWS Secrets Manager secret
674
- # containing the initial InfluxDB authorization parameters. The secret
675
- # value is a JSON formatted key-value pair holding InfluxDB
676
- # authorization values: organization, bucket, username, and password.
709
+ # The Amazon Resource Name (ARN) of the Amazon Web Services Secrets
710
+ # Manager secret containing the initial InfluxDB authorization
711
+ # parameters. The secret value is a JSON formatted key-value pair
712
+ # holding InfluxDB authorization values: organization, bucket,
713
+ # username, and password.
677
714
  # @return [String]
678
715
  #
679
716
  # @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/GetDbInstanceOutput AWS API Documentation
@@ -685,6 +722,7 @@ module Aws::TimestreamInfluxDB
685
722
  :status,
686
723
  :endpoint,
687
724
  :port,
725
+ :network_type,
688
726
  :db_instance_type,
689
727
  :db_storage_type,
690
728
  :allocated_storage,
@@ -1381,8 +1419,8 @@ module Aws::TimestreamInfluxDB
1381
1419
  #
1382
1420
  # @!attribute [rw] name
1383
1421
  # This customer-supplied name uniquely identifies the DB instance when
1384
- # interacting with the Amazon Timestream for InfluxDB API and AWS CLI
1385
- # commands.
1422
+ # interacting with the Amazon Timestream for InfluxDB API and Amazon
1423
+ # Web Services CLI commands.
1386
1424
  # @return [String]
1387
1425
  #
1388
1426
  # @!attribute [rw] arn
@@ -1402,6 +1440,12 @@ module Aws::TimestreamInfluxDB
1402
1440
  # The port number on which InfluxDB accepts connections.
1403
1441
  # @return [Integer]
1404
1442
  #
1443
+ # @!attribute [rw] network_type
1444
+ # Specifies whether the networkType of the Timestream for InfluxDB
1445
+ # instance is IPV4, which can communicate over IPv4 protocol only, or
1446
+ # DUAL, which can communicate over both IPv4 and IPv6 protocols.
1447
+ # @return [String]
1448
+ #
1405
1449
  # @!attribute [rw] db_instance_type
1406
1450
  # The Timestream for InfluxDB instance type that InfluxDB runs on.
1407
1451
  # @return [String]
@@ -1452,10 +1496,11 @@ module Aws::TimestreamInfluxDB
1452
1496
  # @return [Types::LogDeliveryConfiguration]
1453
1497
  #
1454
1498
  # @!attribute [rw] influx_auth_parameters_secret_arn
1455
- # The Amazon Resource Name (ARN) of the AWS Secrets Manager secret
1456
- # containing the initial InfluxDB authorization parameters. The secret
1457
- # value is a JSON formatted key-value pair holding InfluxDB
1458
- # authorization values: organization, bucket, username, and password.
1499
+ # The Amazon Resource Name (ARN) of the Amazon Web Services Secrets
1500
+ # Manager secret containing the initial InfluxDB authorization
1501
+ # parameters. The secret value is a JSON formatted key-value pair
1502
+ # holding InfluxDB authorization values: organization, bucket,
1503
+ # username, and password.
1459
1504
  # @return [String]
1460
1505
  #
1461
1506
  # @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/UpdateDbInstanceOutput AWS API Documentation
@@ -1467,6 +1512,7 @@ module Aws::TimestreamInfluxDB
1467
1512
  :status,
1468
1513
  :endpoint,
1469
1514
  :port,
1515
+ :network_type,
1470
1516
  :db_instance_type,
1471
1517
  :db_storage_type,
1472
1518
  :allocated_storage,
@@ -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.15.0'
57
+ GEM_VERSION = '1.17.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),
@@ -84,6 +86,7 @@ module Aws
84
86
  def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
85
87
  def endpoint: () -> ::String
86
88
  def port: () -> ::Integer
89
+ def network_type: () -> ("IPV4" | "DUAL")
87
90
  def 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")
88
91
  def db_storage_type: () -> ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
89
92
  def allocated_storage: () -> ::Integer
@@ -119,7 +122,8 @@ module Aws
119
122
  }
120
123
  },
121
124
  ?tags: Hash[::String, ::String],
122
- ?port: ::Integer
125
+ ?port: ::Integer,
126
+ ?network_type: ("IPV4" | "DUAL")
123
127
  ) -> _CreateDbInstanceResponseSuccess
124
128
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDbInstanceResponseSuccess
125
129
 
@@ -209,6 +213,7 @@ module Aws
209
213
  def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
210
214
  def endpoint: () -> ::String
211
215
  def port: () -> ::Integer
216
+ def network_type: () -> ("IPV4" | "DUAL")
212
217
  def 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")
213
218
  def db_storage_type: () -> ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
214
219
  def allocated_storage: () -> ::Integer
@@ -236,6 +241,7 @@ module Aws
236
241
  def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
237
242
  def endpoint: () -> ::String
238
243
  def port: () -> ::Integer
244
+ def network_type: () -> ("IPV4" | "DUAL")
239
245
  def 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")
240
246
  def db_storage_type: () -> ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
241
247
  def allocated_storage: () -> ::Integer
@@ -325,6 +331,7 @@ module Aws
325
331
  def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
326
332
  def endpoint: () -> ::String
327
333
  def port: () -> ::Integer
334
+ def network_type: () -> ("IPV4" | "DUAL")
328
335
  def 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")
329
336
  def db_storage_type: () -> ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
330
337
  def allocated_storage: () -> ::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),
data/sig/types.rbs CHANGED
@@ -37,6 +37,7 @@ module Aws::TimestreamInfluxDB
37
37
  attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
38
38
  attr_accessor tags: ::Hash[::String, ::String]
39
39
  attr_accessor port: ::Integer
40
+ attr_accessor network_type: ("IPV4" | "DUAL")
40
41
  SENSITIVE: [:username, :password]
41
42
  end
42
43
 
@@ -47,6 +48,7 @@ module Aws::TimestreamInfluxDB
47
48
  attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
48
49
  attr_accessor endpoint: ::String
49
50
  attr_accessor port: ::Integer
51
+ attr_accessor network_type: ("IPV4" | "DUAL")
50
52
  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")
51
53
  attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
52
54
  attr_accessor allocated_storage: ::Integer
@@ -86,6 +88,7 @@ module Aws::TimestreamInfluxDB
86
88
  attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
87
89
  attr_accessor endpoint: ::String
88
90
  attr_accessor port: ::Integer
91
+ attr_accessor network_type: ("IPV4" | "DUAL")
89
92
  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")
90
93
  attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
91
94
  attr_accessor allocated_storage: ::Integer
@@ -113,6 +116,7 @@ module Aws::TimestreamInfluxDB
113
116
  attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
114
117
  attr_accessor endpoint: ::String
115
118
  attr_accessor port: ::Integer
119
+ attr_accessor network_type: ("IPV4" | "DUAL")
116
120
  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")
117
121
  attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
118
122
  attr_accessor allocated_storage: ::Integer
@@ -146,6 +150,7 @@ module Aws::TimestreamInfluxDB
146
150
  attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
147
151
  attr_accessor endpoint: ::String
148
152
  attr_accessor port: ::Integer
153
+ attr_accessor network_type: ("IPV4" | "DUAL")
149
154
  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")
150
155
  attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
151
156
  attr_accessor allocated_storage: ::Integer
@@ -321,6 +326,7 @@ module Aws::TimestreamInfluxDB
321
326
  attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
322
327
  attr_accessor endpoint: ::String
323
328
  attr_accessor port: ::Integer
329
+ attr_accessor network_type: ("IPV4" | "DUAL")
324
330
  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")
325
331
  attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
326
332
  attr_accessor allocated_storage: ::Integer
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.15.0
4
+ version: 1.17.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