@aws-sdk/client-glue 3.555.0 → 3.559.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
|
@@ -8284,6 +8284,7 @@ var de_GetUnfilteredTableMetadataResponse = /* @__PURE__ */ __name((output, cont
|
|
|
8284
8284
|
Permissions: import_smithy_client._json,
|
|
8285
8285
|
QueryAuthorizationId: import_smithy_client.expectString,
|
|
8286
8286
|
ResourceArn: import_smithy_client.expectString,
|
|
8287
|
+
RowFilter: import_smithy_client.expectString,
|
|
8287
8288
|
Table: (_) => de_Table(_, context)
|
|
8288
8289
|
});
|
|
8289
8290
|
}, "de_GetUnfilteredTableMetadataResponse");
|
|
@@ -6473,6 +6473,7 @@ const de_GetUnfilteredTableMetadataResponse = (output, context) => {
|
|
|
6473
6473
|
Permissions: _json,
|
|
6474
6474
|
QueryAuthorizationId: __expectString,
|
|
6475
6475
|
ResourceArn: __expectString,
|
|
6476
|
+
RowFilter: __expectString,
|
|
6476
6477
|
Table: (_) => de_Table(_, context),
|
|
6477
6478
|
});
|
|
6478
6479
|
};
|
|
@@ -199,6 +199,7 @@ declare const GetUnfilteredTableMetadataCommand_base: {
|
|
|
199
199
|
* // Permissions: [ // PermissionList
|
|
200
200
|
* // "ALL" || "SELECT" || "ALTER" || "DROP" || "DELETE" || "INSERT" || "CREATE_DATABASE" || "CREATE_TABLE" || "DATA_LOCATION_ACCESS",
|
|
201
201
|
* // ],
|
|
202
|
+
* // RowFilter: "STRING_VALUE",
|
|
202
203
|
* // };
|
|
203
204
|
*
|
|
204
205
|
* ```
|
|
@@ -1244,6 +1244,11 @@ export interface GetUnfilteredTableMetadataResponse {
|
|
|
1244
1244
|
* @public
|
|
1245
1245
|
*/
|
|
1246
1246
|
Permissions?: Permission[];
|
|
1247
|
+
/**
|
|
1248
|
+
* <p>The filter that applies to the table. For example when applying the filter in SQL, it would go in the <code>WHERE</code> clause and can be evaluated by using an <code>AND</code> operator with any other predicates applied by the user querying the table.</p>
|
|
1249
|
+
* @public
|
|
1250
|
+
*/
|
|
1251
|
+
RowFilter?: string;
|
|
1247
1252
|
}
|
|
1248
1253
|
/**
|
|
1249
1254
|
* @public
|
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.
|
|
4
|
+
"version": "3.559.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.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.556.0",
|
|
24
|
+
"@aws-sdk/core": "3.556.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.556.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",
|