@aws-sdk/client-glue 3.1095.0 → 3.1096.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
package/dist-es/Glue.js
CHANGED
|
@@ -9,6 +9,7 @@ import { BatchGetBlueprintsCommand, } from "./commands/BatchGetBlueprintsCommand
|
|
|
9
9
|
import { BatchGetCrawlersCommand, } from "./commands/BatchGetCrawlersCommand";
|
|
10
10
|
import { BatchGetCustomEntityTypesCommand, } from "./commands/BatchGetCustomEntityTypesCommand";
|
|
11
11
|
import { BatchGetDataQualityResultCommand, } from "./commands/BatchGetDataQualityResultCommand";
|
|
12
|
+
import { BatchGetDataQualityRulesetEvaluationRunCommand, } from "./commands/BatchGetDataQualityRulesetEvaluationRunCommand";
|
|
12
13
|
import { BatchGetDevEndpointsCommand, } from "./commands/BatchGetDevEndpointsCommand";
|
|
13
14
|
import { BatchGetIterableFormsCommand, } from "./commands/BatchGetIterableFormsCommand";
|
|
14
15
|
import { BatchGetJobsCommand, } from "./commands/BatchGetJobsCommand";
|
|
@@ -359,6 +360,7 @@ const commands = {
|
|
|
359
360
|
BatchGetCrawlersCommand,
|
|
360
361
|
BatchGetCustomEntityTypesCommand,
|
|
361
362
|
BatchGetDataQualityResultCommand,
|
|
363
|
+
BatchGetDataQualityRulesetEvaluationRunCommand,
|
|
362
364
|
BatchGetDevEndpointsCommand,
|
|
363
365
|
BatchGetIterableFormsCommand,
|
|
364
366
|
BatchGetJobsCommand,
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { BatchGetDataQualityRulesetEvaluationRun$ } from "../schemas/schemas_0";
|
|
3
|
+
export class BatchGetDataQualityRulesetEvaluationRunCommand extends command(_ep0, _mw0, "BatchGetDataQualityRulesetEvaluationRun", BatchGetDataQualityRulesetEvaluationRun$) {
|
|
4
|
+
}
|
|
@@ -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";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -104,6 +104,32 @@ export const DataQualityRuleResultStatus = {
|
|
|
104
104
|
FAIL: "FAIL",
|
|
105
105
|
PASS: "PASS",
|
|
106
106
|
};
|
|
107
|
+
export const DQCompositeRuleEvaluationMethod = {
|
|
108
|
+
COLUMN: "COLUMN",
|
|
109
|
+
ROW: "ROW",
|
|
110
|
+
};
|
|
111
|
+
export const ObservationMode = {
|
|
112
|
+
FIXED: "FIXED",
|
|
113
|
+
SCHEDULED: "SCHEDULED",
|
|
114
|
+
};
|
|
115
|
+
export const ObservationConfiguration = {
|
|
116
|
+
ALL: "ALL",
|
|
117
|
+
NONE: "NONE",
|
|
118
|
+
};
|
|
119
|
+
export const ResultTypeEnum = {
|
|
120
|
+
ALL: "ALL",
|
|
121
|
+
FAILED_ONLY: "FAILED_ONLY",
|
|
122
|
+
PASSED_ONLY: "PASSED_ONLY",
|
|
123
|
+
};
|
|
124
|
+
export const TaskStatusType = {
|
|
125
|
+
FAILED: "FAILED",
|
|
126
|
+
RUNNING: "RUNNING",
|
|
127
|
+
STARTING: "STARTING",
|
|
128
|
+
STOPPED: "STOPPED",
|
|
129
|
+
STOPPING: "STOPPING",
|
|
130
|
+
SUCCEEDED: "SUCCEEDED",
|
|
131
|
+
TIMEOUT: "TIMEOUT",
|
|
132
|
+
};
|
|
107
133
|
export const WorkerType = {
|
|
108
134
|
G_025X: "G.025X",
|
|
109
135
|
G_1X: "G.1X",
|
|
@@ -405,15 +431,6 @@ export const WorkflowRunStatus = {
|
|
|
405
431
|
STOPPED: "STOPPED",
|
|
406
432
|
STOPPING: "STOPPING",
|
|
407
433
|
};
|
|
408
|
-
export const TaskStatusType = {
|
|
409
|
-
FAILED: "FAILED",
|
|
410
|
-
RUNNING: "RUNNING",
|
|
411
|
-
STARTING: "STARTING",
|
|
412
|
-
STOPPED: "STOPPED",
|
|
413
|
-
STOPPING: "STOPPING",
|
|
414
|
-
SUCCEEDED: "SUCCEEDED",
|
|
415
|
-
TIMEOUT: "TIMEOUT",
|
|
416
|
-
};
|
|
417
434
|
export const DataFormat = {
|
|
418
435
|
AVRO: "AVRO",
|
|
419
436
|
JSON: "JSON",
|
|
@@ -812,10 +829,6 @@ export const DataQualityModelStatus = {
|
|
|
812
829
|
RUNNING: "RUNNING",
|
|
813
830
|
SUCCEEDED: "SUCCEEDED",
|
|
814
831
|
};
|
|
815
|
-
export const DQCompositeRuleEvaluationMethod = {
|
|
816
|
-
COLUMN: "COLUMN",
|
|
817
|
-
ROW: "ROW",
|
|
818
|
-
};
|
|
819
832
|
export const MaterializedViewRefreshType = {
|
|
820
833
|
FULL: "FULL",
|
|
821
834
|
INCREMENTAL: "INCREMENTAL",
|