@aws-sdk/client-glue 3.830.0 → 3.835.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 +54 -23
- package/dist-es/models/models_0.js +6 -7
- package/dist-es/models/models_1.js +7 -11
- package/dist-es/models/models_2.js +11 -0
- package/dist-es/protocols/Aws_json1_1.js +23 -0
- package/dist-types/commands/BatchGetDataQualityResultCommand.d.ts +11 -0
- package/dist-types/commands/BatchGetTableOptimizerCommand.d.ts +6 -0
- package/dist-types/commands/CreateTableOptimizerCommand.d.ts +5 -0
- package/dist-types/commands/GetColumnStatisticsForTableCommand.d.ts +2 -1
- package/dist-types/commands/GetColumnStatisticsTaskRunCommand.d.ts +1 -2
- package/dist-types/commands/GetDataQualityResultCommand.d.ts +11 -0
- package/dist-types/commands/GetTableOptimizerCommand.d.ts +6 -0
- package/dist-types/commands/ListTableOptimizerRunsCommand.d.ts +1 -0
- package/dist-types/commands/RemoveSchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/commands/ResetJobBookmarkCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTableOptimizerCommand.d.ts +5 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +139 -179
- package/dist-types/models/models_1.d.ts +181 -53
- package/dist-types/models/models_2.d.ts +62 -97
- package/dist-types/models/models_3.d.ts +97 -1
- package/dist-types/ts3.4/commands/GetColumnStatisticsForTableCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetColumnStatisticsTaskRunCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/RemoveSchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResetJobBookmarkCommand.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +4 -1
- package/dist-types/ts3.4/models/models_0.d.ts +25 -43
- package/dist-types/ts3.4/models/models_1.d.ts +46 -23
- package/dist-types/ts3.4/models/models_2.d.ts +28 -27
- package/dist-types/ts3.4/models/models_3.d.ts +25 -0
- package/package.json +11 -11
package/dist-cjs/index.js
CHANGED
|
@@ -65,6 +65,7 @@ __export(index_exports, {
|
|
|
65
65
|
ColumnStatisticsTaskRunningException: () => ColumnStatisticsTaskRunningException,
|
|
66
66
|
ColumnStatisticsTaskStoppingException: () => ColumnStatisticsTaskStoppingException,
|
|
67
67
|
ColumnStatisticsType: () => ColumnStatisticsType,
|
|
68
|
+
CompactionStrategy: () => CompactionStrategy,
|
|
68
69
|
Comparator: () => Comparator,
|
|
69
70
|
Compatibility: () => Compatibility,
|
|
70
71
|
CompressionType: () => CompressionType,
|
|
@@ -1318,6 +1319,11 @@ var TableOptimizerType = {
|
|
|
1318
1319
|
ORPHAN_FILE_DELETION: "orphan_file_deletion",
|
|
1319
1320
|
RETENTION: "retention"
|
|
1320
1321
|
};
|
|
1322
|
+
var CompactionStrategy = {
|
|
1323
|
+
BINPACK: "binpack",
|
|
1324
|
+
SORT: "sort",
|
|
1325
|
+
ZORDER: "z-order"
|
|
1326
|
+
};
|
|
1321
1327
|
var TableOptimizerVpcConfiguration;
|
|
1322
1328
|
((TableOptimizerVpcConfiguration3) => {
|
|
1323
1329
|
TableOptimizerVpcConfiguration3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -1403,13 +1409,6 @@ var NodeType = {
|
|
|
1403
1409
|
JOB: "JOB",
|
|
1404
1410
|
TRIGGER: "TRIGGER"
|
|
1405
1411
|
};
|
|
1406
|
-
var WorkflowRunStatus = {
|
|
1407
|
-
COMPLETED: "COMPLETED",
|
|
1408
|
-
ERROR: "ERROR",
|
|
1409
|
-
RUNNING: "RUNNING",
|
|
1410
|
-
STOPPED: "STOPPED",
|
|
1411
|
-
STOPPING: "STOPPING"
|
|
1412
|
-
};
|
|
1413
1412
|
var BasicAuthenticationCredentialsFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1414
1413
|
...obj,
|
|
1415
1414
|
...obj.Password && { Password: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -1457,7 +1456,8 @@ var DataQualityRuleResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
1457
1456
|
...obj.Description && { Description: import_smithy_client.SENSITIVE_STRING },
|
|
1458
1457
|
...obj.EvaluationMessage && { EvaluationMessage: import_smithy_client.SENSITIVE_STRING },
|
|
1459
1458
|
...obj.EvaluatedMetrics && { EvaluatedMetrics: import_smithy_client.SENSITIVE_STRING },
|
|
1460
|
-
...obj.EvaluatedRule && { EvaluatedRule: import_smithy_client.SENSITIVE_STRING }
|
|
1459
|
+
...obj.EvaluatedRule && { EvaluatedRule: import_smithy_client.SENSITIVE_STRING },
|
|
1460
|
+
...obj.RuleMetrics && { RuleMetrics: import_smithy_client.SENSITIVE_STRING }
|
|
1461
1461
|
}), "DataQualityRuleResultFilterSensitiveLog");
|
|
1462
1462
|
var DataQualityResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1463
1463
|
...obj,
|
|
@@ -1474,6 +1474,13 @@ var BatchGetDataQualityResultResponseFilterSensitiveLog = /* @__PURE__ */ __name
|
|
|
1474
1474
|
}), "BatchGetDataQualityResultResponseFilterSensitiveLog");
|
|
1475
1475
|
|
|
1476
1476
|
// src/models/models_1.ts
|
|
1477
|
+
var WorkflowRunStatus = {
|
|
1478
|
+
COMPLETED: "COMPLETED",
|
|
1479
|
+
ERROR: "ERROR",
|
|
1480
|
+
RUNNING: "RUNNING",
|
|
1481
|
+
STOPPED: "STOPPED",
|
|
1482
|
+
STOPPING: "STOPPING"
|
|
1483
|
+
};
|
|
1477
1484
|
var TaskStatusType = {
|
|
1478
1485
|
FAILED: "FAILED",
|
|
1479
1486
|
RUNNING: "RUNNING",
|
|
@@ -2200,17 +2207,6 @@ var ColumnStatisticsType = {
|
|
|
2200
2207
|
LONG: "LONG",
|
|
2201
2208
|
STRING: "STRING"
|
|
2202
2209
|
};
|
|
2203
|
-
var ComputationType = {
|
|
2204
|
-
FULL: "FULL",
|
|
2205
|
-
INCREMENTAL: "INCREMENTAL"
|
|
2206
|
-
};
|
|
2207
|
-
var ColumnStatisticsState = {
|
|
2208
|
-
FAILED: "FAILED",
|
|
2209
|
-
RUNNING: "RUNNING",
|
|
2210
|
-
STARTING: "STARTING",
|
|
2211
|
-
STOPPED: "STOPPED",
|
|
2212
|
-
SUCCEEDED: "SUCCEEDED"
|
|
2213
|
-
};
|
|
2214
2210
|
var ConnectionInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2215
2211
|
...obj,
|
|
2216
2212
|
...obj.AuthenticationConfiguration && {
|
|
@@ -2224,6 +2220,17 @@ var CreateConnectionRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) =>
|
|
|
2224
2220
|
|
|
2225
2221
|
// src/models/models_2.ts
|
|
2226
2222
|
|
|
2223
|
+
var ComputationType = {
|
|
2224
|
+
FULL: "FULL",
|
|
2225
|
+
INCREMENTAL: "INCREMENTAL"
|
|
2226
|
+
};
|
|
2227
|
+
var ColumnStatisticsState = {
|
|
2228
|
+
FAILED: "FAILED",
|
|
2229
|
+
RUNNING: "RUNNING",
|
|
2230
|
+
STARTING: "STARTING",
|
|
2231
|
+
STOPPED: "STOPPED",
|
|
2232
|
+
SUCCEEDED: "SUCCEEDED"
|
|
2233
|
+
};
|
|
2227
2234
|
var ExecutionStatus = {
|
|
2228
2235
|
FAILED: "FAILED",
|
|
2229
2236
|
STARTED: "STARTED"
|
|
@@ -9585,6 +9592,16 @@ var de_DatabaseList = /* @__PURE__ */ __name((output, context) => {
|
|
|
9585
9592
|
});
|
|
9586
9593
|
return retVal;
|
|
9587
9594
|
}, "de_DatabaseList");
|
|
9595
|
+
var de_DataQualityAggregatedMetrics = /* @__PURE__ */ __name((output, context) => {
|
|
9596
|
+
return (0, import_smithy_client.take)(output, {
|
|
9597
|
+
TotalRowsFailed: import_smithy_client.limitedParseDouble,
|
|
9598
|
+
TotalRowsPassed: import_smithy_client.limitedParseDouble,
|
|
9599
|
+
TotalRowsProcessed: import_smithy_client.limitedParseDouble,
|
|
9600
|
+
TotalRulesFailed: import_smithy_client.limitedParseDouble,
|
|
9601
|
+
TotalRulesPassed: import_smithy_client.limitedParseDouble,
|
|
9602
|
+
TotalRulesProcessed: import_smithy_client.limitedParseDouble
|
|
9603
|
+
});
|
|
9604
|
+
}, "de_DataQualityAggregatedMetrics");
|
|
9588
9605
|
var de_DataQualityAnalyzerResult = /* @__PURE__ */ __name((output, context) => {
|
|
9589
9606
|
return (0, import_smithy_client.take)(output, {
|
|
9590
9607
|
Description: import_smithy_client.expectString,
|
|
@@ -9621,6 +9638,7 @@ var de_DataQualityObservations = /* @__PURE__ */ __name((output, context) => {
|
|
|
9621
9638
|
}, "de_DataQualityObservations");
|
|
9622
9639
|
var de_DataQualityResult = /* @__PURE__ */ __name((output, context) => {
|
|
9623
9640
|
return (0, import_smithy_client.take)(output, {
|
|
9641
|
+
AggregatedMetrics: /* @__PURE__ */ __name((_) => de_DataQualityAggregatedMetrics(_, context), "AggregatedMetrics"),
|
|
9624
9642
|
AnalyzerResults: /* @__PURE__ */ __name((_) => de_DataQualityAnalyzerResults(_, context), "AnalyzerResults"),
|
|
9625
9643
|
CompletedOn: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CompletedOn"),
|
|
9626
9644
|
DataSource: import_smithy_client._json,
|
|
@@ -9679,7 +9697,8 @@ var de_DataQualityRuleResult = /* @__PURE__ */ __name((output, context) => {
|
|
|
9679
9697
|
EvaluatedRule: import_smithy_client.expectString,
|
|
9680
9698
|
EvaluationMessage: import_smithy_client.expectString,
|
|
9681
9699
|
Name: import_smithy_client.expectString,
|
|
9682
|
-
Result: import_smithy_client.expectString
|
|
9700
|
+
Result: import_smithy_client.expectString,
|
|
9701
|
+
RuleMetrics: /* @__PURE__ */ __name((_) => de_RuleMetricsMap(_, context), "RuleMetrics")
|
|
9683
9702
|
});
|
|
9684
9703
|
}, "de_DataQualityRuleResult");
|
|
9685
9704
|
var de_DataQualityRuleResults = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -10010,6 +10029,7 @@ var de_GetDataQualityModelResultResponse = /* @__PURE__ */ __name((output, conte
|
|
|
10010
10029
|
}, "de_GetDataQualityModelResultResponse");
|
|
10011
10030
|
var de_GetDataQualityResultResponse = /* @__PURE__ */ __name((output, context) => {
|
|
10012
10031
|
return (0, import_smithy_client.take)(output, {
|
|
10032
|
+
AggregatedMetrics: /* @__PURE__ */ __name((_) => de_DataQualityAggregatedMetrics(_, context), "AggregatedMetrics"),
|
|
10013
10033
|
AnalyzerResults: /* @__PURE__ */ __name((_) => de_DataQualityAnalyzerResults(_, context), "AnalyzerResults"),
|
|
10014
10034
|
CompletedOn: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CompletedOn"),
|
|
10015
10035
|
DataSource: import_smithy_client._json,
|
|
@@ -10756,6 +10776,15 @@ var de_RetentionMetrics = /* @__PURE__ */ __name((output, context) => {
|
|
|
10756
10776
|
IcebergMetrics: /* @__PURE__ */ __name((_) => de_IcebergRetentionMetrics(_, context), "IcebergMetrics")
|
|
10757
10777
|
});
|
|
10758
10778
|
}, "de_RetentionMetrics");
|
|
10779
|
+
var de_RuleMetricsMap = /* @__PURE__ */ __name((output, context) => {
|
|
10780
|
+
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
10781
|
+
if (value === null) {
|
|
10782
|
+
return acc;
|
|
10783
|
+
}
|
|
10784
|
+
acc[key] = (0, import_smithy_client.limitedParseDouble)(value);
|
|
10785
|
+
return acc;
|
|
10786
|
+
}, {});
|
|
10787
|
+
}, "de_RuleMetricsMap");
|
|
10759
10788
|
var de_SearchTablesResponse = /* @__PURE__ */ __name((output, context) => {
|
|
10760
10789
|
return (0, import_smithy_client.take)(output, {
|
|
10761
10790
|
NextToken: import_smithy_client.expectString,
|
|
@@ -10934,6 +10963,7 @@ var de_TableOptimizer = /* @__PURE__ */ __name((output, context) => {
|
|
|
10934
10963
|
var de_TableOptimizerRun = /* @__PURE__ */ __name((output, context) => {
|
|
10935
10964
|
return (0, import_smithy_client.take)(output, {
|
|
10936
10965
|
compactionMetrics: /* @__PURE__ */ __name((_) => de_CompactionMetrics(_, context), "compactionMetrics"),
|
|
10966
|
+
compactionStrategy: import_smithy_client.expectString,
|
|
10937
10967
|
endTimestamp: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "endTimestamp"),
|
|
10938
10968
|
error: import_smithy_client.expectString,
|
|
10939
10969
|
eventType: import_smithy_client.expectString,
|
|
@@ -15765,6 +15795,7 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
|
|
|
15765
15795
|
FederationSourceRetryableException,
|
|
15766
15796
|
InvalidStateException,
|
|
15767
15797
|
TableOptimizerType,
|
|
15798
|
+
CompactionStrategy,
|
|
15768
15799
|
TableOptimizerVpcConfiguration,
|
|
15769
15800
|
TableOptimizerEventType,
|
|
15770
15801
|
ThrottlingException,
|
|
@@ -15775,7 +15806,6 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
|
|
|
15775
15806
|
TriggerState,
|
|
15776
15807
|
TriggerType,
|
|
15777
15808
|
NodeType,
|
|
15778
|
-
WorkflowRunStatus,
|
|
15779
15809
|
BasicAuthenticationCredentialsFilterSensitiveLog,
|
|
15780
15810
|
AuthorizationCodePropertiesFilterSensitiveLog,
|
|
15781
15811
|
OAuth2CredentialsFilterSensitiveLog,
|
|
@@ -15786,6 +15816,7 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
|
|
|
15786
15816
|
DataQualityRuleResultFilterSensitiveLog,
|
|
15787
15817
|
DataQualityResultFilterSensitiveLog,
|
|
15788
15818
|
BatchGetDataQualityResultResponseFilterSensitiveLog,
|
|
15819
|
+
WorkflowRunStatus,
|
|
15789
15820
|
TaskStatusType,
|
|
15790
15821
|
IllegalSessionStateException,
|
|
15791
15822
|
DataFormat,
|
|
@@ -15836,10 +15867,10 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
|
|
|
15836
15867
|
TargetResourceNotFound,
|
|
15837
15868
|
BlueprintRunState,
|
|
15838
15869
|
ColumnStatisticsType,
|
|
15839
|
-
ComputationType,
|
|
15840
|
-
ColumnStatisticsState,
|
|
15841
15870
|
ConnectionInputFilterSensitiveLog,
|
|
15842
15871
|
CreateConnectionRequestFilterSensitiveLog,
|
|
15872
|
+
ComputationType,
|
|
15873
|
+
ColumnStatisticsState,
|
|
15843
15874
|
ExecutionStatus,
|
|
15844
15875
|
ScheduleType,
|
|
15845
15876
|
SettingSource,
|
|
@@ -497,6 +497,11 @@ export const TableOptimizerType = {
|
|
|
497
497
|
ORPHAN_FILE_DELETION: "orphan_file_deletion",
|
|
498
498
|
RETENTION: "retention",
|
|
499
499
|
};
|
|
500
|
+
export const CompactionStrategy = {
|
|
501
|
+
BINPACK: "binpack",
|
|
502
|
+
SORT: "sort",
|
|
503
|
+
ZORDER: "z-order",
|
|
504
|
+
};
|
|
500
505
|
export var TableOptimizerVpcConfiguration;
|
|
501
506
|
(function (TableOptimizerVpcConfiguration) {
|
|
502
507
|
TableOptimizerVpcConfiguration.visit = (value, visitor) => {
|
|
@@ -573,13 +578,6 @@ export const NodeType = {
|
|
|
573
578
|
JOB: "JOB",
|
|
574
579
|
TRIGGER: "TRIGGER",
|
|
575
580
|
};
|
|
576
|
-
export const WorkflowRunStatus = {
|
|
577
|
-
COMPLETED: "COMPLETED",
|
|
578
|
-
ERROR: "ERROR",
|
|
579
|
-
RUNNING: "RUNNING",
|
|
580
|
-
STOPPED: "STOPPED",
|
|
581
|
-
STOPPING: "STOPPING",
|
|
582
|
-
};
|
|
583
581
|
export const BasicAuthenticationCredentialsFilterSensitiveLog = (obj) => ({
|
|
584
582
|
...obj,
|
|
585
583
|
...(obj.Password && { Password: SENSITIVE_STRING }),
|
|
@@ -626,6 +624,7 @@ export const DataQualityRuleResultFilterSensitiveLog = (obj) => ({
|
|
|
626
624
|
...(obj.EvaluationMessage && { EvaluationMessage: SENSITIVE_STRING }),
|
|
627
625
|
...(obj.EvaluatedMetrics && { EvaluatedMetrics: SENSITIVE_STRING }),
|
|
628
626
|
...(obj.EvaluatedRule && { EvaluatedRule: SENSITIVE_STRING }),
|
|
627
|
+
...(obj.RuleMetrics && { RuleMetrics: SENSITIVE_STRING }),
|
|
629
628
|
});
|
|
630
629
|
export const DataQualityResultFilterSensitiveLog = (obj) => ({
|
|
631
630
|
...obj,
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
2
2
|
import { AuthenticationConfigurationInputFilterSensitiveLog, } from "./models_0";
|
|
3
|
+
export const WorkflowRunStatus = {
|
|
4
|
+
COMPLETED: "COMPLETED",
|
|
5
|
+
ERROR: "ERROR",
|
|
6
|
+
RUNNING: "RUNNING",
|
|
7
|
+
STOPPED: "STOPPED",
|
|
8
|
+
STOPPING: "STOPPING",
|
|
9
|
+
};
|
|
3
10
|
export const TaskStatusType = {
|
|
4
11
|
FAILED: "FAILED",
|
|
5
12
|
RUNNING: "RUNNING",
|
|
@@ -532,17 +539,6 @@ export const ColumnStatisticsType = {
|
|
|
532
539
|
LONG: "LONG",
|
|
533
540
|
STRING: "STRING",
|
|
534
541
|
};
|
|
535
|
-
export const ComputationType = {
|
|
536
|
-
FULL: "FULL",
|
|
537
|
-
INCREMENTAL: "INCREMENTAL",
|
|
538
|
-
};
|
|
539
|
-
export const ColumnStatisticsState = {
|
|
540
|
-
FAILED: "FAILED",
|
|
541
|
-
RUNNING: "RUNNING",
|
|
542
|
-
STARTING: "STARTING",
|
|
543
|
-
STOPPED: "STOPPED",
|
|
544
|
-
SUCCEEDED: "SUCCEEDED",
|
|
545
|
-
};
|
|
546
542
|
export const ConnectionInputFilterSensitiveLog = (obj) => ({
|
|
547
543
|
...obj,
|
|
548
544
|
...(obj.AuthenticationConfiguration && {
|
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
3
|
import { DataQualityAnalyzerResultFilterSensitiveLog, DataQualityObservationFilterSensitiveLog, DataQualityRuleResultFilterSensitiveLog, } from "./models_0";
|
|
4
|
+
export const ComputationType = {
|
|
5
|
+
FULL: "FULL",
|
|
6
|
+
INCREMENTAL: "INCREMENTAL",
|
|
7
|
+
};
|
|
8
|
+
export const ColumnStatisticsState = {
|
|
9
|
+
FAILED: "FAILED",
|
|
10
|
+
RUNNING: "RUNNING",
|
|
11
|
+
STARTING: "STARTING",
|
|
12
|
+
STOPPED: "STOPPED",
|
|
13
|
+
SUCCEEDED: "SUCCEEDED",
|
|
14
|
+
};
|
|
4
15
|
export const ExecutionStatus = {
|
|
5
16
|
FAILED: "FAILED",
|
|
6
17
|
STARTED: "STARTED",
|
|
@@ -6866,6 +6866,16 @@ const de_DatabaseList = (output, context) => {
|
|
|
6866
6866
|
});
|
|
6867
6867
|
return retVal;
|
|
6868
6868
|
};
|
|
6869
|
+
const de_DataQualityAggregatedMetrics = (output, context) => {
|
|
6870
|
+
return take(output, {
|
|
6871
|
+
TotalRowsFailed: __limitedParseDouble,
|
|
6872
|
+
TotalRowsPassed: __limitedParseDouble,
|
|
6873
|
+
TotalRowsProcessed: __limitedParseDouble,
|
|
6874
|
+
TotalRulesFailed: __limitedParseDouble,
|
|
6875
|
+
TotalRulesPassed: __limitedParseDouble,
|
|
6876
|
+
TotalRulesProcessed: __limitedParseDouble,
|
|
6877
|
+
});
|
|
6878
|
+
};
|
|
6869
6879
|
const de_DataQualityAnalyzerResult = (output, context) => {
|
|
6870
6880
|
return take(output, {
|
|
6871
6881
|
Description: __expectString,
|
|
@@ -6906,6 +6916,7 @@ const de_DataQualityObservations = (output, context) => {
|
|
|
6906
6916
|
};
|
|
6907
6917
|
const de_DataQualityResult = (output, context) => {
|
|
6908
6918
|
return take(output, {
|
|
6919
|
+
AggregatedMetrics: (_) => de_DataQualityAggregatedMetrics(_, context),
|
|
6909
6920
|
AnalyzerResults: (_) => de_DataQualityAnalyzerResults(_, context),
|
|
6910
6921
|
CompletedOn: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
6911
6922
|
DataSource: _json,
|
|
@@ -6971,6 +6982,7 @@ const de_DataQualityRuleResult = (output, context) => {
|
|
|
6971
6982
|
EvaluationMessage: __expectString,
|
|
6972
6983
|
Name: __expectString,
|
|
6973
6984
|
Result: __expectString,
|
|
6985
|
+
RuleMetrics: (_) => de_RuleMetricsMap(_, context),
|
|
6974
6986
|
});
|
|
6975
6987
|
};
|
|
6976
6988
|
const de_DataQualityRuleResults = (output, context) => {
|
|
@@ -7311,6 +7323,7 @@ const de_GetDataQualityModelResultResponse = (output, context) => {
|
|
|
7311
7323
|
};
|
|
7312
7324
|
const de_GetDataQualityResultResponse = (output, context) => {
|
|
7313
7325
|
return take(output, {
|
|
7326
|
+
AggregatedMetrics: (_) => de_DataQualityAggregatedMetrics(_, context),
|
|
7314
7327
|
AnalyzerResults: (_) => de_DataQualityAnalyzerResults(_, context),
|
|
7315
7328
|
CompletedOn: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
7316
7329
|
DataSource: _json,
|
|
@@ -8077,6 +8090,15 @@ const de_RetentionMetrics = (output, context) => {
|
|
|
8077
8090
|
IcebergMetrics: (_) => de_IcebergRetentionMetrics(_, context),
|
|
8078
8091
|
});
|
|
8079
8092
|
};
|
|
8093
|
+
const de_RuleMetricsMap = (output, context) => {
|
|
8094
|
+
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
8095
|
+
if (value === null) {
|
|
8096
|
+
return acc;
|
|
8097
|
+
}
|
|
8098
|
+
acc[key] = __limitedParseDouble(value);
|
|
8099
|
+
return acc;
|
|
8100
|
+
}, {});
|
|
8101
|
+
};
|
|
8080
8102
|
const de_SearchTablesResponse = (output, context) => {
|
|
8081
8103
|
return take(output, {
|
|
8082
8104
|
NextToken: __expectString,
|
|
@@ -8267,6 +8289,7 @@ const de_TableOptimizer = (output, context) => {
|
|
|
8267
8289
|
const de_TableOptimizerRun = (output, context) => {
|
|
8268
8290
|
return take(output, {
|
|
8269
8291
|
compactionMetrics: (_) => de_CompactionMetrics(_, context),
|
|
8292
|
+
compactionStrategy: __expectString,
|
|
8270
8293
|
endTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
8271
8294
|
error: __expectString,
|
|
8272
8295
|
eventType: __expectString,
|
|
@@ -75,6 +75,9 @@ declare const BatchGetDataQualityResultCommand_base: {
|
|
|
75
75
|
* // "<keys>": Number("double"),
|
|
76
76
|
* // },
|
|
77
77
|
* // EvaluatedRule: "STRING_VALUE",
|
|
78
|
+
* // RuleMetrics: { // RuleMetricsMap
|
|
79
|
+
* // "<keys>": Number("double"),
|
|
80
|
+
* // },
|
|
78
81
|
* // },
|
|
79
82
|
* // ],
|
|
80
83
|
* // AnalyzerResults: [ // DataQualityAnalyzerResults
|
|
@@ -105,6 +108,14 @@ declare const BatchGetDataQualityResultCommand_base: {
|
|
|
105
108
|
* // },
|
|
106
109
|
* // },
|
|
107
110
|
* // ],
|
|
111
|
+
* // AggregatedMetrics: { // DataQualityAggregatedMetrics
|
|
112
|
+
* // TotalRowsProcessed: Number("double"),
|
|
113
|
+
* // TotalRowsPassed: Number("double"),
|
|
114
|
+
* // TotalRowsFailed: Number("double"),
|
|
115
|
+
* // TotalRulesProcessed: Number("double"),
|
|
116
|
+
* // TotalRulesPassed: Number("double"),
|
|
117
|
+
* // TotalRulesFailed: Number("double"),
|
|
118
|
+
* // },
|
|
108
119
|
* // },
|
|
109
120
|
* // ],
|
|
110
121
|
* // ResultsNotFound: [ // DataQualityResultIds
|
|
@@ -60,6 +60,11 @@ declare const BatchGetTableOptimizerCommand_base: {
|
|
|
60
60
|
* // vpcConfiguration: { // TableOptimizerVpcConfiguration Union: only one key present
|
|
61
61
|
* // glueConnectionName: "STRING_VALUE",
|
|
62
62
|
* // },
|
|
63
|
+
* // compactionConfiguration: { // CompactionConfiguration
|
|
64
|
+
* // icebergConfiguration: { // IcebergCompactionConfiguration
|
|
65
|
+
* // strategy: "binpack" || "sort" || "z-order",
|
|
66
|
+
* // },
|
|
67
|
+
* // },
|
|
63
68
|
* // retentionConfiguration: { // RetentionConfiguration
|
|
64
69
|
* // icebergConfiguration: { // IcebergRetentionConfiguration
|
|
65
70
|
* // snapshotRetentionPeriodInDays: Number("int"),
|
|
@@ -94,6 +99,7 @@ declare const BatchGetTableOptimizerCommand_base: {
|
|
|
94
99
|
* // JobDurationInHour: Number("double"),
|
|
95
100
|
* // },
|
|
96
101
|
* // },
|
|
102
|
+
* // compactionStrategy: "binpack" || "sort" || "z-order",
|
|
97
103
|
* // retentionMetrics: { // RetentionMetrics
|
|
98
104
|
* // IcebergMetrics: { // IcebergRetentionMetrics
|
|
99
105
|
* // NumberOfDataFilesDeleted: Number("long"),
|
|
@@ -45,6 +45,11 @@ declare const CreateTableOptimizerCommand_base: {
|
|
|
45
45
|
* vpcConfiguration: { // TableOptimizerVpcConfiguration Union: only one key present
|
|
46
46
|
* glueConnectionName: "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
|
+
* compactionConfiguration: { // CompactionConfiguration
|
|
49
|
+
* icebergConfiguration: { // IcebergCompactionConfiguration
|
|
50
|
+
* strategy: "binpack" || "sort" || "z-order",
|
|
51
|
+
* },
|
|
52
|
+
* },
|
|
48
53
|
* retentionConfiguration: { // RetentionConfiguration
|
|
49
54
|
* icebergConfiguration: { // IcebergRetentionConfiguration
|
|
50
55
|
* snapshotRetentionPeriodInDays: Number("int"),
|
|
@@ -1,7 +1,8 @@
|
|
|
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 { GetColumnStatisticsForTableRequest
|
|
4
|
+
import { GetColumnStatisticsForTableRequest } from "../models/models_1";
|
|
5
|
+
import { GetColumnStatisticsForTableResponse } from "../models/models_2";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -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 { GetColumnStatisticsTaskRunRequest } from "../models/
|
|
5
|
-
import { GetColumnStatisticsTaskRunResponse } from "../models/models_2";
|
|
4
|
+
import { GetColumnStatisticsTaskRunRequest, GetColumnStatisticsTaskRunResponse } from "../models/models_2";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -71,6 +71,9 @@ declare const GetDataQualityResultCommand_base: {
|
|
|
71
71
|
* // "<keys>": Number("double"),
|
|
72
72
|
* // },
|
|
73
73
|
* // EvaluatedRule: "STRING_VALUE",
|
|
74
|
+
* // RuleMetrics: { // RuleMetricsMap
|
|
75
|
+
* // "<keys>": Number("double"),
|
|
76
|
+
* // },
|
|
74
77
|
* // },
|
|
75
78
|
* // ],
|
|
76
79
|
* // AnalyzerResults: [ // DataQualityAnalyzerResults
|
|
@@ -101,6 +104,14 @@ declare const GetDataQualityResultCommand_base: {
|
|
|
101
104
|
* // },
|
|
102
105
|
* // },
|
|
103
106
|
* // ],
|
|
107
|
+
* // AggregatedMetrics: { // DataQualityAggregatedMetrics
|
|
108
|
+
* // TotalRowsProcessed: Number("double"),
|
|
109
|
+
* // TotalRowsPassed: Number("double"),
|
|
110
|
+
* // TotalRowsFailed: Number("double"),
|
|
111
|
+
* // TotalRulesProcessed: Number("double"),
|
|
112
|
+
* // TotalRulesPassed: Number("double"),
|
|
113
|
+
* // TotalRulesFailed: Number("double"),
|
|
114
|
+
* // },
|
|
104
115
|
* // };
|
|
105
116
|
*
|
|
106
117
|
* ```
|
|
@@ -54,6 +54,11 @@ declare const GetTableOptimizerCommand_base: {
|
|
|
54
54
|
* // vpcConfiguration: { // TableOptimizerVpcConfiguration Union: only one key present
|
|
55
55
|
* // glueConnectionName: "STRING_VALUE",
|
|
56
56
|
* // },
|
|
57
|
+
* // compactionConfiguration: { // CompactionConfiguration
|
|
58
|
+
* // icebergConfiguration: { // IcebergCompactionConfiguration
|
|
59
|
+
* // strategy: "binpack" || "sort" || "z-order",
|
|
60
|
+
* // },
|
|
61
|
+
* // },
|
|
57
62
|
* // retentionConfiguration: { // RetentionConfiguration
|
|
58
63
|
* // icebergConfiguration: { // IcebergRetentionConfiguration
|
|
59
64
|
* // snapshotRetentionPeriodInDays: Number("int"),
|
|
@@ -88,6 +93,7 @@ declare const GetTableOptimizerCommand_base: {
|
|
|
88
93
|
* // JobDurationInHour: Number("double"),
|
|
89
94
|
* // },
|
|
90
95
|
* // },
|
|
96
|
+
* // compactionStrategy: "binpack" || "sort" || "z-order",
|
|
91
97
|
* // retentionMetrics: { // RetentionMetrics
|
|
92
98
|
* // IcebergMetrics: { // IcebergRetentionMetrics
|
|
93
99
|
* // NumberOfDataFilesDeleted: Number("long"),
|
|
@@ -70,6 +70,7 @@ declare const ListTableOptimizerRunsCommand_base: {
|
|
|
70
70
|
* // JobDurationInHour: Number("double"),
|
|
71
71
|
* // },
|
|
72
72
|
* // },
|
|
73
|
+
* // compactionStrategy: "binpack" || "sort" || "z-order",
|
|
73
74
|
* // retentionMetrics: { // RetentionMetrics
|
|
74
75
|
* // IcebergMetrics: { // IcebergRetentionMetrics
|
|
75
76
|
* // NumberOfDataFilesDeleted: Number("long"),
|
|
@@ -1,7 +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 { RemoveSchemaVersionMetadataInput, RemoveSchemaVersionMetadataResponse } from "../models/
|
|
4
|
+
import { RemoveSchemaVersionMetadataInput, RemoveSchemaVersionMetadataResponse } from "../models/models_3";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,7 +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 { ResetJobBookmarkRequest, ResetJobBookmarkResponse } from "../models/
|
|
4
|
+
import { ResetJobBookmarkRequest, ResetJobBookmarkResponse } from "../models/models_3";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -45,6 +45,11 @@ declare const UpdateTableOptimizerCommand_base: {
|
|
|
45
45
|
* vpcConfiguration: { // TableOptimizerVpcConfiguration Union: only one key present
|
|
46
46
|
* glueConnectionName: "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
|
+
* compactionConfiguration: { // CompactionConfiguration
|
|
49
|
+
* icebergConfiguration: { // IcebergCompactionConfiguration
|
|
50
|
+
* strategy: "binpack" || "sort" || "z-order",
|
|
51
|
+
* },
|
|
52
|
+
* },
|
|
48
53
|
* retentionConfiguration: { // RetentionConfiguration
|
|
49
54
|
* icebergConfiguration: { // IcebergRetentionConfiguration
|
|
50
55
|
* snapshotRetentionPeriodInDays: Number("int"),
|
|
@@ -8,7 +8,7 @@ export interface ClientInputEndpointParameters {
|
|
|
8
8
|
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
9
9
|
endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
10
10
|
}
|
|
11
|
-
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
11
|
+
export type ClientResolvedEndpointParameters = Omit<ClientInputEndpointParameters, "endpoint"> & {
|
|
12
12
|
defaultSigningName: string;
|
|
13
13
|
};
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientResolvedEndpointParameters;
|