aws-sdk-lakeformation 1.63.0 → 1.64.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lakeformation/client.rb +328 -37
- data/lib/aws-sdk-lakeformation/client_api.rb +142 -1
- data/lib/aws-sdk-lakeformation/types.rb +245 -8
- data/lib/aws-sdk-lakeformation.rb +1 -1
- data/sig/client.rbs +150 -24
- data/sig/types.rbs +86 -12
- metadata +2 -2
data/sig/client.rbs
CHANGED
@@ -128,7 +128,12 @@ module Aws
|
|
128
128
|
tag_key: ::String,
|
129
129
|
tag_values: Array[::String]
|
130
130
|
},
|
131
|
-
]
|
131
|
+
]?,
|
132
|
+
expression_name: ::String?
|
133
|
+
}?,
|
134
|
+
lf_tag_expression: {
|
135
|
+
catalog_id: ::String?,
|
136
|
+
name: ::String
|
132
137
|
}?
|
133
138
|
},
|
134
139
|
lf_tags: Array[
|
@@ -216,11 +221,16 @@ module Aws
|
|
216
221
|
tag_key: ::String,
|
217
222
|
tag_values: Array[::String]
|
218
223
|
},
|
219
|
-
]
|
224
|
+
]?,
|
225
|
+
expression_name: ::String?
|
226
|
+
}?,
|
227
|
+
lf_tag_expression: {
|
228
|
+
catalog_id: ::String?,
|
229
|
+
name: ::String
|
220
230
|
}?
|
221
231
|
}?,
|
222
|
-
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]?,
|
223
|
-
permissions_with_grant_option: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]?
|
232
|
+
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]?,
|
233
|
+
permissions_with_grant_option: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]?
|
224
234
|
},
|
225
235
|
]
|
226
236
|
) -> _BatchGrantPermissionsResponseSuccess
|
@@ -285,11 +295,16 @@ module Aws
|
|
285
295
|
tag_key: ::String,
|
286
296
|
tag_values: Array[::String]
|
287
297
|
},
|
288
|
-
]
|
298
|
+
]?,
|
299
|
+
expression_name: ::String?
|
300
|
+
}?,
|
301
|
+
lf_tag_expression: {
|
302
|
+
catalog_id: ::String?,
|
303
|
+
name: ::String
|
289
304
|
}?
|
290
305
|
}?,
|
291
|
-
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]?,
|
292
|
-
permissions_with_grant_option: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]?
|
306
|
+
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]?,
|
307
|
+
permissions_with_grant_option: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]?
|
293
308
|
},
|
294
309
|
]
|
295
310
|
) -> _BatchRevokePermissionsResponseSuccess
|
@@ -349,6 +364,23 @@ module Aws
|
|
349
364
|
) -> _CreateLFTagResponseSuccess
|
350
365
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLFTagResponseSuccess
|
351
366
|
|
367
|
+
interface _CreateLFTagExpressionResponseSuccess
|
368
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateLFTagExpressionResponse]
|
369
|
+
end
|
370
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LakeFormation/Client.html#create_lf_tag_expression-instance_method
|
371
|
+
def create_lf_tag_expression: (
|
372
|
+
name: ::String,
|
373
|
+
?description: ::String,
|
374
|
+
?catalog_id: ::String,
|
375
|
+
expression: Array[
|
376
|
+
{
|
377
|
+
tag_key: ::String,
|
378
|
+
tag_values: Array[::String]
|
379
|
+
},
|
380
|
+
]
|
381
|
+
) -> _CreateLFTagExpressionResponseSuccess
|
382
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLFTagExpressionResponseSuccess
|
383
|
+
|
352
384
|
interface _CreateLakeFormationIdentityCenterConfigurationResponseSuccess
|
353
385
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateLakeFormationIdentityCenterConfigurationResponse]
|
354
386
|
def application_arn: () -> ::String
|
@@ -423,7 +455,12 @@ module Aws
|
|
423
455
|
tag_key: ::String,
|
424
456
|
tag_values: Array[::String]
|
425
457
|
},
|
426
|
-
]
|
458
|
+
]?,
|
459
|
+
expression_name: ::String?
|
460
|
+
}?,
|
461
|
+
lf_tag_expression: {
|
462
|
+
catalog_id: ::String?,
|
463
|
+
name: ::String
|
427
464
|
}?
|
428
465
|
}
|
429
466
|
) -> _CreateLakeFormationOptInResponseSuccess
|
@@ -451,6 +488,16 @@ module Aws
|
|
451
488
|
) -> _DeleteLFTagResponseSuccess
|
452
489
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLFTagResponseSuccess
|
453
490
|
|
491
|
+
interface _DeleteLFTagExpressionResponseSuccess
|
492
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLFTagExpressionResponse]
|
493
|
+
end
|
494
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LakeFormation/Client.html#delete_lf_tag_expression-instance_method
|
495
|
+
def delete_lf_tag_expression: (
|
496
|
+
name: ::String,
|
497
|
+
?catalog_id: ::String
|
498
|
+
) -> _DeleteLFTagExpressionResponseSuccess
|
499
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLFTagExpressionResponseSuccess
|
500
|
+
|
454
501
|
interface _DeleteLakeFormationIdentityCenterConfigurationResponseSuccess
|
455
502
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLakeFormationIdentityCenterConfigurationResponse]
|
456
503
|
end
|
@@ -514,7 +561,12 @@ module Aws
|
|
514
561
|
tag_key: ::String,
|
515
562
|
tag_values: Array[::String]
|
516
563
|
},
|
517
|
-
]
|
564
|
+
]?,
|
565
|
+
expression_name: ::String?
|
566
|
+
}?,
|
567
|
+
lf_tag_expression: {
|
568
|
+
catalog_id: ::String?,
|
569
|
+
name: ::String
|
518
570
|
}?
|
519
571
|
}
|
520
572
|
) -> _DeleteLakeFormationOptInResponseSuccess
|
@@ -650,6 +702,20 @@ module Aws
|
|
650
702
|
) -> _GetLFTagResponseSuccess
|
651
703
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLFTagResponseSuccess
|
652
704
|
|
705
|
+
interface _GetLFTagExpressionResponseSuccess
|
706
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetLFTagExpressionResponse]
|
707
|
+
def name: () -> ::String
|
708
|
+
def description: () -> ::String
|
709
|
+
def catalog_id: () -> ::String
|
710
|
+
def expression: () -> ::Array[Types::LFTag]
|
711
|
+
end
|
712
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LakeFormation/Client.html#get_lf_tag_expression-instance_method
|
713
|
+
def get_lf_tag_expression: (
|
714
|
+
name: ::String,
|
715
|
+
?catalog_id: ::String
|
716
|
+
) -> _GetLFTagExpressionResponseSuccess
|
717
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLFTagExpressionResponseSuccess
|
718
|
+
|
653
719
|
interface _GetQueryStateResponseSuccess
|
654
720
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetQueryStateResponse]
|
655
721
|
def state: () -> ("PENDING" | "WORKUNITS_AVAILABLE" | "ERROR" | "FINISHED" | "EXPIRED")
|
@@ -727,7 +793,12 @@ module Aws
|
|
727
793
|
tag_key: ::String,
|
728
794
|
tag_values: Array[::String]
|
729
795
|
},
|
730
|
-
]
|
796
|
+
]?,
|
797
|
+
expression_name: ::String?
|
798
|
+
}?,
|
799
|
+
lf_tag_expression: {
|
800
|
+
catalog_id: ::String?,
|
801
|
+
name: ::String
|
731
802
|
}?
|
732
803
|
},
|
733
804
|
?show_assigned_lf_tags: bool
|
@@ -765,7 +836,7 @@ module Aws
|
|
765
836
|
partition: {
|
766
837
|
values: Array[::String]
|
767
838
|
},
|
768
|
-
?permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")],
|
839
|
+
?permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")],
|
769
840
|
?duration_seconds: ::Integer,
|
770
841
|
?audit_context: {
|
771
842
|
additional_audit_context: ::String?
|
@@ -785,7 +856,7 @@ module Aws
|
|
785
856
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LakeFormation/Client.html#get_temporary_glue_table_credentials-instance_method
|
786
857
|
def get_temporary_glue_table_credentials: (
|
787
858
|
table_arn: ::String,
|
788
|
-
?permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")],
|
859
|
+
?permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")],
|
789
860
|
?duration_seconds: ::Integer,
|
790
861
|
?audit_context: {
|
791
862
|
additional_audit_context: ::String?
|
@@ -883,11 +954,16 @@ module Aws
|
|
883
954
|
tag_key: ::String,
|
884
955
|
tag_values: Array[::String]
|
885
956
|
},
|
886
|
-
]
|
957
|
+
]?,
|
958
|
+
expression_name: ::String?
|
959
|
+
}?,
|
960
|
+
lf_tag_expression: {
|
961
|
+
catalog_id: ::String?,
|
962
|
+
name: ::String
|
887
963
|
}?
|
888
964
|
},
|
889
|
-
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")],
|
890
|
-
?permissions_with_grant_option: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
965
|
+
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")],
|
966
|
+
?permissions_with_grant_option: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]
|
891
967
|
) -> _GrantPermissionsResponseSuccess
|
892
968
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GrantPermissionsResponseSuccess
|
893
969
|
|
@@ -910,6 +986,19 @@ module Aws
|
|
910
986
|
) -> _ListDataCellsFilterResponseSuccess
|
911
987
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataCellsFilterResponseSuccess
|
912
988
|
|
989
|
+
interface _ListLFTagExpressionsResponseSuccess
|
990
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListLFTagExpressionsResponse]
|
991
|
+
def lf_tag_expressions: () -> ::Array[Types::LFTagExpression]
|
992
|
+
def next_token: () -> ::String
|
993
|
+
end
|
994
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LakeFormation/Client.html#list_lf_tag_expressions-instance_method
|
995
|
+
def list_lf_tag_expressions: (
|
996
|
+
?catalog_id: ::String,
|
997
|
+
?max_results: ::Integer,
|
998
|
+
?next_token: ::String
|
999
|
+
) -> _ListLFTagExpressionsResponseSuccess
|
1000
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLFTagExpressionsResponseSuccess
|
1001
|
+
|
913
1002
|
interface _ListLFTagsResponseSuccess
|
914
1003
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListLFTagsResponse]
|
915
1004
|
def lf_tags: () -> ::Array[Types::LFTagPair]
|
@@ -980,7 +1069,12 @@ module Aws
|
|
980
1069
|
tag_key: ::String,
|
981
1070
|
tag_values: Array[::String]
|
982
1071
|
},
|
983
|
-
]
|
1072
|
+
]?,
|
1073
|
+
expression_name: ::String?
|
1074
|
+
}?,
|
1075
|
+
lf_tag_expression: {
|
1076
|
+
catalog_id: ::String?,
|
1077
|
+
name: ::String
|
984
1078
|
}?
|
985
1079
|
},
|
986
1080
|
?max_results: ::Integer,
|
@@ -999,7 +1093,7 @@ module Aws
|
|
999
1093
|
?principal: {
|
1000
1094
|
data_lake_principal_identifier: ::String?
|
1001
1095
|
},
|
1002
|
-
?resource_type: ("CATALOG" | "DATABASE" | "TABLE" | "DATA_LOCATION" | "LF_TAG" | "LF_TAG_POLICY" | "LF_TAG_POLICY_DATABASE" | "LF_TAG_POLICY_TABLE"),
|
1096
|
+
?resource_type: ("CATALOG" | "DATABASE" | "TABLE" | "DATA_LOCATION" | "LF_TAG" | "LF_TAG_POLICY" | "LF_TAG_POLICY_DATABASE" | "LF_TAG_POLICY_TABLE" | "LF_NAMED_TAG_EXPRESSION"),
|
1003
1097
|
?resource: {
|
1004
1098
|
catalog: {
|
1005
1099
|
}?,
|
@@ -1046,7 +1140,12 @@ module Aws
|
|
1046
1140
|
tag_key: ::String,
|
1047
1141
|
tag_values: Array[::String]
|
1048
1142
|
},
|
1049
|
-
]
|
1143
|
+
]?,
|
1144
|
+
expression_name: ::String?
|
1145
|
+
}?,
|
1146
|
+
lf_tag_expression: {
|
1147
|
+
catalog_id: ::String?,
|
1148
|
+
name: ::String
|
1050
1149
|
}?
|
1051
1150
|
},
|
1052
1151
|
?next_token: ::String,
|
@@ -1126,7 +1225,7 @@ module Aws
|
|
1126
1225
|
principal: {
|
1127
1226
|
data_lake_principal_identifier: ::String?
|
1128
1227
|
}?,
|
1129
|
-
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]?
|
1228
|
+
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]?
|
1130
1229
|
},
|
1131
1230
|
]?,
|
1132
1231
|
create_table_default_permissions: Array[
|
@@ -1134,7 +1233,7 @@ module Aws
|
|
1134
1233
|
principal: {
|
1135
1234
|
data_lake_principal_identifier: ::String?
|
1136
1235
|
}?,
|
1137
|
-
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]?
|
1236
|
+
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]?
|
1138
1237
|
},
|
1139
1238
|
]?,
|
1140
1239
|
parameters: Hash[::String, ::String]?,
|
@@ -1217,7 +1316,12 @@ module Aws
|
|
1217
1316
|
tag_key: ::String,
|
1218
1317
|
tag_values: Array[::String]
|
1219
1318
|
},
|
1220
|
-
]
|
1319
|
+
]?,
|
1320
|
+
expression_name: ::String?
|
1321
|
+
}?,
|
1322
|
+
lf_tag_expression: {
|
1323
|
+
catalog_id: ::String?,
|
1324
|
+
name: ::String
|
1221
1325
|
}?
|
1222
1326
|
},
|
1223
1327
|
lf_tags: Array[
|
@@ -1285,11 +1389,16 @@ module Aws
|
|
1285
1389
|
tag_key: ::String,
|
1286
1390
|
tag_values: Array[::String]
|
1287
1391
|
},
|
1288
|
-
]
|
1392
|
+
]?,
|
1393
|
+
expression_name: ::String?
|
1394
|
+
}?,
|
1395
|
+
lf_tag_expression: {
|
1396
|
+
catalog_id: ::String?,
|
1397
|
+
name: ::String
|
1289
1398
|
}?
|
1290
1399
|
},
|
1291
|
-
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")],
|
1292
|
-
?permissions_with_grant_option: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
1400
|
+
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")],
|
1401
|
+
?permissions_with_grant_option: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]
|
1293
1402
|
) -> _RevokePermissionsResponseSuccess
|
1294
1403
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RevokePermissionsResponseSuccess
|
1295
1404
|
|
@@ -1394,6 +1503,23 @@ module Aws
|
|
1394
1503
|
) -> _UpdateLFTagResponseSuccess
|
1395
1504
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLFTagResponseSuccess
|
1396
1505
|
|
1506
|
+
interface _UpdateLFTagExpressionResponseSuccess
|
1507
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLFTagExpressionResponse]
|
1508
|
+
end
|
1509
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LakeFormation/Client.html#update_lf_tag_expression-instance_method
|
1510
|
+
def update_lf_tag_expression: (
|
1511
|
+
name: ::String,
|
1512
|
+
?description: ::String,
|
1513
|
+
?catalog_id: ::String,
|
1514
|
+
expression: Array[
|
1515
|
+
{
|
1516
|
+
tag_key: ::String,
|
1517
|
+
tag_values: Array[::String]
|
1518
|
+
},
|
1519
|
+
]
|
1520
|
+
) -> _UpdateLFTagExpressionResponseSuccess
|
1521
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLFTagExpressionResponseSuccess
|
1522
|
+
|
1397
1523
|
interface _UpdateLakeFormationIdentityCenterConfigurationResponseSuccess
|
1398
1524
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLakeFormationIdentityCenterConfigurationResponse]
|
1399
1525
|
end
|
data/sig/types.rbs
CHANGED
@@ -83,8 +83,8 @@ module Aws::LakeFormation
|
|
83
83
|
attr_accessor id: ::String
|
84
84
|
attr_accessor principal: Types::DataLakePrincipal
|
85
85
|
attr_accessor resource: Types::Resource
|
86
|
-
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
87
|
-
attr_accessor permissions_with_grant_option: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
86
|
+
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]
|
87
|
+
attr_accessor permissions_with_grant_option: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]
|
88
88
|
SENSITIVE: []
|
89
89
|
end
|
90
90
|
|
@@ -144,6 +144,17 @@ module Aws::LakeFormation
|
|
144
144
|
class CreateDataCellsFilterResponse < Aws::EmptyStructure
|
145
145
|
end
|
146
146
|
|
147
|
+
class CreateLFTagExpressionRequest
|
148
|
+
attr_accessor name: ::String
|
149
|
+
attr_accessor description: ::String
|
150
|
+
attr_accessor catalog_id: ::String
|
151
|
+
attr_accessor expression: ::Array[Types::LFTag]
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class CreateLFTagExpressionResponse < Aws::EmptyStructure
|
156
|
+
end
|
157
|
+
|
147
158
|
class CreateLFTagRequest
|
148
159
|
attr_accessor catalog_id: ::String
|
149
160
|
attr_accessor tag_key: ::String
|
@@ -238,6 +249,15 @@ module Aws::LakeFormation
|
|
238
249
|
class DeleteDataCellsFilterResponse < Aws::EmptyStructure
|
239
250
|
end
|
240
251
|
|
252
|
+
class DeleteLFTagExpressionRequest
|
253
|
+
attr_accessor name: ::String
|
254
|
+
attr_accessor catalog_id: ::String
|
255
|
+
SENSITIVE: []
|
256
|
+
end
|
257
|
+
|
258
|
+
class DeleteLFTagExpressionResponse < Aws::EmptyStructure
|
259
|
+
end
|
260
|
+
|
241
261
|
class DeleteLFTagRequest
|
242
262
|
attr_accessor catalog_id: ::String
|
243
263
|
attr_accessor tag_key: ::String
|
@@ -420,6 +440,20 @@ module Aws::LakeFormation
|
|
420
440
|
SENSITIVE: []
|
421
441
|
end
|
422
442
|
|
443
|
+
class GetLFTagExpressionRequest
|
444
|
+
attr_accessor name: ::String
|
445
|
+
attr_accessor catalog_id: ::String
|
446
|
+
SENSITIVE: []
|
447
|
+
end
|
448
|
+
|
449
|
+
class GetLFTagExpressionResponse
|
450
|
+
attr_accessor name: ::String
|
451
|
+
attr_accessor description: ::String
|
452
|
+
attr_accessor catalog_id: ::String
|
453
|
+
attr_accessor expression: ::Array[Types::LFTag]
|
454
|
+
SENSITIVE: []
|
455
|
+
end
|
456
|
+
|
423
457
|
class GetLFTagRequest
|
424
458
|
attr_accessor catalog_id: ::String
|
425
459
|
attr_accessor tag_key: ::String
|
@@ -491,7 +525,7 @@ module Aws::LakeFormation
|
|
491
525
|
class GetTemporaryGluePartitionCredentialsRequest
|
492
526
|
attr_accessor table_arn: ::String
|
493
527
|
attr_accessor partition: Types::PartitionValueList
|
494
|
-
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
528
|
+
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]
|
495
529
|
attr_accessor duration_seconds: ::Integer
|
496
530
|
attr_accessor audit_context: Types::AuditContext
|
497
531
|
attr_accessor supported_permission_types: ::Array[("COLUMN_PERMISSION" | "CELL_FILTER_PERMISSION" | "NESTED_PERMISSION" | "NESTED_CELL_PERMISSION")]
|
@@ -508,7 +542,7 @@ module Aws::LakeFormation
|
|
508
542
|
|
509
543
|
class GetTemporaryGlueTableCredentialsRequest
|
510
544
|
attr_accessor table_arn: ::String
|
511
|
-
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
545
|
+
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]
|
512
546
|
attr_accessor duration_seconds: ::Integer
|
513
547
|
attr_accessor audit_context: Types::AuditContext
|
514
548
|
attr_accessor supported_permission_types: ::Array[("COLUMN_PERMISSION" | "CELL_FILTER_PERMISSION" | "NESTED_PERMISSION" | "NESTED_CELL_PERMISSION")]
|
@@ -561,8 +595,8 @@ module Aws::LakeFormation
|
|
561
595
|
attr_accessor catalog_id: ::String
|
562
596
|
attr_accessor principal: Types::DataLakePrincipal
|
563
597
|
attr_accessor resource: Types::Resource
|
564
|
-
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
565
|
-
attr_accessor permissions_with_grant_option: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
598
|
+
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]
|
599
|
+
attr_accessor permissions_with_grant_option: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]
|
566
600
|
SENSITIVE: []
|
567
601
|
end
|
568
602
|
|
@@ -591,6 +625,20 @@ module Aws::LakeFormation
|
|
591
625
|
SENSITIVE: []
|
592
626
|
end
|
593
627
|
|
628
|
+
class LFTagExpression
|
629
|
+
attr_accessor name: ::String
|
630
|
+
attr_accessor description: ::String
|
631
|
+
attr_accessor catalog_id: ::String
|
632
|
+
attr_accessor expression: ::Array[Types::LFTag]
|
633
|
+
SENSITIVE: []
|
634
|
+
end
|
635
|
+
|
636
|
+
class LFTagExpressionResource
|
637
|
+
attr_accessor catalog_id: ::String
|
638
|
+
attr_accessor name: ::String
|
639
|
+
SENSITIVE: []
|
640
|
+
end
|
641
|
+
|
594
642
|
class LFTagKeyResource
|
595
643
|
attr_accessor catalog_id: ::String
|
596
644
|
attr_accessor tag_key: ::String
|
@@ -609,6 +657,7 @@ module Aws::LakeFormation
|
|
609
657
|
attr_accessor catalog_id: ::String
|
610
658
|
attr_accessor resource_type: ("DATABASE" | "TABLE")
|
611
659
|
attr_accessor expression: ::Array[Types::LFTag]
|
660
|
+
attr_accessor expression_name: ::String
|
612
661
|
SENSITIVE: []
|
613
662
|
end
|
614
663
|
|
@@ -633,6 +682,19 @@ module Aws::LakeFormation
|
|
633
682
|
SENSITIVE: []
|
634
683
|
end
|
635
684
|
|
685
|
+
class ListLFTagExpressionsRequest
|
686
|
+
attr_accessor catalog_id: ::String
|
687
|
+
attr_accessor max_results: ::Integer
|
688
|
+
attr_accessor next_token: ::String
|
689
|
+
SENSITIVE: []
|
690
|
+
end
|
691
|
+
|
692
|
+
class ListLFTagExpressionsResponse
|
693
|
+
attr_accessor lf_tag_expressions: ::Array[Types::LFTagExpression]
|
694
|
+
attr_accessor next_token: ::String
|
695
|
+
SENSITIVE: []
|
696
|
+
end
|
697
|
+
|
636
698
|
class ListLFTagsRequest
|
637
699
|
attr_accessor catalog_id: ::String
|
638
700
|
attr_accessor resource_share_type: ("FOREIGN" | "ALL")
|
@@ -664,7 +726,7 @@ module Aws::LakeFormation
|
|
664
726
|
class ListPermissionsRequest
|
665
727
|
attr_accessor catalog_id: ::String
|
666
728
|
attr_accessor principal: Types::DataLakePrincipal
|
667
|
-
attr_accessor resource_type: ("CATALOG" | "DATABASE" | "TABLE" | "DATA_LOCATION" | "LF_TAG" | "LF_TAG_POLICY" | "LF_TAG_POLICY_DATABASE" | "LF_TAG_POLICY_TABLE")
|
729
|
+
attr_accessor resource_type: ("CATALOG" | "DATABASE" | "TABLE" | "DATA_LOCATION" | "LF_TAG" | "LF_TAG_POLICY" | "LF_TAG_POLICY_DATABASE" | "LF_TAG_POLICY_TABLE" | "LF_NAMED_TAG_EXPRESSION")
|
668
730
|
attr_accessor resource: Types::Resource
|
669
731
|
attr_accessor next_token: ::String
|
670
732
|
attr_accessor max_results: ::Integer
|
@@ -752,15 +814,15 @@ module Aws::LakeFormation
|
|
752
814
|
|
753
815
|
class PrincipalPermissions
|
754
816
|
attr_accessor principal: Types::DataLakePrincipal
|
755
|
-
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
817
|
+
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]
|
756
818
|
SENSITIVE: []
|
757
819
|
end
|
758
820
|
|
759
821
|
class PrincipalResourcePermissions
|
760
822
|
attr_accessor principal: Types::DataLakePrincipal
|
761
823
|
attr_accessor resource: Types::Resource
|
762
|
-
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
763
|
-
attr_accessor permissions_with_grant_option: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
824
|
+
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]
|
825
|
+
attr_accessor permissions_with_grant_option: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]
|
764
826
|
attr_accessor additional_details: Types::DetailsMap
|
765
827
|
attr_accessor last_updated: ::Time
|
766
828
|
attr_accessor last_updated_by: ::String
|
@@ -827,6 +889,7 @@ module Aws::LakeFormation
|
|
827
889
|
attr_accessor data_cells_filter: Types::DataCellsFilterResource
|
828
890
|
attr_accessor lf_tag: Types::LFTagKeyResource
|
829
891
|
attr_accessor lf_tag_policy: Types::LFTagPolicyResource
|
892
|
+
attr_accessor lf_tag_expression: Types::LFTagExpressionResource
|
830
893
|
SENSITIVE: []
|
831
894
|
end
|
832
895
|
|
@@ -853,8 +916,8 @@ module Aws::LakeFormation
|
|
853
916
|
attr_accessor catalog_id: ::String
|
854
917
|
attr_accessor principal: Types::DataLakePrincipal
|
855
918
|
attr_accessor resource: Types::Resource
|
856
|
-
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
857
|
-
attr_accessor permissions_with_grant_option: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
919
|
+
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]
|
920
|
+
attr_accessor permissions_with_grant_option: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION" | "CREATE_LF_TAG_EXPRESSION")]
|
858
921
|
SENSITIVE: []
|
859
922
|
end
|
860
923
|
|
@@ -1007,6 +1070,17 @@ module Aws::LakeFormation
|
|
1007
1070
|
class UpdateDataCellsFilterResponse < Aws::EmptyStructure
|
1008
1071
|
end
|
1009
1072
|
|
1073
|
+
class UpdateLFTagExpressionRequest
|
1074
|
+
attr_accessor name: ::String
|
1075
|
+
attr_accessor description: ::String
|
1076
|
+
attr_accessor catalog_id: ::String
|
1077
|
+
attr_accessor expression: ::Array[Types::LFTag]
|
1078
|
+
SENSITIVE: []
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
class UpdateLFTagExpressionResponse < Aws::EmptyStructure
|
1082
|
+
end
|
1083
|
+
|
1010
1084
|
class UpdateLFTagRequest
|
1011
1085
|
attr_accessor catalog_id: ::String
|
1012
1086
|
attr_accessor tag_key: ::String
|
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.64.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: 2024-
|
11
|
+
date: 2024-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|