aws-sdk-timestreaminfluxdb 1.39.0 → 1.40.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-timestreaminfluxdb/client.rb +79 -1
- data/lib/aws-sdk-timestreaminfluxdb/client_api.rb +37 -0
- data/lib/aws-sdk-timestreaminfluxdb/types.rb +189 -8
- data/lib/aws-sdk-timestreaminfluxdb.rb +1 -1
- data/sig/client.rbs +37 -2
- data/sig/types.rbs +36 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ab6ab5b96bce090561000c2be514349f1cb82a2409cea6812329c1a9f4b468e
|
|
4
|
+
data.tar.gz: dfcbaeeb5ce6cdb84b092f84e1cb5d44d311288b39e3486eb7703a2f9be66975
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3ddf9852535c8dbf2ce20c62852999ee84f23c328ee07adb1ea0bd3f190fb277c220032a88e6efeb8f546342493d07bd7b844235a06ff51dfc427e98a904393b
|
|
7
|
+
data.tar.gz: 3937753351f7d6b4e40883d9f62cb01b11751e470c91930ed01f5a1e2057ddfd8eebb507ccc8080aadcc04afcbfa2443d38908d71626224c86d869fb3a9114c1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.40.0 (2026-03-26)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Timestream for InfluxDB adds support for customer defined maintenance windows. This allows customers to define maintenance schedule during resource creation and updates
|
|
8
|
+
|
|
4
9
|
1.39.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.40.0
|
|
@@ -581,6 +581,10 @@ module Aws::TimestreamInfluxDB
|
|
|
581
581
|
# Configuration for sending InfluxDB engine logs to a specified S3
|
|
582
582
|
# bucket.
|
|
583
583
|
#
|
|
584
|
+
# @option params [Types::MaintenanceSchedule] :maintenance_schedule
|
|
585
|
+
# Specifies the maintenance schedule for the DB cluster, including the
|
|
586
|
+
# preferred maintenance window and timezone.
|
|
587
|
+
#
|
|
584
588
|
# @option params [Hash<String,String>] :tags
|
|
585
589
|
# A list of key-value pairs to associate with the DB instance.
|
|
586
590
|
#
|
|
@@ -614,6 +618,10 @@ module Aws::TimestreamInfluxDB
|
|
|
614
618
|
# enabled: false, # required
|
|
615
619
|
# },
|
|
616
620
|
# },
|
|
621
|
+
# maintenance_schedule: {
|
|
622
|
+
# timezone: "IanaTimezone", # required
|
|
623
|
+
# preferred_maintenance_window: "MaintenanceWindow", # required
|
|
624
|
+
# },
|
|
617
625
|
# tags: {
|
|
618
626
|
# "TagKey" => "TagValue",
|
|
619
627
|
# },
|
|
@@ -711,6 +719,10 @@ module Aws::TimestreamInfluxDB
|
|
|
711
719
|
# Configuration for sending InfluxDB engine logs to a specified S3
|
|
712
720
|
# bucket.
|
|
713
721
|
#
|
|
722
|
+
# @option params [Types::MaintenanceSchedule] :maintenance_schedule
|
|
723
|
+
# Specifies the maintenance schedule for the DB instance, including the
|
|
724
|
+
# preferred maintenance window and timezone.
|
|
725
|
+
#
|
|
714
726
|
# @option params [Hash<String,String>] :tags
|
|
715
727
|
# A list of key-value pairs to associate with the DB instance.
|
|
716
728
|
#
|
|
@@ -753,6 +765,9 @@ module Aws::TimestreamInfluxDB
|
|
|
753
765
|
# * {Types::CreateDbInstanceOutput#db_cluster_id #db_cluster_id} => String
|
|
754
766
|
# * {Types::CreateDbInstanceOutput#instance_mode #instance_mode} => String
|
|
755
767
|
# * {Types::CreateDbInstanceOutput#instance_modes #instance_modes} => Array<String>
|
|
768
|
+
# * {Types::CreateDbInstanceOutput#maintenance_schedule #maintenance_schedule} => Types::MaintenanceSchedule
|
|
769
|
+
# * {Types::CreateDbInstanceOutput#last_maintenance_time #last_maintenance_time} => Time
|
|
770
|
+
# * {Types::CreateDbInstanceOutput#next_maintenance_time #next_maintenance_time} => Time
|
|
756
771
|
#
|
|
757
772
|
# @example Request syntax with placeholder values
|
|
758
773
|
#
|
|
@@ -776,6 +791,10 @@ module Aws::TimestreamInfluxDB
|
|
|
776
791
|
# enabled: false, # required
|
|
777
792
|
# },
|
|
778
793
|
# },
|
|
794
|
+
# maintenance_schedule: {
|
|
795
|
+
# timezone: "IanaTimezone", # required
|
|
796
|
+
# preferred_maintenance_window: "MaintenanceWindow", # required
|
|
797
|
+
# },
|
|
779
798
|
# tags: {
|
|
780
799
|
# "TagKey" => "TagValue",
|
|
781
800
|
# },
|
|
@@ -811,6 +830,10 @@ module Aws::TimestreamInfluxDB
|
|
|
811
830
|
# resp.instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
|
812
831
|
# resp.instance_modes #=> Array
|
|
813
832
|
# resp.instance_modes[0] #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
|
833
|
+
# resp.maintenance_schedule.timezone #=> String
|
|
834
|
+
# resp.maintenance_schedule.preferred_maintenance_window #=> String
|
|
835
|
+
# resp.last_maintenance_time #=> Time
|
|
836
|
+
# resp.next_maintenance_time #=> Time
|
|
814
837
|
#
|
|
815
838
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/CreateDbInstance AWS API Documentation
|
|
816
839
|
#
|
|
@@ -1350,6 +1373,9 @@ module Aws::TimestreamInfluxDB
|
|
|
1350
1373
|
# * {Types::DeleteDbInstanceOutput#db_cluster_id #db_cluster_id} => String
|
|
1351
1374
|
# * {Types::DeleteDbInstanceOutput#instance_mode #instance_mode} => String
|
|
1352
1375
|
# * {Types::DeleteDbInstanceOutput#instance_modes #instance_modes} => Array<String>
|
|
1376
|
+
# * {Types::DeleteDbInstanceOutput#maintenance_schedule #maintenance_schedule} => Types::MaintenanceSchedule
|
|
1377
|
+
# * {Types::DeleteDbInstanceOutput#last_maintenance_time #last_maintenance_time} => Time
|
|
1378
|
+
# * {Types::DeleteDbInstanceOutput#next_maintenance_time #next_maintenance_time} => Time
|
|
1353
1379
|
#
|
|
1354
1380
|
# @example Request syntax with placeholder values
|
|
1355
1381
|
#
|
|
@@ -1385,6 +1411,10 @@ module Aws::TimestreamInfluxDB
|
|
|
1385
1411
|
# resp.instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
|
1386
1412
|
# resp.instance_modes #=> Array
|
|
1387
1413
|
# resp.instance_modes[0] #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
|
1414
|
+
# resp.maintenance_schedule.timezone #=> String
|
|
1415
|
+
# resp.maintenance_schedule.preferred_maintenance_window #=> String
|
|
1416
|
+
# resp.last_maintenance_time #=> Time
|
|
1417
|
+
# resp.next_maintenance_time #=> Time
|
|
1388
1418
|
#
|
|
1389
1419
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/DeleteDbInstance AWS API Documentation
|
|
1390
1420
|
#
|
|
@@ -1418,10 +1448,14 @@ module Aws::TimestreamInfluxDB
|
|
|
1418
1448
|
# * {Types::GetDbClusterOutput#publicly_accessible #publicly_accessible} => Boolean
|
|
1419
1449
|
# * {Types::GetDbClusterOutput#db_parameter_group_identifier #db_parameter_group_identifier} => String
|
|
1420
1450
|
# * {Types::GetDbClusterOutput#log_delivery_configuration #log_delivery_configuration} => Types::LogDeliveryConfiguration
|
|
1451
|
+
# * {Types::GetDbClusterOutput#maintenance_schedule #maintenance_schedule} => Types::MaintenanceSchedule
|
|
1452
|
+
# * {Types::GetDbClusterOutput#last_maintenance_time #last_maintenance_time} => Time
|
|
1453
|
+
# * {Types::GetDbClusterOutput#next_maintenance_time #next_maintenance_time} => Time
|
|
1421
1454
|
# * {Types::GetDbClusterOutput#influx_auth_parameters_secret_arn #influx_auth_parameters_secret_arn} => String
|
|
1422
1455
|
# * {Types::GetDbClusterOutput#vpc_subnet_ids #vpc_subnet_ids} => Array<String>
|
|
1423
1456
|
# * {Types::GetDbClusterOutput#vpc_security_group_ids #vpc_security_group_ids} => Array<String>
|
|
1424
1457
|
# * {Types::GetDbClusterOutput#failover_mode #failover_mode} => String
|
|
1458
|
+
# * {Types::GetDbClusterOutput#cluster_configuration #cluster_configuration} => Types::ClusterConfiguration
|
|
1425
1459
|
#
|
|
1426
1460
|
# @example Request syntax with placeholder values
|
|
1427
1461
|
#
|
|
@@ -1448,12 +1482,19 @@ module Aws::TimestreamInfluxDB
|
|
|
1448
1482
|
# resp.db_parameter_group_identifier #=> String
|
|
1449
1483
|
# resp.log_delivery_configuration.s3_configuration.bucket_name #=> String
|
|
1450
1484
|
# resp.log_delivery_configuration.s3_configuration.enabled #=> Boolean
|
|
1485
|
+
# resp.maintenance_schedule.timezone #=> String
|
|
1486
|
+
# resp.maintenance_schedule.preferred_maintenance_window #=> String
|
|
1487
|
+
# resp.last_maintenance_time #=> Time
|
|
1488
|
+
# resp.next_maintenance_time #=> Time
|
|
1451
1489
|
# resp.influx_auth_parameters_secret_arn #=> String
|
|
1452
1490
|
# resp.vpc_subnet_ids #=> Array
|
|
1453
1491
|
# resp.vpc_subnet_ids[0] #=> String
|
|
1454
1492
|
# resp.vpc_security_group_ids #=> Array
|
|
1455
1493
|
# resp.vpc_security_group_ids[0] #=> String
|
|
1456
1494
|
# resp.failover_mode #=> String, one of "AUTOMATIC", "NO_FAILOVER"
|
|
1495
|
+
# resp.cluster_configuration.ingest_query_instances #=> Integer
|
|
1496
|
+
# resp.cluster_configuration.query_only_instances #=> Integer
|
|
1497
|
+
# resp.cluster_configuration.dedicated_compactor #=> Boolean
|
|
1457
1498
|
#
|
|
1458
1499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/GetDbCluster AWS API Documentation
|
|
1459
1500
|
#
|
|
@@ -1493,6 +1534,9 @@ module Aws::TimestreamInfluxDB
|
|
|
1493
1534
|
# * {Types::GetDbInstanceOutput#db_cluster_id #db_cluster_id} => String
|
|
1494
1535
|
# * {Types::GetDbInstanceOutput#instance_mode #instance_mode} => String
|
|
1495
1536
|
# * {Types::GetDbInstanceOutput#instance_modes #instance_modes} => Array<String>
|
|
1537
|
+
# * {Types::GetDbInstanceOutput#maintenance_schedule #maintenance_schedule} => Types::MaintenanceSchedule
|
|
1538
|
+
# * {Types::GetDbInstanceOutput#last_maintenance_time #last_maintenance_time} => Time
|
|
1539
|
+
# * {Types::GetDbInstanceOutput#next_maintenance_time #next_maintenance_time} => Time
|
|
1496
1540
|
#
|
|
1497
1541
|
# @example Request syntax with placeholder values
|
|
1498
1542
|
#
|
|
@@ -1528,6 +1572,10 @@ module Aws::TimestreamInfluxDB
|
|
|
1528
1572
|
# resp.instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
|
1529
1573
|
# resp.instance_modes #=> Array
|
|
1530
1574
|
# resp.instance_modes[0] #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
|
1575
|
+
# resp.maintenance_schedule.timezone #=> String
|
|
1576
|
+
# resp.maintenance_schedule.preferred_maintenance_window #=> String
|
|
1577
|
+
# resp.last_maintenance_time #=> Time
|
|
1578
|
+
# resp.next_maintenance_time #=> Time
|
|
1531
1579
|
#
|
|
1532
1580
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/GetDbInstance AWS API Documentation
|
|
1533
1581
|
#
|
|
@@ -2036,6 +2084,9 @@ module Aws::TimestreamInfluxDB
|
|
|
2036
2084
|
# * {Types::RebootDbInstanceOutput#db_cluster_id #db_cluster_id} => String
|
|
2037
2085
|
# * {Types::RebootDbInstanceOutput#instance_mode #instance_mode} => String
|
|
2038
2086
|
# * {Types::RebootDbInstanceOutput#instance_modes #instance_modes} => Array<String>
|
|
2087
|
+
# * {Types::RebootDbInstanceOutput#maintenance_schedule #maintenance_schedule} => Types::MaintenanceSchedule
|
|
2088
|
+
# * {Types::RebootDbInstanceOutput#last_maintenance_time #last_maintenance_time} => Time
|
|
2089
|
+
# * {Types::RebootDbInstanceOutput#next_maintenance_time #next_maintenance_time} => Time
|
|
2039
2090
|
#
|
|
2040
2091
|
# @example Request syntax with placeholder values
|
|
2041
2092
|
#
|
|
@@ -2071,6 +2122,10 @@ module Aws::TimestreamInfluxDB
|
|
|
2071
2122
|
# resp.instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
|
2072
2123
|
# resp.instance_modes #=> Array
|
|
2073
2124
|
# resp.instance_modes[0] #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
|
2125
|
+
# resp.maintenance_schedule.timezone #=> String
|
|
2126
|
+
# resp.maintenance_schedule.preferred_maintenance_window #=> String
|
|
2127
|
+
# resp.last_maintenance_time #=> Time
|
|
2128
|
+
# resp.next_maintenance_time #=> Time
|
|
2074
2129
|
#
|
|
2075
2130
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/RebootDbInstance AWS API Documentation
|
|
2076
2131
|
#
|
|
@@ -2156,6 +2211,10 @@ module Aws::TimestreamInfluxDB
|
|
|
2156
2211
|
# @option params [String] :failover_mode
|
|
2157
2212
|
# Update the DB cluster's failover behavior.
|
|
2158
2213
|
#
|
|
2214
|
+
# @option params [Types::MaintenanceSchedule] :maintenance_schedule
|
|
2215
|
+
# Specifies the maintenance schedule for the DB cluster, including the
|
|
2216
|
+
# preferred maintenance window and timezone.
|
|
2217
|
+
#
|
|
2159
2218
|
# @return [Types::UpdateDbClusterOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2160
2219
|
#
|
|
2161
2220
|
# * {Types::UpdateDbClusterOutput#db_cluster_status #db_cluster_status} => String
|
|
@@ -2174,6 +2233,10 @@ module Aws::TimestreamInfluxDB
|
|
|
2174
2233
|
# port: 1,
|
|
2175
2234
|
# 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, db.influx.24xlarge
|
|
2176
2235
|
# failover_mode: "AUTOMATIC", # accepts AUTOMATIC, NO_FAILOVER
|
|
2236
|
+
# maintenance_schedule: {
|
|
2237
|
+
# timezone: "IanaTimezone", # required
|
|
2238
|
+
# preferred_maintenance_window: "MaintenanceWindow", # required
|
|
2239
|
+
# },
|
|
2177
2240
|
# })
|
|
2178
2241
|
#
|
|
2179
2242
|
# @example Response structure
|
|
@@ -2230,6 +2293,10 @@ module Aws::TimestreamInfluxDB
|
|
|
2230
2293
|
# The amount of storage to allocate for your DB storage type (in
|
|
2231
2294
|
# gibibytes).
|
|
2232
2295
|
#
|
|
2296
|
+
# @option params [Types::MaintenanceSchedule] :maintenance_schedule
|
|
2297
|
+
# Specifies the maintenance schedule for the DB instance, including the
|
|
2298
|
+
# preferred maintenance window and timezone.
|
|
2299
|
+
#
|
|
2233
2300
|
# @return [Types::UpdateDbInstanceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2234
2301
|
#
|
|
2235
2302
|
# * {Types::UpdateDbInstanceOutput#id #id} => String
|
|
@@ -2254,6 +2321,9 @@ module Aws::TimestreamInfluxDB
|
|
|
2254
2321
|
# * {Types::UpdateDbInstanceOutput#db_cluster_id #db_cluster_id} => String
|
|
2255
2322
|
# * {Types::UpdateDbInstanceOutput#instance_mode #instance_mode} => String
|
|
2256
2323
|
# * {Types::UpdateDbInstanceOutput#instance_modes #instance_modes} => Array<String>
|
|
2324
|
+
# * {Types::UpdateDbInstanceOutput#maintenance_schedule #maintenance_schedule} => Types::MaintenanceSchedule
|
|
2325
|
+
# * {Types::UpdateDbInstanceOutput#last_maintenance_time #last_maintenance_time} => Time
|
|
2326
|
+
# * {Types::UpdateDbInstanceOutput#next_maintenance_time #next_maintenance_time} => Time
|
|
2257
2327
|
#
|
|
2258
2328
|
# @example Request syntax with placeholder values
|
|
2259
2329
|
#
|
|
@@ -2271,6 +2341,10 @@ module Aws::TimestreamInfluxDB
|
|
|
2271
2341
|
# deployment_type: "SINGLE_AZ", # accepts SINGLE_AZ, WITH_MULTIAZ_STANDBY
|
|
2272
2342
|
# db_storage_type: "InfluxIOIncludedT1", # accepts InfluxIOIncludedT1, InfluxIOIncludedT2, InfluxIOIncludedT3
|
|
2273
2343
|
# allocated_storage: 1,
|
|
2344
|
+
# maintenance_schedule: {
|
|
2345
|
+
# timezone: "IanaTimezone", # required
|
|
2346
|
+
# preferred_maintenance_window: "MaintenanceWindow", # required
|
|
2347
|
+
# },
|
|
2274
2348
|
# })
|
|
2275
2349
|
#
|
|
2276
2350
|
# @example Response structure
|
|
@@ -2301,6 +2375,10 @@ module Aws::TimestreamInfluxDB
|
|
|
2301
2375
|
# resp.instance_mode #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
|
2302
2376
|
# resp.instance_modes #=> Array
|
|
2303
2377
|
# resp.instance_modes[0] #=> String, one of "PRIMARY", "STANDBY", "REPLICA", "INGEST", "QUERY", "COMPACT", "PROCESS"
|
|
2378
|
+
# resp.maintenance_schedule.timezone #=> String
|
|
2379
|
+
# resp.maintenance_schedule.preferred_maintenance_window #=> String
|
|
2380
|
+
# resp.last_maintenance_time #=> Time
|
|
2381
|
+
# resp.next_maintenance_time #=> Time
|
|
2304
2382
|
#
|
|
2305
2383
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/UpdateDbInstance AWS API Documentation
|
|
2306
2384
|
#
|
|
@@ -2329,7 +2407,7 @@ module Aws::TimestreamInfluxDB
|
|
|
2329
2407
|
tracer: tracer
|
|
2330
2408
|
)
|
|
2331
2409
|
context[:gem_name] = 'aws-sdk-timestreaminfluxdb'
|
|
2332
|
-
context[:gem_version] = '1.
|
|
2410
|
+
context[:gem_version] = '1.40.0'
|
|
2333
2411
|
Seahorse::Client::Request.new(handlers, context)
|
|
2334
2412
|
end
|
|
2335
2413
|
|
|
@@ -19,6 +19,7 @@ module Aws::TimestreamInfluxDB
|
|
|
19
19
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
|
20
20
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
21
21
|
Bucket = Shapes::StringShape.new(name: 'Bucket')
|
|
22
|
+
ClusterConfiguration = Shapes::StructureShape.new(name: 'ClusterConfiguration')
|
|
22
23
|
ClusterDeploymentType = Shapes::StringShape.new(name: 'ClusterDeploymentType')
|
|
23
24
|
ClusterStatus = Shapes::StringShape.new(name: 'ClusterStatus')
|
|
24
25
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
@@ -64,6 +65,7 @@ module Aws::TimestreamInfluxDB
|
|
|
64
65
|
GetDbInstanceOutput = Shapes::StructureShape.new(name: 'GetDbInstanceOutput')
|
|
65
66
|
GetDbParameterGroupInput = Shapes::StructureShape.new(name: 'GetDbParameterGroupInput')
|
|
66
67
|
GetDbParameterGroupOutput = Shapes::StructureShape.new(name: 'GetDbParameterGroupOutput')
|
|
68
|
+
IanaTimezone = Shapes::StringShape.new(name: 'IanaTimezone')
|
|
67
69
|
InfluxDBv2Parameters = Shapes::StructureShape.new(name: 'InfluxDBv2Parameters')
|
|
68
70
|
InfluxDBv2ParametersInfluxqlMaxSelectBucketsLong = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersInfluxqlMaxSelectBucketsLong')
|
|
69
71
|
InfluxDBv2ParametersInfluxqlMaxSelectPointLong = Shapes::IntegerShape.new(name: 'InfluxDBv2ParametersInfluxqlMaxSelectPointLong')
|
|
@@ -144,6 +146,8 @@ module Aws::TimestreamInfluxDB
|
|
|
144
146
|
LogDeliveryConfiguration = Shapes::StructureShape.new(name: 'LogDeliveryConfiguration')
|
|
145
147
|
LogFormats = Shapes::StringShape.new(name: 'LogFormats')
|
|
146
148
|
LogLevel = Shapes::StringShape.new(name: 'LogLevel')
|
|
149
|
+
MaintenanceSchedule = Shapes::StructureShape.new(name: 'MaintenanceSchedule')
|
|
150
|
+
MaintenanceWindow = Shapes::StringShape.new(name: 'MaintenanceWindow')
|
|
147
151
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
148
152
|
NetworkType = Shapes::StringShape.new(name: 'NetworkType')
|
|
149
153
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
@@ -167,6 +171,7 @@ module Aws::TimestreamInfluxDB
|
|
|
167
171
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
168
172
|
Status = Shapes::StringShape.new(name: 'Status')
|
|
169
173
|
String = Shapes::StringShape.new(name: 'String')
|
|
174
|
+
SyntheticTimestamp_date_time = Shapes::TimestampShape.new(name: 'SyntheticTimestamp_date_time', timestampFormat: "iso8601")
|
|
170
175
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
|
171
176
|
TagKeys = Shapes::ListShape.new(name: 'TagKeys')
|
|
172
177
|
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
|
@@ -189,6 +194,11 @@ module Aws::TimestreamInfluxDB
|
|
|
189
194
|
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
190
195
|
AccessDeniedException.struct_class = Types::AccessDeniedException
|
|
191
196
|
|
|
197
|
+
ClusterConfiguration.add_member(:ingest_query_instances, Shapes::ShapeRef.new(shape: Integer, location_name: "ingestQueryInstances"))
|
|
198
|
+
ClusterConfiguration.add_member(:query_only_instances, Shapes::ShapeRef.new(shape: Integer, location_name: "queryOnlyInstances"))
|
|
199
|
+
ClusterConfiguration.add_member(:dedicated_compactor, Shapes::ShapeRef.new(shape: Boolean, location_name: "dedicatedCompactor"))
|
|
200
|
+
ClusterConfiguration.struct_class = Types::ClusterConfiguration
|
|
201
|
+
|
|
192
202
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
193
203
|
ConflictException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "resourceId"))
|
|
194
204
|
ConflictException.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "resourceType"))
|
|
@@ -211,6 +221,7 @@ module Aws::TimestreamInfluxDB
|
|
|
211
221
|
CreateDbClusterInput.add_member(:deployment_type, Shapes::ShapeRef.new(shape: ClusterDeploymentType, location_name: "deploymentType"))
|
|
212
222
|
CreateDbClusterInput.add_member(:failover_mode, Shapes::ShapeRef.new(shape: FailoverMode, location_name: "failoverMode"))
|
|
213
223
|
CreateDbClusterInput.add_member(:log_delivery_configuration, Shapes::ShapeRef.new(shape: LogDeliveryConfiguration, location_name: "logDeliveryConfiguration"))
|
|
224
|
+
CreateDbClusterInput.add_member(:maintenance_schedule, Shapes::ShapeRef.new(shape: MaintenanceSchedule, location_name: "maintenanceSchedule"))
|
|
214
225
|
CreateDbClusterInput.add_member(:tags, Shapes::ShapeRef.new(shape: RequestTagMap, location_name: "tags"))
|
|
215
226
|
CreateDbClusterInput.struct_class = Types::CreateDbClusterInput
|
|
216
227
|
|
|
@@ -232,6 +243,7 @@ module Aws::TimestreamInfluxDB
|
|
|
232
243
|
CreateDbInstanceInput.add_member(:db_parameter_group_identifier, Shapes::ShapeRef.new(shape: DbParameterGroupIdentifier, location_name: "dbParameterGroupIdentifier"))
|
|
233
244
|
CreateDbInstanceInput.add_member(:deployment_type, Shapes::ShapeRef.new(shape: DeploymentType, location_name: "deploymentType"))
|
|
234
245
|
CreateDbInstanceInput.add_member(:log_delivery_configuration, Shapes::ShapeRef.new(shape: LogDeliveryConfiguration, location_name: "logDeliveryConfiguration"))
|
|
246
|
+
CreateDbInstanceInput.add_member(:maintenance_schedule, Shapes::ShapeRef.new(shape: MaintenanceSchedule, location_name: "maintenanceSchedule"))
|
|
235
247
|
CreateDbInstanceInput.add_member(:tags, Shapes::ShapeRef.new(shape: RequestTagMap, location_name: "tags"))
|
|
236
248
|
CreateDbInstanceInput.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
|
|
237
249
|
CreateDbInstanceInput.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
|
|
@@ -259,6 +271,9 @@ module Aws::TimestreamInfluxDB
|
|
|
259
271
|
CreateDbInstanceOutput.add_member(:db_cluster_id, Shapes::ShapeRef.new(shape: DbClusterId, location_name: "dbClusterId"))
|
|
260
272
|
CreateDbInstanceOutput.add_member(:instance_mode, Shapes::ShapeRef.new(shape: InstanceMode, location_name: "instanceMode"))
|
|
261
273
|
CreateDbInstanceOutput.add_member(:instance_modes, Shapes::ShapeRef.new(shape: InstanceModeList, location_name: "instanceModes"))
|
|
274
|
+
CreateDbInstanceOutput.add_member(:maintenance_schedule, Shapes::ShapeRef.new(shape: MaintenanceSchedule, location_name: "maintenanceSchedule"))
|
|
275
|
+
CreateDbInstanceOutput.add_member(:last_maintenance_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "lastMaintenanceTime"))
|
|
276
|
+
CreateDbInstanceOutput.add_member(:next_maintenance_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "nextMaintenanceTime"))
|
|
262
277
|
CreateDbInstanceOutput.struct_class = Types::CreateDbInstanceOutput
|
|
263
278
|
|
|
264
279
|
CreateDbParameterGroupInput.add_member(:name, Shapes::ShapeRef.new(shape: DbParameterGroupName, required: true, location_name: "name"))
|
|
@@ -362,6 +377,9 @@ module Aws::TimestreamInfluxDB
|
|
|
362
377
|
DeleteDbInstanceOutput.add_member(:db_cluster_id, Shapes::ShapeRef.new(shape: DbClusterId, location_name: "dbClusterId"))
|
|
363
378
|
DeleteDbInstanceOutput.add_member(:instance_mode, Shapes::ShapeRef.new(shape: InstanceMode, location_name: "instanceMode"))
|
|
364
379
|
DeleteDbInstanceOutput.add_member(:instance_modes, Shapes::ShapeRef.new(shape: InstanceModeList, location_name: "instanceModes"))
|
|
380
|
+
DeleteDbInstanceOutput.add_member(:maintenance_schedule, Shapes::ShapeRef.new(shape: MaintenanceSchedule, location_name: "maintenanceSchedule"))
|
|
381
|
+
DeleteDbInstanceOutput.add_member(:last_maintenance_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "lastMaintenanceTime"))
|
|
382
|
+
DeleteDbInstanceOutput.add_member(:next_maintenance_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "nextMaintenanceTime"))
|
|
365
383
|
DeleteDbInstanceOutput.struct_class = Types::DeleteDbInstanceOutput
|
|
366
384
|
|
|
367
385
|
Duration.add_member(:duration_type, Shapes::ShapeRef.new(shape: DurationType, required: true, location_name: "durationType"))
|
|
@@ -387,10 +405,14 @@ module Aws::TimestreamInfluxDB
|
|
|
387
405
|
GetDbClusterOutput.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "publiclyAccessible"))
|
|
388
406
|
GetDbClusterOutput.add_member(:db_parameter_group_identifier, Shapes::ShapeRef.new(shape: DbParameterGroupIdentifier, location_name: "dbParameterGroupIdentifier"))
|
|
389
407
|
GetDbClusterOutput.add_member(:log_delivery_configuration, Shapes::ShapeRef.new(shape: LogDeliveryConfiguration, location_name: "logDeliveryConfiguration"))
|
|
408
|
+
GetDbClusterOutput.add_member(:maintenance_schedule, Shapes::ShapeRef.new(shape: MaintenanceSchedule, location_name: "maintenanceSchedule"))
|
|
409
|
+
GetDbClusterOutput.add_member(:last_maintenance_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "lastMaintenanceTime"))
|
|
410
|
+
GetDbClusterOutput.add_member(:next_maintenance_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "nextMaintenanceTime"))
|
|
390
411
|
GetDbClusterOutput.add_member(:influx_auth_parameters_secret_arn, Shapes::ShapeRef.new(shape: String, location_name: "influxAuthParametersSecretArn"))
|
|
391
412
|
GetDbClusterOutput.add_member(:vpc_subnet_ids, Shapes::ShapeRef.new(shape: VpcSubnetIdList, location_name: "vpcSubnetIds"))
|
|
392
413
|
GetDbClusterOutput.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: VpcSecurityGroupIdList, location_name: "vpcSecurityGroupIds"))
|
|
393
414
|
GetDbClusterOutput.add_member(:failover_mode, Shapes::ShapeRef.new(shape: FailoverMode, location_name: "failoverMode"))
|
|
415
|
+
GetDbClusterOutput.add_member(:cluster_configuration, Shapes::ShapeRef.new(shape: ClusterConfiguration, location_name: "clusterConfiguration"))
|
|
394
416
|
GetDbClusterOutput.struct_class = Types::GetDbClusterOutput
|
|
395
417
|
|
|
396
418
|
GetDbInstanceInput.add_member(:identifier, Shapes::ShapeRef.new(shape: DbInstanceIdentifier, required: true, location_name: "identifier"))
|
|
@@ -418,6 +440,9 @@ module Aws::TimestreamInfluxDB
|
|
|
418
440
|
GetDbInstanceOutput.add_member(:db_cluster_id, Shapes::ShapeRef.new(shape: DbClusterId, location_name: "dbClusterId"))
|
|
419
441
|
GetDbInstanceOutput.add_member(:instance_mode, Shapes::ShapeRef.new(shape: InstanceMode, location_name: "instanceMode"))
|
|
420
442
|
GetDbInstanceOutput.add_member(:instance_modes, Shapes::ShapeRef.new(shape: InstanceModeList, location_name: "instanceModes"))
|
|
443
|
+
GetDbInstanceOutput.add_member(:maintenance_schedule, Shapes::ShapeRef.new(shape: MaintenanceSchedule, location_name: "maintenanceSchedule"))
|
|
444
|
+
GetDbInstanceOutput.add_member(:last_maintenance_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "lastMaintenanceTime"))
|
|
445
|
+
GetDbInstanceOutput.add_member(:next_maintenance_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "nextMaintenanceTime"))
|
|
421
446
|
GetDbInstanceOutput.struct_class = Types::GetDbInstanceOutput
|
|
422
447
|
|
|
423
448
|
GetDbParameterGroupInput.add_member(:identifier, Shapes::ShapeRef.new(shape: DbParameterGroupIdentifier, required: true, location_name: "identifier"))
|
|
@@ -608,6 +633,10 @@ module Aws::TimestreamInfluxDB
|
|
|
608
633
|
LogDeliveryConfiguration.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: S3Configuration, required: true, location_name: "s3Configuration"))
|
|
609
634
|
LogDeliveryConfiguration.struct_class = Types::LogDeliveryConfiguration
|
|
610
635
|
|
|
636
|
+
MaintenanceSchedule.add_member(:timezone, Shapes::ShapeRef.new(shape: IanaTimezone, required: true, location_name: "timezone"))
|
|
637
|
+
MaintenanceSchedule.add_member(:preferred_maintenance_window, Shapes::ShapeRef.new(shape: MaintenanceWindow, required: true, location_name: "preferredMaintenanceWindow"))
|
|
638
|
+
MaintenanceSchedule.struct_class = Types::MaintenanceSchedule
|
|
639
|
+
|
|
611
640
|
Parameters.add_member(:influx_d_bv_2, Shapes::ShapeRef.new(shape: InfluxDBv2Parameters, location_name: "InfluxDBv2"))
|
|
612
641
|
Parameters.add_member(:influx_d_bv_3_core, Shapes::ShapeRef.new(shape: InfluxDBv3CoreParameters, location_name: "InfluxDBv3Core"))
|
|
613
642
|
Parameters.add_member(:influx_d_bv_3_enterprise, Shapes::ShapeRef.new(shape: InfluxDBv3EnterpriseParameters, location_name: "InfluxDBv3Enterprise"))
|
|
@@ -660,6 +689,9 @@ module Aws::TimestreamInfluxDB
|
|
|
660
689
|
RebootDbInstanceOutput.add_member(:db_cluster_id, Shapes::ShapeRef.new(shape: DbClusterId, location_name: "dbClusterId"))
|
|
661
690
|
RebootDbInstanceOutput.add_member(:instance_mode, Shapes::ShapeRef.new(shape: InstanceMode, location_name: "instanceMode"))
|
|
662
691
|
RebootDbInstanceOutput.add_member(:instance_modes, Shapes::ShapeRef.new(shape: InstanceModeList, location_name: "instanceModes"))
|
|
692
|
+
RebootDbInstanceOutput.add_member(:maintenance_schedule, Shapes::ShapeRef.new(shape: MaintenanceSchedule, location_name: "maintenanceSchedule"))
|
|
693
|
+
RebootDbInstanceOutput.add_member(:last_maintenance_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "lastMaintenanceTime"))
|
|
694
|
+
RebootDbInstanceOutput.add_member(:next_maintenance_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "nextMaintenanceTime"))
|
|
663
695
|
RebootDbInstanceOutput.struct_class = Types::RebootDbInstanceOutput
|
|
664
696
|
|
|
665
697
|
RequestTagMap.key = Shapes::ShapeRef.new(shape: TagKey)
|
|
@@ -700,6 +732,7 @@ module Aws::TimestreamInfluxDB
|
|
|
700
732
|
UpdateDbClusterInput.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
|
|
701
733
|
UpdateDbClusterInput.add_member(:db_instance_type, Shapes::ShapeRef.new(shape: DbInstanceType, location_name: "dbInstanceType"))
|
|
702
734
|
UpdateDbClusterInput.add_member(:failover_mode, Shapes::ShapeRef.new(shape: FailoverMode, location_name: "failoverMode"))
|
|
735
|
+
UpdateDbClusterInput.add_member(:maintenance_schedule, Shapes::ShapeRef.new(shape: MaintenanceSchedule, location_name: "maintenanceSchedule"))
|
|
703
736
|
UpdateDbClusterInput.struct_class = Types::UpdateDbClusterInput
|
|
704
737
|
|
|
705
738
|
UpdateDbClusterOutput.add_member(:db_cluster_status, Shapes::ShapeRef.new(shape: ClusterStatus, location_name: "dbClusterStatus"))
|
|
@@ -713,6 +746,7 @@ module Aws::TimestreamInfluxDB
|
|
|
713
746
|
UpdateDbInstanceInput.add_member(:deployment_type, Shapes::ShapeRef.new(shape: DeploymentType, location_name: "deploymentType"))
|
|
714
747
|
UpdateDbInstanceInput.add_member(:db_storage_type, Shapes::ShapeRef.new(shape: DbStorageType, location_name: "dbStorageType"))
|
|
715
748
|
UpdateDbInstanceInput.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: AllocatedStorage, location_name: "allocatedStorage"))
|
|
749
|
+
UpdateDbInstanceInput.add_member(:maintenance_schedule, Shapes::ShapeRef.new(shape: MaintenanceSchedule, location_name: "maintenanceSchedule"))
|
|
716
750
|
UpdateDbInstanceInput.struct_class = Types::UpdateDbInstanceInput
|
|
717
751
|
|
|
718
752
|
UpdateDbInstanceOutput.add_member(:id, Shapes::ShapeRef.new(shape: DbInstanceId, required: true, location_name: "id"))
|
|
@@ -737,6 +771,9 @@ module Aws::TimestreamInfluxDB
|
|
|
737
771
|
UpdateDbInstanceOutput.add_member(:db_cluster_id, Shapes::ShapeRef.new(shape: DbClusterId, location_name: "dbClusterId"))
|
|
738
772
|
UpdateDbInstanceOutput.add_member(:instance_mode, Shapes::ShapeRef.new(shape: InstanceMode, location_name: "instanceMode"))
|
|
739
773
|
UpdateDbInstanceOutput.add_member(:instance_modes, Shapes::ShapeRef.new(shape: InstanceModeList, location_name: "instanceModes"))
|
|
774
|
+
UpdateDbInstanceOutput.add_member(:maintenance_schedule, Shapes::ShapeRef.new(shape: MaintenanceSchedule, location_name: "maintenanceSchedule"))
|
|
775
|
+
UpdateDbInstanceOutput.add_member(:last_maintenance_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "lastMaintenanceTime"))
|
|
776
|
+
UpdateDbInstanceOutput.add_member(:next_maintenance_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "nextMaintenanceTime"))
|
|
740
777
|
UpdateDbInstanceOutput.struct_class = Types::UpdateDbInstanceOutput
|
|
741
778
|
|
|
742
779
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
@@ -23,6 +23,31 @@ module Aws::TimestreamInfluxDB
|
|
|
23
23
|
include Aws::Structure
|
|
24
24
|
end
|
|
25
25
|
|
|
26
|
+
# Configuration for node modes in the DbCluster.
|
|
27
|
+
#
|
|
28
|
+
# @!attribute [rw] ingest_query_instances
|
|
29
|
+
# The number of instances in the DbCluster which can both ingest and
|
|
30
|
+
# query.
|
|
31
|
+
# @return [Integer]
|
|
32
|
+
#
|
|
33
|
+
# @!attribute [rw] query_only_instances
|
|
34
|
+
# The number of instances in the DbCluster which can only query.
|
|
35
|
+
# @return [Integer]
|
|
36
|
+
#
|
|
37
|
+
# @!attribute [rw] dedicated_compactor
|
|
38
|
+
# Indicates if the compactor instance is a standalone instance or not.
|
|
39
|
+
# @return [Boolean]
|
|
40
|
+
#
|
|
41
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/ClusterConfiguration AWS API Documentation
|
|
42
|
+
#
|
|
43
|
+
class ClusterConfiguration < Struct.new(
|
|
44
|
+
:ingest_query_instances,
|
|
45
|
+
:query_only_instances,
|
|
46
|
+
:dedicated_compactor)
|
|
47
|
+
SENSITIVE = []
|
|
48
|
+
include Aws::Structure
|
|
49
|
+
end
|
|
50
|
+
|
|
26
51
|
# The request conflicts with an existing resource in Timestream for
|
|
27
52
|
# InfluxDB.
|
|
28
53
|
#
|
|
@@ -164,6 +189,11 @@ module Aws::TimestreamInfluxDB
|
|
|
164
189
|
# bucket.
|
|
165
190
|
# @return [Types::LogDeliveryConfiguration]
|
|
166
191
|
#
|
|
192
|
+
# @!attribute [rw] maintenance_schedule
|
|
193
|
+
# Specifies the maintenance schedule for the DB cluster, including the
|
|
194
|
+
# preferred maintenance window and timezone.
|
|
195
|
+
# @return [Types::MaintenanceSchedule]
|
|
196
|
+
#
|
|
167
197
|
# @!attribute [rw] tags
|
|
168
198
|
# A list of key-value pairs to associate with the DB instance.
|
|
169
199
|
# @return [Hash<String,String>]
|
|
@@ -188,6 +218,7 @@ module Aws::TimestreamInfluxDB
|
|
|
188
218
|
:deployment_type,
|
|
189
219
|
:failover_mode,
|
|
190
220
|
:log_delivery_configuration,
|
|
221
|
+
:maintenance_schedule,
|
|
191
222
|
:tags)
|
|
192
223
|
SENSITIVE = [:username, :password]
|
|
193
224
|
include Aws::Structure
|
|
@@ -302,6 +333,11 @@ module Aws::TimestreamInfluxDB
|
|
|
302
333
|
# bucket.
|
|
303
334
|
# @return [Types::LogDeliveryConfiguration]
|
|
304
335
|
#
|
|
336
|
+
# @!attribute [rw] maintenance_schedule
|
|
337
|
+
# Specifies the maintenance schedule for the DB instance, including
|
|
338
|
+
# the preferred maintenance window and timezone.
|
|
339
|
+
# @return [Types::MaintenanceSchedule]
|
|
340
|
+
#
|
|
305
341
|
# @!attribute [rw] tags
|
|
306
342
|
# A list of key-value pairs to associate with the DB instance.
|
|
307
343
|
# @return [Hash<String,String>]
|
|
@@ -340,6 +376,7 @@ module Aws::TimestreamInfluxDB
|
|
|
340
376
|
:db_parameter_group_identifier,
|
|
341
377
|
:deployment_type,
|
|
342
378
|
:log_delivery_configuration,
|
|
379
|
+
:maintenance_schedule,
|
|
343
380
|
:tags,
|
|
344
381
|
:port,
|
|
345
382
|
:network_type)
|
|
@@ -449,6 +486,20 @@ module Aws::TimestreamInfluxDB
|
|
|
449
486
|
# Specifies the DbInstance's roles in the cluster.
|
|
450
487
|
# @return [Array<String>]
|
|
451
488
|
#
|
|
489
|
+
# @!attribute [rw] maintenance_schedule
|
|
490
|
+
# The maintenance schedule for the DB instance.
|
|
491
|
+
# @return [Types::MaintenanceSchedule]
|
|
492
|
+
#
|
|
493
|
+
# @!attribute [rw] last_maintenance_time
|
|
494
|
+
# The timestamp of the last completed maintenance operation on the DB
|
|
495
|
+
# instance.
|
|
496
|
+
# @return [Time]
|
|
497
|
+
#
|
|
498
|
+
# @!attribute [rw] next_maintenance_time
|
|
499
|
+
# The timestamp of the next scheduled maintenance operation on the DB
|
|
500
|
+
# instance.
|
|
501
|
+
# @return [Time]
|
|
502
|
+
#
|
|
452
503
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/CreateDbInstanceOutput AWS API Documentation
|
|
453
504
|
#
|
|
454
505
|
class CreateDbInstanceOutput < Struct.new(
|
|
@@ -473,7 +524,10 @@ module Aws::TimestreamInfluxDB
|
|
|
473
524
|
:influx_auth_parameters_secret_arn,
|
|
474
525
|
:db_cluster_id,
|
|
475
526
|
:instance_mode,
|
|
476
|
-
:instance_modes
|
|
527
|
+
:instance_modes,
|
|
528
|
+
:maintenance_schedule,
|
|
529
|
+
:last_maintenance_time,
|
|
530
|
+
:next_maintenance_time)
|
|
477
531
|
SENSITIVE = []
|
|
478
532
|
include Aws::Structure
|
|
479
533
|
end
|
|
@@ -935,6 +989,20 @@ module Aws::TimestreamInfluxDB
|
|
|
935
989
|
# Specifies the DbInstance's roles in the cluster.
|
|
936
990
|
# @return [Array<String>]
|
|
937
991
|
#
|
|
992
|
+
# @!attribute [rw] maintenance_schedule
|
|
993
|
+
# The maintenance schedule for the DB instance.
|
|
994
|
+
# @return [Types::MaintenanceSchedule]
|
|
995
|
+
#
|
|
996
|
+
# @!attribute [rw] last_maintenance_time
|
|
997
|
+
# The timestamp of the last completed maintenance operation on the DB
|
|
998
|
+
# instance.
|
|
999
|
+
# @return [Time]
|
|
1000
|
+
#
|
|
1001
|
+
# @!attribute [rw] next_maintenance_time
|
|
1002
|
+
# The timestamp of the next scheduled maintenance operation on the DB
|
|
1003
|
+
# instance.
|
|
1004
|
+
# @return [Time]
|
|
1005
|
+
#
|
|
938
1006
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/DeleteDbInstanceOutput AWS API Documentation
|
|
939
1007
|
#
|
|
940
1008
|
class DeleteDbInstanceOutput < Struct.new(
|
|
@@ -959,7 +1027,10 @@ module Aws::TimestreamInfluxDB
|
|
|
959
1027
|
:influx_auth_parameters_secret_arn,
|
|
960
1028
|
:db_cluster_id,
|
|
961
1029
|
:instance_mode,
|
|
962
|
-
:instance_modes
|
|
1030
|
+
:instance_modes,
|
|
1031
|
+
:maintenance_schedule,
|
|
1032
|
+
:last_maintenance_time,
|
|
1033
|
+
:next_maintenance_time)
|
|
963
1034
|
SENSITIVE = []
|
|
964
1035
|
include Aws::Structure
|
|
965
1036
|
end
|
|
@@ -1067,6 +1138,20 @@ module Aws::TimestreamInfluxDB
|
|
|
1067
1138
|
# S3 bucket.
|
|
1068
1139
|
# @return [Types::LogDeliveryConfiguration]
|
|
1069
1140
|
#
|
|
1141
|
+
# @!attribute [rw] maintenance_schedule
|
|
1142
|
+
# The maintenance schedule for the DB cluster.
|
|
1143
|
+
# @return [Types::MaintenanceSchedule]
|
|
1144
|
+
#
|
|
1145
|
+
# @!attribute [rw] last_maintenance_time
|
|
1146
|
+
# The timestamp of the last completed maintenance operation on the DB
|
|
1147
|
+
# cluster.
|
|
1148
|
+
# @return [Time]
|
|
1149
|
+
#
|
|
1150
|
+
# @!attribute [rw] next_maintenance_time
|
|
1151
|
+
# The timestamp of the next scheduled maintenance operation on the DB
|
|
1152
|
+
# cluster.
|
|
1153
|
+
# @return [Time]
|
|
1154
|
+
#
|
|
1070
1155
|
# @!attribute [rw] influx_auth_parameters_secret_arn
|
|
1071
1156
|
# The Amazon Resource Name (ARN) of the Secrets Manager secret
|
|
1072
1157
|
# containing the initial InfluxDB authorization parameters. The secret
|
|
@@ -1086,6 +1171,10 @@ module Aws::TimestreamInfluxDB
|
|
|
1086
1171
|
# The configured failover mode for the DB cluster.
|
|
1087
1172
|
# @return [String]
|
|
1088
1173
|
#
|
|
1174
|
+
# @!attribute [rw] cluster_configuration
|
|
1175
|
+
# Configuration for node modes in the DbCluster.
|
|
1176
|
+
# @return [Types::ClusterConfiguration]
|
|
1177
|
+
#
|
|
1089
1178
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/GetDbClusterOutput AWS API Documentation
|
|
1090
1179
|
#
|
|
1091
1180
|
class GetDbClusterOutput < Struct.new(
|
|
@@ -1105,10 +1194,14 @@ module Aws::TimestreamInfluxDB
|
|
|
1105
1194
|
:publicly_accessible,
|
|
1106
1195
|
:db_parameter_group_identifier,
|
|
1107
1196
|
:log_delivery_configuration,
|
|
1197
|
+
:maintenance_schedule,
|
|
1198
|
+
:last_maintenance_time,
|
|
1199
|
+
:next_maintenance_time,
|
|
1108
1200
|
:influx_auth_parameters_secret_arn,
|
|
1109
1201
|
:vpc_subnet_ids,
|
|
1110
1202
|
:vpc_security_group_ids,
|
|
1111
|
-
:failover_mode
|
|
1203
|
+
:failover_mode,
|
|
1204
|
+
:cluster_configuration)
|
|
1112
1205
|
SENSITIVE = []
|
|
1113
1206
|
include Aws::Structure
|
|
1114
1207
|
end
|
|
@@ -1226,6 +1319,20 @@ module Aws::TimestreamInfluxDB
|
|
|
1226
1319
|
# Specifies the DbInstance's roles in the cluster.
|
|
1227
1320
|
# @return [Array<String>]
|
|
1228
1321
|
#
|
|
1322
|
+
# @!attribute [rw] maintenance_schedule
|
|
1323
|
+
# The maintenance schedule for the DB instance.
|
|
1324
|
+
# @return [Types::MaintenanceSchedule]
|
|
1325
|
+
#
|
|
1326
|
+
# @!attribute [rw] last_maintenance_time
|
|
1327
|
+
# The timestamp of the last completed maintenance operation on the DB
|
|
1328
|
+
# instance.
|
|
1329
|
+
# @return [Time]
|
|
1330
|
+
#
|
|
1331
|
+
# @!attribute [rw] next_maintenance_time
|
|
1332
|
+
# The timestamp of the next scheduled maintenance operation on the DB
|
|
1333
|
+
# instance.
|
|
1334
|
+
# @return [Time]
|
|
1335
|
+
#
|
|
1229
1336
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/GetDbInstanceOutput AWS API Documentation
|
|
1230
1337
|
#
|
|
1231
1338
|
class GetDbInstanceOutput < Struct.new(
|
|
@@ -1250,7 +1357,10 @@ module Aws::TimestreamInfluxDB
|
|
|
1250
1357
|
:influx_auth_parameters_secret_arn,
|
|
1251
1358
|
:db_cluster_id,
|
|
1252
1359
|
:instance_mode,
|
|
1253
|
-
:instance_modes
|
|
1360
|
+
:instance_modes,
|
|
1361
|
+
:maintenance_schedule,
|
|
1362
|
+
:last_maintenance_time,
|
|
1363
|
+
:next_maintenance_time)
|
|
1254
1364
|
SENSITIVE = []
|
|
1255
1365
|
include Aws::Structure
|
|
1256
1366
|
end
|
|
@@ -2526,6 +2636,31 @@ module Aws::TimestreamInfluxDB
|
|
|
2526
2636
|
include Aws::Structure
|
|
2527
2637
|
end
|
|
2528
2638
|
|
|
2639
|
+
# Specifies the maintenance schedule for a DB instance or cluster,
|
|
2640
|
+
# defining when maintenance operations such as patching can be
|
|
2641
|
+
# performed.
|
|
2642
|
+
#
|
|
2643
|
+
# @!attribute [rw] timezone
|
|
2644
|
+
# The IANA timezone identifier for the maintenance window. Format:
|
|
2645
|
+
# Region/City or UTC. For example, America/New\_York or UTC.
|
|
2646
|
+
# @return [String]
|
|
2647
|
+
#
|
|
2648
|
+
# @!attribute [rw] preferred_maintenance_window
|
|
2649
|
+
# The preferred maintenance window in the format ddd:HH:MM-ddd:HH:MM
|
|
2650
|
+
# (UTC). Day must be one of: Mon, Tue, Wed, Thu, Fri, Sat, Sun. For
|
|
2651
|
+
# example, Sun:02:00-Sun:06:00. Provide an empty string to let the
|
|
2652
|
+
# system choose a window.
|
|
2653
|
+
# @return [String]
|
|
2654
|
+
#
|
|
2655
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/MaintenanceSchedule AWS API Documentation
|
|
2656
|
+
#
|
|
2657
|
+
class MaintenanceSchedule < Struct.new(
|
|
2658
|
+
:timezone,
|
|
2659
|
+
:preferred_maintenance_window)
|
|
2660
|
+
SENSITIVE = []
|
|
2661
|
+
include Aws::Structure
|
|
2662
|
+
end
|
|
2663
|
+
|
|
2529
2664
|
# The parameters that comprise the parameter group.
|
|
2530
2665
|
#
|
|
2531
2666
|
# @note Parameters is a union - when making an API calls you must set exactly one of the members.
|
|
@@ -2736,6 +2871,20 @@ module Aws::TimestreamInfluxDB
|
|
|
2736
2871
|
# Specifies the DbInstance's roles in the cluster.
|
|
2737
2872
|
# @return [Array<String>]
|
|
2738
2873
|
#
|
|
2874
|
+
# @!attribute [rw] maintenance_schedule
|
|
2875
|
+
# The maintenance schedule for the DB instance.
|
|
2876
|
+
# @return [Types::MaintenanceSchedule]
|
|
2877
|
+
#
|
|
2878
|
+
# @!attribute [rw] last_maintenance_time
|
|
2879
|
+
# The timestamp of the last completed maintenance operation on the DB
|
|
2880
|
+
# instance.
|
|
2881
|
+
# @return [Time]
|
|
2882
|
+
#
|
|
2883
|
+
# @!attribute [rw] next_maintenance_time
|
|
2884
|
+
# The timestamp of the next scheduled maintenance operation on the DB
|
|
2885
|
+
# instance.
|
|
2886
|
+
# @return [Time]
|
|
2887
|
+
#
|
|
2739
2888
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/RebootDbInstanceOutput AWS API Documentation
|
|
2740
2889
|
#
|
|
2741
2890
|
class RebootDbInstanceOutput < Struct.new(
|
|
@@ -2760,7 +2909,10 @@ module Aws::TimestreamInfluxDB
|
|
|
2760
2909
|
:influx_auth_parameters_secret_arn,
|
|
2761
2910
|
:db_cluster_id,
|
|
2762
2911
|
:instance_mode,
|
|
2763
|
-
:instance_modes
|
|
2912
|
+
:instance_modes,
|
|
2913
|
+
:maintenance_schedule,
|
|
2914
|
+
:last_maintenance_time,
|
|
2915
|
+
:next_maintenance_time)
|
|
2764
2916
|
SENSITIVE = []
|
|
2765
2917
|
include Aws::Structure
|
|
2766
2918
|
end
|
|
@@ -2898,6 +3050,11 @@ module Aws::TimestreamInfluxDB
|
|
|
2898
3050
|
# Update the DB cluster's failover behavior.
|
|
2899
3051
|
# @return [String]
|
|
2900
3052
|
#
|
|
3053
|
+
# @!attribute [rw] maintenance_schedule
|
|
3054
|
+
# Specifies the maintenance schedule for the DB cluster, including the
|
|
3055
|
+
# preferred maintenance window and timezone.
|
|
3056
|
+
# @return [Types::MaintenanceSchedule]
|
|
3057
|
+
#
|
|
2901
3058
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/UpdateDbClusterInput AWS API Documentation
|
|
2902
3059
|
#
|
|
2903
3060
|
class UpdateDbClusterInput < Struct.new(
|
|
@@ -2906,7 +3063,8 @@ module Aws::TimestreamInfluxDB
|
|
|
2906
3063
|
:db_parameter_group_identifier,
|
|
2907
3064
|
:port,
|
|
2908
3065
|
:db_instance_type,
|
|
2909
|
-
:failover_mode
|
|
3066
|
+
:failover_mode,
|
|
3067
|
+
:maintenance_schedule)
|
|
2910
3068
|
SENSITIVE = []
|
|
2911
3069
|
include Aws::Structure
|
|
2912
3070
|
end
|
|
@@ -2971,6 +3129,11 @@ module Aws::TimestreamInfluxDB
|
|
|
2971
3129
|
# gibibytes).
|
|
2972
3130
|
# @return [Integer]
|
|
2973
3131
|
#
|
|
3132
|
+
# @!attribute [rw] maintenance_schedule
|
|
3133
|
+
# Specifies the maintenance schedule for the DB instance, including
|
|
3134
|
+
# the preferred maintenance window and timezone.
|
|
3135
|
+
# @return [Types::MaintenanceSchedule]
|
|
3136
|
+
#
|
|
2974
3137
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/UpdateDbInstanceInput AWS API Documentation
|
|
2975
3138
|
#
|
|
2976
3139
|
class UpdateDbInstanceInput < Struct.new(
|
|
@@ -2981,7 +3144,8 @@ module Aws::TimestreamInfluxDB
|
|
|
2981
3144
|
:db_instance_type,
|
|
2982
3145
|
:deployment_type,
|
|
2983
3146
|
:db_storage_type,
|
|
2984
|
-
:allocated_storage
|
|
3147
|
+
:allocated_storage,
|
|
3148
|
+
:maintenance_schedule)
|
|
2985
3149
|
SENSITIVE = []
|
|
2986
3150
|
include Aws::Structure
|
|
2987
3151
|
end
|
|
@@ -3087,6 +3251,20 @@ module Aws::TimestreamInfluxDB
|
|
|
3087
3251
|
# Specifies the DbInstance's roles in the cluster.
|
|
3088
3252
|
# @return [Array<String>]
|
|
3089
3253
|
#
|
|
3254
|
+
# @!attribute [rw] maintenance_schedule
|
|
3255
|
+
# The maintenance schedule for the DB instance.
|
|
3256
|
+
# @return [Types::MaintenanceSchedule]
|
|
3257
|
+
#
|
|
3258
|
+
# @!attribute [rw] last_maintenance_time
|
|
3259
|
+
# The timestamp of the last completed maintenance operation on the DB
|
|
3260
|
+
# instance.
|
|
3261
|
+
# @return [Time]
|
|
3262
|
+
#
|
|
3263
|
+
# @!attribute [rw] next_maintenance_time
|
|
3264
|
+
# The timestamp of the next scheduled maintenance operation on the DB
|
|
3265
|
+
# instance.
|
|
3266
|
+
# @return [Time]
|
|
3267
|
+
#
|
|
3090
3268
|
# @see http://docs.aws.amazon.com/goto/WebAPI/timestream-influxdb-2023-01-27/UpdateDbInstanceOutput AWS API Documentation
|
|
3091
3269
|
#
|
|
3092
3270
|
class UpdateDbInstanceOutput < Struct.new(
|
|
@@ -3111,7 +3289,10 @@ module Aws::TimestreamInfluxDB
|
|
|
3111
3289
|
:influx_auth_parameters_secret_arn,
|
|
3112
3290
|
:db_cluster_id,
|
|
3113
3291
|
:instance_mode,
|
|
3114
|
-
:instance_modes
|
|
3292
|
+
:instance_modes,
|
|
3293
|
+
:maintenance_schedule,
|
|
3294
|
+
:last_maintenance_time,
|
|
3295
|
+
:next_maintenance_time)
|
|
3115
3296
|
SENSITIVE = []
|
|
3116
3297
|
include Aws::Structure
|
|
3117
3298
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -108,6 +108,10 @@ module Aws
|
|
|
108
108
|
enabled: bool
|
|
109
109
|
}
|
|
110
110
|
},
|
|
111
|
+
?maintenance_schedule: {
|
|
112
|
+
timezone: ::String,
|
|
113
|
+
preferred_maintenance_window: ::String
|
|
114
|
+
},
|
|
111
115
|
?tags: Hash[::String, ::String]
|
|
112
116
|
) -> _CreateDbClusterResponseSuccess
|
|
113
117
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDbClusterResponseSuccess
|
|
@@ -136,6 +140,9 @@ module Aws
|
|
|
136
140
|
def db_cluster_id: () -> ::String
|
|
137
141
|
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
|
138
142
|
def instance_modes: () -> ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
|
143
|
+
def maintenance_schedule: () -> Types::MaintenanceSchedule
|
|
144
|
+
def last_maintenance_time: () -> ::Time
|
|
145
|
+
def next_maintenance_time: () -> ::Time
|
|
139
146
|
end
|
|
140
147
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#create_db_instance-instance_method
|
|
141
148
|
def create_db_instance: (
|
|
@@ -158,6 +165,10 @@ module Aws
|
|
|
158
165
|
enabled: bool
|
|
159
166
|
}
|
|
160
167
|
},
|
|
168
|
+
?maintenance_schedule: {
|
|
169
|
+
timezone: ::String,
|
|
170
|
+
preferred_maintenance_window: ::String
|
|
171
|
+
},
|
|
161
172
|
?tags: Hash[::String, ::String],
|
|
162
173
|
?port: ::Integer,
|
|
163
174
|
?network_type: ("IPV4" | "DUAL")
|
|
@@ -470,6 +481,9 @@ module Aws
|
|
|
470
481
|
def db_cluster_id: () -> ::String
|
|
471
482
|
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
|
472
483
|
def instance_modes: () -> ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
|
484
|
+
def maintenance_schedule: () -> Types::MaintenanceSchedule
|
|
485
|
+
def last_maintenance_time: () -> ::Time
|
|
486
|
+
def next_maintenance_time: () -> ::Time
|
|
473
487
|
end
|
|
474
488
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#delete_db_instance-instance_method
|
|
475
489
|
def delete_db_instance: (
|
|
@@ -495,10 +509,14 @@ module Aws
|
|
|
495
509
|
def publicly_accessible: () -> bool
|
|
496
510
|
def db_parameter_group_identifier: () -> ::String
|
|
497
511
|
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
|
512
|
+
def maintenance_schedule: () -> Types::MaintenanceSchedule
|
|
513
|
+
def last_maintenance_time: () -> ::Time
|
|
514
|
+
def next_maintenance_time: () -> ::Time
|
|
498
515
|
def influx_auth_parameters_secret_arn: () -> ::String
|
|
499
516
|
def vpc_subnet_ids: () -> ::Array[::String]
|
|
500
517
|
def vpc_security_group_ids: () -> ::Array[::String]
|
|
501
518
|
def failover_mode: () -> ("AUTOMATIC" | "NO_FAILOVER")
|
|
519
|
+
def cluster_configuration: () -> Types::ClusterConfiguration
|
|
502
520
|
end
|
|
503
521
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#get_db_cluster-instance_method
|
|
504
522
|
def get_db_cluster: (
|
|
@@ -530,6 +548,9 @@ module Aws
|
|
|
530
548
|
def db_cluster_id: () -> ::String
|
|
531
549
|
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
|
532
550
|
def instance_modes: () -> ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
|
551
|
+
def maintenance_schedule: () -> Types::MaintenanceSchedule
|
|
552
|
+
def last_maintenance_time: () -> ::Time
|
|
553
|
+
def next_maintenance_time: () -> ::Time
|
|
533
554
|
end
|
|
534
555
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#get_db_instance-instance_method
|
|
535
556
|
def get_db_instance: (
|
|
@@ -645,6 +666,9 @@ module Aws
|
|
|
645
666
|
def db_cluster_id: () -> ::String
|
|
646
667
|
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
|
647
668
|
def instance_modes: () -> ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
|
669
|
+
def maintenance_schedule: () -> Types::MaintenanceSchedule
|
|
670
|
+
def last_maintenance_time: () -> ::Time
|
|
671
|
+
def next_maintenance_time: () -> ::Time
|
|
648
672
|
end
|
|
649
673
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#reboot_db_instance-instance_method
|
|
650
674
|
def reboot_db_instance: (
|
|
@@ -682,7 +706,11 @@ module Aws
|
|
|
682
706
|
?db_parameter_group_identifier: ::String,
|
|
683
707
|
?port: ::Integer,
|
|
684
708
|
?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"),
|
|
685
|
-
?failover_mode: ("AUTOMATIC" | "NO_FAILOVER")
|
|
709
|
+
?failover_mode: ("AUTOMATIC" | "NO_FAILOVER"),
|
|
710
|
+
?maintenance_schedule: {
|
|
711
|
+
timezone: ::String,
|
|
712
|
+
preferred_maintenance_window: ::String
|
|
713
|
+
}
|
|
686
714
|
) -> _UpdateDbClusterResponseSuccess
|
|
687
715
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDbClusterResponseSuccess
|
|
688
716
|
|
|
@@ -710,6 +738,9 @@ module Aws
|
|
|
710
738
|
def db_cluster_id: () -> ::String
|
|
711
739
|
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
|
712
740
|
def instance_modes: () -> ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
|
741
|
+
def maintenance_schedule: () -> Types::MaintenanceSchedule
|
|
742
|
+
def last_maintenance_time: () -> ::Time
|
|
743
|
+
def next_maintenance_time: () -> ::Time
|
|
713
744
|
end
|
|
714
745
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#update_db_instance-instance_method
|
|
715
746
|
def update_db_instance: (
|
|
@@ -725,7 +756,11 @@ module Aws
|
|
|
725
756
|
?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"),
|
|
726
757
|
?deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY"),
|
|
727
758
|
?db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3"),
|
|
728
|
-
?allocated_storage: ::Integer
|
|
759
|
+
?allocated_storage: ::Integer,
|
|
760
|
+
?maintenance_schedule: {
|
|
761
|
+
timezone: ::String,
|
|
762
|
+
preferred_maintenance_window: ::String
|
|
763
|
+
}
|
|
729
764
|
) -> _UpdateDbInstanceResponseSuccess
|
|
730
765
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDbInstanceResponseSuccess
|
|
731
766
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -13,6 +13,13 @@ module Aws::TimestreamInfluxDB
|
|
|
13
13
|
SENSITIVE: []
|
|
14
14
|
end
|
|
15
15
|
|
|
16
|
+
class ClusterConfiguration
|
|
17
|
+
attr_accessor ingest_query_instances: ::Integer
|
|
18
|
+
attr_accessor query_only_instances: ::Integer
|
|
19
|
+
attr_accessor dedicated_compactor: bool
|
|
20
|
+
SENSITIVE: []
|
|
21
|
+
end
|
|
22
|
+
|
|
16
23
|
class ConflictException
|
|
17
24
|
attr_accessor message: ::String
|
|
18
25
|
attr_accessor resource_id: ::String
|
|
@@ -38,6 +45,7 @@ module Aws::TimestreamInfluxDB
|
|
|
38
45
|
attr_accessor deployment_type: ("MULTI_NODE_READ_REPLICAS")
|
|
39
46
|
attr_accessor failover_mode: ("AUTOMATIC" | "NO_FAILOVER")
|
|
40
47
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
|
48
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
41
49
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
42
50
|
SENSITIVE: [:username, :password]
|
|
43
51
|
end
|
|
@@ -63,6 +71,7 @@ module Aws::TimestreamInfluxDB
|
|
|
63
71
|
attr_accessor db_parameter_group_identifier: ::String
|
|
64
72
|
attr_accessor deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
|
65
73
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
|
74
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
66
75
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
67
76
|
attr_accessor port: ::Integer
|
|
68
77
|
attr_accessor network_type: ("IPV4" | "DUAL")
|
|
@@ -92,6 +101,9 @@ module Aws::TimestreamInfluxDB
|
|
|
92
101
|
attr_accessor db_cluster_id: ::String
|
|
93
102
|
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
|
94
103
|
attr_accessor instance_modes: ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
|
104
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
105
|
+
attr_accessor last_maintenance_time: ::Time
|
|
106
|
+
attr_accessor next_maintenance_time: ::Time
|
|
95
107
|
SENSITIVE: []
|
|
96
108
|
end
|
|
97
109
|
|
|
@@ -207,6 +219,9 @@ module Aws::TimestreamInfluxDB
|
|
|
207
219
|
attr_accessor db_cluster_id: ::String
|
|
208
220
|
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
|
209
221
|
attr_accessor instance_modes: ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
|
222
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
223
|
+
attr_accessor last_maintenance_time: ::Time
|
|
224
|
+
attr_accessor next_maintenance_time: ::Time
|
|
210
225
|
SENSITIVE: []
|
|
211
226
|
end
|
|
212
227
|
|
|
@@ -238,10 +253,14 @@ module Aws::TimestreamInfluxDB
|
|
|
238
253
|
attr_accessor publicly_accessible: bool
|
|
239
254
|
attr_accessor db_parameter_group_identifier: ::String
|
|
240
255
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
|
256
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
257
|
+
attr_accessor last_maintenance_time: ::Time
|
|
258
|
+
attr_accessor next_maintenance_time: ::Time
|
|
241
259
|
attr_accessor influx_auth_parameters_secret_arn: ::String
|
|
242
260
|
attr_accessor vpc_subnet_ids: ::Array[::String]
|
|
243
261
|
attr_accessor vpc_security_group_ids: ::Array[::String]
|
|
244
262
|
attr_accessor failover_mode: ("AUTOMATIC" | "NO_FAILOVER")
|
|
263
|
+
attr_accessor cluster_configuration: Types::ClusterConfiguration
|
|
245
264
|
SENSITIVE: []
|
|
246
265
|
end
|
|
247
266
|
|
|
@@ -273,6 +292,9 @@ module Aws::TimestreamInfluxDB
|
|
|
273
292
|
attr_accessor db_cluster_id: ::String
|
|
274
293
|
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
|
275
294
|
attr_accessor instance_modes: ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
|
295
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
296
|
+
attr_accessor last_maintenance_time: ::Time
|
|
297
|
+
attr_accessor next_maintenance_time: ::Time
|
|
276
298
|
SENSITIVE: []
|
|
277
299
|
end
|
|
278
300
|
|
|
@@ -496,6 +518,12 @@ module Aws::TimestreamInfluxDB
|
|
|
496
518
|
SENSITIVE: []
|
|
497
519
|
end
|
|
498
520
|
|
|
521
|
+
class MaintenanceSchedule
|
|
522
|
+
attr_accessor timezone: ::String
|
|
523
|
+
attr_accessor preferred_maintenance_window: ::String
|
|
524
|
+
SENSITIVE: []
|
|
525
|
+
end
|
|
526
|
+
|
|
499
527
|
class Parameters
|
|
500
528
|
attr_accessor influx_d_bv_2: Types::InfluxDBv2Parameters
|
|
501
529
|
attr_accessor influx_d_bv_3_core: Types::InfluxDBv3CoreParameters
|
|
@@ -566,6 +594,9 @@ module Aws::TimestreamInfluxDB
|
|
|
566
594
|
attr_accessor db_cluster_id: ::String
|
|
567
595
|
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
|
568
596
|
attr_accessor instance_modes: ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
|
597
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
598
|
+
attr_accessor last_maintenance_time: ::Time
|
|
599
|
+
attr_accessor next_maintenance_time: ::Time
|
|
569
600
|
SENSITIVE: []
|
|
570
601
|
end
|
|
571
602
|
|
|
@@ -612,6 +643,7 @@ module Aws::TimestreamInfluxDB
|
|
|
612
643
|
attr_accessor port: ::Integer
|
|
613
644
|
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" | "db.influx.24xlarge")
|
|
614
645
|
attr_accessor failover_mode: ("AUTOMATIC" | "NO_FAILOVER")
|
|
646
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
615
647
|
SENSITIVE: []
|
|
616
648
|
end
|
|
617
649
|
|
|
@@ -629,6 +661,7 @@ module Aws::TimestreamInfluxDB
|
|
|
629
661
|
attr_accessor deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
|
630
662
|
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
|
631
663
|
attr_accessor allocated_storage: ::Integer
|
|
664
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
632
665
|
SENSITIVE: []
|
|
633
666
|
end
|
|
634
667
|
|
|
@@ -655,6 +688,9 @@ module Aws::TimestreamInfluxDB
|
|
|
655
688
|
attr_accessor db_cluster_id: ::String
|
|
656
689
|
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")
|
|
657
690
|
attr_accessor instance_modes: ::Array[("PRIMARY" | "STANDBY" | "REPLICA" | "INGEST" | "QUERY" | "COMPACT" | "PROCESS")]
|
|
691
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
692
|
+
attr_accessor last_maintenance_time: ::Time
|
|
693
|
+
attr_accessor next_maintenance_time: ::Time
|
|
658
694
|
SENSITIVE: []
|
|
659
695
|
end
|
|
660
696
|
|