aws-sdk-timestreaminfluxdb 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-timestreaminfluxdb/client.rb +1088 -0
- data/lib/aws-sdk-timestreaminfluxdb/client_api.rb +500 -0
- data/lib/aws-sdk-timestreaminfluxdb/customizations.rb +0 -0
- data/lib/aws-sdk-timestreaminfluxdb/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-timestreaminfluxdb/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-timestreaminfluxdb/endpoints.rb +170 -0
- data/lib/aws-sdk-timestreaminfluxdb/errors.rb +188 -0
- data/lib/aws-sdk-timestreaminfluxdb/plugins/endpoints.rb +92 -0
- data/lib/aws-sdk-timestreaminfluxdb/resource.rb +26 -0
- data/lib/aws-sdk-timestreaminfluxdb/types.rb +1182 -0
- data/lib/aws-sdk-timestreaminfluxdb.rb +57 -0
- data/sig/client.rbs +297 -0
- data/sig/errors.rbs +43 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +303 -0
- data/sig/waiters.rbs +13 -0
- metadata +99 -0
@@ -0,0 +1,57 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
|
11
|
+
require 'aws-sdk-core'
|
12
|
+
require 'aws-sigv4'
|
13
|
+
|
14
|
+
require_relative 'aws-sdk-timestreaminfluxdb/types'
|
15
|
+
require_relative 'aws-sdk-timestreaminfluxdb/client_api'
|
16
|
+
require_relative 'aws-sdk-timestreaminfluxdb/plugins/endpoints.rb'
|
17
|
+
require_relative 'aws-sdk-timestreaminfluxdb/client'
|
18
|
+
require_relative 'aws-sdk-timestreaminfluxdb/errors'
|
19
|
+
require_relative 'aws-sdk-timestreaminfluxdb/resource'
|
20
|
+
require_relative 'aws-sdk-timestreaminfluxdb/endpoint_parameters'
|
21
|
+
require_relative 'aws-sdk-timestreaminfluxdb/endpoint_provider'
|
22
|
+
require_relative 'aws-sdk-timestreaminfluxdb/endpoints'
|
23
|
+
require_relative 'aws-sdk-timestreaminfluxdb/customizations'
|
24
|
+
|
25
|
+
# This module provides support for Timestream InfluxDB. This module is available in the
|
26
|
+
# `aws-sdk-timestreaminfluxdb` gem.
|
27
|
+
#
|
28
|
+
# # Client
|
29
|
+
#
|
30
|
+
# The {Client} class provides one method for each API operation. Operation
|
31
|
+
# methods each accept a hash of request parameters and return a response
|
32
|
+
# structure.
|
33
|
+
#
|
34
|
+
# timestream_influx_db = Aws::TimestreamInfluxDB::Client.new
|
35
|
+
# resp = timestream_influx_db.create_db_instance(params)
|
36
|
+
#
|
37
|
+
# See {Client} for more information.
|
38
|
+
#
|
39
|
+
# # Errors
|
40
|
+
#
|
41
|
+
# Errors returned from Timestream InfluxDB are defined in the
|
42
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
43
|
+
#
|
44
|
+
# begin
|
45
|
+
# # do stuff
|
46
|
+
# rescue Aws::TimestreamInfluxDB::Errors::ServiceError
|
47
|
+
# # rescues all Timestream InfluxDB API errors
|
48
|
+
# end
|
49
|
+
#
|
50
|
+
# See {Errors} for more information.
|
51
|
+
#
|
52
|
+
# @!group service
|
53
|
+
module Aws::TimestreamInfluxDB
|
54
|
+
|
55
|
+
GEM_VERSION = '1.0.0'
|
56
|
+
|
57
|
+
end
|
data/sig/client.rbs
ADDED
@@ -0,0 +1,297 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module TimestreamInfluxDB
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> instance
|
73
|
+
| (?Hash[Symbol, untyped]) -> instance
|
74
|
+
|
75
|
+
|
76
|
+
interface _CreateDbInstanceResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDbInstanceOutput]
|
78
|
+
def id: () -> ::String
|
79
|
+
def name: () -> ::String
|
80
|
+
def arn: () -> ::String
|
81
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED")
|
82
|
+
def endpoint: () -> ::String
|
83
|
+
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")
|
84
|
+
def db_storage_type: () -> ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
85
|
+
def allocated_storage: () -> ::Integer
|
86
|
+
def deployment_type: () -> ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
87
|
+
def vpc_subnet_ids: () -> ::Array[::String]
|
88
|
+
def publicly_accessible: () -> bool
|
89
|
+
def vpc_security_group_ids: () -> ::Array[::String]
|
90
|
+
def db_parameter_group_identifier: () -> ::String
|
91
|
+
def availability_zone: () -> ::String
|
92
|
+
def secondary_availability_zone: () -> ::String
|
93
|
+
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
94
|
+
def influx_auth_parameters_secret_arn: () -> ::String
|
95
|
+
end
|
96
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#create_db_instance-instance_method
|
97
|
+
def create_db_instance: (
|
98
|
+
name: ::String,
|
99
|
+
?username: ::String,
|
100
|
+
password: ::String,
|
101
|
+
?organization: ::String,
|
102
|
+
?bucket: ::String,
|
103
|
+
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"),
|
104
|
+
vpc_subnet_ids: Array[::String],
|
105
|
+
vpc_security_group_ids: Array[::String],
|
106
|
+
?publicly_accessible: bool,
|
107
|
+
?db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3"),
|
108
|
+
allocated_storage: ::Integer,
|
109
|
+
?db_parameter_group_identifier: ::String,
|
110
|
+
?deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY"),
|
111
|
+
?log_delivery_configuration: {
|
112
|
+
s3_configuration: {
|
113
|
+
bucket_name: ::String,
|
114
|
+
enabled: bool
|
115
|
+
}
|
116
|
+
},
|
117
|
+
?tags: Hash[::String, ::String]
|
118
|
+
) -> _CreateDbInstanceResponseSuccess
|
119
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDbInstanceResponseSuccess
|
120
|
+
|
121
|
+
interface _CreateDbParameterGroupResponseSuccess
|
122
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDbParameterGroupOutput]
|
123
|
+
def id: () -> ::String
|
124
|
+
def name: () -> ::String
|
125
|
+
def arn: () -> ::String
|
126
|
+
def description: () -> ::String
|
127
|
+
def parameters: () -> Types::Parameters
|
128
|
+
end
|
129
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#create_db_parameter_group-instance_method
|
130
|
+
def create_db_parameter_group: (
|
131
|
+
name: ::String,
|
132
|
+
?description: ::String,
|
133
|
+
?parameters: {
|
134
|
+
influx_d_bv_2: {
|
135
|
+
flux_log_enabled: bool?,
|
136
|
+
log_level: ("debug" | "info" | "error")?,
|
137
|
+
no_tasks: bool?,
|
138
|
+
query_concurrency: ::Integer?,
|
139
|
+
query_queue_size: ::Integer?,
|
140
|
+
tracing_type: ("log" | "jaeger")?,
|
141
|
+
metrics_disabled: bool?
|
142
|
+
}?
|
143
|
+
},
|
144
|
+
?tags: Hash[::String, ::String]
|
145
|
+
) -> _CreateDbParameterGroupResponseSuccess
|
146
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDbParameterGroupResponseSuccess
|
147
|
+
|
148
|
+
interface _DeleteDbInstanceResponseSuccess
|
149
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDbInstanceOutput]
|
150
|
+
def id: () -> ::String
|
151
|
+
def name: () -> ::String
|
152
|
+
def arn: () -> ::String
|
153
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED")
|
154
|
+
def endpoint: () -> ::String
|
155
|
+
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")
|
156
|
+
def db_storage_type: () -> ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
157
|
+
def allocated_storage: () -> ::Integer
|
158
|
+
def deployment_type: () -> ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
159
|
+
def vpc_subnet_ids: () -> ::Array[::String]
|
160
|
+
def publicly_accessible: () -> bool
|
161
|
+
def vpc_security_group_ids: () -> ::Array[::String]
|
162
|
+
def db_parameter_group_identifier: () -> ::String
|
163
|
+
def availability_zone: () -> ::String
|
164
|
+
def secondary_availability_zone: () -> ::String
|
165
|
+
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
166
|
+
def influx_auth_parameters_secret_arn: () -> ::String
|
167
|
+
end
|
168
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#delete_db_instance-instance_method
|
169
|
+
def delete_db_instance: (
|
170
|
+
identifier: ::String
|
171
|
+
) -> _DeleteDbInstanceResponseSuccess
|
172
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDbInstanceResponseSuccess
|
173
|
+
|
174
|
+
interface _GetDbInstanceResponseSuccess
|
175
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDbInstanceOutput]
|
176
|
+
def id: () -> ::String
|
177
|
+
def name: () -> ::String
|
178
|
+
def arn: () -> ::String
|
179
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED")
|
180
|
+
def endpoint: () -> ::String
|
181
|
+
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")
|
182
|
+
def db_storage_type: () -> ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
183
|
+
def allocated_storage: () -> ::Integer
|
184
|
+
def deployment_type: () -> ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
185
|
+
def vpc_subnet_ids: () -> ::Array[::String]
|
186
|
+
def publicly_accessible: () -> bool
|
187
|
+
def vpc_security_group_ids: () -> ::Array[::String]
|
188
|
+
def db_parameter_group_identifier: () -> ::String
|
189
|
+
def availability_zone: () -> ::String
|
190
|
+
def secondary_availability_zone: () -> ::String
|
191
|
+
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
192
|
+
def influx_auth_parameters_secret_arn: () -> ::String
|
193
|
+
end
|
194
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#get_db_instance-instance_method
|
195
|
+
def get_db_instance: (
|
196
|
+
identifier: ::String
|
197
|
+
) -> _GetDbInstanceResponseSuccess
|
198
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDbInstanceResponseSuccess
|
199
|
+
|
200
|
+
interface _GetDbParameterGroupResponseSuccess
|
201
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDbParameterGroupOutput]
|
202
|
+
def id: () -> ::String
|
203
|
+
def name: () -> ::String
|
204
|
+
def arn: () -> ::String
|
205
|
+
def description: () -> ::String
|
206
|
+
def parameters: () -> Types::Parameters
|
207
|
+
end
|
208
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#get_db_parameter_group-instance_method
|
209
|
+
def get_db_parameter_group: (
|
210
|
+
identifier: ::String
|
211
|
+
) -> _GetDbParameterGroupResponseSuccess
|
212
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDbParameterGroupResponseSuccess
|
213
|
+
|
214
|
+
interface _ListDbInstancesResponseSuccess
|
215
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDbInstancesOutput]
|
216
|
+
def items: () -> ::Array[Types::DbInstanceSummary]
|
217
|
+
def next_token: () -> ::String
|
218
|
+
end
|
219
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#list_db_instances-instance_method
|
220
|
+
def list_db_instances: (
|
221
|
+
?next_token: ::String,
|
222
|
+
?max_results: ::Integer
|
223
|
+
) -> _ListDbInstancesResponseSuccess
|
224
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDbInstancesResponseSuccess
|
225
|
+
|
226
|
+
interface _ListDbParameterGroupsResponseSuccess
|
227
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDbParameterGroupsOutput]
|
228
|
+
def items: () -> ::Array[Types::DbParameterGroupSummary]
|
229
|
+
def next_token: () -> ::String
|
230
|
+
end
|
231
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#list_db_parameter_groups-instance_method
|
232
|
+
def list_db_parameter_groups: (
|
233
|
+
?next_token: ::String,
|
234
|
+
?max_results: ::Integer
|
235
|
+
) -> _ListDbParameterGroupsResponseSuccess
|
236
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDbParameterGroupsResponseSuccess
|
237
|
+
|
238
|
+
interface _ListTagsForResourceResponseSuccess
|
239
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
240
|
+
def tags: () -> ::Hash[::String, ::String]
|
241
|
+
end
|
242
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#list_tags_for_resource-instance_method
|
243
|
+
def list_tags_for_resource: (
|
244
|
+
resource_arn: ::String
|
245
|
+
) -> _ListTagsForResourceResponseSuccess
|
246
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
247
|
+
|
248
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#tag_resource-instance_method
|
249
|
+
def tag_resource: (
|
250
|
+
resource_arn: ::String,
|
251
|
+
tags: Hash[::String, ::String]
|
252
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
253
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
254
|
+
|
255
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#untag_resource-instance_method
|
256
|
+
def untag_resource: (
|
257
|
+
resource_arn: ::String,
|
258
|
+
tag_keys: Array[::String]
|
259
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
260
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
261
|
+
|
262
|
+
interface _UpdateDbInstanceResponseSuccess
|
263
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDbInstanceOutput]
|
264
|
+
def id: () -> ::String
|
265
|
+
def name: () -> ::String
|
266
|
+
def arn: () -> ::String
|
267
|
+
def status: () -> ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED")
|
268
|
+
def endpoint: () -> ::String
|
269
|
+
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")
|
270
|
+
def db_storage_type: () -> ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
271
|
+
def allocated_storage: () -> ::Integer
|
272
|
+
def deployment_type: () -> ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
273
|
+
def vpc_subnet_ids: () -> ::Array[::String]
|
274
|
+
def publicly_accessible: () -> bool
|
275
|
+
def vpc_security_group_ids: () -> ::Array[::String]
|
276
|
+
def db_parameter_group_identifier: () -> ::String
|
277
|
+
def availability_zone: () -> ::String
|
278
|
+
def secondary_availability_zone: () -> ::String
|
279
|
+
def log_delivery_configuration: () -> Types::LogDeliveryConfiguration
|
280
|
+
def influx_auth_parameters_secret_arn: () -> ::String
|
281
|
+
end
|
282
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Client.html#update_db_instance-instance_method
|
283
|
+
def update_db_instance: (
|
284
|
+
identifier: ::String,
|
285
|
+
?log_delivery_configuration: {
|
286
|
+
s3_configuration: {
|
287
|
+
bucket_name: ::String,
|
288
|
+
enabled: bool
|
289
|
+
}
|
290
|
+
},
|
291
|
+
?db_parameter_group_identifier: ::String
|
292
|
+
) -> _UpdateDbInstanceResponseSuccess
|
293
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDbInstanceResponseSuccess
|
294
|
+
end
|
295
|
+
end
|
296
|
+
end
|
297
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module TimestreamInfluxDB
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
def resource_id: () -> ::String
|
20
|
+
def resource_type: () -> ::String
|
21
|
+
end
|
22
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
23
|
+
def message: () -> ::String
|
24
|
+
end
|
25
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
26
|
+
def message: () -> ::String
|
27
|
+
def resource_id: () -> ::String
|
28
|
+
def resource_type: () -> ::String
|
29
|
+
end
|
30
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
31
|
+
def message: () -> ::String
|
32
|
+
end
|
33
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
34
|
+
def message: () -> ::String
|
35
|
+
def retry_after_seconds: () -> ::String
|
36
|
+
end
|
37
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
38
|
+
def message: () -> ::String
|
39
|
+
def reason: () -> ::String
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module TimestreamInfluxDB
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TimestreamInfluxDB/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> void
|
73
|
+
| (?Hash[Symbol, untyped]) -> void
|
74
|
+
|
75
|
+
def client: () -> Client
|
76
|
+
|
77
|
+
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|