aws-sdk-timestreaminfluxdb 1.19.0 → 1.20.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 +424 -1
- data/lib/aws-sdk-timestreaminfluxdb/client_api.rb +238 -0
- data/lib/aws-sdk-timestreaminfluxdb/types.rb +639 -4
- data/lib/aws-sdk-timestreaminfluxdb.rb +2 -2
- data/sig/client.rbs +124 -0
- data/sig/types.rbs +146 -0
- metadata +2 -2
@@ -23,7 +23,7 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:timestreaminfluxdb)
|
|
23
23
|
# structure.
|
24
24
|
#
|
25
25
|
# timestream_influx_db = Aws::TimestreamInfluxDB::Client.new
|
26
|
-
# resp = timestream_influx_db.
|
26
|
+
# resp = timestream_influx_db.create_db_cluster(params)
|
27
27
|
#
|
28
28
|
# See {Client} for more information.
|
29
29
|
#
|
@@ -54,7 +54,7 @@ module Aws::TimestreamInfluxDB
|
|
54
54
|
autoload :EndpointProvider, 'aws-sdk-timestreaminfluxdb/endpoint_provider'
|
55
55
|
autoload :Endpoints, 'aws-sdk-timestreaminfluxdb/endpoints'
|
56
56
|
|
57
|
-
GEM_VERSION = '1.
|
57
|
+
GEM_VERSION = '1.20.0'
|
58
58
|
|
59
59
|
end
|
60
60
|
|
data/sig/client.rbs
CHANGED
@@ -78,6 +78,39 @@ module Aws
|
|
78
78
|
| (?Hash[Symbol, untyped]) -> instance
|
79
79
|
|
80
80
|
|
81
|
+
interface _CreateDbClusterResponseSuccess
|
82
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDbClusterOutput]
|
83
|
+
def db_cluster_id: () -> ::String
|
84
|
+
def db_cluster_status: () -> ("CREATING" | "UPDATING" | "DELETING" | "AVAILABLE" | "FAILED" | "DELETED")
|
85
|
+
end
|
86
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#create_db_cluster-instance_method
|
87
|
+
def create_db_cluster: (
|
88
|
+
name: ::String,
|
89
|
+
?username: ::String,
|
90
|
+
password: ::String,
|
91
|
+
?organization: ::String,
|
92
|
+
?bucket: ::String,
|
93
|
+
?port: ::Integer,
|
94
|
+
?db_parameter_group_identifier: ::String,
|
95
|
+
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"),
|
96
|
+
?db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3"),
|
97
|
+
allocated_storage: ::Integer,
|
98
|
+
?network_type: ("IPV4" | "DUAL"),
|
99
|
+
?publicly_accessible: bool,
|
100
|
+
vpc_subnet_ids: Array[::String],
|
101
|
+
vpc_security_group_ids: Array[::String],
|
102
|
+
deployment_type: ("MULTI_NODE_READ_REPLICAS"),
|
103
|
+
?failover_mode: ("AUTOMATIC" | "NO_FAILOVER"),
|
104
|
+
?log_delivery_configuration: {
|
105
|
+
s3_configuration: {
|
106
|
+
bucket_name: ::String,
|
107
|
+
enabled: bool
|
108
|
+
}
|
109
|
+
},
|
110
|
+
?tags: Hash[::String, ::String]
|
111
|
+
) -> _CreateDbClusterResponseSuccess
|
112
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDbClusterResponseSuccess
|
113
|
+
|
81
114
|
interface _CreateDbInstanceResponseSuccess
|
82
115
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDbInstanceOutput]
|
83
116
|
def id: () -> ::String
|
@@ -99,6 +132,8 @@ module Aws
|
|
99
132
|
def secondary_availability_zone: () -> ::String
|
100
133
|
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
101
134
|
def influx_auth_parameters_secret_arn: () -> ::String
|
135
|
+
def db_cluster_id: () -> ::String
|
136
|
+
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA")
|
102
137
|
end
|
103
138
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#create_db_instance-instance_method
|
104
139
|
def create_db_instance: (
|
@@ -205,6 +240,16 @@ module Aws
|
|
205
240
|
) -> _CreateDbParameterGroupResponseSuccess
|
206
241
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDbParameterGroupResponseSuccess
|
207
242
|
|
243
|
+
interface _DeleteDbClusterResponseSuccess
|
244
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDbClusterOutput]
|
245
|
+
def db_cluster_status: () -> ("CREATING" | "UPDATING" | "DELETING" | "AVAILABLE" | "FAILED" | "DELETED")
|
246
|
+
end
|
247
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#delete_db_cluster-instance_method
|
248
|
+
def delete_db_cluster: (
|
249
|
+
db_cluster_id: ::String
|
250
|
+
) -> _DeleteDbClusterResponseSuccess
|
251
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDbClusterResponseSuccess
|
252
|
+
|
208
253
|
interface _DeleteDbInstanceResponseSuccess
|
209
254
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDbInstanceOutput]
|
210
255
|
def id: () -> ::String
|
@@ -226,6 +271,8 @@ module Aws
|
|
226
271
|
def secondary_availability_zone: () -> ::String
|
227
272
|
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
228
273
|
def influx_auth_parameters_secret_arn: () -> ::String
|
274
|
+
def db_cluster_id: () -> ::String
|
275
|
+
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA")
|
229
276
|
end
|
230
277
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#delete_db_instance-instance_method
|
231
278
|
def delete_db_instance: (
|
@@ -233,6 +280,34 @@ module Aws
|
|
233
280
|
) -> _DeleteDbInstanceResponseSuccess
|
234
281
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDbInstanceResponseSuccess
|
235
282
|
|
283
|
+
interface _GetDbClusterResponseSuccess
|
284
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDbClusterOutput]
|
285
|
+
def id: () -> ::String
|
286
|
+
def name: () -> ::String
|
287
|
+
def arn: () -> ::String
|
288
|
+
def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "AVAILABLE" | "FAILED" | "DELETED")
|
289
|
+
def endpoint: () -> ::String
|
290
|
+
def reader_endpoint: () -> ::String
|
291
|
+
def port: () -> ::Integer
|
292
|
+
def deployment_type: () -> ("MULTI_NODE_READ_REPLICAS")
|
293
|
+
def db_instance_type: () -> ("db.influx.medium" | "db.influx.large" | "db.influx.xlarge" | "db.influx.2xlarge" | "db.influx.4xlarge" | "db.influx.8xlarge" | "db.influx.12xlarge" | "db.influx.16xlarge")
|
294
|
+
def network_type: () -> ("IPV4" | "DUAL")
|
295
|
+
def db_storage_type: () -> ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
296
|
+
def allocated_storage: () -> ::Integer
|
297
|
+
def publicly_accessible: () -> bool
|
298
|
+
def db_parameter_group_identifier: () -> ::String
|
299
|
+
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
300
|
+
def influx_auth_parameters_secret_arn: () -> ::String
|
301
|
+
def vpc_subnet_ids: () -> ::Array[::String]
|
302
|
+
def vpc_security_group_ids: () -> ::Array[::String]
|
303
|
+
def failover_mode: () -> ("AUTOMATIC" | "NO_FAILOVER")
|
304
|
+
end
|
305
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#get_db_cluster-instance_method
|
306
|
+
def get_db_cluster: (
|
307
|
+
db_cluster_id: ::String
|
308
|
+
) -> _GetDbClusterResponseSuccess
|
309
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDbClusterResponseSuccess
|
310
|
+
|
236
311
|
interface _GetDbInstanceResponseSuccess
|
237
312
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDbInstanceOutput]
|
238
313
|
def id: () -> ::String
|
@@ -254,6 +329,8 @@ module Aws
|
|
254
329
|
def secondary_availability_zone: () -> ::String
|
255
330
|
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
256
331
|
def influx_auth_parameters_secret_arn: () -> ::String
|
332
|
+
def db_cluster_id: () -> ::String
|
333
|
+
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA")
|
257
334
|
end
|
258
335
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#get_db_instance-instance_method
|
259
336
|
def get_db_instance: (
|
@@ -275,6 +352,18 @@ module Aws
|
|
275
352
|
) -> _GetDbParameterGroupResponseSuccess
|
276
353
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDbParameterGroupResponseSuccess
|
277
354
|
|
355
|
+
interface _ListDbClustersResponseSuccess
|
356
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDbClustersOutput]
|
357
|
+
def items: () -> ::Array[Types::DbClusterSummary]
|
358
|
+
def next_token: () -> ::String
|
359
|
+
end
|
360
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#list_db_clusters-instance_method
|
361
|
+
def list_db_clusters: (
|
362
|
+
?next_token: ::String,
|
363
|
+
?max_results: ::Integer
|
364
|
+
) -> _ListDbClustersResponseSuccess
|
365
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDbClustersResponseSuccess
|
366
|
+
|
278
367
|
interface _ListDbInstancesResponseSuccess
|
279
368
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDbInstancesOutput]
|
280
369
|
def items: () -> ::Array[Types::DbInstanceSummary]
|
@@ -287,6 +376,19 @@ module Aws
|
|
287
376
|
) -> _ListDbInstancesResponseSuccess
|
288
377
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDbInstancesResponseSuccess
|
289
378
|
|
379
|
+
interface _ListDbInstancesForClusterResponseSuccess
|
380
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDbInstancesForClusterOutput]
|
381
|
+
def items: () -> ::Array[Types::DbInstanceForClusterSummary]
|
382
|
+
def next_token: () -> ::String
|
383
|
+
end
|
384
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#list_db_instances_for_cluster-instance_method
|
385
|
+
def list_db_instances_for_cluster: (
|
386
|
+
db_cluster_id: ::String,
|
387
|
+
?next_token: ::String,
|
388
|
+
?max_results: ::Integer
|
389
|
+
) -> _ListDbInstancesForClusterResponseSuccess
|
390
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDbInstancesForClusterResponseSuccess
|
391
|
+
|
290
392
|
interface _ListDbParameterGroupsResponseSuccess
|
291
393
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDbParameterGroupsOutput]
|
292
394
|
def items: () -> ::Array[Types::DbParameterGroupSummary]
|
@@ -323,6 +425,26 @@ module Aws
|
|
323
425
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
324
426
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
325
427
|
|
428
|
+
interface _UpdateDbClusterResponseSuccess
|
429
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDbClusterOutput]
|
430
|
+
def db_cluster_status: () -> ("CREATING" | "UPDATING" | "DELETING" | "AVAILABLE" | "FAILED" | "DELETED")
|
431
|
+
end
|
432
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#update_db_cluster-instance_method
|
433
|
+
def update_db_cluster: (
|
434
|
+
db_cluster_id: ::String,
|
435
|
+
?log_delivery_configuration: {
|
436
|
+
s3_configuration: {
|
437
|
+
bucket_name: ::String,
|
438
|
+
enabled: bool
|
439
|
+
}
|
440
|
+
},
|
441
|
+
?db_parameter_group_identifier: ::String,
|
442
|
+
?port: ::Integer,
|
443
|
+
?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"),
|
444
|
+
?failover_mode: ("AUTOMATIC" | "NO_FAILOVER")
|
445
|
+
) -> _UpdateDbClusterResponseSuccess
|
446
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDbClusterResponseSuccess
|
447
|
+
|
326
448
|
interface _UpdateDbInstanceResponseSuccess
|
327
449
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDbInstanceOutput]
|
328
450
|
def id: () -> ::String
|
@@ -344,6 +466,8 @@ module Aws
|
|
344
466
|
def secondary_availability_zone: () -> ::String
|
345
467
|
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
346
468
|
def influx_auth_parameters_secret_arn: () -> ::String
|
469
|
+
def db_cluster_id: () -> ::String
|
470
|
+
def instance_mode: () -> ("PRIMARY" | "STANDBY" | "REPLICA")
|
347
471
|
end
|
348
472
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#update_db_instance-instance_method
|
349
473
|
def update_db_instance: (
|
data/sig/types.rbs
CHANGED
@@ -20,6 +20,34 @@ module Aws::TimestreamInfluxDB
|
|
20
20
|
SENSITIVE: []
|
21
21
|
end
|
22
22
|
|
23
|
+
class CreateDbClusterInput
|
24
|
+
attr_accessor name: ::String
|
25
|
+
attr_accessor username: ::String
|
26
|
+
attr_accessor password: ::String
|
27
|
+
attr_accessor organization: ::String
|
28
|
+
attr_accessor bucket: ::String
|
29
|
+
attr_accessor port: ::Integer
|
30
|
+
attr_accessor db_parameter_group_identifier: ::String
|
31
|
+
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")
|
32
|
+
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
33
|
+
attr_accessor allocated_storage: ::Integer
|
34
|
+
attr_accessor network_type: ("IPV4" | "DUAL")
|
35
|
+
attr_accessor publicly_accessible: bool
|
36
|
+
attr_accessor vpc_subnet_ids: ::Array[::String]
|
37
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
38
|
+
attr_accessor deployment_type: ("MULTI_NODE_READ_REPLICAS")
|
39
|
+
attr_accessor failover_mode: ("AUTOMATIC" | "NO_FAILOVER")
|
40
|
+
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
41
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
42
|
+
SENSITIVE: [:username, :password]
|
43
|
+
end
|
44
|
+
|
45
|
+
class CreateDbClusterOutput
|
46
|
+
attr_accessor db_cluster_id: ::String
|
47
|
+
attr_accessor db_cluster_status: ("CREATING" | "UPDATING" | "DELETING" | "AVAILABLE" | "FAILED" | "DELETED")
|
48
|
+
SENSITIVE: []
|
49
|
+
end
|
50
|
+
|
23
51
|
class CreateDbInstanceInput
|
24
52
|
attr_accessor name: ::String
|
25
53
|
attr_accessor username: ::String
|
@@ -61,6 +89,8 @@ module Aws::TimestreamInfluxDB
|
|
61
89
|
attr_accessor secondary_availability_zone: ::String
|
62
90
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
63
91
|
attr_accessor influx_auth_parameters_secret_arn: ::String
|
92
|
+
attr_accessor db_cluster_id: ::String
|
93
|
+
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA")
|
64
94
|
SENSITIVE: []
|
65
95
|
end
|
66
96
|
|
@@ -81,6 +111,38 @@ module Aws::TimestreamInfluxDB
|
|
81
111
|
SENSITIVE: []
|
82
112
|
end
|
83
113
|
|
114
|
+
class DbClusterSummary
|
115
|
+
attr_accessor id: ::String
|
116
|
+
attr_accessor name: ::String
|
117
|
+
attr_accessor arn: ::String
|
118
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "AVAILABLE" | "FAILED" | "DELETED")
|
119
|
+
attr_accessor endpoint: ::String
|
120
|
+
attr_accessor reader_endpoint: ::String
|
121
|
+
attr_accessor port: ::Integer
|
122
|
+
attr_accessor deployment_type: ("MULTI_NODE_READ_REPLICAS")
|
123
|
+
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")
|
124
|
+
attr_accessor network_type: ("IPV4" | "DUAL")
|
125
|
+
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
126
|
+
attr_accessor allocated_storage: ::Integer
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class DbInstanceForClusterSummary
|
131
|
+
attr_accessor id: ::String
|
132
|
+
attr_accessor name: ::String
|
133
|
+
attr_accessor arn: ::String
|
134
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE")
|
135
|
+
attr_accessor endpoint: ::String
|
136
|
+
attr_accessor port: ::Integer
|
137
|
+
attr_accessor network_type: ("IPV4" | "DUAL")
|
138
|
+
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")
|
139
|
+
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
140
|
+
attr_accessor allocated_storage: ::Integer
|
141
|
+
attr_accessor deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
142
|
+
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA")
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
84
146
|
class DbInstanceSummary
|
85
147
|
attr_accessor id: ::String
|
86
148
|
attr_accessor name: ::String
|
@@ -104,6 +166,16 @@ module Aws::TimestreamInfluxDB
|
|
104
166
|
SENSITIVE: []
|
105
167
|
end
|
106
168
|
|
169
|
+
class DeleteDbClusterInput
|
170
|
+
attr_accessor db_cluster_id: ::String
|
171
|
+
SENSITIVE: []
|
172
|
+
end
|
173
|
+
|
174
|
+
class DeleteDbClusterOutput
|
175
|
+
attr_accessor db_cluster_status: ("CREATING" | "UPDATING" | "DELETING" | "AVAILABLE" | "FAILED" | "DELETED")
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
107
179
|
class DeleteDbInstanceInput
|
108
180
|
attr_accessor identifier: ::String
|
109
181
|
SENSITIVE: []
|
@@ -129,6 +201,8 @@ module Aws::TimestreamInfluxDB
|
|
129
201
|
attr_accessor secondary_availability_zone: ::String
|
130
202
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
131
203
|
attr_accessor influx_auth_parameters_secret_arn: ::String
|
204
|
+
attr_accessor db_cluster_id: ::String
|
205
|
+
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA")
|
132
206
|
SENSITIVE: []
|
133
207
|
end
|
134
208
|
|
@@ -138,6 +212,34 @@ module Aws::TimestreamInfluxDB
|
|
138
212
|
SENSITIVE: []
|
139
213
|
end
|
140
214
|
|
215
|
+
class GetDbClusterInput
|
216
|
+
attr_accessor db_cluster_id: ::String
|
217
|
+
SENSITIVE: []
|
218
|
+
end
|
219
|
+
|
220
|
+
class GetDbClusterOutput
|
221
|
+
attr_accessor id: ::String
|
222
|
+
attr_accessor name: ::String
|
223
|
+
attr_accessor arn: ::String
|
224
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "AVAILABLE" | "FAILED" | "DELETED")
|
225
|
+
attr_accessor endpoint: ::String
|
226
|
+
attr_accessor reader_endpoint: ::String
|
227
|
+
attr_accessor port: ::Integer
|
228
|
+
attr_accessor deployment_type: ("MULTI_NODE_READ_REPLICAS")
|
229
|
+
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")
|
230
|
+
attr_accessor network_type: ("IPV4" | "DUAL")
|
231
|
+
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
232
|
+
attr_accessor allocated_storage: ::Integer
|
233
|
+
attr_accessor publicly_accessible: bool
|
234
|
+
attr_accessor db_parameter_group_identifier: ::String
|
235
|
+
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
236
|
+
attr_accessor influx_auth_parameters_secret_arn: ::String
|
237
|
+
attr_accessor vpc_subnet_ids: ::Array[::String]
|
238
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
239
|
+
attr_accessor failover_mode: ("AUTOMATIC" | "NO_FAILOVER")
|
240
|
+
SENSITIVE: []
|
241
|
+
end
|
242
|
+
|
141
243
|
class GetDbInstanceInput
|
142
244
|
attr_accessor identifier: ::String
|
143
245
|
SENSITIVE: []
|
@@ -163,6 +265,8 @@ module Aws::TimestreamInfluxDB
|
|
163
265
|
attr_accessor secondary_availability_zone: ::String
|
164
266
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
165
267
|
attr_accessor influx_auth_parameters_secret_arn: ::String
|
268
|
+
attr_accessor db_cluster_id: ::String
|
269
|
+
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA")
|
166
270
|
SENSITIVE: []
|
167
271
|
end
|
168
272
|
|
@@ -223,6 +327,31 @@ module Aws::TimestreamInfluxDB
|
|
223
327
|
SENSITIVE: []
|
224
328
|
end
|
225
329
|
|
330
|
+
class ListDbClustersInput
|
331
|
+
attr_accessor next_token: ::String
|
332
|
+
attr_accessor max_results: ::Integer
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class ListDbClustersOutput
|
337
|
+
attr_accessor items: ::Array[Types::DbClusterSummary]
|
338
|
+
attr_accessor next_token: ::String
|
339
|
+
SENSITIVE: []
|
340
|
+
end
|
341
|
+
|
342
|
+
class ListDbInstancesForClusterInput
|
343
|
+
attr_accessor db_cluster_id: ::String
|
344
|
+
attr_accessor next_token: ::String
|
345
|
+
attr_accessor max_results: ::Integer
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class ListDbInstancesForClusterOutput
|
350
|
+
attr_accessor items: ::Array[Types::DbInstanceForClusterSummary]
|
351
|
+
attr_accessor next_token: ::String
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
226
355
|
class ListDbInstancesInput
|
227
356
|
attr_accessor next_token: ::String
|
228
357
|
attr_accessor max_results: ::Integer
|
@@ -309,6 +438,21 @@ module Aws::TimestreamInfluxDB
|
|
309
438
|
SENSITIVE: []
|
310
439
|
end
|
311
440
|
|
441
|
+
class UpdateDbClusterInput
|
442
|
+
attr_accessor db_cluster_id: ::String
|
443
|
+
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
444
|
+
attr_accessor db_parameter_group_identifier: ::String
|
445
|
+
attr_accessor port: ::Integer
|
446
|
+
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")
|
447
|
+
attr_accessor failover_mode: ("AUTOMATIC" | "NO_FAILOVER")
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class UpdateDbClusterOutput
|
452
|
+
attr_accessor db_cluster_status: ("CREATING" | "UPDATING" | "DELETING" | "AVAILABLE" | "FAILED" | "DELETED")
|
453
|
+
SENSITIVE: []
|
454
|
+
end
|
455
|
+
|
312
456
|
class UpdateDbInstanceInput
|
313
457
|
attr_accessor identifier: ::String
|
314
458
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
@@ -341,6 +485,8 @@ module Aws::TimestreamInfluxDB
|
|
341
485
|
attr_accessor secondary_availability_zone: ::String
|
342
486
|
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
343
487
|
attr_accessor influx_auth_parameters_secret_arn: ::String
|
488
|
+
attr_accessor db_cluster_id: ::String
|
489
|
+
attr_accessor instance_mode: ("PRIMARY" | "STANDBY" | "REPLICA")
|
344
490
|
SENSITIVE: []
|
345
491
|
end
|
346
492
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-timestreaminfluxdb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.20.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-02-
|
11
|
+
date: 2025-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|