aws-sdk-lakeformation 1.32.0 → 1.34.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: 45654dbef185bb081f694090115720fafaf68ed209c4fef6c5a7ebef07ef2c2a
4
- data.tar.gz: b094503abe317c83e37a9bc88c7db2fa6f32def9f1739465b19cbe3501e18181
3
+ metadata.gz: 1cba14543ddbf07643bb0fa84e5f4ff716ce5437e5f14b285a456e89ad4fcbcd
4
+ data.tar.gz: d070041777653e30ed27903774a79d54283f34bb50119dea1fe9826234d3dda9
5
5
  SHA512:
6
- metadata.gz: 45f1553af29484cf00ee9ffb24a23e4052b3461990ef1cb1f39d48ab15152ae66438ba93d5c953ba82d7d54559ebd9b30c1ebc9b53583b60e7fe81a6a5509689
7
- data.tar.gz: 28b8a8048b921b66165f18b71fb02592633561abb11d78e60613f4b6c467e5735956dfc1bd1e3fc7e266fb5193d4a78d4fc37cd3a383713fa15fafc865f038a4
6
+ metadata.gz: 4ec7770cb58fe4c77cca6bfa7975aa941a2f07a36b15fc53dab1015c9770914ab8da4bf8ca90a2a2e50438780e5e474d62fa58063ab9193f0d583e05d6e97aa3
7
+ data.tar.gz: 6c136071d459873644c2451cea79bc831cfb746fd4035573f1efef74dc3ae83e8b2609f418b72f0984203cb5c9bbcce70de790ce68201aed83d25c8e53e48ed0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.0 (2023-04-03)
5
+ ------------------
6
+
7
+ * Feature - Add support for database-level federation
8
+
9
+ 1.33.0 (2023-03-13)
10
+ ------------------
11
+
12
+ * Feature - This release updates the documentation regarding Get/Update DataCellsFilter
13
+
4
14
  1.32.0 (2023-03-08)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.0
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
@@ -2510,7 +2512,7 @@ module Aws::LakeFormation
2510
2512
  # `ResourceArn = arn:aws:s3:::my-bucket UseServiceLinkedRole = true`
2511
2513
  #
2512
2514
  # If `UseServiceLinkedRole` is not set to true, you must provide or set
2513
- # the `RoleArn`\:
2515
+ # the `RoleArn`:
2514
2516
  #
2515
2517
  # `arn:aws:iam::12345:role/my-data-access-role`
2516
2518
  #
@@ -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
@@ -2678,7 +2684,7 @@ module Aws::LakeFormation
2678
2684
  #
2679
2685
  #
2680
2686
  #
2681
- # [1]: https://docs-aws.amazon.com/lake-formation/latest/dg/security-data-access.html
2687
+ # [1]: https://docs.aws.amazon.com/lake-formation/latest/dg/security-data-access.html
2682
2688
  #
2683
2689
  # @option params [Array<String>] :permissions_with_grant_option
2684
2690
  # Indicates a list of permissions for which to revoke the grant option
@@ -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.32.0'
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
@@ -497,6 +497,7 @@ module Aws::LakeFormation
497
497
  # @return [Types::ColumnWildcard]
498
498
  #
499
499
  # @!attribute [rw] version_id
500
+ # The ID of the data cells filter version.
500
501
  # @return [String]
501
502
  #
502
503
  # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/DataCellsFilter AWS API Documentation
@@ -924,7 +925,7 @@ module Aws::LakeFormation
924
925
  include Aws::Structure
925
926
  end
926
927
 
927
- # A specified entity does not exist
928
+ # A specified entity does not exist.
928
929
  #
929
930
  # @!attribute [rw] message
930
931
  # A message describing the problem.
@@ -2403,12 +2404,17 @@ module Aws::LakeFormation
2403
2404
  # The identifier for the role that registers the resource.
2404
2405
  # @return [String]
2405
2406
  #
2407
+ # @!attribute [rw] with_federation
2408
+ # Whether or not the resource is a federated resource.
2409
+ # @return [Boolean]
2410
+ #
2406
2411
  # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/RegisterResourceRequest AWS API Documentation
2407
2412
  #
2408
2413
  class RegisterResourceRequest < Struct.new(
2409
2414
  :resource_arn,
2410
2415
  :use_service_linked_role,
2411
- :role_arn)
2416
+ :role_arn,
2417
+ :with_federation)
2412
2418
  SENSITIVE = []
2413
2419
  include Aws::Structure
2414
2420
  end
@@ -2529,12 +2535,17 @@ module Aws::LakeFormation
2529
2535
  # The date and time the resource was last modified.
2530
2536
  # @return [Time]
2531
2537
  #
2538
+ # @!attribute [rw] with_federation
2539
+ # Whether or not the resource is a federated resource.
2540
+ # @return [Boolean]
2541
+ #
2532
2542
  # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/ResourceInfo AWS API Documentation
2533
2543
  #
2534
2544
  class ResourceInfo < Struct.new(
2535
2545
  :resource_arn,
2536
2546
  :role_arn,
2537
- :last_modified)
2547
+ :last_modified,
2548
+ :with_federation)
2538
2549
  SENSITIVE = []
2539
2550
  include Aws::Structure
2540
2551
  end
@@ -2590,7 +2601,7 @@ module Aws::LakeFormation
2590
2601
  #
2591
2602
  #
2592
2603
  #
2593
- # [1]: https://docs-aws.amazon.com/lake-formation/latest/dg/security-data-access.html
2604
+ # [1]: https://docs.aws.amazon.com/lake-formation/latest/dg/security-data-access.html
2594
2605
  # @return [Array<String>]
2595
2606
  #
2596
2607
  # @!attribute [rw] permissions_with_grant_option
@@ -3166,11 +3177,16 @@ module Aws::LakeFormation
3166
3177
  # The resource ARN.
3167
3178
  # @return [String]
3168
3179
  #
3180
+ # @!attribute [rw] with_federation
3181
+ # Whether or not the resource is a federated resource.
3182
+ # @return [Boolean]
3183
+ #
3169
3184
  # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/UpdateResourceRequest AWS API Documentation
3170
3185
  #
3171
3186
  class UpdateResourceRequest < Struct.new(
3172
3187
  :role_arn,
3173
- :resource_arn)
3188
+ :resource_arn,
3189
+ :with_federation)
3174
3190
  SENSITIVE = []
3175
3191
  include Aws::Structure
3176
3192
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-lakeformation/customizations'
52
52
  # @!group service
53
53
  module Aws::LakeFormation
54
54
 
55
- GEM_VERSION = '1.32.0'
55
+ GEM_VERSION = '1.34.0'
56
56
 
57
57
  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.32.0
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-08 00:00:00.000000000 Z
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