aws-sdk-athena 1.65.0 → 1.66.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: 93a5aab54a9e7b9bb75bf9274a0a1db4d32a7fbb6d8803f519065c43f4627b26
4
- data.tar.gz: 1b8ff4beb625c0636d13045d3f26f70b296d8500e2313485ec663e3e39d5c4fb
3
+ metadata.gz: b86c590858a0e622014e598449567063af7f35b3e5b7ba56c9c9ad4b0fe800f9
4
+ data.tar.gz: 7c3d0904c0f910847528a85cec1807aea89c05979a158c2b32a22012e58b0078
5
5
  SHA512:
6
- metadata.gz: 160bfa2697be724741708f9cd19a165c989fd2c6f815f33c7a2cb51f6a052303f38cf68308b597e1726791a46d5cf6df1e9a98f07ee9568eb177782228777c17
7
- data.tar.gz: 941aced19cae2d832a1687eeea8d368191c214cf06f07b13a3c8dc20938ce8f39b47e4fe536ab74650f6a1a30657f9e1be81b2b707425156191b46cdbca1658c
6
+ metadata.gz: 1f8791cde15a99b56e30e901dfac377ef187ca641f48e80bbf98dc28d9a355c18985d5c4a2a2c63906f3b5497a6f51561c8dee7391c049907008cc09e55c08ed
7
+ data.tar.gz: 97ec2dbb6e24e9fdd722549cbe057804f586aad027ce661321585ccd3cb126eae452965052c77ec8de2f17a108b8e865b19a864cd0071da936d071415a8260e3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2023-05-15)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.65.0 (2023-04-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.66.0
@@ -1716,6 +1716,8 @@ module Aws::Athena
1716
1716
  # resp.engine_configuration.default_executor_dpu_size #=> Integer
1717
1717
  # resp.engine_configuration.additional_configs #=> Hash
1718
1718
  # resp.engine_configuration.additional_configs["KeyString"] #=> String
1719
+ # resp.engine_configuration.spark_properties #=> Hash
1720
+ # resp.engine_configuration.spark_properties["KeyString"] #=> String
1719
1721
  # resp.notebook_version #=> String
1720
1722
  # resp.session_configuration.execution_role #=> String
1721
1723
  # resp.session_configuration.working_directory #=> String
@@ -3033,6 +3035,9 @@ module Aws::Athena
3033
3035
  # additional_configs: {
3034
3036
  # "KeyString" => "ParametersMapValue",
3035
3037
  # },
3038
+ # spark_properties: {
3039
+ # "KeyString" => "ParametersMapValue",
3040
+ # },
3036
3041
  # },
3037
3042
  # notebook_version: "NameString",
3038
3043
  # session_idle_timeout_in_minutes: 1,
@@ -3557,7 +3562,7 @@ module Aws::Athena
3557
3562
  params: params,
3558
3563
  config: config)
3559
3564
  context[:gem_name] = 'aws-sdk-athena'
3560
- context[:gem_version] = '1.65.0'
3565
+ context[:gem_version] = '1.66.0'
3561
3566
  Seahorse::Client::Request.new(handlers, context)
3562
3567
  end
3563
3568
 
@@ -574,6 +574,7 @@ module Aws::Athena
574
574
  EngineConfiguration.add_member(:max_concurrent_dpus, Shapes::ShapeRef.new(shape: MaxConcurrentDpus, required: true, location_name: "MaxConcurrentDpus"))
575
575
  EngineConfiguration.add_member(:default_executor_dpu_size, Shapes::ShapeRef.new(shape: DefaultExecutorDpuSize, location_name: "DefaultExecutorDpuSize"))
576
576
  EngineConfiguration.add_member(:additional_configs, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "AdditionalConfigs"))
577
+ EngineConfiguration.add_member(:spark_properties, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "SparkProperties"))
577
578
  EngineConfiguration.struct_class = Types::EngineConfiguration
578
579
 
579
580
  EngineVersion.add_member(:selected_engine_version, Shapes::ShapeRef.new(shape: NameString, location_name: "SelectedEngineVersion"))
@@ -1195,13 +1195,19 @@ module Aws::Athena
1195
1195
  # value of the Athena notebook ID.
1196
1196
  # @return [Hash<String,String>]
1197
1197
  #
1198
+ # @!attribute [rw] spark_properties
1199
+ # Specifies custom jar files and Spark properties for use cases like
1200
+ # cluster encryption, table formats, and general Spark tuning.
1201
+ # @return [Hash<String,String>]
1202
+ #
1198
1203
  # @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/EngineConfiguration AWS API Documentation
1199
1204
  #
1200
1205
  class EngineConfiguration < Struct.new(
1201
1206
  :coordinator_dpu_size,
1202
1207
  :max_concurrent_dpus,
1203
1208
  :default_executor_dpu_size,
1204
- :additional_configs)
1209
+ :additional_configs,
1210
+ :spark_properties)
1205
1211
  SENSITIVE = []
1206
1212
  include Aws::Structure
1207
1213
  end
@@ -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.65.0'
55
+ GEM_VERSION = '1.66.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.65.0
4
+ version: 1.66.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-04-28 00:00:00.000000000 Z
11
+ date: 2023-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core