aws-sdk-timestreamquery 1.12.0 → 1.15.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-timestreamquery/client.rb +9 -5
- data/lib/aws-sdk-timestreamquery.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fdfd5aa8ccf0a24dbd09a2ae18179d84af91897609a861a4ebe656095e6dc3bf
|
|
4
|
+
data.tar.gz: dac4e5ccf76414a04fe1e388bb71f4acca5eec2261df652d39e76a1693b0ac67
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ccdd4884b46324b457c020c0a4117969ce05ead913d27571ee8db038e6492447ca23e9d68d6b1409dc2dc0cb688cb37ed1664b59f2c9fa583691a282b7ed98ed
|
|
7
|
+
data.tar.gz: ea84c479be0613f05e17f4e3775cfcde01c1bf061b231e8b2ff43fdfee469aa81b33cfd172106e94820ee5aaf023ef1d00f8f120413339c9d93071a24a5da629
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.15.0 (2022-03-03)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Documentation only update for SDK and CLI
|
|
8
|
+
|
|
9
|
+
1.14.0 (2022-02-24)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
1.13.0 (2022-02-03)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
4
19
|
1.12.0 (2021-12-21)
|
|
5
20
|
------------------
|
|
6
21
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.15.0
|
|
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
32
34
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
33
35
|
|
|
@@ -74,7 +76,9 @@ module Aws::TimestreamQuery
|
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
79
83
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
|
80
84
|
|
|
@@ -366,7 +370,7 @@ module Aws::TimestreamQuery
|
|
|
366
370
|
#
|
|
367
371
|
#
|
|
368
372
|
#
|
|
369
|
-
# [1]: https://docs.aws.amazon.com/
|
|
373
|
+
# [1]: https://docs.aws.amazon.com/timestream/latest/developerguide/code-samples.cancel-query.html
|
|
370
374
|
#
|
|
371
375
|
# @option params [required, String] :query_id
|
|
372
376
|
# The ID of the query that needs to be cancelled. `QueryID` is returned
|
|
@@ -595,8 +599,8 @@ module Aws::TimestreamQuery
|
|
|
595
599
|
#
|
|
596
600
|
#
|
|
597
601
|
#
|
|
598
|
-
# [1]: https://docs.aws.amazon.com/
|
|
599
|
-
# [2]: https://docs.aws.amazon.com/
|
|
602
|
+
# [1]: https://docs.aws.amazon.com/timestream/latest/developerguide/VPCEndpoints
|
|
603
|
+
# [2]: https://docs.aws.amazon.com/timestream/latest/developerguide/Using.API.html#Using-API.endpoint-discovery
|
|
600
604
|
#
|
|
601
605
|
# @return [Types::DescribeEndpointsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
602
606
|
#
|
|
@@ -922,7 +926,7 @@ module Aws::TimestreamQuery
|
|
|
922
926
|
#
|
|
923
927
|
#
|
|
924
928
|
#
|
|
925
|
-
# [1]: https://docs.aws.amazon.com/
|
|
929
|
+
# [1]: https://docs.aws.amazon.com/timestream/latest/developerguide/code-samples.run-query.html
|
|
926
930
|
#
|
|
927
931
|
# @option params [required, String] :query_string
|
|
928
932
|
# The query to be run by Timestream.
|
|
@@ -1157,7 +1161,7 @@ module Aws::TimestreamQuery
|
|
|
1157
1161
|
params: params,
|
|
1158
1162
|
config: config)
|
|
1159
1163
|
context[:gem_name] = 'aws-sdk-timestreamquery'
|
|
1160
|
-
context[:gem_version] = '1.
|
|
1164
|
+
context[:gem_version] = '1.15.0'
|
|
1161
1165
|
Seahorse::Client::Request.new(handlers, context)
|
|
1162
1166
|
end
|
|
1163
1167
|
|
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.15.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:
|
|
11
|
+
date: 2022-03-03 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.127.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.127.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|