aws-sdk-athena 1.83.0 → 1.84.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-athena/client.rb +8 -6
- data/lib/aws-sdk-athena/client_api.rb +1 -0
- data/lib/aws-sdk-athena/types.rb +8 -26
- data/lib/aws-sdk-athena.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4158aa328cf9469057fd3df929c50c7b110a89821a6738aa180a4c24ee8c4cc0
|
|
4
|
+
data.tar.gz: 8316d70cec15713adb61385d9a680d9a907056d9f77e7192b2a9a3298a9b2904
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: af67093ce30be4912e10720e105f99f829d4a2472a9cbcdc01e61b9248a63fa12a661aab3fa60122f57dd69ed6a4f975756d6421dff76609963c88dcd8112feb
|
|
7
|
+
data.tar.gz: 91696146881f8205e7a73562c080d5e7afb477b036693fefe17dc2f4a05faf128d216d03b8cdb2864e51774b518bb9bd02361ec4db3c1b7333899d77b7b1259a
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.84.0
|
|
@@ -1711,11 +1711,13 @@ module Aws::Athena
|
|
|
1711
1711
|
|
|
1712
1712
|
# Returns query execution runtime statistics related to a single
|
|
1713
1713
|
# execution of a query if you have access to the workgroup in which the
|
|
1714
|
-
# query ran.
|
|
1715
|
-
# QueryExecutionStatus$State is in a
|
|
1716
|
-
#
|
|
1717
|
-
#
|
|
1718
|
-
#
|
|
1714
|
+
# query ran. Statistics from the `Timeline` section of the response
|
|
1715
|
+
# object are available as soon as QueryExecutionStatus$State is in a
|
|
1716
|
+
# SUCCEEDED or FAILED state. The remaining non-timeline statistics in
|
|
1717
|
+
# the response (like stage-level input and output row count and data
|
|
1718
|
+
# size) are updated asynchronously and may not be available immediately
|
|
1719
|
+
# after a query completes. The non-timeline statistics are also not
|
|
1720
|
+
# included when a query has row-level filters defined in Lake Formation.
|
|
1719
1721
|
#
|
|
1720
1722
|
# @option params [required, String] :query_execution_id
|
|
1721
1723
|
# The unique ID of the query execution.
|
|
@@ -3683,7 +3685,7 @@ module Aws::Athena
|
|
|
3683
3685
|
params: params,
|
|
3684
3686
|
config: config)
|
|
3685
3687
|
context[:gem_name] = 'aws-sdk-athena'
|
|
3686
|
-
context[:gem_version] = '1.
|
|
3688
|
+
context[:gem_version] = '1.84.0'
|
|
3687
3689
|
Seahorse::Client::Request.new(handlers, context)
|
|
3688
3690
|
end
|
|
3689
3691
|
|
data/lib/aws-sdk-athena/types.rb
CHANGED
|
@@ -3517,15 +3517,9 @@ module Aws::Athena
|
|
|
3517
3517
|
# either for individual queries using either this setting
|
|
3518
3518
|
# (client-side), or in the workgroup, using WorkGroupConfiguration. If
|
|
3519
3519
|
# none of them is set, Athena issues an error that no output location
|
|
3520
|
-
# is provided.
|
|
3521
|
-
#
|
|
3522
|
-
# client-side settings, then the query uses the settings specified for
|
|
3523
|
-
# the workgroup. See
|
|
3520
|
+
# is provided. If workgroup settings override client-side settings,
|
|
3521
|
+
# then the query uses the settings specified for the workgroup. See
|
|
3524
3522
|
# WorkGroupConfiguration$EnforceWorkGroupConfiguration.
|
|
3525
|
-
#
|
|
3526
|
-
#
|
|
3527
|
-
#
|
|
3528
|
-
# [1]: https://docs.aws.amazon.com/athena/latest/ug/querying.html
|
|
3529
3523
|
# @return [String]
|
|
3530
3524
|
#
|
|
3531
3525
|
# @!attribute [rw] encryption_configuration
|
|
@@ -3597,19 +3591,13 @@ module Aws::Athena
|
|
|
3597
3591
|
#
|
|
3598
3592
|
# @!attribute [rw] output_location
|
|
3599
3593
|
# The location in Amazon S3 where your query and calculation results
|
|
3600
|
-
# are stored, such as `s3://path/to/query/bucket/`.
|
|
3601
|
-
#
|
|
3602
|
-
#
|
|
3603
|
-
#
|
|
3604
|
-
#
|
|
3605
|
-
# The "workgroup settings override" is specified in
|
|
3606
|
-
# `EnforceWorkGroupConfiguration` (true/false) in the
|
|
3594
|
+
# are stored, such as `s3://path/to/query/bucket/`. If workgroup
|
|
3595
|
+
# settings override client-side settings, then the query uses the
|
|
3596
|
+
# location for the query results and the encryption configuration that
|
|
3597
|
+
# are specified for the workgroup. The "workgroup settings override"
|
|
3598
|
+
# is specified in `EnforceWorkGroupConfiguration` (true/false) in the
|
|
3607
3599
|
# `WorkGroupConfiguration`. See
|
|
3608
3600
|
# WorkGroupConfiguration$EnforceWorkGroupConfiguration.
|
|
3609
|
-
#
|
|
3610
|
-
#
|
|
3611
|
-
#
|
|
3612
|
-
# [1]: https://docs.aws.amazon.com/athena/latest/ug/querying.html
|
|
3613
3601
|
# @return [String]
|
|
3614
3602
|
#
|
|
3615
3603
|
# @!attribute [rw] remove_output_location
|
|
@@ -4891,13 +4879,7 @@ module Aws::Athena
|
|
|
4891
4879
|
# one of the ways: either in the workgroup using this setting, or for
|
|
4892
4880
|
# individual queries (client-side), using
|
|
4893
4881
|
# ResultConfiguration$OutputLocation. If none of them is set, Athena
|
|
4894
|
-
# issues an error that no output location is provided.
|
|
4895
|
-
# information, see [Working with query results, recent queries, and
|
|
4896
|
-
# output files][1].
|
|
4897
|
-
#
|
|
4898
|
-
#
|
|
4899
|
-
#
|
|
4900
|
-
# [1]: https://docs.aws.amazon.com/athena/latest/ug/querying.html
|
|
4882
|
+
# issues an error that no output location is provided.
|
|
4901
4883
|
# @return [Types::ResultConfiguration]
|
|
4902
4884
|
#
|
|
4903
4885
|
# @!attribute [rw] enforce_work_group_configuration
|
data/lib/aws-sdk-athena.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-athena
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.84.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: 2024-05-
|
|
11
|
+
date: 2024-05-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|