aws-sdk-lakeformation 1.33.0 → 1.34.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-lakeformation/client.rb +11 -1
- data/lib/aws-sdk-lakeformation/client_api.rb +3 -0
- data/lib/aws-sdk-lakeformation/types.rb +19 -4
- data/lib/aws-sdk-lakeformation.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: 1cba14543ddbf07643bb0fa84e5f4ff716ce5437e5f14b285a456e89ad4fcbcd
|
|
4
|
+
data.tar.gz: d070041777653e30ed27903774a79d54283f34bb50119dea1fe9826234d3dda9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ec7770cb58fe4c77cca6bfa7975aa941a2f07a36b15fc53dab1015c9770914ab8da4bf8ca90a2a2e50438780e5e474d62fa58063ab9193f0d583e05d6e97aa3
|
|
7
|
+
data.tar.gz: 6c136071d459873644c2451cea79bc831cfb746fd4035573f1efef74dc3ae83e8b2609f418b72f0984203cb5c9bbcce70de790ce68201aed83d25c8e53e48ed0
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.34.0
|
|
@@ -1092,6 +1092,7 @@ module Aws::LakeFormation
|
|
|
1092
1092
|
# resp.resource_info.resource_arn #=> String
|
|
1093
1093
|
# resp.resource_info.role_arn #=> String
|
|
1094
1094
|
# resp.resource_info.last_modified #=> Time
|
|
1095
|
+
# resp.resource_info.with_federation #=> Boolean
|
|
1095
1096
|
#
|
|
1096
1097
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/DescribeResource AWS API Documentation
|
|
1097
1098
|
#
|
|
@@ -2291,6 +2292,7 @@ module Aws::LakeFormation
|
|
|
2291
2292
|
# resp.resource_info_list[0].resource_arn #=> String
|
|
2292
2293
|
# resp.resource_info_list[0].role_arn #=> String
|
|
2293
2294
|
# resp.resource_info_list[0].last_modified #=> Time
|
|
2295
|
+
# resp.resource_info_list[0].with_federation #=> Boolean
|
|
2294
2296
|
# resp.next_token #=> String
|
|
2295
2297
|
#
|
|
2296
2298
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/ListResources AWS API Documentation
|
|
@@ -2534,6 +2536,9 @@ module Aws::LakeFormation
|
|
|
2534
2536
|
# @option params [String] :role_arn
|
|
2535
2537
|
# The identifier for the role that registers the resource.
|
|
2536
2538
|
#
|
|
2539
|
+
# @option params [Boolean] :with_federation
|
|
2540
|
+
# Whether or not the resource is a federated resource.
|
|
2541
|
+
#
|
|
2537
2542
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
2538
2543
|
#
|
|
2539
2544
|
# @example Request syntax with placeholder values
|
|
@@ -2542,6 +2547,7 @@ module Aws::LakeFormation
|
|
|
2542
2547
|
# resource_arn: "ResourceArnString", # required
|
|
2543
2548
|
# use_service_linked_role: false,
|
|
2544
2549
|
# role_arn: "IAMRoleArn",
|
|
2550
|
+
# with_federation: false,
|
|
2545
2551
|
# })
|
|
2546
2552
|
#
|
|
2547
2553
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/RegisterResource AWS API Documentation
|
|
@@ -3065,6 +3071,9 @@ module Aws::LakeFormation
|
|
|
3065
3071
|
# @option params [required, String] :resource_arn
|
|
3066
3072
|
# The resource ARN.
|
|
3067
3073
|
#
|
|
3074
|
+
# @option params [Boolean] :with_federation
|
|
3075
|
+
# Whether or not the resource is a federated resource.
|
|
3076
|
+
#
|
|
3068
3077
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
3069
3078
|
#
|
|
3070
3079
|
# @example Request syntax with placeholder values
|
|
@@ -3072,6 +3081,7 @@ module Aws::LakeFormation
|
|
|
3072
3081
|
# resp = client.update_resource({
|
|
3073
3082
|
# role_arn: "IAMRoleArn", # required
|
|
3074
3083
|
# resource_arn: "ResourceArnString", # required
|
|
3084
|
+
# with_federation: false,
|
|
3075
3085
|
# })
|
|
3076
3086
|
#
|
|
3077
3087
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/UpdateResource AWS API Documentation
|
|
@@ -3195,7 +3205,7 @@ module Aws::LakeFormation
|
|
|
3195
3205
|
params: params,
|
|
3196
3206
|
config: config)
|
|
3197
3207
|
context[:gem_name] = 'aws-sdk-lakeformation'
|
|
3198
|
-
context[:gem_version] = '1.
|
|
3208
|
+
context[:gem_version] = '1.34.0'
|
|
3199
3209
|
Seahorse::Client::Request.new(handlers, context)
|
|
3200
3210
|
end
|
|
3201
3211
|
|
|
@@ -797,6 +797,7 @@ module Aws::LakeFormation
|
|
|
797
797
|
RegisterResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
|
|
798
798
|
RegisterResourceRequest.add_member(:use_service_linked_role, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "UseServiceLinkedRole"))
|
|
799
799
|
RegisterResourceRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: IAMRoleArn, location_name: "RoleArn"))
|
|
800
|
+
RegisterResourceRequest.add_member(:with_federation, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "WithFederation"))
|
|
800
801
|
RegisterResourceRequest.struct_class = Types::RegisterResourceRequest
|
|
801
802
|
|
|
802
803
|
RegisterResourceResponse.struct_class = Types::RegisterResourceResponse
|
|
@@ -822,6 +823,7 @@ module Aws::LakeFormation
|
|
|
822
823
|
ResourceInfo.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, location_name: "ResourceArn"))
|
|
823
824
|
ResourceInfo.add_member(:role_arn, Shapes::ShapeRef.new(shape: IAMRoleArn, location_name: "RoleArn"))
|
|
824
825
|
ResourceInfo.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModifiedTimestamp, location_name: "LastModified"))
|
|
826
|
+
ResourceInfo.add_member(:with_federation, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "WithFederation"))
|
|
825
827
|
ResourceInfo.struct_class = Types::ResourceInfo
|
|
826
828
|
|
|
827
829
|
ResourceInfoList.member = Shapes::ShapeRef.new(shape: ResourceInfo)
|
|
@@ -973,6 +975,7 @@ module Aws::LakeFormation
|
|
|
973
975
|
|
|
974
976
|
UpdateResourceRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: IAMRoleArn, required: true, location_name: "RoleArn"))
|
|
975
977
|
UpdateResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
|
|
978
|
+
UpdateResourceRequest.add_member(:with_federation, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "WithFederation"))
|
|
976
979
|
UpdateResourceRequest.struct_class = Types::UpdateResourceRequest
|
|
977
980
|
|
|
978
981
|
UpdateResourceResponse.struct_class = Types::UpdateResourceResponse
|
|
@@ -925,7 +925,7 @@ module Aws::LakeFormation
|
|
|
925
925
|
include Aws::Structure
|
|
926
926
|
end
|
|
927
927
|
|
|
928
|
-
# A specified entity does not exist
|
|
928
|
+
# A specified entity does not exist.
|
|
929
929
|
#
|
|
930
930
|
# @!attribute [rw] message
|
|
931
931
|
# A message describing the problem.
|
|
@@ -2404,12 +2404,17 @@ module Aws::LakeFormation
|
|
|
2404
2404
|
# The identifier for the role that registers the resource.
|
|
2405
2405
|
# @return [String]
|
|
2406
2406
|
#
|
|
2407
|
+
# @!attribute [rw] with_federation
|
|
2408
|
+
# Whether or not the resource is a federated resource.
|
|
2409
|
+
# @return [Boolean]
|
|
2410
|
+
#
|
|
2407
2411
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/RegisterResourceRequest AWS API Documentation
|
|
2408
2412
|
#
|
|
2409
2413
|
class RegisterResourceRequest < Struct.new(
|
|
2410
2414
|
:resource_arn,
|
|
2411
2415
|
:use_service_linked_role,
|
|
2412
|
-
:role_arn
|
|
2416
|
+
:role_arn,
|
|
2417
|
+
:with_federation)
|
|
2413
2418
|
SENSITIVE = []
|
|
2414
2419
|
include Aws::Structure
|
|
2415
2420
|
end
|
|
@@ -2530,12 +2535,17 @@ module Aws::LakeFormation
|
|
|
2530
2535
|
# The date and time the resource was last modified.
|
|
2531
2536
|
# @return [Time]
|
|
2532
2537
|
#
|
|
2538
|
+
# @!attribute [rw] with_federation
|
|
2539
|
+
# Whether or not the resource is a federated resource.
|
|
2540
|
+
# @return [Boolean]
|
|
2541
|
+
#
|
|
2533
2542
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/ResourceInfo AWS API Documentation
|
|
2534
2543
|
#
|
|
2535
2544
|
class ResourceInfo < Struct.new(
|
|
2536
2545
|
:resource_arn,
|
|
2537
2546
|
:role_arn,
|
|
2538
|
-
:last_modified
|
|
2547
|
+
:last_modified,
|
|
2548
|
+
:with_federation)
|
|
2539
2549
|
SENSITIVE = []
|
|
2540
2550
|
include Aws::Structure
|
|
2541
2551
|
end
|
|
@@ -3167,11 +3177,16 @@ module Aws::LakeFormation
|
|
|
3167
3177
|
# The resource ARN.
|
|
3168
3178
|
# @return [String]
|
|
3169
3179
|
#
|
|
3180
|
+
# @!attribute [rw] with_federation
|
|
3181
|
+
# Whether or not the resource is a federated resource.
|
|
3182
|
+
# @return [Boolean]
|
|
3183
|
+
#
|
|
3170
3184
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/UpdateResourceRequest AWS API Documentation
|
|
3171
3185
|
#
|
|
3172
3186
|
class UpdateResourceRequest < Struct.new(
|
|
3173
3187
|
:role_arn,
|
|
3174
|
-
:resource_arn
|
|
3188
|
+
:resource_arn,
|
|
3189
|
+
:with_federation)
|
|
3175
3190
|
SENSITIVE = []
|
|
3176
3191
|
include Aws::Structure
|
|
3177
3192
|
end
|
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.34.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-03
|
|
11
|
+
date: 2023-04-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|