aws-sdk-timestreamquery 1.23.0 → 1.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +45 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-timestreamquery/client.rb +156 -50
- data/lib/aws-sdk-timestreamquery/client_api.rb +53 -0
- data/lib/aws-sdk-timestreamquery/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-timestreamquery/endpoints.rb +28 -0
- data/lib/aws-sdk-timestreamquery/plugins/endpoints.rb +8 -2
- data/lib/aws-sdk-timestreamquery/types.rb +87 -2
- data/lib/aws-sdk-timestreamquery.rb +1 -1
- data/sig/client.rbs +304 -0
- data/sig/errors.rbs +44 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +429 -0
- data/sig/waiters.rbs +13 -0
- metadata +14 -9
data/sig/types.rbs
ADDED
@@ -0,0 +1,429 @@
|
|
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::TimestreamQuery
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class CancelQueryRequest
|
17
|
+
attr_accessor query_id: ::String
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class CancelQueryResponse
|
22
|
+
attr_accessor cancellation_message: ::String
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class ColumnInfo
|
27
|
+
attr_accessor name: ::String
|
28
|
+
attr_accessor type: Types::Type
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class ConflictException
|
33
|
+
attr_accessor message: ::String
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class CreateScheduledQueryRequest
|
38
|
+
attr_accessor name: ::String
|
39
|
+
attr_accessor query_string: ::String
|
40
|
+
attr_accessor schedule_configuration: Types::ScheduleConfiguration
|
41
|
+
attr_accessor notification_configuration: Types::NotificationConfiguration
|
42
|
+
attr_accessor target_configuration: Types::TargetConfiguration
|
43
|
+
attr_accessor client_token: ::String
|
44
|
+
attr_accessor scheduled_query_execution_role_arn: ::String
|
45
|
+
attr_accessor tags: ::Array[Types::Tag]
|
46
|
+
attr_accessor kms_key_id: ::String
|
47
|
+
attr_accessor error_report_configuration: Types::ErrorReportConfiguration
|
48
|
+
SENSITIVE: [:query_string, :client_token]
|
49
|
+
end
|
50
|
+
|
51
|
+
class CreateScheduledQueryResponse
|
52
|
+
attr_accessor arn: ::String
|
53
|
+
SENSITIVE: []
|
54
|
+
end
|
55
|
+
|
56
|
+
class Datum
|
57
|
+
attr_accessor scalar_value: ::String
|
58
|
+
attr_accessor time_series_value: ::Array[Types::TimeSeriesDataPoint]
|
59
|
+
attr_accessor array_value: ::Array[Types::Datum]
|
60
|
+
attr_accessor row_value: Types::Row
|
61
|
+
attr_accessor null_value: bool
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
65
|
+
class DeleteScheduledQueryRequest
|
66
|
+
attr_accessor scheduled_query_arn: ::String
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
70
|
+
class DescribeAccountSettingsRequest < Aws::EmptyStructure
|
71
|
+
end
|
72
|
+
|
73
|
+
class DescribeAccountSettingsResponse
|
74
|
+
attr_accessor max_query_tcu: ::Integer
|
75
|
+
attr_accessor query_pricing_model: ("BYTES_SCANNED" | "COMPUTE_UNITS")
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class DescribeEndpointsRequest < Aws::EmptyStructure
|
80
|
+
end
|
81
|
+
|
82
|
+
class DescribeEndpointsResponse
|
83
|
+
attr_accessor endpoints: ::Array[Types::Endpoint]
|
84
|
+
SENSITIVE: []
|
85
|
+
end
|
86
|
+
|
87
|
+
class DescribeScheduledQueryRequest
|
88
|
+
attr_accessor scheduled_query_arn: ::String
|
89
|
+
SENSITIVE: []
|
90
|
+
end
|
91
|
+
|
92
|
+
class DescribeScheduledQueryResponse
|
93
|
+
attr_accessor scheduled_query: Types::ScheduledQueryDescription
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
97
|
+
class DimensionMapping
|
98
|
+
attr_accessor name: ::String
|
99
|
+
attr_accessor dimension_value_type: ("VARCHAR")
|
100
|
+
SENSITIVE: []
|
101
|
+
end
|
102
|
+
|
103
|
+
class Endpoint
|
104
|
+
attr_accessor address: ::String
|
105
|
+
attr_accessor cache_period_in_minutes: ::Integer
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class ErrorReportConfiguration
|
110
|
+
attr_accessor s3_configuration: Types::S3Configuration
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class ErrorReportLocation
|
115
|
+
attr_accessor s3_report_location: Types::S3ReportLocation
|
116
|
+
SENSITIVE: []
|
117
|
+
end
|
118
|
+
|
119
|
+
class ExecuteScheduledQueryRequest
|
120
|
+
attr_accessor scheduled_query_arn: ::String
|
121
|
+
attr_accessor invocation_time: ::Time
|
122
|
+
attr_accessor client_token: ::String
|
123
|
+
SENSITIVE: [:client_token]
|
124
|
+
end
|
125
|
+
|
126
|
+
class ExecutionStats
|
127
|
+
attr_accessor execution_time_in_millis: ::Integer
|
128
|
+
attr_accessor data_writes: ::Integer
|
129
|
+
attr_accessor bytes_metered: ::Integer
|
130
|
+
attr_accessor cumulative_bytes_scanned: ::Integer
|
131
|
+
attr_accessor records_ingested: ::Integer
|
132
|
+
attr_accessor query_result_rows: ::Integer
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class InternalServerException
|
137
|
+
attr_accessor message: ::String
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
141
|
+
class InvalidEndpointException
|
142
|
+
attr_accessor message: ::String
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class ListScheduledQueriesRequest
|
147
|
+
attr_accessor max_results: ::Integer
|
148
|
+
attr_accessor next_token: ::String
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class ListScheduledQueriesResponse
|
153
|
+
attr_accessor scheduled_queries: ::Array[Types::ScheduledQuery]
|
154
|
+
attr_accessor next_token: ::String
|
155
|
+
SENSITIVE: []
|
156
|
+
end
|
157
|
+
|
158
|
+
class ListTagsForResourceRequest
|
159
|
+
attr_accessor resource_arn: ::String
|
160
|
+
attr_accessor max_results: ::Integer
|
161
|
+
attr_accessor next_token: ::String
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class ListTagsForResourceResponse
|
166
|
+
attr_accessor tags: ::Array[Types::Tag]
|
167
|
+
attr_accessor next_token: ::String
|
168
|
+
SENSITIVE: []
|
169
|
+
end
|
170
|
+
|
171
|
+
class MixedMeasureMapping
|
172
|
+
attr_accessor measure_name: ::String
|
173
|
+
attr_accessor source_column: ::String
|
174
|
+
attr_accessor target_measure_name: ::String
|
175
|
+
attr_accessor measure_value_type: ("BIGINT" | "BOOLEAN" | "DOUBLE" | "VARCHAR" | "MULTI")
|
176
|
+
attr_accessor multi_measure_attribute_mappings: ::Array[Types::MultiMeasureAttributeMapping]
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class MultiMeasureAttributeMapping
|
181
|
+
attr_accessor source_column: ::String
|
182
|
+
attr_accessor target_multi_measure_attribute_name: ::String
|
183
|
+
attr_accessor measure_value_type: ("BIGINT" | "BOOLEAN" | "DOUBLE" | "VARCHAR" | "TIMESTAMP")
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class MultiMeasureMappings
|
188
|
+
attr_accessor target_multi_measure_name: ::String
|
189
|
+
attr_accessor multi_measure_attribute_mappings: ::Array[Types::MultiMeasureAttributeMapping]
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class NotificationConfiguration
|
194
|
+
attr_accessor sns_configuration: Types::SnsConfiguration
|
195
|
+
SENSITIVE: []
|
196
|
+
end
|
197
|
+
|
198
|
+
class ParameterMapping
|
199
|
+
attr_accessor name: ::String
|
200
|
+
attr_accessor type: Types::Type
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class PrepareQueryRequest
|
205
|
+
attr_accessor query_string: ::String
|
206
|
+
attr_accessor validate_only: bool
|
207
|
+
SENSITIVE: [:query_string]
|
208
|
+
end
|
209
|
+
|
210
|
+
class PrepareQueryResponse
|
211
|
+
attr_accessor query_string: ::String
|
212
|
+
attr_accessor columns: ::Array[Types::SelectColumn]
|
213
|
+
attr_accessor parameters: ::Array[Types::ParameterMapping]
|
214
|
+
SENSITIVE: [:query_string]
|
215
|
+
end
|
216
|
+
|
217
|
+
class QueryExecutionException
|
218
|
+
attr_accessor message: ::String
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class QueryRequest
|
223
|
+
attr_accessor query_string: ::String
|
224
|
+
attr_accessor client_token: ::String
|
225
|
+
attr_accessor next_token: ::String
|
226
|
+
attr_accessor max_rows: ::Integer
|
227
|
+
SENSITIVE: [:query_string, :client_token]
|
228
|
+
end
|
229
|
+
|
230
|
+
class QueryResponse
|
231
|
+
attr_accessor query_id: ::String
|
232
|
+
attr_accessor next_token: ::String
|
233
|
+
attr_accessor rows: ::Array[Types::Row]
|
234
|
+
attr_accessor column_info: ::Array[Types::ColumnInfo]
|
235
|
+
attr_accessor query_status: Types::QueryStatus
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
239
|
+
class QueryStatus
|
240
|
+
attr_accessor progress_percentage: ::Float
|
241
|
+
attr_accessor cumulative_bytes_scanned: ::Integer
|
242
|
+
attr_accessor cumulative_bytes_metered: ::Integer
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class ResourceNotFoundException
|
247
|
+
attr_accessor message: ::String
|
248
|
+
attr_accessor scheduled_query_arn: ::String
|
249
|
+
SENSITIVE: []
|
250
|
+
end
|
251
|
+
|
252
|
+
class Row
|
253
|
+
attr_accessor data: ::Array[Types::Datum]
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class S3Configuration
|
258
|
+
attr_accessor bucket_name: ::String
|
259
|
+
attr_accessor object_key_prefix: ::String
|
260
|
+
attr_accessor encryption_option: ("SSE_S3" | "SSE_KMS")
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class S3ReportLocation
|
265
|
+
attr_accessor bucket_name: ::String
|
266
|
+
attr_accessor object_key: ::String
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class ScheduleConfiguration
|
271
|
+
attr_accessor schedule_expression: ::String
|
272
|
+
SENSITIVE: []
|
273
|
+
end
|
274
|
+
|
275
|
+
class ScheduledQuery
|
276
|
+
attr_accessor arn: ::String
|
277
|
+
attr_accessor name: ::String
|
278
|
+
attr_accessor creation_time: ::Time
|
279
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
280
|
+
attr_accessor previous_invocation_time: ::Time
|
281
|
+
attr_accessor next_invocation_time: ::Time
|
282
|
+
attr_accessor error_report_configuration: Types::ErrorReportConfiguration
|
283
|
+
attr_accessor target_destination: Types::TargetDestination
|
284
|
+
attr_accessor last_run_status: ("AUTO_TRIGGER_SUCCESS" | "AUTO_TRIGGER_FAILURE" | "MANUAL_TRIGGER_SUCCESS" | "MANUAL_TRIGGER_FAILURE")
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
288
|
+
class ScheduledQueryDescription
|
289
|
+
attr_accessor arn: ::String
|
290
|
+
attr_accessor name: ::String
|
291
|
+
attr_accessor query_string: ::String
|
292
|
+
attr_accessor creation_time: ::Time
|
293
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
294
|
+
attr_accessor previous_invocation_time: ::Time
|
295
|
+
attr_accessor next_invocation_time: ::Time
|
296
|
+
attr_accessor schedule_configuration: Types::ScheduleConfiguration
|
297
|
+
attr_accessor notification_configuration: Types::NotificationConfiguration
|
298
|
+
attr_accessor target_configuration: Types::TargetConfiguration
|
299
|
+
attr_accessor scheduled_query_execution_role_arn: ::String
|
300
|
+
attr_accessor kms_key_id: ::String
|
301
|
+
attr_accessor error_report_configuration: Types::ErrorReportConfiguration
|
302
|
+
attr_accessor last_run_summary: Types::ScheduledQueryRunSummary
|
303
|
+
attr_accessor recently_failed_runs: ::Array[Types::ScheduledQueryRunSummary]
|
304
|
+
SENSITIVE: [:query_string]
|
305
|
+
end
|
306
|
+
|
307
|
+
class ScheduledQueryRunSummary
|
308
|
+
attr_accessor invocation_time: ::Time
|
309
|
+
attr_accessor trigger_time: ::Time
|
310
|
+
attr_accessor run_status: ("AUTO_TRIGGER_SUCCESS" | "AUTO_TRIGGER_FAILURE" | "MANUAL_TRIGGER_SUCCESS" | "MANUAL_TRIGGER_FAILURE")
|
311
|
+
attr_accessor execution_stats: Types::ExecutionStats
|
312
|
+
attr_accessor error_report_location: Types::ErrorReportLocation
|
313
|
+
attr_accessor failure_reason: ::String
|
314
|
+
SENSITIVE: []
|
315
|
+
end
|
316
|
+
|
317
|
+
class SelectColumn
|
318
|
+
attr_accessor name: ::String
|
319
|
+
attr_accessor type: Types::Type
|
320
|
+
attr_accessor database_name: ::String
|
321
|
+
attr_accessor table_name: ::String
|
322
|
+
attr_accessor aliased: bool
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class ServiceQuotaExceededException
|
327
|
+
attr_accessor message: ::String
|
328
|
+
SENSITIVE: []
|
329
|
+
end
|
330
|
+
|
331
|
+
class SnsConfiguration
|
332
|
+
attr_accessor topic_arn: ::String
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class Tag
|
337
|
+
attr_accessor key: ::String
|
338
|
+
attr_accessor value: ::String
|
339
|
+
SENSITIVE: []
|
340
|
+
end
|
341
|
+
|
342
|
+
class TagResourceRequest
|
343
|
+
attr_accessor resource_arn: ::String
|
344
|
+
attr_accessor tags: ::Array[Types::Tag]
|
345
|
+
SENSITIVE: []
|
346
|
+
end
|
347
|
+
|
348
|
+
class TagResourceResponse < Aws::EmptyStructure
|
349
|
+
end
|
350
|
+
|
351
|
+
class TargetConfiguration
|
352
|
+
attr_accessor timestream_configuration: Types::TimestreamConfiguration
|
353
|
+
SENSITIVE: []
|
354
|
+
end
|
355
|
+
|
356
|
+
class TargetDestination
|
357
|
+
attr_accessor timestream_destination: Types::TimestreamDestination
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class ThrottlingException
|
362
|
+
attr_accessor message: ::String
|
363
|
+
SENSITIVE: []
|
364
|
+
end
|
365
|
+
|
366
|
+
class TimeSeriesDataPoint
|
367
|
+
attr_accessor time: ::String
|
368
|
+
attr_accessor value: Types::Datum
|
369
|
+
SENSITIVE: []
|
370
|
+
end
|
371
|
+
|
372
|
+
class TimestreamConfiguration
|
373
|
+
attr_accessor database_name: ::String
|
374
|
+
attr_accessor table_name: ::String
|
375
|
+
attr_accessor time_column: ::String
|
376
|
+
attr_accessor dimension_mappings: ::Array[Types::DimensionMapping]
|
377
|
+
attr_accessor multi_measure_mappings: Types::MultiMeasureMappings
|
378
|
+
attr_accessor mixed_measure_mappings: ::Array[Types::MixedMeasureMapping]
|
379
|
+
attr_accessor measure_name_column: ::String
|
380
|
+
SENSITIVE: []
|
381
|
+
end
|
382
|
+
|
383
|
+
class TimestreamDestination
|
384
|
+
attr_accessor database_name: ::String
|
385
|
+
attr_accessor table_name: ::String
|
386
|
+
SENSITIVE: []
|
387
|
+
end
|
388
|
+
|
389
|
+
class Type
|
390
|
+
attr_accessor scalar_type: ("VARCHAR" | "BOOLEAN" | "BIGINT" | "DOUBLE" | "TIMESTAMP" | "DATE" | "TIME" | "INTERVAL_DAY_TO_SECOND" | "INTERVAL_YEAR_TO_MONTH" | "UNKNOWN" | "INTEGER")
|
391
|
+
attr_accessor array_column_info: Types::ColumnInfo
|
392
|
+
attr_accessor time_series_measure_value_column_info: Types::ColumnInfo
|
393
|
+
attr_accessor row_column_info: ::Array[Types::ColumnInfo]
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class UntagResourceRequest
|
398
|
+
attr_accessor resource_arn: ::String
|
399
|
+
attr_accessor tag_keys: ::Array[::String]
|
400
|
+
SENSITIVE: []
|
401
|
+
end
|
402
|
+
|
403
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
404
|
+
end
|
405
|
+
|
406
|
+
class UpdateAccountSettingsRequest
|
407
|
+
attr_accessor max_query_tcu: ::Integer
|
408
|
+
attr_accessor query_pricing_model: ("BYTES_SCANNED" | "COMPUTE_UNITS")
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class UpdateAccountSettingsResponse
|
413
|
+
attr_accessor max_query_tcu: ::Integer
|
414
|
+
attr_accessor query_pricing_model: ("BYTES_SCANNED" | "COMPUTE_UNITS")
|
415
|
+
SENSITIVE: []
|
416
|
+
end
|
417
|
+
|
418
|
+
class UpdateScheduledQueryRequest
|
419
|
+
attr_accessor scheduled_query_arn: ::String
|
420
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
421
|
+
SENSITIVE: []
|
422
|
+
end
|
423
|
+
|
424
|
+
class ValidationException
|
425
|
+
attr_accessor message: ::String
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
end
|
429
|
+
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 TimestreamQuery
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-timestreamquery
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-timestreamquery/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-timestreamquery/resource.rb
|
68
68
|
- lib/aws-sdk-timestreamquery/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-timestreamquery
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-timestreamquery/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -80,15 +85,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
80
85
|
requirements:
|
81
86
|
- - ">="
|
82
87
|
- !ruby/object:Gem::Version
|
83
|
-
version: '2.
|
88
|
+
version: '2.5'
|
84
89
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
90
|
requirements:
|
86
91
|
- - ">="
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - Timestream Query
|
94
99
|
test_files: []
|