aws-sdk-athena 1.69.0 → 1.71.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-athena/client.rb +6 -1
- data/lib/aws-sdk-athena/client_api.rb +1 -0
- data/lib/aws-sdk-athena/endpoints.rb +1 -0
- data/lib/aws-sdk-athena/types.rb +14 -5
- 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: 809e55808c7f8b788a1e26007fee93a15590778763f4825ad820c9ceb25aef7d
|
4
|
+
data.tar.gz: 3d898acd5e90fd903c34b131eec004fca5af44717a907ecdeec12f8e16bd4fab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f08f1edf7d2ac079d47289ce0bb18a9417e287090969e40df55817e42bf9e4ee601a4cfd0a6e559f7e9f1773461d398b18707617974e572cc8ffe30a28a3b372
|
7
|
+
data.tar.gz: b101be995fdf80fdaf0f03c6437052f9d9662c5c94b9b8850149b5d00ee61088092f8308475e09879685564294eb140d1657d85cf538805b00e5af87bf446066
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.71.0 (2023-06-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.70.0 (2023-06-08)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - You can now define custom spark properties at start of the session for use cases like cluster encryption, table formats, and general Spark tuning.
|
13
|
+
|
4
14
|
1.69.0 (2023-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.71.0
|
@@ -1752,6 +1752,8 @@ module Aws::Athena
|
|
1752
1752
|
# resp.engine_configuration.default_executor_dpu_size #=> Integer
|
1753
1753
|
# resp.engine_configuration.additional_configs #=> Hash
|
1754
1754
|
# resp.engine_configuration.additional_configs["KeyString"] #=> String
|
1755
|
+
# resp.engine_configuration.spark_properties #=> Hash
|
1756
|
+
# resp.engine_configuration.spark_properties["KeyString"] #=> String
|
1755
1757
|
# resp.notebook_version #=> String
|
1756
1758
|
# resp.session_configuration.execution_role #=> String
|
1757
1759
|
# resp.session_configuration.working_directory #=> String
|
@@ -3069,6 +3071,9 @@ module Aws::Athena
|
|
3069
3071
|
# additional_configs: {
|
3070
3072
|
# "KeyString" => "ParametersMapValue",
|
3071
3073
|
# },
|
3074
|
+
# spark_properties: {
|
3075
|
+
# "KeyString" => "ParametersMapValue",
|
3076
|
+
# },
|
3072
3077
|
# },
|
3073
3078
|
# notebook_version: "NameString",
|
3074
3079
|
# session_idle_timeout_in_minutes: 1,
|
@@ -3593,7 +3598,7 @@ module Aws::Athena
|
|
3593
3598
|
params: params,
|
3594
3599
|
config: config)
|
3595
3600
|
context[:gem_name] = 'aws-sdk-athena'
|
3596
|
-
context[:gem_version] = '1.
|
3601
|
+
context[:gem_version] = '1.71.0'
|
3597
3602
|
Seahorse::Client::Request.new(handlers, context)
|
3598
3603
|
end
|
3599
3604
|
|
@@ -581,6 +581,7 @@ module Aws::Athena
|
|
581
581
|
EngineConfiguration.add_member(:max_concurrent_dpus, Shapes::ShapeRef.new(shape: MaxConcurrentDpus, required: true, location_name: "MaxConcurrentDpus"))
|
582
582
|
EngineConfiguration.add_member(:default_executor_dpu_size, Shapes::ShapeRef.new(shape: DefaultExecutorDpuSize, location_name: "DefaultExecutorDpuSize"))
|
583
583
|
EngineConfiguration.add_member(:additional_configs, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "AdditionalConfigs"))
|
584
|
+
EngineConfiguration.add_member(:spark_properties, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "SparkProperties"))
|
584
585
|
EngineConfiguration.struct_class = Types::EngineConfiguration
|
585
586
|
|
586
587
|
EngineVersion.add_member(:selected_engine_version, Shapes::ShapeRef.new(shape: NameString, location_name: "SelectedEngineVersion"))
|
data/lib/aws-sdk-athena/types.rb
CHANGED
@@ -889,7 +889,7 @@ module Aws::Athena
|
|
889
889
|
class CreateWorkGroupOutput < Aws::EmptyStructure; end
|
890
890
|
|
891
891
|
# Specifies the KMS key that is used to encrypt the user's data stores
|
892
|
-
# in Athena.
|
892
|
+
# in Athena. This setting does not apply to Athena SQL workgroups.
|
893
893
|
#
|
894
894
|
# @!attribute [rw] kms_key
|
895
895
|
# The KMS key that is used to encrypt the user's data stores in
|
@@ -1211,13 +1211,19 @@ module Aws::Athena
|
|
1211
1211
|
# value of the Athena notebook ID.
|
1212
1212
|
# @return [Hash<String,String>]
|
1213
1213
|
#
|
1214
|
+
# @!attribute [rw] spark_properties
|
1215
|
+
# Specifies custom jar files and Spark properties for use cases like
|
1216
|
+
# cluster encryption, table formats, and general Spark tuning.
|
1217
|
+
# @return [Hash<String,String>]
|
1218
|
+
#
|
1214
1219
|
# @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/EngineConfiguration AWS API Documentation
|
1215
1220
|
#
|
1216
1221
|
class EngineConfiguration < Struct.new(
|
1217
1222
|
:coordinator_dpu_size,
|
1218
1223
|
:max_concurrent_dpus,
|
1219
1224
|
:default_executor_dpu_size,
|
1220
|
-
:additional_configs
|
1225
|
+
:additional_configs,
|
1226
|
+
:spark_properties)
|
1221
1227
|
SENSITIVE = []
|
1222
1228
|
include Aws::Structure
|
1223
1229
|
end
|
@@ -4823,7 +4829,8 @@ module Aws::Athena
|
|
4823
4829
|
#
|
4824
4830
|
# @!attribute [rw] customer_content_encryption_configuration
|
4825
4831
|
# Specifies the KMS key that is used to encrypt the user's data
|
4826
|
-
# stores in Athena.
|
4832
|
+
# stores in Athena. This setting does not apply to Athena SQL
|
4833
|
+
# workgroups.
|
4827
4834
|
# @return [Types::CustomerContentEncryptionConfiguration]
|
4828
4835
|
#
|
4829
4836
|
# @!attribute [rw] enable_minimum_encryption_configuration
|
@@ -4919,7 +4926,8 @@ module Aws::Athena
|
|
4919
4926
|
# @return [Types::EngineVersion]
|
4920
4927
|
#
|
4921
4928
|
# @!attribute [rw] remove_customer_content_encryption_configuration
|
4922
|
-
# Removes content encryption configuration
|
4929
|
+
# Removes content encryption configuration from an Apache
|
4930
|
+
# Spark-enabled Athena workgroup.
|
4923
4931
|
# @return [Boolean]
|
4924
4932
|
#
|
4925
4933
|
# @!attribute [rw] additional_configuration
|
@@ -4933,7 +4941,8 @@ module Aws::Athena
|
|
4933
4941
|
#
|
4934
4942
|
# @!attribute [rw] customer_content_encryption_configuration
|
4935
4943
|
# Specifies the KMS key that is used to encrypt the user's data
|
4936
|
-
# stores in Athena.
|
4944
|
+
# stores in Athena. This setting does not apply to Athena SQL
|
4945
|
+
# workgroups.
|
4937
4946
|
# @return [Types::CustomerContentEncryptionConfiguration]
|
4938
4947
|
#
|
4939
4948
|
# @!attribute [rw] enable_minimum_encryption_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.71.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: 2023-06-
|
11
|
+
date: 2023-06-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|