Skip to content

Commit 2755317

Browse files
Adding new supported permission type flags to get-unfiltered endpoints that callers may pass to indicate support for enforcing Lake Formation fine-grained access control on nested column attributes.
1 parent abdcf5b commit 2755317

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

generator/ServiceModels/glue/glue-2017-03-31.api.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9806,7 +9806,9 @@
98069806
"type":"string",
98079807
"enum":[
98089808
"COLUMN_PERMISSION",
9809-
"CELL_FILTER_PERMISSION"
9809+
"CELL_FILTER_PERMISSION",
9810+
"NESTED_PERMISSION",
9811+
"NESTED_CELL_PERMISSION"
98109812
]
98119813
},
98129814
"PermissionTypeList":{

generator/ServiceModels/glue/glue-2017-03-31.normal.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15586,7 +15586,9 @@
1558615586
"type":"string",
1558715587
"enum":[
1558815588
"COLUMN_PERMISSION",
15589-
"CELL_FILTER_PERMISSION"
15589+
"CELL_FILTER_PERMISSION",
15590+
"NESTED_PERMISSION",
15591+
"NESTED_CELL_PERMISSION"
1559015592
]
1559115593
},
1559215594
"PermissionTypeList":{

sdk/src/Services/Glue/Generated/ServiceEnumerations.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3322,6 +3322,14 @@ public class PermissionType : ConstantClass
33223322
/// Constant COLUMN_PERMISSION for PermissionType
33233323
/// </summary>
33243324
public static readonly PermissionType COLUMN_PERMISSION = new PermissionType("COLUMN_PERMISSION");
3325+
/// <summary>
3326+
/// Constant NESTED_CELL_PERMISSION for PermissionType
3327+
/// </summary>
3328+
public static readonly PermissionType NESTED_CELL_PERMISSION = new PermissionType("NESTED_CELL_PERMISSION");
3329+
/// <summary>
3330+
/// Constant NESTED_PERMISSION for PermissionType
3331+
/// </summary>
3332+
public static readonly PermissionType NESTED_PERMISSION = new PermissionType("NESTED_PERMISSION");
33253333

33263334
/// <summary>
33273335
/// This constant constructor does not need to be called if the constant

0 commit comments

Comments
 (0)