aws-sdk-athena 1.83.0 → 1.84.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55a9433849483813f0ecb22400c8266a3ba014cfac8e150b217e4af094c2e441
4
- data.tar.gz: 7de6ae8bfdfadfb208e6cfe837e94afabe9960fad43555999bf13780b5389916
3
+ metadata.gz: 4158aa328cf9469057fd3df929c50c7b110a89821a6738aa180a4c24ee8c4cc0
4
+ data.tar.gz: 8316d70cec15713adb61385d9a680d9a907056d9f77e7192b2a9a3298a9b2904
5
5
  SHA512:
6
- metadata.gz: 8423da16b3e5dabea193846b995d8d3a5d4813ccd533f0e666165fbf8d4a4b3914a0d39f371d78d56c8b097d45b22905d73abbaca6daf55d62c0e79e6ee93985
7
- data.tar.gz: 900dcbad73a85ddf0fef0ba85f253ddb71c9a9da854bfe5b07759ffebf15f339f34ecc6b3869e74a4bf431f827c038d56b1ba874e6e117d2941b705cddb6c1de
6
+ metadata.gz: af67093ce30be4912e10720e105f99f829d4a2472a9cbcdc01e61b9248a63fa12a661aab3fa60122f57dd69ed6a4f975756d6421dff76609963c88dcd8112feb
7
+ data.tar.gz: 91696146881f8205e7a73562c080d5e7afb477b036693fefe17dc2f4a05faf128d216d03b8cdb2864e51774b518bb9bd02361ec4db3c1b7333899d77b7b1259a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.84.0 (2024-05-29)
5
+ ------------------
6
+
7
+ * Feature - Throwing validation errors on CreateNotebook with Name containing `/`,`:`,`\`
8
+
4
9
  1.83.0 (2024-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.83.0
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. Query execution runtime statistics are returned only when
1715
- # QueryExecutionStatus$State is in a SUCCEEDED or FAILED state.
1716
- # Stage-level input and output row count and data size statistics are
1717
- # not shown when a query has row-level filters defined in Lake
1718
- # Formation.
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.83.0'
3688
+ context[:gem_version] = '1.84.0'
3687
3689
  Seahorse::Client::Request.new(handlers, context)
3688
3690
  end
3689
3691
 
@@ -1359,6 +1359,7 @@ module Aws::Athena
1359
1359
  "endpointPrefix" => "athena",
1360
1360
  "jsonVersion" => "1.1",
1361
1361
  "protocol" => "json",
1362
+ "protocols" => ["json"],
1362
1363
  "serviceFullName" => "Amazon Athena",
1363
1364
  "serviceId" => "Athena",
1364
1365
  "signatureVersion" => "v4",
@@ -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. For more information, see [Working with query results,
3521
- # recent queries, and output files][1]. If workgroup settings override
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/`. For more
3601
- # information, see [Working with query results, recent queries, and
3602
- # output files][1]. If workgroup settings override client-side
3603
- # settings, then the query uses the location for the query results and
3604
- # the encryption configuration that are specified for the workgroup.
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. For more
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-athena/customizations'
52
52
  # @!group service
53
53
  module Aws::Athena
54
54
 
55
- GEM_VERSION = '1.83.0'
55
+ GEM_VERSION = '1.84.0'
56
56
 
57
57
  end
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.83.0
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-13 00:00:00.000000000 Z
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