aws-sdk-athena 1.116.0 → 1.117.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 +12 -3
- data/lib/aws-sdk-athena/types.rb +41 -8
- data/lib/aws-sdk-athena.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4d0afdbf9e2609cc28608a98ff0c758fcb3eb894532d0d17f5ed07e442ffe92c
|
|
4
|
+
data.tar.gz: 916211dd5c5c696a4d063c54653d748acd7a31486ea92c4cbca77b8a9d2804fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 814eb6c6c8f6bdca87a94529f8ae30b40cc98263f3430c92e2ad3b92d70827fae0eb193341a59cb9641b0b8d53371cbf83d279a6ea11c1a06b487e7ce4ea7fc2
|
|
7
|
+
data.tar.gz: 0a3e06bb6a7703da2ce0beaa53666b466bf4bca07319a879c11ea3fce49a2c2395973f31ad7ccf91836f5590570b6916ee4b8f968fe4866d042670099c53a86c
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.117.0
|
|
@@ -3372,8 +3372,17 @@ module Aws::Athena
|
|
|
3372
3372
|
# Specifies the query result reuse behavior for the query.
|
|
3373
3373
|
#
|
|
3374
3374
|
# @option params [Types::EngineConfiguration] :engine_configuration
|
|
3375
|
-
#
|
|
3376
|
-
#
|
|
3375
|
+
# The engine configuration for the workgroup, which includes the
|
|
3376
|
+
# minimum/maximum number of Data Processing Units (DPU) that queries
|
|
3377
|
+
# should use when running in provisioned capacity. If not specified,
|
|
3378
|
+
# Athena uses default values (Default value for min is 4 and for max is
|
|
3379
|
+
# Minimum of 124 and allocated DPUs).
|
|
3380
|
+
#
|
|
3381
|
+
# To specify minimum and maximum DPU values for Capacity Reservations
|
|
3382
|
+
# queries, the workgroup containing `EngineConfiguration` should have
|
|
3383
|
+
# the following values: The name of the `Classifications` should be
|
|
3384
|
+
# `athena-query-engine-properties`, with the only allowed properties as
|
|
3385
|
+
# `max-dpu-count` and `min-dpu-count`.
|
|
3377
3386
|
#
|
|
3378
3387
|
# @return [Types::StartQueryExecutionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3379
3388
|
#
|
|
@@ -4122,7 +4131,7 @@ module Aws::Athena
|
|
|
4122
4131
|
tracer: tracer
|
|
4123
4132
|
)
|
|
4124
4133
|
context[:gem_name] = 'aws-sdk-athena'
|
|
4125
|
-
context[:gem_version] = '1.
|
|
4134
|
+
context[:gem_version] = '1.117.0'
|
|
4126
4135
|
Seahorse::Client::Request.new(handlers, context)
|
|
4127
4136
|
end
|
|
4128
4137
|
|
data/lib/aws-sdk-athena/types.rb
CHANGED
|
@@ -1428,8 +1428,16 @@ module Aws::Athena
|
|
|
1428
1428
|
include Aws::Structure
|
|
1429
1429
|
end
|
|
1430
1430
|
|
|
1431
|
-
#
|
|
1432
|
-
#
|
|
1431
|
+
# The engine configuration for the workgroup, which includes the
|
|
1432
|
+
# minimum/maximum number of Data Processing Units (DPU) that queries
|
|
1433
|
+
# should use when running in provisioned capacity. If not specified,
|
|
1434
|
+
# Athena uses default values (Default value for min is 4 and for max is
|
|
1435
|
+
# Minimum of 124 and allocated DPUs).
|
|
1436
|
+
#
|
|
1437
|
+
# To specify DPU values for PC queries the WG containing
|
|
1438
|
+
# EngineConfiguration should have the following values: The name of the
|
|
1439
|
+
# Classifications should be `athena-query-engine-properties`, with the
|
|
1440
|
+
# only allowed properties as `max-dpu-count` and `min-dpu-count`.
|
|
1433
1441
|
#
|
|
1434
1442
|
# @!attribute [rw] coordinator_dpu_size
|
|
1435
1443
|
# The number of DPUs to use for the coordinator. A coordinator is a
|
|
@@ -4589,8 +4597,17 @@ module Aws::Athena
|
|
|
4589
4597
|
# @return [Types::ResultReuseConfiguration]
|
|
4590
4598
|
#
|
|
4591
4599
|
# @!attribute [rw] engine_configuration
|
|
4592
|
-
#
|
|
4593
|
-
#
|
|
4600
|
+
# The engine configuration for the workgroup, which includes the
|
|
4601
|
+
# minimum/maximum number of Data Processing Units (DPU) that queries
|
|
4602
|
+
# should use when running in provisioned capacity. If not specified,
|
|
4603
|
+
# Athena uses default values (Default value for min is 4 and for max
|
|
4604
|
+
# is Minimum of 124 and allocated DPUs).
|
|
4605
|
+
#
|
|
4606
|
+
# To specify minimum and maximum DPU values for Capacity Reservations
|
|
4607
|
+
# queries, the workgroup containing `EngineConfiguration` should have
|
|
4608
|
+
# the following values: The name of the `Classifications` should be
|
|
4609
|
+
# `athena-query-engine-properties`, with the only allowed properties
|
|
4610
|
+
# as `max-dpu-count` and `min-dpu-count`.
|
|
4594
4611
|
# @return [Types::EngineConfiguration]
|
|
4595
4612
|
#
|
|
4596
4613
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/StartQueryExecutionInput AWS API Documentation
|
|
@@ -5475,8 +5492,16 @@ module Aws::Athena
|
|
|
5475
5492
|
# @return [Types::MonitoringConfiguration]
|
|
5476
5493
|
#
|
|
5477
5494
|
# @!attribute [rw] engine_configuration
|
|
5478
|
-
#
|
|
5479
|
-
#
|
|
5495
|
+
# The engine configuration for the workgroup, which includes the
|
|
5496
|
+
# minimum/maximum number of Data Processing Units (DPU) that queries
|
|
5497
|
+
# should use when running in provisioned capacity. If not specified,
|
|
5498
|
+
# Athena uses default values (Default value for min is 4 and for max
|
|
5499
|
+
# is Minimum of 124 and allocated DPUs).
|
|
5500
|
+
#
|
|
5501
|
+
# To specify DPU values for PC queries the WG containing
|
|
5502
|
+
# EngineConfiguration should have the following values: The name of
|
|
5503
|
+
# the Classifications should be `athena-query-engine-properties`, with
|
|
5504
|
+
# the only allowed properties as `max-dpu-count` and `min-dpu-count`.
|
|
5480
5505
|
# @return [Types::EngineConfiguration]
|
|
5481
5506
|
#
|
|
5482
5507
|
# @!attribute [rw] customer_content_encryption_configuration
|
|
@@ -5646,8 +5671,16 @@ module Aws::Athena
|
|
|
5646
5671
|
# @return [Types::MonitoringConfiguration]
|
|
5647
5672
|
#
|
|
5648
5673
|
# @!attribute [rw] engine_configuration
|
|
5649
|
-
#
|
|
5650
|
-
#
|
|
5674
|
+
# The engine configuration for the workgroup, which includes the
|
|
5675
|
+
# minimum/maximum number of Data Processing Units (DPU) that queries
|
|
5676
|
+
# should use when running in provisioned capacity. If not specified,
|
|
5677
|
+
# Athena uses default values (Default value for min is 4 and for max
|
|
5678
|
+
# is Minimum of 124 and allocated DPUs).
|
|
5679
|
+
#
|
|
5680
|
+
# To specify DPU values for PC queries the WG containing
|
|
5681
|
+
# EngineConfiguration should have the following values: The name of
|
|
5682
|
+
# the Classifications should be `athena-query-engine-properties`, with
|
|
5683
|
+
# the only allowed properties as `max-dpu-count` and `min-dpu-count`.
|
|
5651
5684
|
# @return [Types::EngineConfiguration]
|
|
5652
5685
|
#
|
|
5653
5686
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/WorkGroupConfigurationUpdates AWS API Documentation
|
data/lib/aws-sdk-athena.rb
CHANGED