aws-sdk-timestreamquery 1.13.0 → 1.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-timestreamquery/client.rb +11 -9
- data/lib/aws-sdk-timestreamquery/types.rb +9 -9
- 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: 99b4f232b9e291d87d97415393db2f8010115a40bde90a6df9895c60e700f7c8
|
4
|
+
data.tar.gz: 53b97e3766571099ba05e7ac9cac622221b4be1c2e046b51f079b28a1caaa54b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6dcec0edcf0e0b08c15254a1cb61bd64e2e36d30b743c553200a9915fd87a4b3621799088a74944f58bff9386ebe067adc419c0ff7f08d7bcbf92dae32ea504d
|
7
|
+
data.tar.gz: 9710b10627136303d12abf5fafcc51e7ac0160085543976585d85a0743ee0ff0c5345307ea80565aa67f126b81fe6ba135b29782aa45a5d9dcdbaf7504ecdaad
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.16.0 (2022-03-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Amazon Timestream Scheduled Queries now support Timestamp datatype in a multi-measure record.
|
8
|
+
|
9
|
+
1.15.0 (2022-03-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation only update for SDK and CLI
|
13
|
+
|
14
|
+
1.14.0 (2022-02-24)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.13.0 (2022-02-03)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.16.0
|
@@ -27,6 +27,7 @@ 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'
|
31
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
32
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
@@ -75,6 +76,7 @@ module Aws::TimestreamQuery
|
|
75
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
76
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
77
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
78
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
79
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
80
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
@@ -368,7 +370,7 @@ module Aws::TimestreamQuery
|
|
368
370
|
#
|
369
371
|
#
|
370
372
|
#
|
371
|
-
# [1]: https://docs.aws.amazon.com/
|
373
|
+
# [1]: https://docs.aws.amazon.com/timestream/latest/developerguide/code-samples.cancel-query.html
|
372
374
|
#
|
373
375
|
# @option params [required, String] :query_id
|
374
376
|
# The ID of the query that needs to be cancelled. `QueryID` is returned
|
@@ -500,7 +502,7 @@ module Aws::TimestreamQuery
|
|
500
502
|
# {
|
501
503
|
# source_column: "SchemaName", # required
|
502
504
|
# target_multi_measure_attribute_name: "SchemaName",
|
503
|
-
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR
|
505
|
+
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR, TIMESTAMP
|
504
506
|
# },
|
505
507
|
# ],
|
506
508
|
# },
|
@@ -514,7 +516,7 @@ module Aws::TimestreamQuery
|
|
514
516
|
# {
|
515
517
|
# source_column: "SchemaName", # required
|
516
518
|
# target_multi_measure_attribute_name: "SchemaName",
|
517
|
-
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR
|
519
|
+
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR, TIMESTAMP
|
518
520
|
# },
|
519
521
|
# ],
|
520
522
|
# },
|
@@ -597,8 +599,8 @@ module Aws::TimestreamQuery
|
|
597
599
|
#
|
598
600
|
#
|
599
601
|
#
|
600
|
-
# [1]: https://docs.aws.amazon.com/
|
601
|
-
# [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
|
602
604
|
#
|
603
605
|
# @return [Types::DescribeEndpointsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
604
606
|
#
|
@@ -655,7 +657,7 @@ module Aws::TimestreamQuery
|
|
655
657
|
# resp.scheduled_query.target_configuration.timestream_configuration.multi_measure_mappings.multi_measure_attribute_mappings #=> Array
|
656
658
|
# resp.scheduled_query.target_configuration.timestream_configuration.multi_measure_mappings.multi_measure_attribute_mappings[0].source_column #=> String
|
657
659
|
# resp.scheduled_query.target_configuration.timestream_configuration.multi_measure_mappings.multi_measure_attribute_mappings[0].target_multi_measure_attribute_name #=> String
|
658
|
-
# resp.scheduled_query.target_configuration.timestream_configuration.multi_measure_mappings.multi_measure_attribute_mappings[0].measure_value_type #=> String, one of "BIGINT", "BOOLEAN", "DOUBLE", "VARCHAR"
|
660
|
+
# resp.scheduled_query.target_configuration.timestream_configuration.multi_measure_mappings.multi_measure_attribute_mappings[0].measure_value_type #=> String, one of "BIGINT", "BOOLEAN", "DOUBLE", "VARCHAR", "TIMESTAMP"
|
659
661
|
# resp.scheduled_query.target_configuration.timestream_configuration.mixed_measure_mappings #=> Array
|
660
662
|
# resp.scheduled_query.target_configuration.timestream_configuration.mixed_measure_mappings[0].measure_name #=> String
|
661
663
|
# resp.scheduled_query.target_configuration.timestream_configuration.mixed_measure_mappings[0].source_column #=> String
|
@@ -664,7 +666,7 @@ module Aws::TimestreamQuery
|
|
664
666
|
# resp.scheduled_query.target_configuration.timestream_configuration.mixed_measure_mappings[0].multi_measure_attribute_mappings #=> Array
|
665
667
|
# resp.scheduled_query.target_configuration.timestream_configuration.mixed_measure_mappings[0].multi_measure_attribute_mappings[0].source_column #=> String
|
666
668
|
# resp.scheduled_query.target_configuration.timestream_configuration.mixed_measure_mappings[0].multi_measure_attribute_mappings[0].target_multi_measure_attribute_name #=> String
|
667
|
-
# resp.scheduled_query.target_configuration.timestream_configuration.mixed_measure_mappings[0].multi_measure_attribute_mappings[0].measure_value_type #=> String, one of "BIGINT", "BOOLEAN", "DOUBLE", "VARCHAR"
|
669
|
+
# resp.scheduled_query.target_configuration.timestream_configuration.mixed_measure_mappings[0].multi_measure_attribute_mappings[0].measure_value_type #=> String, one of "BIGINT", "BOOLEAN", "DOUBLE", "VARCHAR", "TIMESTAMP"
|
668
670
|
# resp.scheduled_query.target_configuration.timestream_configuration.measure_name_column #=> String
|
669
671
|
# resp.scheduled_query.scheduled_query_execution_role_arn #=> String
|
670
672
|
# resp.scheduled_query.kms_key_id #=> String
|
@@ -924,7 +926,7 @@ module Aws::TimestreamQuery
|
|
924
926
|
#
|
925
927
|
#
|
926
928
|
#
|
927
|
-
# [1]: https://docs.aws.amazon.com/
|
929
|
+
# [1]: https://docs.aws.amazon.com/timestream/latest/developerguide/code-samples.run-query.html
|
928
930
|
#
|
929
931
|
# @option params [required, String] :query_string
|
930
932
|
# The query to be run by Timestream.
|
@@ -1159,7 +1161,7 @@ module Aws::TimestreamQuery
|
|
1159
1161
|
params: params,
|
1160
1162
|
config: config)
|
1161
1163
|
context[:gem_name] = 'aws-sdk-timestreamquery'
|
1162
|
-
context[:gem_version] = '1.
|
1164
|
+
context[:gem_version] = '1.16.0'
|
1163
1165
|
Seahorse::Client::Request.new(handlers, context)
|
1164
1166
|
end
|
1165
1167
|
|
@@ -124,7 +124,7 @@ module Aws::TimestreamQuery
|
|
124
124
|
# {
|
125
125
|
# source_column: "SchemaName", # required
|
126
126
|
# target_multi_measure_attribute_name: "SchemaName",
|
127
|
-
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR
|
127
|
+
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR, TIMESTAMP
|
128
128
|
# },
|
129
129
|
# ],
|
130
130
|
# },
|
@@ -138,7 +138,7 @@ module Aws::TimestreamQuery
|
|
138
138
|
# {
|
139
139
|
# source_column: "SchemaName", # required
|
140
140
|
# target_multi_measure_attribute_name: "SchemaName",
|
141
|
-
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR
|
141
|
+
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR, TIMESTAMP
|
142
142
|
# },
|
143
143
|
# ],
|
144
144
|
# },
|
@@ -670,7 +670,7 @@ module Aws::TimestreamQuery
|
|
670
670
|
# {
|
671
671
|
# source_column: "SchemaName", # required
|
672
672
|
# target_multi_measure_attribute_name: "SchemaName",
|
673
|
-
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR
|
673
|
+
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR, TIMESTAMP
|
674
674
|
# },
|
675
675
|
# ],
|
676
676
|
# }
|
@@ -721,7 +721,7 @@ module Aws::TimestreamQuery
|
|
721
721
|
# {
|
722
722
|
# source_column: "SchemaName", # required
|
723
723
|
# target_multi_measure_attribute_name: "SchemaName",
|
724
|
-
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR
|
724
|
+
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR, TIMESTAMP
|
725
725
|
# }
|
726
726
|
#
|
727
727
|
# @!attribute [rw] source_column
|
@@ -760,7 +760,7 @@ module Aws::TimestreamQuery
|
|
760
760
|
# {
|
761
761
|
# source_column: "SchemaName", # required
|
762
762
|
# target_multi_measure_attribute_name: "SchemaName",
|
763
|
-
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR
|
763
|
+
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR, TIMESTAMP
|
764
764
|
# },
|
765
765
|
# ],
|
766
766
|
# }
|
@@ -1520,7 +1520,7 @@ module Aws::TimestreamQuery
|
|
1520
1520
|
# {
|
1521
1521
|
# source_column: "SchemaName", # required
|
1522
1522
|
# target_multi_measure_attribute_name: "SchemaName",
|
1523
|
-
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR
|
1523
|
+
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR, TIMESTAMP
|
1524
1524
|
# },
|
1525
1525
|
# ],
|
1526
1526
|
# },
|
@@ -1534,7 +1534,7 @@ module Aws::TimestreamQuery
|
|
1534
1534
|
# {
|
1535
1535
|
# source_column: "SchemaName", # required
|
1536
1536
|
# target_multi_measure_attribute_name: "SchemaName",
|
1537
|
-
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR
|
1537
|
+
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR, TIMESTAMP
|
1538
1538
|
# },
|
1539
1539
|
# ],
|
1540
1540
|
# },
|
@@ -1630,7 +1630,7 @@ module Aws::TimestreamQuery
|
|
1630
1630
|
# {
|
1631
1631
|
# source_column: "SchemaName", # required
|
1632
1632
|
# target_multi_measure_attribute_name: "SchemaName",
|
1633
|
-
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR
|
1633
|
+
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR, TIMESTAMP
|
1634
1634
|
# },
|
1635
1635
|
# ],
|
1636
1636
|
# },
|
@@ -1644,7 +1644,7 @@ module Aws::TimestreamQuery
|
|
1644
1644
|
# {
|
1645
1645
|
# source_column: "SchemaName", # required
|
1646
1646
|
# target_multi_measure_attribute_name: "SchemaName",
|
1647
|
-
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR
|
1647
|
+
# measure_value_type: "BIGINT", # required, accepts BIGINT, BOOLEAN, DOUBLE, VARCHAR, TIMESTAMP
|
1648
1648
|
# },
|
1649
1649
|
# ],
|
1650
1650
|
# },
|
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.16.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: 2022-
|
11
|
+
date: 2022-03-14 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
|