aws-sdk-athena 1.66.0 → 1.67.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: b86c590858a0e622014e598449567063af7f35b3e5b7ba56c9c9ad4b0fe800f9
4
- data.tar.gz: 7c3d0904c0f910847528a85cec1807aea89c05979a158c2b32a22012e58b0078
3
+ metadata.gz: 23914c77174dbd4ea478e5bb0e3a2403a4b1af38059e87b6a4a8682885233045
4
+ data.tar.gz: 0e2d4b9075dd8d50bab6a4d0b6e1a09c77bae0646e65c680ae723442d3bb47e1
5
5
  SHA512:
6
- metadata.gz: 1f8791cde15a99b56e30e901dfac377ef187ca641f48e80bbf98dc28d9a355c18985d5c4a2a2c63906f3b5497a6f51561c8dee7391c049907008cc09e55c08ed
7
- data.tar.gz: 97ec2dbb6e24e9fdd722549cbe057804f586aad027ce661321585ccd3cb126eae452965052c77ec8de2f17a108b8e865b19a864cd0071da936d071415a8260e3
6
+ metadata.gz: af4121b77148b85d8ed1c007984fc86a9f9fd94895e1a142d0244d5ab832ba660564b8683b7046e7f8cc6854e3730c8fc4da5d1038ce76c9d2de81cfc5f26503
7
+ data.tar.gz: c62a0d03c83a8f8f03db7d3119d260ffb80b3d1256ad887ba0c85199c400875b0a357465af01f10055fc49bc051d0c5c416ae6ea8d03497509b79dba3f7056a9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.0 (2023-05-18)
5
+ ------------------
6
+
7
+ * Feature - Removing SparkProperties from EngineConfiguration object for StartSession API call
8
+
4
9
  1.66.0 (2023-05-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.67.0
@@ -1716,8 +1716,6 @@ 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
1721
1719
  # resp.notebook_version #=> String
1722
1720
  # resp.session_configuration.execution_role #=> String
1723
1721
  # resp.session_configuration.working_directory #=> String
@@ -3035,9 +3033,6 @@ module Aws::Athena
3035
3033
  # additional_configs: {
3036
3034
  # "KeyString" => "ParametersMapValue",
3037
3035
  # },
3038
- # spark_properties: {
3039
- # "KeyString" => "ParametersMapValue",
3040
- # },
3041
3036
  # },
3042
3037
  # notebook_version: "NameString",
3043
3038
  # session_idle_timeout_in_minutes: 1,
@@ -3562,7 +3557,7 @@ module Aws::Athena
3562
3557
  params: params,
3563
3558
  config: config)
3564
3559
  context[:gem_name] = 'aws-sdk-athena'
3565
- context[:gem_version] = '1.66.0'
3560
+ context[:gem_version] = '1.67.0'
3566
3561
  Seahorse::Client::Request.new(handlers, context)
3567
3562
  end
3568
3563
 
@@ -574,7 +574,6 @@ 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"))
578
577
  EngineConfiguration.struct_class = Types::EngineConfiguration
579
578
 
580
579
  EngineVersion.add_member(:selected_engine_version, Shapes::ShapeRef.new(shape: NameString, location_name: "SelectedEngineVersion"))
@@ -1195,19 +1195,13 @@ 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
- #
1203
1198
  # @see http://docs.aws.amazon.com/goto/WebAPI/athena-2017-05-18/EngineConfiguration AWS API Documentation
1204
1199
  #
1205
1200
  class EngineConfiguration < Struct.new(
1206
1201
  :coordinator_dpu_size,
1207
1202
  :max_concurrent_dpus,
1208
1203
  :default_executor_dpu_size,
1209
- :additional_configs,
1210
- :spark_properties)
1204
+ :additional_configs)
1211
1205
  SENSITIVE = []
1212
1206
  include Aws::Structure
1213
1207
  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.66.0'
55
+ GEM_VERSION = '1.67.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.66.0
4
+ version: 1.67.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-05-15 00:00:00.000000000 Z
11
+ date: 2023-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core