aws-sdk-athena 1.102.0 → 1.103.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 +5 -2
- data/lib/aws-sdk-athena/client_api.rb +1 -1
- data/lib/aws-sdk-athena/types.rb +3 -1
- 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: de1ca7049018650445911a4316914027b416369ca13bd5793aceaffa7c0dccfe
|
4
|
+
data.tar.gz: 6fa5d86119230856a03e9bdd5f06fad1b32d7e3838f3ea3907b8fe788032e8fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a9ad527ca271e436846ab874e00b4907ee893bd24d7e91956edfd3e70771066c1c57f7e53b8f31c74c40c993539718837b4f220c4decc74a707492d93b2a588
|
7
|
+
data.tar.gz: 0134fb259d5529888d9c58822cbdcca09350adb1f6145057675c382540099ad96ba867e96314119023479ad18b1df53d0e56a4906d9b715bfa906c4ac810c731
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.103.0
|
@@ -715,7 +715,8 @@ module Aws::Athena
|
|
715
715
|
# properties. Catalogs created are visible to all users of the same
|
716
716
|
# Amazon Web Services account.
|
717
717
|
#
|
718
|
-
#
|
718
|
+
# For a `FEDERATED` catalog, this API operation creates the following
|
719
|
+
# resources.
|
719
720
|
#
|
720
721
|
# * CFN Stack Name with a maximum length of 128 characters and prefix
|
721
722
|
# `athenafederatedcatalog-CATALOG_NAME_SANITIZED` with length 23
|
@@ -756,6 +757,8 @@ module Aws::Athena
|
|
756
757
|
# creates the connection and the Lambda function for you based on the
|
757
758
|
# parameters that you pass.
|
758
759
|
#
|
760
|
+
# For `FEDERATED` type, we do not support IAM identity center.
|
761
|
+
#
|
759
762
|
# @option params [String] :description
|
760
763
|
# A description of the data catalog to be created.
|
761
764
|
#
|
@@ -3832,7 +3835,7 @@ module Aws::Athena
|
|
3832
3835
|
tracer: tracer
|
3833
3836
|
)
|
3834
3837
|
context[:gem_name] = 'aws-sdk-athena'
|
3835
|
-
context[:gem_version] = '1.
|
3838
|
+
context[:gem_version] = '1.103.0'
|
3836
3839
|
Seahorse::Client::Request.new(handlers, context)
|
3837
3840
|
end
|
3838
3841
|
|
@@ -1145,7 +1145,7 @@ module Aws::Athena
|
|
1145
1145
|
|
1146
1146
|
StartCalculationExecutionRequest.add_member(:session_id, Shapes::ShapeRef.new(shape: SessionId, required: true, location_name: "SessionId"))
|
1147
1147
|
StartCalculationExecutionRequest.add_member(:description, Shapes::ShapeRef.new(shape: DescriptionString, location_name: "Description"))
|
1148
|
-
StartCalculationExecutionRequest.add_member(:calculation_configuration, Shapes::ShapeRef.new(shape: CalculationConfiguration, deprecated: true, location_name: "CalculationConfiguration", metadata: {"deprecatedMessage" => "
|
1148
|
+
StartCalculationExecutionRequest.add_member(:calculation_configuration, Shapes::ShapeRef.new(shape: CalculationConfiguration, deprecated: true, location_name: "CalculationConfiguration", metadata: {"deprecatedMessage" => "Structure is deprecated."}))
|
1149
1149
|
StartCalculationExecutionRequest.add_member(:code_block, Shapes::ShapeRef.new(shape: CodeBlock, location_name: "CodeBlock"))
|
1150
1150
|
StartCalculationExecutionRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientRequestToken"))
|
1151
1151
|
StartCalculationExecutionRequest.struct_class = Types::StartCalculationExecutionRequest
|
data/lib/aws-sdk-athena/types.rb
CHANGED
@@ -622,6 +622,8 @@ module Aws::Athena
|
|
622
622
|
# Apache Hive metastore. `FEDERATED` is a federated catalog for which
|
623
623
|
# Athena creates the connection and the Lambda function for you based
|
624
624
|
# on the parameters that you pass.
|
625
|
+
#
|
626
|
+
# For `FEDERATED` type, we do not support IAM identity center.
|
625
627
|
# @return [String]
|
626
628
|
#
|
627
629
|
# @!attribute [rw] description
|
@@ -3235,7 +3237,7 @@ module Aws::Athena
|
|
3235
3237
|
# statements. `DML` indicates DML (Data Manipulation Language) query
|
3236
3238
|
# statements, such as `CREATE TABLE AS SELECT`. `UTILITY` indicates
|
3237
3239
|
# query statements other than DDL and DML, such as `SHOW CREATE
|
3238
|
-
# TABLE`,
|
3240
|
+
# TABLE`, `EXPLAIN`, `DESCRIBE`, or `SHOW TABLES`.
|
3239
3241
|
# @return [String]
|
3240
3242
|
#
|
3241
3243
|
# @!attribute [rw] result_configuration
|
data/lib/aws-sdk-athena.rb
CHANGED