@aws-sdk/client-glue 3.592.0 → 3.597.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 +6 -0
- package/dist-es/models/models_1.js +4 -0
- package/dist-types/commands/GetDataQualityRulesetEvaluationRunCommand.d.ts +1 -0
- package/dist-types/commands/GetSchemaCommand.d.ts +1 -2
- package/dist-types/commands/StartDataQualityRulesetEvaluationRunCommand.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +18 -19
- package/dist-types/models/models_2.d.ts +18 -0
- package/dist-types/ts3.4/commands/GetSchemaCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_1.d.ts +7 -3
- package/dist-types/ts3.4/models/models_2.d.ts +3 -0
- package/package.json +4 -4
package/dist-cjs/index.js
CHANGED
|
@@ -101,6 +101,7 @@ __export(src_exports, {
|
|
|
101
101
|
CreateWorkflowCommand: () => CreateWorkflowCommand,
|
|
102
102
|
CsvHeaderOption: () => CsvHeaderOption,
|
|
103
103
|
CsvSerdeOption: () => CsvSerdeOption,
|
|
104
|
+
DQCompositeRuleEvaluationMethod: () => DQCompositeRuleEvaluationMethod,
|
|
104
105
|
DQStopJobOnFailureTiming: () => DQStopJobOnFailureTiming,
|
|
105
106
|
DQTransformOutput: () => DQTransformOutput,
|
|
106
107
|
DataFormat: () => DataFormat,
|
|
@@ -1526,6 +1527,10 @@ var CatalogEncryptionMode = {
|
|
|
1526
1527
|
SSEKMS: "SSE-KMS",
|
|
1527
1528
|
SSEKMSWITHSERVICEROLE: "SSE-KMS-WITH-SERVICE-ROLE"
|
|
1528
1529
|
};
|
|
1530
|
+
var DQCompositeRuleEvaluationMethod = {
|
|
1531
|
+
COLUMN: "COLUMN",
|
|
1532
|
+
ROW: "ROW"
|
|
1533
|
+
};
|
|
1529
1534
|
var TaskType = {
|
|
1530
1535
|
EVALUATION: "EVALUATION",
|
|
1531
1536
|
EXPORT_LABELS: "EXPORT_LABELS",
|
|
@@ -13137,6 +13142,7 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
|
|
|
13137
13142
|
ColumnStatisticsState,
|
|
13138
13143
|
ResourceShareType,
|
|
13139
13144
|
CatalogEncryptionMode,
|
|
13145
|
+
DQCompositeRuleEvaluationMethod,
|
|
13140
13146
|
TaskType,
|
|
13141
13147
|
TaskRunSortColumnType,
|
|
13142
13148
|
SortDirectionType,
|
|
@@ -282,6 +282,10 @@ export const CatalogEncryptionMode = {
|
|
|
282
282
|
SSEKMS: "SSE-KMS",
|
|
283
283
|
SSEKMSWITHSERVICEROLE: "SSE-KMS-WITH-SERVICE-ROLE",
|
|
284
284
|
};
|
|
285
|
+
export const DQCompositeRuleEvaluationMethod = {
|
|
286
|
+
COLUMN: "COLUMN",
|
|
287
|
+
ROW: "ROW",
|
|
288
|
+
};
|
|
285
289
|
export const TaskType = {
|
|
286
290
|
EVALUATION: "EVALUATION",
|
|
287
291
|
EXPORT_LABELS: "EXPORT_LABELS",
|
|
@@ -58,6 +58,7 @@ declare const GetDataQualityRulesetEvaluationRunCommand_base: {
|
|
|
58
58
|
* // AdditionalRunOptions: { // DataQualityEvaluationRunAdditionalRunOptions
|
|
59
59
|
* // CloudWatchMetricsEnabled: true || false,
|
|
60
60
|
* // ResultsS3Prefix: "STRING_VALUE",
|
|
61
|
+
* // CompositeRuleEvaluationMethod: "COLUMN" || "ROW",
|
|
61
62
|
* // },
|
|
62
63
|
* // Status: "STARTING" || "RUNNING" || "STOPPING" || "STOPPED" || "SUCCEEDED" || "FAILED" || "TIMEOUT",
|
|
63
64
|
* // ErrorString: "STRING_VALUE",
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { GetSchemaInput } from "../models/
|
|
5
|
-
import { GetSchemaResponse } from "../models/models_2";
|
|
4
|
+
import { GetSchemaInput, GetSchemaResponse } from "../models/models_2";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -53,6 +53,7 @@ declare const StartDataQualityRulesetEvaluationRunCommand_base: {
|
|
|
53
53
|
* AdditionalRunOptions: { // DataQualityEvaluationRunAdditionalRunOptions
|
|
54
54
|
* CloudWatchMetricsEnabled: true || false,
|
|
55
55
|
* ResultsS3Prefix: "STRING_VALUE",
|
|
56
|
+
* CompositeRuleEvaluationMethod: "COLUMN" || "ROW",
|
|
56
57
|
* },
|
|
57
58
|
* RulesetNames: [ // RulesetNames // required
|
|
58
59
|
* "STRING_VALUE",
|
|
@@ -5371,6 +5371,18 @@ export interface GetDataQualityRulesetEvaluationRunRequest {
|
|
|
5371
5371
|
*/
|
|
5372
5372
|
RunId: string | undefined;
|
|
5373
5373
|
}
|
|
5374
|
+
/**
|
|
5375
|
+
* @public
|
|
5376
|
+
* @enum
|
|
5377
|
+
*/
|
|
5378
|
+
export declare const DQCompositeRuleEvaluationMethod: {
|
|
5379
|
+
readonly COLUMN: "COLUMN";
|
|
5380
|
+
readonly ROW: "ROW";
|
|
5381
|
+
};
|
|
5382
|
+
/**
|
|
5383
|
+
* @public
|
|
5384
|
+
*/
|
|
5385
|
+
export type DQCompositeRuleEvaluationMethod = (typeof DQCompositeRuleEvaluationMethod)[keyof typeof DQCompositeRuleEvaluationMethod];
|
|
5374
5386
|
/**
|
|
5375
5387
|
* <p>Additional run options you can specify for an evaluation run.</p>
|
|
5376
5388
|
* @public
|
|
@@ -5386,6 +5398,11 @@ export interface DataQualityEvaluationRunAdditionalRunOptions {
|
|
|
5386
5398
|
* @public
|
|
5387
5399
|
*/
|
|
5388
5400
|
ResultsS3Prefix?: string;
|
|
5401
|
+
/**
|
|
5402
|
+
* <p>Set the evaluation method for composite rules in the ruleset to ROW/COLUMN</p>
|
|
5403
|
+
* @public
|
|
5404
|
+
*/
|
|
5405
|
+
CompositeRuleEvaluationMethod?: DQCompositeRuleEvaluationMethod;
|
|
5389
5406
|
}
|
|
5390
5407
|
/**
|
|
5391
5408
|
* @public
|
|
@@ -5452,7 +5469,7 @@ export interface GetDataQualityRulesetEvaluationRunResponse {
|
|
|
5452
5469
|
*/
|
|
5453
5470
|
ExecutionTime?: number;
|
|
5454
5471
|
/**
|
|
5455
|
-
* <p>A list of ruleset names for the run.</p>
|
|
5472
|
+
* <p>A list of ruleset names for the run. Currently, this parameter takes only one Ruleset name.</p>
|
|
5456
5473
|
* @public
|
|
5457
5474
|
*/
|
|
5458
5475
|
RulesetNames?: string[];
|
|
@@ -7281,21 +7298,3 @@ export interface GetResourcePolicyResponse {
|
|
|
7281
7298
|
*/
|
|
7282
7299
|
UpdateTime?: Date;
|
|
7283
7300
|
}
|
|
7284
|
-
/**
|
|
7285
|
-
* @public
|
|
7286
|
-
*/
|
|
7287
|
-
export interface GetSchemaInput {
|
|
7288
|
-
/**
|
|
7289
|
-
* <p>This is a wrapper structure to contain schema identity fields. The structure contains:</p>
|
|
7290
|
-
* <ul>
|
|
7291
|
-
* <li>
|
|
7292
|
-
* <p>SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either <code>SchemaArn</code> or <code>SchemaName</code> and <code>RegistryName</code> has to be provided.</p>
|
|
7293
|
-
* </li>
|
|
7294
|
-
* <li>
|
|
7295
|
-
* <p>SchemaId$SchemaName: The name of the schema. Either <code>SchemaArn</code> or <code>SchemaName</code> and <code>RegistryName</code> has to be provided.</p>
|
|
7296
|
-
* </li>
|
|
7297
|
-
* </ul>
|
|
7298
|
-
* @public
|
|
7299
|
-
*/
|
|
7300
|
-
SchemaId: SchemaId | undefined;
|
|
7301
|
-
}
|
|
@@ -2,6 +2,24 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
|
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
3
|
import { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, AuditContext, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CrawlerTargets, CsvHeaderOption, CsvSerdeOption, CustomCode, CustomEntityType, DataFormat, DataSource, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionClass, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, JobMode, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, Partition, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, Recipe, RecrawlPolicy, RedshiftSource, RedshiftTarget, RelationalCatalogSource, RenameField, S3CatalogDeltaSource, S3CatalogHudiSource, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DeltaCatalogTarget, S3DeltaDirectTarget, S3DeltaSource, S3DirectTarget, S3GlueParquetTarget, S3HudiCatalogTarget, S3HudiDirectTarget, S3HudiSource, S3JsonSource, S3ParquetSource, SchemaChangePolicy, SchemaId, SelectFields, SelectFromCollection, SnowflakeSource, SnowflakeTarget, SourceControlAuthStrategy, SourceControlDetails, SourceControlProvider, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, StorageDescriptor, TableOptimizer, TableOptimizerConfiguration, TableOptimizerRun, TableOptimizerType, TaskStatusType, Trigger, Union, WorkerType, Workflow, WorkflowRun } from "./models_0";
|
|
4
4
|
import { ColumnStatistics, Compatibility, ConnectionInput, DatabaseInput, DataCatalogEncryptionSettings, DataQualityEvaluationRunAdditionalRunOptions, DataQualityTargetTable, EncryptionConfiguration, JobBookmarkEntry, Permission, PrincipalType, RegistryId, RegistryStatus, ResourceShareType, ResourceUri, SchemaStatus, SchemaVersionStatus, Segment, Session, TableIdentifier, TableInput, TransformFilterCriteria, TransformParameters, TransformSortCriteria, UserDefinedFunctionInput, ViewDialect } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface GetSchemaInput {
|
|
9
|
+
/**
|
|
10
|
+
* <p>This is a wrapper structure to contain schema identity fields. The structure contains:</p>
|
|
11
|
+
* <ul>
|
|
12
|
+
* <li>
|
|
13
|
+
* <p>SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either <code>SchemaArn</code> or <code>SchemaName</code> and <code>RegistryName</code> has to be provided.</p>
|
|
14
|
+
* </li>
|
|
15
|
+
* <li>
|
|
16
|
+
* <p>SchemaId$SchemaName: The name of the schema. Either <code>SchemaArn</code> or <code>SchemaName</code> and <code>RegistryName</code> has to be provided.</p>
|
|
17
|
+
* </li>
|
|
18
|
+
* </ul>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
SchemaId: SchemaId | undefined;
|
|
22
|
+
}
|
|
5
23
|
/**
|
|
6
24
|
* @public
|
|
7
25
|
*/
|
|
@@ -5,8 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GlueClient";
|
|
8
|
-
import { GetSchemaInput } from "../models/
|
|
9
|
-
import { GetSchemaResponse } from "../models/models_2";
|
|
8
|
+
import { GetSchemaInput, GetSchemaResponse } from "../models/models_2";
|
|
10
9
|
export { __MetadataBearer };
|
|
11
10
|
export { $Command };
|
|
12
11
|
export interface GetSchemaCommandInput extends GetSchemaInput {}
|
|
@@ -1335,9 +1335,16 @@ export interface GetDataQualityRulesetResponse {
|
|
|
1335
1335
|
export interface GetDataQualityRulesetEvaluationRunRequest {
|
|
1336
1336
|
RunId: string | undefined;
|
|
1337
1337
|
}
|
|
1338
|
+
export declare const DQCompositeRuleEvaluationMethod: {
|
|
1339
|
+
readonly COLUMN: "COLUMN";
|
|
1340
|
+
readonly ROW: "ROW";
|
|
1341
|
+
};
|
|
1342
|
+
export type DQCompositeRuleEvaluationMethod =
|
|
1343
|
+
(typeof DQCompositeRuleEvaluationMethod)[keyof typeof DQCompositeRuleEvaluationMethod];
|
|
1338
1344
|
export interface DataQualityEvaluationRunAdditionalRunOptions {
|
|
1339
1345
|
CloudWatchMetricsEnabled?: boolean;
|
|
1340
1346
|
ResultsS3Prefix?: string;
|
|
1347
|
+
CompositeRuleEvaluationMethod?: DQCompositeRuleEvaluationMethod;
|
|
1341
1348
|
}
|
|
1342
1349
|
export interface GetDataQualityRulesetEvaluationRunResponse {
|
|
1343
1350
|
RunId?: string;
|
|
@@ -1755,6 +1762,3 @@ export interface GetResourcePolicyResponse {
|
|
|
1755
1762
|
CreateTime?: Date;
|
|
1756
1763
|
UpdateTime?: Date;
|
|
1757
1764
|
}
|
|
1758
|
-
export interface GetSchemaInput {
|
|
1759
|
-
SchemaId: SchemaId | undefined;
|
|
1760
|
-
}
|
|
@@ -138,6 +138,9 @@ import {
|
|
|
138
138
|
UserDefinedFunctionInput,
|
|
139
139
|
ViewDialect,
|
|
140
140
|
} from "./models_1";
|
|
141
|
+
export interface GetSchemaInput {
|
|
142
|
+
SchemaId: SchemaId | undefined;
|
|
143
|
+
}
|
|
141
144
|
export interface GetSchemaResponse {
|
|
142
145
|
RegistryName?: string;
|
|
143
146
|
RegistryArn?: string;
|
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.597.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,10 +20,10 @@
|
|
|
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-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.596.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.596.0",
|
|
25
25
|
"@aws-sdk/core": "3.592.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.596.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|