aws-sdk-timestreaminfluxdb 1.30.0 → 1.32.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-timestreaminfluxdb/client.rb +500 -41
- data/lib/aws-sdk-timestreaminfluxdb/client_api.rb +171 -3
- data/lib/aws-sdk-timestreaminfluxdb/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-timestreaminfluxdb/types.rb +781 -8
- data/lib/aws-sdk-timestreaminfluxdb.rb +1 -1
- data/sig/client.rbs +215 -16
- data/sig/types.rbs +133 -7
- metadata +3 -3
data/sig/client.rbs
CHANGED
@@ -88,19 +88,19 @@ module Aws
|
|
88
88
|
def create_db_cluster: (
|
89
89
|
name: ::String,
|
90
90
|
?username: ::String,
|
91
|
-
password: ::String,
|
91
|
+
?password: ::String,
|
92
92
|
?organization: ::String,
|
93
93
|
?bucket: ::String,
|
94
94
|
?port: ::Integer,
|
95
95
|
?db_parameter_group_identifier: ::String,
|
96
96
|
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" | "db.influx.24xlarge"),
|
97
97
|
?db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3"),
|
98
|
-
allocated_storage: ::Integer,
|
98
|
+
?allocated_storage: ::Integer,
|
99
99
|
?network_type: ("IPV4" | "DUAL"),
|
100
100
|
?publicly_accessible: bool,
|
101
101
|
vpc_subnet_ids: Array[::String],
|
102
102
|
vpc_security_group_ids: Array[::String],
|
103
|
-
deployment_type: ("MULTI_NODE_READ_REPLICAS"),
|
103
|
+
?deployment_type: ("MULTI_NODE_READ_REPLICAS"),
|
104
104
|
?failover_mode: ("AUTOMATIC" | "NO_FAILOVER"),
|
105
105
|
?log_delivery_configuration: {
|
106
106
|
s3_configuration: {
|
@@ -134,7 +134,8 @@ module Aws
|
|
134
134
|
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
135
135
|
def influx_auth_parameters_secret_arn: () -> ::String
|
136
136
|
def db_cluster_id: () -> ::String
|
137
|
-
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA")
|
137
|
+
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
138
|
+
def instance_modes: () -> ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
138
139
|
end
|
139
140
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#create_db_instance-instance_method
|
140
141
|
def create_db_instance: (
|
@@ -182,22 +183,22 @@ module Aws
|
|
182
183
|
no_tasks: bool?,
|
183
184
|
query_concurrency: ::Integer?,
|
184
185
|
query_queue_size: ::Integer?,
|
185
|
-
tracing_type: ("log" | "jaeger")?,
|
186
|
+
tracing_type: ("log" | "jaeger" | "disabled")?,
|
186
187
|
metrics_disabled: bool?,
|
187
188
|
http_idle_timeout: {
|
188
|
-
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
189
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
189
190
|
value: ::Integer
|
190
191
|
}?,
|
191
192
|
http_read_header_timeout: {
|
192
|
-
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
193
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
193
194
|
value: ::Integer
|
194
195
|
}?,
|
195
196
|
http_read_timeout: {
|
196
|
-
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
197
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
197
198
|
value: ::Integer
|
198
199
|
}?,
|
199
200
|
http_write_timeout: {
|
200
|
-
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
201
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
201
202
|
value: ::Integer
|
202
203
|
}?,
|
203
204
|
influxql_max_select_buckets: ::Integer?,
|
@@ -212,11 +213,11 @@ module Aws
|
|
212
213
|
storage_cache_max_memory_size: ::Integer?,
|
213
214
|
storage_cache_snapshot_memory_size: ::Integer?,
|
214
215
|
storage_cache_snapshot_write_cold_duration: {
|
215
|
-
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
216
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
216
217
|
value: ::Integer
|
217
218
|
}?,
|
218
219
|
storage_compact_full_write_cold_duration: {
|
219
|
-
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
220
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
220
221
|
value: ::Integer
|
221
222
|
}?,
|
222
223
|
storage_compact_throughput_burst: ::Integer?,
|
@@ -224,17 +225,211 @@ module Aws
|
|
224
225
|
storage_max_index_log_file_size: ::Integer?,
|
225
226
|
storage_no_validate_field_size: bool?,
|
226
227
|
storage_retention_check_interval: {
|
227
|
-
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
228
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
228
229
|
value: ::Integer
|
229
230
|
}?,
|
230
231
|
storage_series_file_max_concurrent_snapshot_compactions: ::Integer?,
|
231
232
|
storage_series_id_set_cache_size: ::Integer?,
|
232
233
|
storage_wal_max_concurrent_writes: ::Integer?,
|
233
234
|
storage_wal_max_write_delay: {
|
234
|
-
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds"),
|
235
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
235
236
|
value: ::Integer
|
236
237
|
}?,
|
237
238
|
ui_disabled: bool?
|
239
|
+
}?,
|
240
|
+
influx_d_bv_3_core: {
|
241
|
+
query_file_limit: ::Integer?,
|
242
|
+
query_log_size: ::Integer?,
|
243
|
+
log_filter: ::String?,
|
244
|
+
log_format: ("full")?,
|
245
|
+
data_fusion_num_threads: ::Integer?,
|
246
|
+
data_fusion_runtime_type: ("multi-thread" | "multi-thread-alt")?,
|
247
|
+
data_fusion_runtime_disable_lifo_slot: bool?,
|
248
|
+
data_fusion_runtime_event_interval: ::Integer?,
|
249
|
+
data_fusion_runtime_global_queue_interval: ::Integer?,
|
250
|
+
data_fusion_runtime_max_blocking_threads: ::Integer?,
|
251
|
+
data_fusion_runtime_max_io_events_per_tick: ::Integer?,
|
252
|
+
data_fusion_runtime_thread_keep_alive: {
|
253
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
254
|
+
value: ::Integer
|
255
|
+
}?,
|
256
|
+
data_fusion_runtime_thread_priority: ::Integer?,
|
257
|
+
data_fusion_max_parquet_fanout: ::Integer?,
|
258
|
+
data_fusion_use_cached_parquet_loader: bool?,
|
259
|
+
data_fusion_config: ::String?,
|
260
|
+
max_http_request_size: ::Integer?,
|
261
|
+
force_snapshot_mem_threshold: {
|
262
|
+
percent: ::String?,
|
263
|
+
absolute: ::Integer?
|
264
|
+
}?,
|
265
|
+
wal_snapshot_size: ::Integer?,
|
266
|
+
wal_max_write_buffer_size: ::Integer?,
|
267
|
+
snapshotted_wal_files_to_keep: ::Integer?,
|
268
|
+
preemptive_cache_age: {
|
269
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
270
|
+
value: ::Integer
|
271
|
+
}?,
|
272
|
+
parquet_mem_cache_prune_percentage: ::Float?,
|
273
|
+
parquet_mem_cache_prune_interval: {
|
274
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
275
|
+
value: ::Integer
|
276
|
+
}?,
|
277
|
+
disable_parquet_mem_cache: bool?,
|
278
|
+
parquet_mem_cache_query_path_duration: {
|
279
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
280
|
+
value: ::Integer
|
281
|
+
}?,
|
282
|
+
last_cache_eviction_interval: {
|
283
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
284
|
+
value: ::Integer
|
285
|
+
}?,
|
286
|
+
distinct_cache_eviction_interval: {
|
287
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
288
|
+
value: ::Integer
|
289
|
+
}?,
|
290
|
+
gen1_duration: {
|
291
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
292
|
+
value: ::Integer
|
293
|
+
}?,
|
294
|
+
exec_mem_pool_bytes: {
|
295
|
+
percent: ::String?,
|
296
|
+
absolute: ::Integer?
|
297
|
+
}?,
|
298
|
+
parquet_mem_cache_size: {
|
299
|
+
percent: ::String?,
|
300
|
+
absolute: ::Integer?
|
301
|
+
}?,
|
302
|
+
wal_replay_fail_on_error: bool?,
|
303
|
+
wal_replay_concurrency_limit: ::Integer?,
|
304
|
+
table_index_cache_max_entries: ::Integer?,
|
305
|
+
table_index_cache_concurrency_limit: ::Integer?,
|
306
|
+
gen1_lookback_duration: {
|
307
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
308
|
+
value: ::Integer
|
309
|
+
}?,
|
310
|
+
retention_check_interval: {
|
311
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
312
|
+
value: ::Integer
|
313
|
+
}?,
|
314
|
+
delete_grace_period: {
|
315
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
316
|
+
value: ::Integer
|
317
|
+
}?,
|
318
|
+
hard_delete_default_duration: {
|
319
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
320
|
+
value: ::Integer
|
321
|
+
}?
|
322
|
+
}?,
|
323
|
+
influx_d_bv_3_enterprise: {
|
324
|
+
query_file_limit: ::Integer?,
|
325
|
+
query_log_size: ::Integer?,
|
326
|
+
log_filter: ::String?,
|
327
|
+
log_format: ("full")?,
|
328
|
+
data_fusion_num_threads: ::Integer?,
|
329
|
+
data_fusion_runtime_type: ("multi-thread" | "multi-thread-alt")?,
|
330
|
+
data_fusion_runtime_disable_lifo_slot: bool?,
|
331
|
+
data_fusion_runtime_event_interval: ::Integer?,
|
332
|
+
data_fusion_runtime_global_queue_interval: ::Integer?,
|
333
|
+
data_fusion_runtime_max_blocking_threads: ::Integer?,
|
334
|
+
data_fusion_runtime_max_io_events_per_tick: ::Integer?,
|
335
|
+
data_fusion_runtime_thread_keep_alive: {
|
336
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
337
|
+
value: ::Integer
|
338
|
+
}?,
|
339
|
+
data_fusion_runtime_thread_priority: ::Integer?,
|
340
|
+
data_fusion_max_parquet_fanout: ::Integer?,
|
341
|
+
data_fusion_use_cached_parquet_loader: bool?,
|
342
|
+
data_fusion_config: ::String?,
|
343
|
+
max_http_request_size: ::Integer?,
|
344
|
+
force_snapshot_mem_threshold: {
|
345
|
+
percent: ::String?,
|
346
|
+
absolute: ::Integer?
|
347
|
+
}?,
|
348
|
+
wal_snapshot_size: ::Integer?,
|
349
|
+
wal_max_write_buffer_size: ::Integer?,
|
350
|
+
snapshotted_wal_files_to_keep: ::Integer?,
|
351
|
+
preemptive_cache_age: {
|
352
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
353
|
+
value: ::Integer
|
354
|
+
}?,
|
355
|
+
parquet_mem_cache_prune_percentage: ::Float?,
|
356
|
+
parquet_mem_cache_prune_interval: {
|
357
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
358
|
+
value: ::Integer
|
359
|
+
}?,
|
360
|
+
disable_parquet_mem_cache: bool?,
|
361
|
+
parquet_mem_cache_query_path_duration: {
|
362
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
363
|
+
value: ::Integer
|
364
|
+
}?,
|
365
|
+
last_cache_eviction_interval: {
|
366
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
367
|
+
value: ::Integer
|
368
|
+
}?,
|
369
|
+
distinct_cache_eviction_interval: {
|
370
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
371
|
+
value: ::Integer
|
372
|
+
}?,
|
373
|
+
gen1_duration: {
|
374
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
375
|
+
value: ::Integer
|
376
|
+
}?,
|
377
|
+
exec_mem_pool_bytes: {
|
378
|
+
percent: ::String?,
|
379
|
+
absolute: ::Integer?
|
380
|
+
}?,
|
381
|
+
parquet_mem_cache_size: {
|
382
|
+
percent: ::String?,
|
383
|
+
absolute: ::Integer?
|
384
|
+
}?,
|
385
|
+
wal_replay_fail_on_error: bool?,
|
386
|
+
wal_replay_concurrency_limit: ::Integer?,
|
387
|
+
table_index_cache_max_entries: ::Integer?,
|
388
|
+
table_index_cache_concurrency_limit: ::Integer?,
|
389
|
+
gen1_lookback_duration: {
|
390
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
391
|
+
value: ::Integer
|
392
|
+
}?,
|
393
|
+
retention_check_interval: {
|
394
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
395
|
+
value: ::Integer
|
396
|
+
}?,
|
397
|
+
delete_grace_period: {
|
398
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
399
|
+
value: ::Integer
|
400
|
+
}?,
|
401
|
+
hard_delete_default_duration: {
|
402
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
403
|
+
value: ::Integer
|
404
|
+
}?,
|
405
|
+
ingest_query_instances: ::Integer,
|
406
|
+
query_only_instances: ::Integer,
|
407
|
+
dedicated_compactor: bool,
|
408
|
+
compaction_row_limit: ::Integer?,
|
409
|
+
compaction_max_num_files_per_plan: ::Integer?,
|
410
|
+
compaction_gen_2_duration: {
|
411
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
412
|
+
value: ::Integer
|
413
|
+
}?,
|
414
|
+
compaction_multipliers: ::String?,
|
415
|
+
compaction_cleanup_wait: {
|
416
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
417
|
+
value: ::Integer
|
418
|
+
}?,
|
419
|
+
compaction_check_interval: {
|
420
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
421
|
+
value: ::Integer
|
422
|
+
}?,
|
423
|
+
last_value_cache_disable_from_history: bool?,
|
424
|
+
distinct_value_cache_disable_from_history: bool?,
|
425
|
+
replication_interval: {
|
426
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
427
|
+
value: ::Integer
|
428
|
+
}?,
|
429
|
+
catalog_sync_interval: {
|
430
|
+
duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days"),
|
431
|
+
value: ::Integer
|
432
|
+
}?
|
238
433
|
}?
|
239
434
|
},
|
240
435
|
?tags: Hash[::String, ::String]
|
@@ -273,7 +468,8 @@ module Aws
|
|
273
468
|
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
274
469
|
def influx_auth_parameters_secret_arn: () -> ::String
|
275
470
|
def db_cluster_id: () -> ::String
|
276
|
-
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA")
|
471
|
+
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
472
|
+
def instance_modes: () -> ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
277
473
|
end
|
278
474
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#delete_db_instance-instance_method
|
279
475
|
def delete_db_instance: (
|
@@ -295,6 +491,7 @@ module Aws
|
|
295
491
|
def network_type: () -> ("IPV4" | "DUAL")
|
296
492
|
def db_storage_type: () -> ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
297
493
|
def allocated_storage: () -> ::Integer
|
494
|
+
def engine_type: () -> ("INFLUXDB_V2" | "INFLUXDB_V3_CORE" | "INFLUXDB_V3_ENTERPRISE")
|
298
495
|
def publicly_accessible: () -> bool
|
299
496
|
def db_parameter_group_identifier: () -> ::String
|
300
497
|
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
@@ -331,7 +528,8 @@ module Aws
|
|
331
528
|
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
332
529
|
def influx_auth_parameters_secret_arn: () -> ::String
|
333
530
|
def db_cluster_id: () -> ::String
|
334
|
-
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA")
|
531
|
+
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
532
|
+
def instance_modes: () -> ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
335
533
|
end
|
336
534
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#get_db_instance-instance_method
|
337
535
|
def get_db_instance: (
|
@@ -468,7 +666,8 @@ module Aws
|
|
468
666
|
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
469
667
|
def influx_auth_parameters_secret_arn: () -> ::String
|
470
668
|
def db_cluster_id: () -> ::String
|
471
|
-
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA")
|
669
|
+
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
670
|
+
def instance_modes: () -> ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
472
671
|
end
|
473
672
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#update_db_instance-instance_method
|
474
673
|
def update_db_instance: (
|
data/sig/types.rbs
CHANGED
@@ -90,7 +90,8 @@ module Aws::TimestreamInfluxDB
|
|
90
90
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
91
91
|
attr_accessor influx_auth_parameters_secret_arn: ::String
|
92
92
|
attr_accessor db_cluster_id: ::String
|
93
|
-
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA")
|
93
|
+
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
94
|
+
attr_accessor instance_modes: ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
94
95
|
SENSITIVE: []
|
95
96
|
end
|
96
97
|
|
@@ -124,6 +125,7 @@ module Aws::TimestreamInfluxDB
|
|
124
125
|
attr_accessor network_type: ("IPV4" | "DUAL")
|
125
126
|
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
126
127
|
attr_accessor allocated_storage: ::Integer
|
128
|
+
attr_accessor engine_type: ("INFLUXDB_V2" | "INFLUXDB_V3_CORE" | "INFLUXDB_V3_ENTERPRISE")
|
127
129
|
SENSITIVE: []
|
128
130
|
end
|
129
131
|
|
@@ -139,7 +141,8 @@ module Aws::TimestreamInfluxDB
|
|
139
141
|
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
140
142
|
attr_accessor allocated_storage: ::Integer
|
141
143
|
attr_accessor deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
142
|
-
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA")
|
144
|
+
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
145
|
+
attr_accessor instance_modes: ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
143
146
|
SENSITIVE: []
|
144
147
|
end
|
145
148
|
|
@@ -202,12 +205,13 @@ module Aws::TimestreamInfluxDB
|
|
202
205
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
203
206
|
attr_accessor influx_auth_parameters_secret_arn: ::String
|
204
207
|
attr_accessor db_cluster_id: ::String
|
205
|
-
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA")
|
208
|
+
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
209
|
+
attr_accessor instance_modes: ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
206
210
|
SENSITIVE: []
|
207
211
|
end
|
208
212
|
|
209
213
|
class Duration
|
210
|
-
attr_accessor duration_type: ("hours" | "minutes" | "seconds" | "milliseconds")
|
214
|
+
attr_accessor duration_type: ("hours" | "minutes" | "seconds" | "milliseconds" | "days")
|
211
215
|
attr_accessor value: ::Integer
|
212
216
|
SENSITIVE: []
|
213
217
|
end
|
@@ -230,6 +234,7 @@ module Aws::TimestreamInfluxDB
|
|
230
234
|
attr_accessor network_type: ("IPV4" | "DUAL")
|
231
235
|
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
232
236
|
attr_accessor allocated_storage: ::Integer
|
237
|
+
attr_accessor engine_type: ("INFLUXDB_V2" | "INFLUXDB_V3_CORE" | "INFLUXDB_V3_ENTERPRISE")
|
233
238
|
attr_accessor publicly_accessible: bool
|
234
239
|
attr_accessor db_parameter_group_identifier: ::String
|
235
240
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
@@ -266,7 +271,8 @@ module Aws::TimestreamInfluxDB
|
|
266
271
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
267
272
|
attr_accessor influx_auth_parameters_secret_arn: ::String
|
268
273
|
attr_accessor db_cluster_id: ::String
|
269
|
-
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA")
|
274
|
+
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
275
|
+
attr_accessor instance_modes: ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
270
276
|
SENSITIVE: []
|
271
277
|
end
|
272
278
|
|
@@ -290,7 +296,7 @@ module Aws::TimestreamInfluxDB
|
|
290
296
|
attr_accessor no_tasks: bool
|
291
297
|
attr_accessor query_concurrency: ::Integer
|
292
298
|
attr_accessor query_queue_size: ::Integer
|
293
|
-
attr_accessor tracing_type: ("log" | "jaeger")
|
299
|
+
attr_accessor tracing_type: ("log" | "jaeger" | "disabled")
|
294
300
|
attr_accessor metrics_disabled: bool
|
295
301
|
attr_accessor http_idle_timeout: Types::Duration
|
296
302
|
attr_accessor http_read_header_timeout: Types::Duration
|
@@ -322,6 +328,105 @@ module Aws::TimestreamInfluxDB
|
|
322
328
|
SENSITIVE: []
|
323
329
|
end
|
324
330
|
|
331
|
+
class InfluxDBv3CoreParameters
|
332
|
+
attr_accessor query_file_limit: ::Integer
|
333
|
+
attr_accessor query_log_size: ::Integer
|
334
|
+
attr_accessor log_filter: ::String
|
335
|
+
attr_accessor log_format: ("full")
|
336
|
+
attr_accessor data_fusion_num_threads: ::Integer
|
337
|
+
attr_accessor data_fusion_runtime_type: ("multi-thread" | "multi-thread-alt")
|
338
|
+
attr_accessor data_fusion_runtime_disable_lifo_slot: bool
|
339
|
+
attr_accessor data_fusion_runtime_event_interval: ::Integer
|
340
|
+
attr_accessor data_fusion_runtime_global_queue_interval: ::Integer
|
341
|
+
attr_accessor data_fusion_runtime_max_blocking_threads: ::Integer
|
342
|
+
attr_accessor data_fusion_runtime_max_io_events_per_tick: ::Integer
|
343
|
+
attr_accessor data_fusion_runtime_thread_keep_alive: Types::Duration
|
344
|
+
attr_accessor data_fusion_runtime_thread_priority: ::Integer
|
345
|
+
attr_accessor data_fusion_max_parquet_fanout: ::Integer
|
346
|
+
attr_accessor data_fusion_use_cached_parquet_loader: bool
|
347
|
+
attr_accessor data_fusion_config: ::String
|
348
|
+
attr_accessor max_http_request_size: ::Integer
|
349
|
+
attr_accessor force_snapshot_mem_threshold: Types::PercentOrAbsoluteLong
|
350
|
+
attr_accessor wal_snapshot_size: ::Integer
|
351
|
+
attr_accessor wal_max_write_buffer_size: ::Integer
|
352
|
+
attr_accessor snapshotted_wal_files_to_keep: ::Integer
|
353
|
+
attr_accessor preemptive_cache_age: Types::Duration
|
354
|
+
attr_accessor parquet_mem_cache_prune_percentage: ::Float
|
355
|
+
attr_accessor parquet_mem_cache_prune_interval: Types::Duration
|
356
|
+
attr_accessor disable_parquet_mem_cache: bool
|
357
|
+
attr_accessor parquet_mem_cache_query_path_duration: Types::Duration
|
358
|
+
attr_accessor last_cache_eviction_interval: Types::Duration
|
359
|
+
attr_accessor distinct_cache_eviction_interval: Types::Duration
|
360
|
+
attr_accessor gen1_duration: Types::Duration
|
361
|
+
attr_accessor exec_mem_pool_bytes: Types::PercentOrAbsoluteLong
|
362
|
+
attr_accessor parquet_mem_cache_size: Types::PercentOrAbsoluteLong
|
363
|
+
attr_accessor wal_replay_fail_on_error: bool
|
364
|
+
attr_accessor wal_replay_concurrency_limit: ::Integer
|
365
|
+
attr_accessor table_index_cache_max_entries: ::Integer
|
366
|
+
attr_accessor table_index_cache_concurrency_limit: ::Integer
|
367
|
+
attr_accessor gen1_lookback_duration: Types::Duration
|
368
|
+
attr_accessor retention_check_interval: Types::Duration
|
369
|
+
attr_accessor delete_grace_period: Types::Duration
|
370
|
+
attr_accessor hard_delete_default_duration: Types::Duration
|
371
|
+
SENSITIVE: []
|
372
|
+
end
|
373
|
+
|
374
|
+
class InfluxDBv3EnterpriseParameters
|
375
|
+
attr_accessor query_file_limit: ::Integer
|
376
|
+
attr_accessor query_log_size: ::Integer
|
377
|
+
attr_accessor log_filter: ::String
|
378
|
+
attr_accessor log_format: ("full")
|
379
|
+
attr_accessor data_fusion_num_threads: ::Integer
|
380
|
+
attr_accessor data_fusion_runtime_type: ("multi-thread" | "multi-thread-alt")
|
381
|
+
attr_accessor data_fusion_runtime_disable_lifo_slot: bool
|
382
|
+
attr_accessor data_fusion_runtime_event_interval: ::Integer
|
383
|
+
attr_accessor data_fusion_runtime_global_queue_interval: ::Integer
|
384
|
+
attr_accessor data_fusion_runtime_max_blocking_threads: ::Integer
|
385
|
+
attr_accessor data_fusion_runtime_max_io_events_per_tick: ::Integer
|
386
|
+
attr_accessor data_fusion_runtime_thread_keep_alive: Types::Duration
|
387
|
+
attr_accessor data_fusion_runtime_thread_priority: ::Integer
|
388
|
+
attr_accessor data_fusion_max_parquet_fanout: ::Integer
|
389
|
+
attr_accessor data_fusion_use_cached_parquet_loader: bool
|
390
|
+
attr_accessor data_fusion_config: ::String
|
391
|
+
attr_accessor max_http_request_size: ::Integer
|
392
|
+
attr_accessor force_snapshot_mem_threshold: Types::PercentOrAbsoluteLong
|
393
|
+
attr_accessor wal_snapshot_size: ::Integer
|
394
|
+
attr_accessor wal_max_write_buffer_size: ::Integer
|
395
|
+
attr_accessor snapshotted_wal_files_to_keep: ::Integer
|
396
|
+
attr_accessor preemptive_cache_age: Types::Duration
|
397
|
+
attr_accessor parquet_mem_cache_prune_percentage: ::Float
|
398
|
+
attr_accessor parquet_mem_cache_prune_interval: Types::Duration
|
399
|
+
attr_accessor disable_parquet_mem_cache: bool
|
400
|
+
attr_accessor parquet_mem_cache_query_path_duration: Types::Duration
|
401
|
+
attr_accessor last_cache_eviction_interval: Types::Duration
|
402
|
+
attr_accessor distinct_cache_eviction_interval: Types::Duration
|
403
|
+
attr_accessor gen1_duration: Types::Duration
|
404
|
+
attr_accessor exec_mem_pool_bytes: Types::PercentOrAbsoluteLong
|
405
|
+
attr_accessor parquet_mem_cache_size: Types::PercentOrAbsoluteLong
|
406
|
+
attr_accessor wal_replay_fail_on_error: bool
|
407
|
+
attr_accessor wal_replay_concurrency_limit: ::Integer
|
408
|
+
attr_accessor table_index_cache_max_entries: ::Integer
|
409
|
+
attr_accessor table_index_cache_concurrency_limit: ::Integer
|
410
|
+
attr_accessor gen1_lookback_duration: Types::Duration
|
411
|
+
attr_accessor retention_check_interval: Types::Duration
|
412
|
+
attr_accessor delete_grace_period: Types::Duration
|
413
|
+
attr_accessor hard_delete_default_duration: Types::Duration
|
414
|
+
attr_accessor ingest_query_instances: ::Integer
|
415
|
+
attr_accessor query_only_instances: ::Integer
|
416
|
+
attr_accessor dedicated_compactor: bool
|
417
|
+
attr_accessor compaction_row_limit: ::Integer
|
418
|
+
attr_accessor compaction_max_num_files_per_plan: ::Integer
|
419
|
+
attr_accessor compaction_gen_2_duration: Types::Duration
|
420
|
+
attr_accessor compaction_multipliers: ::String
|
421
|
+
attr_accessor compaction_cleanup_wait: Types::Duration
|
422
|
+
attr_accessor compaction_check_interval: Types::Duration
|
423
|
+
attr_accessor last_value_cache_disable_from_history: bool
|
424
|
+
attr_accessor distinct_value_cache_disable_from_history: bool
|
425
|
+
attr_accessor replication_interval: Types::Duration
|
426
|
+
attr_accessor catalog_sync_interval: Types::Duration
|
427
|
+
SENSITIVE: []
|
428
|
+
end
|
429
|
+
|
325
430
|
class InternalServerException
|
326
431
|
attr_accessor message: ::String
|
327
432
|
SENSITIVE: []
|
@@ -393,15 +498,35 @@ module Aws::TimestreamInfluxDB
|
|
393
498
|
|
394
499
|
class Parameters
|
395
500
|
attr_accessor influx_d_bv_2: Types::InfluxDBv2Parameters
|
501
|
+
attr_accessor influx_d_bv_3_core: Types::InfluxDBv3CoreParameters
|
502
|
+
attr_accessor influx_d_bv_3_enterprise: Types::InfluxDBv3EnterpriseParameters
|
396
503
|
attr_accessor unknown: untyped
|
397
504
|
SENSITIVE: []
|
398
505
|
|
399
506
|
class InfluxDBv2 < Parameters
|
400
507
|
end
|
508
|
+
class InfluxDBv3Core < Parameters
|
509
|
+
end
|
510
|
+
class InfluxDBv3Enterprise < Parameters
|
511
|
+
end
|
401
512
|
class Unknown < Parameters
|
402
513
|
end
|
403
514
|
end
|
404
515
|
|
516
|
+
class PercentOrAbsoluteLong
|
517
|
+
attr_accessor percent: ::String
|
518
|
+
attr_accessor absolute: ::Integer
|
519
|
+
attr_accessor unknown: untyped
|
520
|
+
SENSITIVE: []
|
521
|
+
|
522
|
+
class Percent < PercentOrAbsoluteLong
|
523
|
+
end
|
524
|
+
class Absolute < PercentOrAbsoluteLong
|
525
|
+
end
|
526
|
+
class Unknown < PercentOrAbsoluteLong
|
527
|
+
end
|
528
|
+
end
|
529
|
+
|
405
530
|
class ResourceNotFoundException
|
406
531
|
attr_accessor message: ::String
|
407
532
|
attr_accessor resource_id: ::String
|
@@ -486,7 +611,8 @@ module Aws::TimestreamInfluxDB
|
|
486
611
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
487
612
|
attr_accessor influx_auth_parameters_secret_arn: ::String
|
488
613
|
attr_accessor db_cluster_id: ::String
|
489
|
-
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA")
|
614
|
+
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
615
|
+
attr_accessor instance_modes: ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
490
616
|
SENSITIVE: []
|
491
617
|
end
|
492
618
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-timestreaminfluxdb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.32.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.
|
21
|
+
version: 3.231.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.
|
31
|
+
version: 3.231.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|