@aws-sdk/client-glue 3.1095.0 → 3.1097.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/README.md +7 -0
- package/dist-cjs/index.js +221 -90
- package/dist-es/Glue.js +2 -0
- package/dist-es/commands/BatchGetDataQualityRulesetEvaluationRunCommand.js +4 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +26 -13
- package/dist-es/schemas/schemas_0.js +177 -76
- package/dist-types/Glue.d.ts +7 -0
- package/dist-types/GlueClient.d.ts +3 -2
- package/dist-types/commands/BatchGetDataQualityResultCommand.d.ts +11 -0
- package/dist-types/commands/BatchGetDataQualityRulesetEvaluationRunCommand.d.ts +202 -0
- package/dist-types/commands/CreateClassifierCommand.d.ts +1 -1
- package/dist-types/commands/CreateColumnStatisticsTaskSettingsCommand.d.ts +1 -1
- package/dist-types/commands/CreateConnectionCommand.d.ts +1 -1
- package/dist-types/commands/CreateCrawlerCommand.d.ts +1 -2
- package/dist-types/commands/GetDataQualityModelCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityModelResultCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityResultCommand.d.ts +12 -1
- package/dist-types/commands/GetDataQualityRuleRecommendationRunCommand.d.ts +4 -1
- package/dist-types/commands/GetDataQualityRulesetCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityRulesetEvaluationRunCommand.d.ts +48 -0
- package/dist-types/commands/ListDataQualityRuleRecommendationRunsCommand.d.ts +4 -0
- package/dist-types/commands/ListDataQualityStatisticsCommand.d.ts +9 -0
- package/dist-types/commands/SearchTablesCommand.d.ts +1 -2
- package/dist-types/commands/StartBlueprintRunCommand.d.ts +1 -1
- package/dist-types/commands/StartColumnStatisticsTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/StartColumnStatisticsTaskRunScheduleCommand.d.ts +1 -1
- package/dist-types/commands/StartCrawlerCommand.d.ts +1 -1
- package/dist-types/commands/StartDataQualityRuleRecommendationRunCommand.d.ts +3 -0
- package/dist-types/commands/StartDataQualityRulesetEvaluationRunCommand.d.ts +48 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +66 -29
- package/dist-types/models/models_0.d.ts +305 -439
- package/dist-types/models/models_1.d.ts +440 -342
- package/dist-types/models/models_2.d.ts +358 -222
- package/dist-types/models/models_3.d.ts +218 -4
- package/dist-types/schemas/schemas_0.d.ts +12 -0
- package/dist-types/ts3.4/Glue.d.ts +17 -0
- package/dist-types/ts3.4/GlueClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/BatchGetDataQualityRulesetEvaluationRunCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateClassifierCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateColumnStatisticsTaskSettingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateCrawlerCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetDataQualityModelCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityModelResultCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityResultCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityRuleRecommendationRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityRulesetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchTablesCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/StartBlueprintRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartColumnStatisticsTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartColumnStatisticsTaskRunScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartCrawlerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +33 -16
- package/dist-types/ts3.4/models/models_0.d.ts +74 -76
- package/dist-types/ts3.4/models/models_1.d.ts +80 -87
- package/dist-types/ts3.4/models/models_2.d.ts +91 -57
- package/dist-types/ts3.4/models/models_3.d.ts +55 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
- package/package.json +3 -3
|
@@ -64,6 +64,54 @@ declare const StartDataQualityRulesetEvaluationRunCommand_base: {
|
|
|
64
64
|
* ResultsS3Prefix: "STRING_VALUE",
|
|
65
65
|
* CompositeRuleEvaluationMethod: "COLUMN" || "ROW",
|
|
66
66
|
* CustomLogGroupPrefix: "STRING_VALUE",
|
|
67
|
+
* RowLevelResults: { // RowLevelResultsOptions
|
|
68
|
+
* MaxRowsToWrite: Number("int"),
|
|
69
|
+
* ResultType: "ALL" || "PASSED_ONLY" || "FAILED_ONLY",
|
|
70
|
+
* CatalogTableConfig: { // CatalogTableConfigOptions
|
|
71
|
+
* DatabaseName: "STRING_VALUE",
|
|
72
|
+
* TableName: "STRING_VALUE",
|
|
73
|
+
* S3Location: "STRING_VALUE",
|
|
74
|
+
* CatalogId: "STRING_VALUE",
|
|
75
|
+
* },
|
|
76
|
+
* },
|
|
77
|
+
* ProfilingResults: { // ProfilingResultsOptions
|
|
78
|
+
* WriteProfilingResultsEnabled: true || false,
|
|
79
|
+
* CatalogTableConfig: {
|
|
80
|
+
* DatabaseName: "STRING_VALUE",
|
|
81
|
+
* TableName: "STRING_VALUE",
|
|
82
|
+
* S3Location: "STRING_VALUE",
|
|
83
|
+
* CatalogId: "STRING_VALUE",
|
|
84
|
+
* },
|
|
85
|
+
* DistributionResults: { // DistributionResultsOptions
|
|
86
|
+
* WriteDistributionResultsEnabled: true || false,
|
|
87
|
+
* CatalogTableConfig: {
|
|
88
|
+
* DatabaseName: "STRING_VALUE",
|
|
89
|
+
* TableName: "STRING_VALUE",
|
|
90
|
+
* S3Location: "STRING_VALUE",
|
|
91
|
+
* CatalogId: "STRING_VALUE",
|
|
92
|
+
* },
|
|
93
|
+
* },
|
|
94
|
+
* },
|
|
95
|
+
* ObservationScope: "ALL" || "NONE",
|
|
96
|
+
* ObservationMode: "SCHEDULED" || "FIXED",
|
|
97
|
+
* DataQualityRuleResults: { // DataQualityRuleResultsOptions
|
|
98
|
+
* WriteDataQualityRuleResultsEnabled: true || false,
|
|
99
|
+
* CatalogTableConfig: {
|
|
100
|
+
* DatabaseName: "STRING_VALUE",
|
|
101
|
+
* TableName: "STRING_VALUE",
|
|
102
|
+
* S3Location: "STRING_VALUE",
|
|
103
|
+
* CatalogId: "STRING_VALUE",
|
|
104
|
+
* },
|
|
105
|
+
* },
|
|
106
|
+
* ObservationResults: { // ObservationResultsOptions
|
|
107
|
+
* WriteObservationResultsEnabled: true || false,
|
|
108
|
+
* CatalogTableConfig: {
|
|
109
|
+
* DatabaseName: "STRING_VALUE",
|
|
110
|
+
* TableName: "STRING_VALUE",
|
|
111
|
+
* S3Location: "STRING_VALUE",
|
|
112
|
+
* CatalogId: "STRING_VALUE",
|
|
113
|
+
* },
|
|
114
|
+
* },
|
|
67
115
|
* },
|
|
68
116
|
* RulesetNames: [ // RulesetNames // required
|
|
69
117
|
* "STRING_VALUE",
|
|
@@ -8,6 +8,7 @@ export * from "./BatchGetBlueprintsCommand";
|
|
|
8
8
|
export * from "./BatchGetCrawlersCommand";
|
|
9
9
|
export * from "./BatchGetCustomEntityTypesCommand";
|
|
10
10
|
export * from "./BatchGetDataQualityResultCommand";
|
|
11
|
+
export * from "./BatchGetDataQualityRulesetEvaluationRunCommand";
|
|
11
12
|
export * from "./BatchGetDevEndpointsCommand";
|
|
12
13
|
export * from "./BatchGetIterableFormsCommand";
|
|
13
14
|
export * from "./BatchGetJobsCommand";
|
|
@@ -256,6 +256,72 @@ export declare const DataQualityRuleResultStatus: {
|
|
|
256
256
|
* @public
|
|
257
257
|
*/
|
|
258
258
|
export type DataQualityRuleResultStatus = (typeof DataQualityRuleResultStatus)[keyof typeof DataQualityRuleResultStatus];
|
|
259
|
+
/**
|
|
260
|
+
* @public
|
|
261
|
+
* @enum
|
|
262
|
+
*/
|
|
263
|
+
export declare const DQCompositeRuleEvaluationMethod: {
|
|
264
|
+
readonly COLUMN: "COLUMN";
|
|
265
|
+
readonly ROW: "ROW";
|
|
266
|
+
};
|
|
267
|
+
/**
|
|
268
|
+
* @public
|
|
269
|
+
*/
|
|
270
|
+
export type DQCompositeRuleEvaluationMethod = (typeof DQCompositeRuleEvaluationMethod)[keyof typeof DQCompositeRuleEvaluationMethod];
|
|
271
|
+
/**
|
|
272
|
+
* @public
|
|
273
|
+
* @enum
|
|
274
|
+
*/
|
|
275
|
+
export declare const ObservationMode: {
|
|
276
|
+
readonly FIXED: "FIXED";
|
|
277
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
278
|
+
};
|
|
279
|
+
/**
|
|
280
|
+
* @public
|
|
281
|
+
*/
|
|
282
|
+
export type ObservationMode = (typeof ObservationMode)[keyof typeof ObservationMode];
|
|
283
|
+
/**
|
|
284
|
+
* @public
|
|
285
|
+
* @enum
|
|
286
|
+
*/
|
|
287
|
+
export declare const ObservationConfiguration: {
|
|
288
|
+
readonly ALL: "ALL";
|
|
289
|
+
readonly NONE: "NONE";
|
|
290
|
+
};
|
|
291
|
+
/**
|
|
292
|
+
* @public
|
|
293
|
+
*/
|
|
294
|
+
export type ObservationConfiguration = (typeof ObservationConfiguration)[keyof typeof ObservationConfiguration];
|
|
295
|
+
/**
|
|
296
|
+
* @public
|
|
297
|
+
* @enum
|
|
298
|
+
*/
|
|
299
|
+
export declare const ResultTypeEnum: {
|
|
300
|
+
readonly ALL: "ALL";
|
|
301
|
+
readonly FAILED_ONLY: "FAILED_ONLY";
|
|
302
|
+
readonly PASSED_ONLY: "PASSED_ONLY";
|
|
303
|
+
};
|
|
304
|
+
/**
|
|
305
|
+
* @public
|
|
306
|
+
*/
|
|
307
|
+
export type ResultTypeEnum = (typeof ResultTypeEnum)[keyof typeof ResultTypeEnum];
|
|
308
|
+
/**
|
|
309
|
+
* @public
|
|
310
|
+
* @enum
|
|
311
|
+
*/
|
|
312
|
+
export declare const TaskStatusType: {
|
|
313
|
+
readonly FAILED: "FAILED";
|
|
314
|
+
readonly RUNNING: "RUNNING";
|
|
315
|
+
readonly STARTING: "STARTING";
|
|
316
|
+
readonly STOPPED: "STOPPED";
|
|
317
|
+
readonly STOPPING: "STOPPING";
|
|
318
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
319
|
+
readonly TIMEOUT: "TIMEOUT";
|
|
320
|
+
};
|
|
321
|
+
/**
|
|
322
|
+
* @public
|
|
323
|
+
*/
|
|
324
|
+
export type TaskStatusType = (typeof TaskStatusType)[keyof typeof TaskStatusType];
|
|
259
325
|
/**
|
|
260
326
|
* @public
|
|
261
327
|
* @enum
|
|
@@ -893,23 +959,6 @@ export declare const WorkflowRunStatus: {
|
|
|
893
959
|
* @public
|
|
894
960
|
*/
|
|
895
961
|
export type WorkflowRunStatus = (typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus];
|
|
896
|
-
/**
|
|
897
|
-
* @public
|
|
898
|
-
* @enum
|
|
899
|
-
*/
|
|
900
|
-
export declare const TaskStatusType: {
|
|
901
|
-
readonly FAILED: "FAILED";
|
|
902
|
-
readonly RUNNING: "RUNNING";
|
|
903
|
-
readonly STARTING: "STARTING";
|
|
904
|
-
readonly STOPPED: "STOPPED";
|
|
905
|
-
readonly STOPPING: "STOPPING";
|
|
906
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
907
|
-
readonly TIMEOUT: "TIMEOUT";
|
|
908
|
-
};
|
|
909
|
-
/**
|
|
910
|
-
* @public
|
|
911
|
-
*/
|
|
912
|
-
export type TaskStatusType = (typeof TaskStatusType)[keyof typeof TaskStatusType];
|
|
913
962
|
/**
|
|
914
963
|
* @public
|
|
915
964
|
* @enum
|
|
@@ -1692,18 +1741,6 @@ export declare const DataQualityModelStatus: {
|
|
|
1692
1741
|
* @public
|
|
1693
1742
|
*/
|
|
1694
1743
|
export type DataQualityModelStatus = (typeof DataQualityModelStatus)[keyof typeof DataQualityModelStatus];
|
|
1695
|
-
/**
|
|
1696
|
-
* @public
|
|
1697
|
-
* @enum
|
|
1698
|
-
*/
|
|
1699
|
-
export declare const DQCompositeRuleEvaluationMethod: {
|
|
1700
|
-
readonly COLUMN: "COLUMN";
|
|
1701
|
-
readonly ROW: "ROW";
|
|
1702
|
-
};
|
|
1703
|
-
/**
|
|
1704
|
-
* @public
|
|
1705
|
-
*/
|
|
1706
|
-
export type DQCompositeRuleEvaluationMethod = (typeof DQCompositeRuleEvaluationMethod)[keyof typeof DQCompositeRuleEvaluationMethod];
|
|
1707
1744
|
/**
|
|
1708
1745
|
* @public
|
|
1709
1746
|
* @enum
|