aws-sdk-athena 1.82.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: 58ea630a6b742a6fde3149c43f422eb74f541b90254d893396cfdfe169311faf
4
- data.tar.gz: 7998c0da08093350f36485d39ec970a96b81312885f1944babd38128685d34fb
3
+ metadata.gz: 4158aa328cf9469057fd3df929c50c7b110a89821a6738aa180a4c24ee8c4cc0
4
+ data.tar.gz: 8316d70cec15713adb61385d9a680d9a907056d9f77e7192b2a9a3298a9b2904
5
5
  SHA512:
6
- metadata.gz: b40d60501e4f1ab6ba1515028a955125a2657ac3ecb5dc4eac0079bed7828826c8a62d500b076b2a1069231eb2ef35ef58f0a6b58e26d4eed68c44030add701c
7
- data.tar.gz: 02a1a43eaa1d70a7a1b15c078cb6c10eac6edf47ae60ac06f811c1f6f2782d2fe1ea82e81b5e21eb8c3346dc75b0182512a5ed794937f0cfb981b09148ff5f60
6
+ metadata.gz: af67093ce30be4912e10720e105f99f829d4a2472a9cbcdc01e61b9248a63fa12a661aab3fa60122f57dd69ed6a4f975756d6421dff76609963c88dcd8112feb
7
+ data.tar.gz: 91696146881f8205e7a73562c080d5e7afb477b036693fefe17dc2f4a05faf128d216d03b8cdb2864e51774b518bb9bd02361ec4db3c1b7333899d77b7b1259a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.83.0 (2024-05-13)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.82.0 (2024-04-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.82.0
1
+ 1.84.0
@@ -301,8 +301,9 @@ module Aws::Athena
301
301
  #
302
302
  # @option options [String] :sdk_ua_app_id
303
303
  # A unique and opaque application ID that is appended to the
304
- # User-Agent header as app/<sdk_ua_app_id>. It should have a
305
- # maximum length of 50.
304
+ # User-Agent header as app/sdk_ua_app_id. It should have a
305
+ # maximum length of 50. This variable is sourced from environment
306
+ # variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
306
307
  #
307
308
  # @option options [String] :secret_access_key
308
309
  #
@@ -1710,11 +1711,13 @@ module Aws::Athena
1710
1711
 
1711
1712
  # Returns query execution runtime statistics related to a single
1712
1713
  # execution of a query if you have access to the workgroup in which the
1713
- # query ran. Query execution runtime statistics are returned only when
1714
- # QueryExecutionStatus$State is in a SUCCEEDED or FAILED state.
1715
- # Stage-level input and output row count and data size statistics are
1716
- # not shown when a query has row-level filters defined in Lake
1717
- # 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.
1718
1721
  #
1719
1722
  # @option params [required, String] :query_execution_id
1720
1723
  # The unique ID of the query execution.
@@ -3682,7 +3685,7 @@ module Aws::Athena
3682
3685
  params: params,
3683
3686
  config: config)
3684
3687
  context[:gem_name] = 'aws-sdk-athena'
3685
- context[:gem_version] = '1.82.0'
3688
+ context[:gem_version] = '1.84.0'
3686
3689
  Seahorse::Client::Request.new(handlers, context)
3687
3690
  end
3688
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.82.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.82.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-04-25 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