aws-sdk-lakeformation 1.22.0 → 1.25.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lakeformation/client.rb +7 -3
- data/lib/aws-sdk-lakeformation/client_api.rb +1 -1
- data/lib/aws-sdk-lakeformation/types.rb +1 -1
- data/lib/aws-sdk-lakeformation.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d91af345dfd0c90a8a3ec2c986ddf0cdc9d7dcaf5e9136ff65aea49fd9fb383c
|
4
|
+
data.tar.gz: fc45d8625a7930dc336e20642e79d2082d142b3dc59f786eaa0546e643b38683
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36f6b61e88a4a324ac9443d43e6cd4007ec48ca4be7fab80418c5d47f648788841e1658967da55f95812b9e883287e76b39e5eb85a80e68301431a36aed73b77
|
7
|
+
data.tar.gz: c6f5a5a892634d9703dbf4b37a51ddb2e9d81f099d69a2536c05dcfaf7b6581d792c60cb8f3098fd56ada848b93a08f7b632984a6c9eb76e6a72124c3627962e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.25.0 (2022-02-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.24.0 (2022-02-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for calling Update Table Objects without a TransactionId.
|
13
|
+
|
14
|
+
1.23.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.22.0 (2022-01-05)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.25.0
|
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::LakeFormation
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
80
84
|
|
@@ -2915,7 +2919,7 @@ module Aws::LakeFormation
|
|
2915
2919
|
# @option params [required, String] :table_name
|
2916
2920
|
# The governed table to update.
|
2917
2921
|
#
|
2918
|
-
# @option params [
|
2922
|
+
# @option params [String] :transaction_id
|
2919
2923
|
# The transaction at which to do the write.
|
2920
2924
|
#
|
2921
2925
|
# @option params [required, Array<Types::WriteOperation>] :write_operations
|
@@ -2930,7 +2934,7 @@ module Aws::LakeFormation
|
|
2930
2934
|
# catalog_id: "CatalogIdString",
|
2931
2935
|
# database_name: "NameString", # required
|
2932
2936
|
# table_name: "NameString", # required
|
2933
|
-
# transaction_id: "TransactionIdString",
|
2937
|
+
# transaction_id: "TransactionIdString",
|
2934
2938
|
# write_operations: [ # required
|
2935
2939
|
# {
|
2936
2940
|
# add_object: {
|
@@ -3014,7 +3018,7 @@ module Aws::LakeFormation
|
|
3014
3018
|
params: params,
|
3015
3019
|
config: config)
|
3016
3020
|
context[:gem_name] = 'aws-sdk-lakeformation'
|
3017
|
-
context[:gem_version] = '1.
|
3021
|
+
context[:gem_version] = '1.25.0'
|
3018
3022
|
Seahorse::Client::Request.new(handlers, context)
|
3019
3023
|
end
|
3020
3024
|
|
@@ -936,7 +936,7 @@ module Aws::LakeFormation
|
|
936
936
|
UpdateTableObjectsRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
|
937
937
|
UpdateTableObjectsRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
|
938
938
|
UpdateTableObjectsRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
|
939
|
-
UpdateTableObjectsRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: TransactionIdString,
|
939
|
+
UpdateTableObjectsRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: TransactionIdString, location_name: "TransactionId"))
|
940
940
|
UpdateTableObjectsRequest.add_member(:write_operations, Shapes::ShapeRef.new(shape: WriteOperationList, required: true, location_name: "WriteOperations"))
|
941
941
|
UpdateTableObjectsRequest.struct_class = Types::UpdateTableObjectsRequest
|
942
942
|
|
@@ -4288,7 +4288,7 @@ module Aws::LakeFormation
|
|
4288
4288
|
# catalog_id: "CatalogIdString",
|
4289
4289
|
# database_name: "NameString", # required
|
4290
4290
|
# table_name: "NameString", # required
|
4291
|
-
# transaction_id: "TransactionIdString",
|
4291
|
+
# transaction_id: "TransactionIdString",
|
4292
4292
|
# write_operations: [ # required
|
4293
4293
|
# {
|
4294
4294
|
# add_object: {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-lakeformation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.25.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: 2022-
|
11
|
+
date: 2022-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.127.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|