@aws-sdk/client-glue 3.552.0 → 3.555.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.
package/dist-cjs/index.js CHANGED
@@ -6825,9 +6825,11 @@ var se_GetUnfilteredTableMetadataRequest = /* @__PURE__ */ __name((input, contex
6825
6825
  CatalogId: [],
6826
6826
  DatabaseName: [],
6827
6827
  Name: [],
6828
+ ParentResourceArn: [],
6828
6829
  Permissions: import_smithy_client._json,
6829
6830
  QuerySessionContext: (_) => se_QuerySessionContext(_, context),
6830
6831
  Region: [],
6832
+ RootResourceArn: [],
6831
6833
  SupportedDialect: import_smithy_client._json,
6832
6834
  SupportedPermissionTypes: import_smithy_client._json
6833
6835
  });
@@ -4956,9 +4956,11 @@ const se_GetUnfilteredTableMetadataRequest = (input, context) => {
4956
4956
  CatalogId: [],
4957
4957
  DatabaseName: [],
4958
4958
  Name: [],
4959
+ ParentResourceArn: [],
4959
4960
  Permissions: _json,
4960
4961
  QuerySessionContext: (_) => se_QuerySessionContext(_, context),
4961
4962
  Region: [],
4963
+ RootResourceArn: [],
4962
4964
  SupportedDialect: _json,
4963
4965
  SupportedPermissionTypes: _json,
4964
4966
  });
@@ -26,8 +26,7 @@ declare const GetUnfilteredTableMetadataCommand_base: {
26
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
27
  };
28
28
  /**
29
- * <p>Retrieves table metadata from the Data Catalog that contains unfiltered
30
- * metadata.</p>
29
+ * <p>Allows a third-party analytical engine to retrieve unfiltered table metadata from the Data Catalog.</p>
31
30
  * <p>For IAM authorization, the public IAM action associated with this API is <code>glue:GetTable</code>.</p>
32
31
  * @example
33
32
  * Use a bare-bones client and the command you need to make an API call.
@@ -50,6 +49,8 @@ declare const GetUnfilteredTableMetadataCommand_base: {
50
49
  * SupportedPermissionTypes: [ // PermissionTypeList // required
51
50
  * "COLUMN_PERMISSION" || "CELL_FILTER_PERMISSION" || "NESTED_PERMISSION" || "NESTED_CELL_PERMISSION",
52
51
  * ],
52
+ * ParentResourceArn: "STRING_VALUE",
53
+ * RootResourceArn: "STRING_VALUE",
53
54
  * SupportedDialect: { // SupportedDialect
54
55
  * Dialect: "REDSHIFT" || "ATHENA" || "SPARK",
55
56
  * DialectVersion: "STRING_VALUE",
@@ -2728,12 +2728,12 @@ export interface KinesisStreamingSourceOptions {
2728
2728
  */
2729
2729
  StartingPosition?: StartingPosition;
2730
2730
  /**
2731
- * <p>The maximum time spent in the job executor to fetch a record from the Kinesis data stream per shard, specified in milliseconds (ms). The default value is <code>1000</code>.</p>
2731
+ * <p>The maximum time spent for the job executor to read records for the current batch from the Kinesis data stream, specified in milliseconds (ms). Multiple <code>GetRecords</code> API calls may be made within this time. The default value is <code>1000</code>.</p>
2732
2732
  * @public
2733
2733
  */
2734
2734
  MaxFetchTimeInMs?: number;
2735
2735
  /**
2736
- * <p>The maximum number of records to fetch per shard in the Kinesis data stream. The default value is <code>100000</code>.</p>
2736
+ * <p>The maximum number of records to fetch per shard in the Kinesis data stream per microbatch. Note: The client can exceed this limit if the streaming job has already read extra records from Kinesis (in the same get-records call). If <code>MaxFetchRecordsPerShard</code> needs to be strict then it needs to be a multiple of <code>MaxRecordPerRead</code>. The default value is <code>100000</code>.</p>
2737
2737
  * @public
2738
2738
  */
