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
data/sig/types.rbs
ADDED
@@ -0,0 +1,303 @@
|
|
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::TimestreamInfluxDB
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class ConflictException
|
17
|
+
attr_accessor message: ::String
|
18
|
+
attr_accessor resource_id: ::String
|
19
|
+
attr_accessor resource_type: ::String
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class CreateDbInstanceInput
|
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 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")
|
30
|
+
attr_accessor vpc_subnet_ids: ::Array[::String]
|
31
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
32
|
+
attr_accessor publicly_accessible: bool
|
33
|
+
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
34
|
+
attr_accessor allocated_storage: ::Integer
|
35
|
+
attr_accessor db_parameter_group_identifier: ::String
|
36
|
+
attr_accessor deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
37
|
+
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
38
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
39
|
+
SENSITIVE: [:username, :password]
|
40
|
+
end
|
41
|
+
|
42
|
+
class CreateDbInstanceOutput
|
43
|
+
attr_accessor id: ::String
|
44
|
+
attr_accessor name: ::String
|
45
|
+
attr_accessor arn: ::String
|
46
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED")
|
47
|
+
attr_accessor endpoint: ::String
|
48
|
+
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")
|
49
|
+
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
50
|
+
attr_accessor allocated_storage: ::Integer
|
51
|
+
attr_accessor deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
52
|
+
attr_accessor vpc_subnet_ids: ::Array[::String]
|
53
|
+
attr_accessor publicly_accessible: bool
|
54
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
55
|
+
attr_accessor db_parameter_group_identifier: ::String
|
56
|
+
attr_accessor availability_zone: ::String
|
57
|
+
attr_accessor secondary_availability_zone: ::String
|
58
|
+
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
59
|
+
attr_accessor influx_auth_parameters_secret_arn: ::String
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class CreateDbParameterGroupInput
|
64
|
+
attr_accessor name: ::String
|
65
|
+
attr_accessor description: ::String
|
66
|
+
attr_accessor parameters: Types::Parameters
|
67
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class CreateDbParameterGroupOutput
|
72
|
+
attr_accessor id: ::String
|
73
|
+
attr_accessor name: ::String
|
74
|
+
attr_accessor arn: ::String
|
75
|
+
attr_accessor description: ::String
|
76
|
+
attr_accessor parameters: Types::Parameters
|
77
|
+
SENSITIVE: []
|
78
|
+
end
|
79
|
+
|
80
|
+
class DbInstanceSummary
|
81
|
+
attr_accessor id: ::String
|
82
|
+
attr_accessor name: ::String
|
83
|
+
attr_accessor arn: ::String
|
84
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED")
|
85
|
+
attr_accessor endpoint: ::String
|
86
|
+
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")
|
87
|
+
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
88
|
+
attr_accessor allocated_storage: ::Integer
|
89
|
+
attr_accessor deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
90
|
+
SENSITIVE: []
|
91
|
+
end
|
92
|
+
|
93
|
+
class DbParameterGroupSummary
|
94
|
+
attr_accessor id: ::String
|
95
|
+
attr_accessor name: ::String
|
96
|
+
attr_accessor arn: ::String
|
97
|
+
attr_accessor description: ::String
|
98
|
+
SENSITIVE: []
|
99
|
+
end
|
100
|
+
|
101
|
+
class DeleteDbInstanceInput
|
102
|
+
attr_accessor identifier: ::String
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class DeleteDbInstanceOutput
|
107
|
+
attr_accessor id: ::String
|
108
|
+
attr_accessor name: ::String
|
109
|
+
attr_accessor arn: ::String
|
110
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED")
|
111
|
+
attr_accessor endpoint: ::String
|
112
|
+
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")
|
113
|
+
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
114
|
+
attr_accessor allocated_storage: ::Integer
|
115
|
+
attr_accessor deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
116
|
+
attr_accessor vpc_subnet_ids: ::Array[::String]
|
117
|
+
attr_accessor publicly_accessible: bool
|
118
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
119
|
+
attr_accessor db_parameter_group_identifier: ::String
|
120
|
+
attr_accessor availability_zone: ::String
|
121
|
+
attr_accessor secondary_availability_zone: ::String
|
122
|
+
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
123
|
+
attr_accessor influx_auth_parameters_secret_arn: ::String
|
124
|
+
SENSITIVE: []
|
125
|
+
end
|
126
|
+
|
127
|
+
class GetDbInstanceInput
|
128
|
+
attr_accessor identifier: ::String
|
129
|
+
SENSITIVE: []
|
130
|
+
end
|
131
|
+
|
132
|
+
class GetDbInstanceOutput
|
133
|
+
attr_accessor id: ::String
|
134
|
+
attr_accessor name: ::String
|
135
|
+
attr_accessor arn: ::String
|
136
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED")
|
137
|
+
attr_accessor endpoint: ::String
|
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 vpc_subnet_ids: ::Array[::String]
|
143
|
+
attr_accessor publicly_accessible: bool
|
144
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
145
|
+
attr_accessor db_parameter_group_identifier: ::String
|
146
|
+
attr_accessor availability_zone: ::String
|
147
|
+
attr_accessor secondary_availability_zone: ::String
|
148
|
+
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
149
|
+
attr_accessor influx_auth_parameters_secret_arn: ::String
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class GetDbParameterGroupInput
|
154
|
+
attr_accessor identifier: ::String
|
155
|
+
SENSITIVE: []
|
156
|
+
end
|
157
|
+
|
158
|
+
class GetDbParameterGroupOutput
|
159
|
+
attr_accessor id: ::String
|
160
|
+
attr_accessor name: ::String
|
161
|
+
attr_accessor arn: ::String
|
162
|
+
attr_accessor description: ::String
|
163
|
+
attr_accessor parameters: Types::Parameters
|
164
|
+
SENSITIVE: []
|
165
|
+
end
|
166
|
+
|
167
|
+
class InfluxDBv2Parameters
|
168
|
+
attr_accessor flux_log_enabled: bool
|
169
|
+
attr_accessor log_level: ("debug" | "info" | "error")
|
170
|
+
attr_accessor no_tasks: bool
|
171
|
+
attr_accessor query_concurrency: ::Integer
|
172
|
+
attr_accessor query_queue_size: ::Integer
|
173
|
+
attr_accessor tracing_type: ("log" | "jaeger")
|
174
|
+
attr_accessor metrics_disabled: bool
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class InternalServerException
|
179
|
+
attr_accessor message: ::String
|
180
|
+
SENSITIVE: []
|
181
|
+
end
|
182
|
+
|
183
|
+
class ListDbInstancesInput
|
184
|
+
attr_accessor next_token: ::String
|
185
|
+
attr_accessor max_results: ::Integer
|
186
|
+
SENSITIVE: []
|
187
|
+
end
|
188
|
+
|
189
|
+
class ListDbInstancesOutput
|
190
|
+
attr_accessor items: ::Array[Types::DbInstanceSummary]
|
191
|
+
attr_accessor next_token: ::String
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
195
|
+
class ListDbParameterGroupsInput
|
196
|
+
attr_accessor next_token: ::String
|
197
|
+
attr_accessor max_results: ::Integer
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
201
|
+
class ListDbParameterGroupsOutput
|
202
|
+
attr_accessor items: ::Array[Types::DbParameterGroupSummary]
|
203
|
+
attr_accessor next_token: ::String
|
204
|
+
SENSITIVE: []
|
205
|
+
end
|
206
|
+
|
207
|
+
class ListTagsForResourceRequest
|
208
|
+
attr_accessor resource_arn: ::String
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class ListTagsForResourceResponse
|
213
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class LogDeliveryConfiguration
|
218
|
+
attr_accessor s3_configuration: Types::S3Configuration
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class Parameters
|
223
|
+
attr_accessor influx_d_bv_2: Types::InfluxDBv2Parameters
|
224
|
+
attr_accessor unknown: untyped
|
225
|
+
SENSITIVE: []
|
226
|
+
|
227
|
+
class InfluxDBv2 < Parameters
|
228
|
+
end
|
229
|
+
class Unknown < Parameters
|
230
|
+
end
|
231
|
+
end
|
232
|
+
|
233
|
+
class ResourceNotFoundException
|
234
|
+
attr_accessor message: ::String
|
235
|
+
attr_accessor resource_id: ::String
|
236
|
+
attr_accessor resource_type: ::String
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class S3Configuration
|
241
|
+
attr_accessor bucket_name: ::String
|
242
|
+
attr_accessor enabled: bool
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class ServiceQuotaExceededException
|
247
|
+
attr_accessor message: ::String
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class TagResourceRequest
|
252
|
+
attr_accessor resource_arn: ::String
|
253
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class ThrottlingException
|
258
|
+
attr_accessor message: ::String
|
259
|
+
attr_accessor retry_after_seconds: ::Integer
|
260
|
+
SENSITIVE: []
|
261
|
+
end
|
262
|
+
|
263
|
+
class UntagResourceRequest
|
264
|
+
attr_accessor resource_arn: ::String
|
265
|
+
attr_accessor tag_keys: ::Array[::String]
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class UpdateDbInstanceInput
|
270
|
+
attr_accessor identifier: ::String
|
271
|
+
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
272
|
+
attr_accessor db_parameter_group_identifier: ::String
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class UpdateDbInstanceOutput
|
277
|
+
attr_accessor id: ::String
|
278
|
+
attr_accessor name: ::String
|
279
|
+
attr_accessor arn: ::String
|
280
|
+
attr_accessor status: ("CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED")
|
281
|
+
attr_accessor endpoint: ::String
|
282
|
+
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")
|
283
|
+
attr_accessor db_storage_type: ("InfluxIOIncludedT1" | "InfluxIOIncludedT2" | "InfluxIOIncludedT3")
|
284
|
+
attr_accessor allocated_storage: ::Integer
|
285
|
+
attr_accessor deployment_type: ("SINGLE_AZ" | "WITH_MULTIAZ_STANDBY")
|
286
|
+
attr_accessor vpc_subnet_ids: ::Array[::String]
|
287
|
+
attr_accessor publicly_accessible: bool
|
288
|
+
attr_accessor vpc_security_group_ids: ::Array[::String]
|
289
|
+
attr_accessor db_parameter_group_identifier: ::String
|
290
|
+
attr_accessor availability_zone: ::String
|
291
|
+
attr_accessor secondary_availability_zone: ::String
|
292
|
+
attr_accessor log_delivery_configuration: Types::LogDeliveryConfiguration
|
293
|
+
attr_accessor influx_auth_parameters_secret_arn: ::String
|
294
|
+
SENSITIVE: []
|
295
|
+
end
|
296
|
+
|
297
|
+
class ValidationException
|
298
|
+
attr_accessor message: ::String
|
299
|
+
attr_accessor reason: ("FIELD_VALIDATION_FAILED" | "OTHER")
|
300
|
+
SENSITIVE: []
|
301
|
+
end
|
302
|
+
end
|
303
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
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 Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws-sdk-timestreaminfluxdb
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Amazon Web Services
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-03-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: aws-sdk-core
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 3.191.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 3.191.0
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: aws-sigv4
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.1'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.1'
|
47
|
+
description: Official AWS Ruby gem for Timestream InfluxDB. This gem is part of the
|
48
|
+
AWS SDK for Ruby.
|
49
|
+
email:
|
50
|
+
- aws-dr-rubygems@amazon.com
|
51
|
+
executables: []
|
52
|
+
extensions: []
|
53
|
+
extra_rdoc_files: []
|
54
|
+
files:
|
55
|
+
- CHANGELOG.md
|
56
|
+
- LICENSE.txt
|
57
|
+
- VERSION
|
58
|
+
- lib/aws-sdk-timestreaminfluxdb.rb
|
59
|
+
- lib/aws-sdk-timestreaminfluxdb/client.rb
|
60
|
+
- lib/aws-sdk-timestreaminfluxdb/client_api.rb
|
61
|
+
- lib/aws-sdk-timestreaminfluxdb/customizations.rb
|
62
|
+
- lib/aws-sdk-timestreaminfluxdb/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-timestreaminfluxdb/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-timestreaminfluxdb/endpoints.rb
|
65
|
+
- lib/aws-sdk-timestreaminfluxdb/errors.rb
|
66
|
+
- lib/aws-sdk-timestreaminfluxdb/plugins/endpoints.rb
|
67
|
+
- lib/aws-sdk-timestreaminfluxdb/resource.rb
|
68
|
+
- lib/aws-sdk-timestreaminfluxdb/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
74
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
75
|
+
licenses:
|
76
|
+
- Apache-2.0
|
77
|
+
metadata:
|
78
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-timestreaminfluxdb
|
79
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-timestreaminfluxdb/CHANGELOG.md
|
80
|
+
post_install_message:
|
81
|
+
rdoc_options: []
|
82
|
+
require_paths:
|
83
|
+
- lib
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '2.5'
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
requirements: []
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
97
|
+
specification_version: 4
|
98
|
+
summary: AWS SDK for Ruby - Timestream InfluxDB
|
99
|
+
test_files: []
|