2739
2739
  MaxFetchRecordsPerShard?: number;
@@ -1128,10 +1128,40 @@ export interface GetUnfilteredTableMetadataRequest {
1128
1128
  */
1129
1129
  AuditContext?: AuditContext;
1130
1130
  /**
1131
- * <p>(Required) A list of supported permission types. </p>
1131
+ * <p>Indicates the level of filtering a third-party analytical engine is capable of enforcing when calling the <code>GetUnfilteredTableMetadata</code> API operation. Accepted values are:</p>
1132
+ * <ul>
1133
+ * <li>
1134
+ * <p>
1135
+ * <code>COLUMN_PERMISSION</code> - Column permissions ensure that users can access only specific columns in the table. If there are particular columns contain sensitive data, data lake administrators can define column filters that exclude access to specific columns.</p>
1136
+ * </li>
1137
+ * <li>
1138
+ * <p>
1139
+ * <code>CELL_FILTER_PERMISSION</code> - Cell-level filtering combines column filtering (include or exclude columns) and row filter expressions to restrict access to individual elements in the table.</p>
1140
+ * </li>
1141
+ * <li>
1142
+ * <p>
1143
+ * <code>NESTED_PERMISSION</code> - Nested permissions combines cell-level filtering and nested column filtering to restrict access to columns and/or nested columns in specific rows based on row filter expressions.</p>
1144
+ * </li>
1145
+ * <li>
1146
+ * <p>
1147
+ * <code>NESTED_CELL_PERMISSION</code> - Nested cell permissions combines nested permission with nested cell-level filtering. This allows different subsets of nested columns to be restricted based on an array of row filter expressions. </p>
1148
+ * </li>
1149
+ * </ul>
1150
+ * <p>Note: Each of these permission types follows a hierarchical order where each subsequent permission type includes all permission of the previous type.</p>
1151
+ * <p>Important: If you provide a supported permission type that doesn't match the user's level of permissions on the table, then Lake Formation raises an exception. For example, if the third-party engine calling the <code>GetUnfilteredTableMetadata</code> operation can enforce only column-level filtering, and the user has nested cell filtering applied on the table, Lake Formation throws an exception, and will not return unfiltered table metadata and data access credentials.</p>
1132
1152
  * @public
1133
1153
  */
1134
1154
  SupportedPermissionTypes: PermissionType[] | undefined;
1155
+ /**
1156
+ * <p>The resource ARN of the view.</p>
1157
+ * @public
1158
+ */
1159
+ ParentResourceArn?: string;
1160
+ /**
1161
+ * <p>The resource ARN of the root view in a chain of nested views.</p>
1162
+ * @public
1163
+ */
1164
+ RootResourceArn?: string;
1135
1165
  /**
1136
1166
  * <p>A structure specifying the dialect and dialect version used by the query engine.</p>
1137
1167
  * @public
@@ -388,6 +388,8 @@ export interface GetUnfilteredTableMetadataRequest {
388
388
  Name: string | undefined;
389
389
  AuditContext?: AuditContext;
390
390
  SupportedPermissionTypes: PermissionType[] | undefined;
391
+ ParentResourceArn?: string;
392
+ RootResourceArn?: string;
391
393
  SupportedDialect?: SupportedDialect;
392
394
  Permissions?: Permission[];
393
395
  QuerySessionContext?: QuerySessionContext;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-glue",
3
3
  "description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
4
- "version": "3.552.0",
4
+ "version": "3.555.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-glue",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.552.0",
24
- "@aws-sdk/core": "3.552.0",
25
- "@aws-sdk/credential-provider-node": "3.552.0",
23
+ "@aws-sdk/client-sts": "3.554.0",
24
+ "@aws-sdk/core": "3.554.0",
25
+ "@aws-sdk/credential-provider-node": "3.554.0",
26
26
  "@aws-sdk/middleware-host-header": "3.535.0",
27
27
  "@aws-sdk/middleware-logger": "3.535.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.535.0",