@aws-sdk/client-glue 3.965.0 → 3.966.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 +28 -0
- package/dist-cjs/index.js +233 -0
- package/dist-es/Glue.js +8 -0
- package/dist-es/commands/GetMaterializedViewRefreshTaskRunCommand.js +16 -0
- package/dist-es/commands/ListMaterializedViewRefreshTaskRunsCommand.js +16 -0
- package/dist-es/commands/StartMaterializedViewRefreshTaskRunCommand.js +16 -0
- package/dist-es/commands/StopMaterializedViewRefreshTaskRunCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +11 -0
- package/dist-es/models/errors.js +42 -0
- package/dist-es/pagination/ListMaterializedViewRefreshTaskRunsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +101 -1
- package/dist-types/Glue.d.ts +28 -0
- package/dist-types/GlueClient.d.ts +6 -2
- package/dist-types/commands/GetMLTransformCommand.d.ts +2 -1
- package/dist-types/commands/GetMaterializedViewRefreshTaskRunCommand.d.ts +103 -0
- package/dist-types/commands/ListMaterializedViewRefreshTaskRunsCommand.d.ts +106 -0
- package/dist-types/commands/StartMaterializedViewRefreshTaskRunCommand.d.ts +95 -0
- package/dist-types/commands/StopMaterializedViewRefreshTaskRunCommand.d.ts +89 -0
- package/dist-types/commands/UpdateTableCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTableOptimizerCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTriggerCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +27 -0
- package/dist-types/models/errors.d.ts +39 -0
- package/dist-types/models/models_1.d.ts +107 -152
- package/dist-types/models/models_2.d.ts +259 -202
- package/dist-types/models/models_3.d.ts +203 -4
- package/dist-types/pagination/ListMaterializedViewRefreshTaskRunsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +16 -0
- package/dist-types/ts3.4/Glue.d.ts +92 -0
- package/dist-types/ts3.4/GlueClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/GetMLTransformCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetMaterializedViewRefreshTaskRunCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListMaterializedViewRefreshTaskRunsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartMaterializedViewRefreshTaskRunCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopMaterializedViewRefreshTaskRunCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTableOptimizerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTriggerCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +15 -0
- package/dist-types/ts3.4/models/errors.d.ts +33 -0
- package/dist-types/ts3.4/models/models_1.d.ts +26 -30
- package/dist-types/ts3.4/models/models_2.d.ts +59 -50
- package/dist-types/ts3.4/models/models_3.d.ts +50 -0
- package/dist-types/ts3.4/pagination/ListMaterializedViewRefreshTaskRunsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -0
- package/package.json +11 -11
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GlueClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GlueClient";
|
|
8
|
+
import {
|
|
9
|
+
StartMaterializedViewRefreshTaskRunRequest,
|
|
10
|
+
StartMaterializedViewRefreshTaskRunResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartMaterializedViewRefreshTaskRunCommandInput
|
|
15
|
+
extends StartMaterializedViewRefreshTaskRunRequest {}
|
|
16
|
+
export interface StartMaterializedViewRefreshTaskRunCommandOutput
|
|
17
|
+
extends StartMaterializedViewRefreshTaskRunResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartMaterializedViewRefreshTaskRunCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartMaterializedViewRefreshTaskRunCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartMaterializedViewRefreshTaskRunCommandInput,
|
|
24
|
+
StartMaterializedViewRefreshTaskRunCommandOutput,
|
|
25
|
+
GlueClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: StartMaterializedViewRefreshTaskRunCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartMaterializedViewRefreshTaskRunCommandInput,
|
|
33
|
+
StartMaterializedViewRefreshTaskRunCommandOutput,
|
|
34
|
+
GlueClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartMaterializedViewRefreshTaskRunCommand extends StartMaterializedViewRefreshTaskRunCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartMaterializedViewRefreshTaskRunRequest;
|
|
44
|
+
output: StartMaterializedViewRefreshTaskRunResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartMaterializedViewRefreshTaskRunCommandInput;
|
|
48
|
+
output: StartMaterializedViewRefreshTaskRunCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GlueClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GlueClient";
|
|
8
|
+
import {
|
|
9
|
+
StopMaterializedViewRefreshTaskRunRequest,
|
|
10
|
+
StopMaterializedViewRefreshTaskRunResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StopMaterializedViewRefreshTaskRunCommandInput
|
|
15
|
+
extends StopMaterializedViewRefreshTaskRunRequest {}
|
|
16
|
+
export interface StopMaterializedViewRefreshTaskRunCommandOutput
|
|
17
|
+
extends StopMaterializedViewRefreshTaskRunResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StopMaterializedViewRefreshTaskRunCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StopMaterializedViewRefreshTaskRunCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StopMaterializedViewRefreshTaskRunCommandInput,
|
|
24
|
+
StopMaterializedViewRefreshTaskRunCommandOutput,
|
|
25
|
+
GlueClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: StopMaterializedViewRefreshTaskRunCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StopMaterializedViewRefreshTaskRunCommandInput,
|
|
33
|
+
StopMaterializedViewRefreshTaskRunCommandOutput,
|
|
34
|
+
GlueClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StopMaterializedViewRefreshTaskRunCommand extends StopMaterializedViewRefreshTaskRunCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StopMaterializedViewRefreshTaskRunRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StopMaterializedViewRefreshTaskRunCommandInput;
|
|
48
|
+
output: StopMaterializedViewRefreshTaskRunCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GlueClient";
|
|
8
|
-
import { UpdateTableRequest, UpdateTableResponse } from "../models/
|
|
8
|
+
import { UpdateTableRequest, UpdateTableResponse } from "../models/models_3";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface UpdateTableCommandInput extends UpdateTableRequest {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GlueClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
UpdateTriggerRequest,
|
|
10
|
+
UpdateTriggerResponse,
|
|
11
|
+
} from "../models/models_3";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface UpdateTriggerCommandInput extends UpdateTriggerRequest {}
|
|
@@ -132,6 +132,7 @@ export * from "./GetMLTaskRunsCommand";
|
|
|
132
132
|
export * from "./GetMLTransformCommand";
|
|
133
133
|
export * from "./GetMLTransformsCommand";
|
|
134
134
|
export * from "./GetMappingCommand";
|
|
135
|
+
export * from "./GetMaterializedViewRefreshTaskRunCommand";
|
|
135
136
|
export * from "./GetPartitionCommand";
|
|
136
137
|
export * from "./GetPartitionIndexesCommand";
|
|
137
138
|
export * from "./GetPartitionsCommand";
|
|
@@ -183,6 +184,7 @@ export * from "./ListEntitiesCommand";
|
|
|
183
184
|
export * from "./ListIntegrationResourcePropertiesCommand";
|
|
184
185
|
export * from "./ListJobsCommand";
|
|
185
186
|
export * from "./ListMLTransformsCommand";
|
|
187
|
+
export * from "./ListMaterializedViewRefreshTaskRunsCommand";
|
|
186
188
|
export * from "./ListRegistriesCommand";
|
|
187
189
|
export * from "./ListSchemaVersionsCommand";
|
|
188
190
|
export * from "./ListSchemasCommand";
|
|
@@ -217,12 +219,14 @@ export * from "./StartImportLabelsTaskRunCommand";
|
|
|
217
219
|
export * from "./StartJobRunCommand";
|
|
218
220
|
export * from "./StartMLEvaluationTaskRunCommand";
|
|
219
221
|
export * from "./StartMLLabelingSetGenerationTaskRunCommand";
|
|
222
|
+
export * from "./StartMaterializedViewRefreshTaskRunCommand";
|
|
220
223
|
export * from "./StartTriggerCommand";
|
|
221
224
|
export * from "./StartWorkflowRunCommand";
|
|
222
225
|
export * from "./StopColumnStatisticsTaskRunCommand";
|
|
223
226
|
export * from "./StopColumnStatisticsTaskRunScheduleCommand";
|
|
224
227
|
export * from "./StopCrawlerCommand";
|
|
225
228
|
export * from "./StopCrawlerScheduleCommand";
|
|
229
|
+
export * from "./StopMaterializedViewRefreshTaskRunCommand";
|
|
226
230
|
export * from "./StopSessionCommand";
|
|
227
231
|
export * from "./StopTriggerCommand";
|
|
228
232
|
export * from "./StopWorkflowRunCommand";
|
|
@@ -967,6 +967,21 @@ export declare const DQCompositeRuleEvaluationMethod: {
|
|
|
967
967
|
};
|
|
968
968
|
export type DQCompositeRuleEvaluationMethod =
|
|
969
969
|
(typeof DQCompositeRuleEvaluationMethod)[keyof typeof DQCompositeRuleEvaluationMethod];
|
|
970
|
+
export declare const MaterializedViewRefreshType: {
|
|
971
|
+
readonly FULL: "FULL";
|
|
972
|
+
readonly INCREMENTAL: "INCREMENTAL";
|
|
973
|
+
};
|
|
974
|
+
export type MaterializedViewRefreshType =
|
|
975
|
+
(typeof MaterializedViewRefreshType)[keyof typeof MaterializedViewRefreshType];
|
|
976
|
+
export declare const MaterializedViewRefreshState: {
|
|
977
|
+
readonly FAILED: "FAILED";
|
|
978
|
+
readonly RUNNING: "RUNNING";
|
|
979
|
+
readonly STARTING: "STARTING";
|
|
980
|
+
readonly STOPPED: "STOPPED";
|
|
981
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
982
|
+
};
|
|
983
|
+
export type MaterializedViewRefreshState =
|
|
984
|
+
(typeof MaterializedViewRefreshState)[keyof typeof MaterializedViewRefreshState];
|
|
970
985
|
export declare const TaskType: {
|
|
971
986
|
readonly EVALUATION: "EVALUATION";
|
|
972
987
|
readonly EXPORT_LABELS: "EXPORT_LABELS";
|
|
@@ -337,6 +337,17 @@ export declare class SchedulerRunningException extends __BaseException {
|
|
|
337
337
|
opts: __ExceptionOptionType<SchedulerRunningException, __BaseException>
|
|
338
338
|
);
|
|
339
339
|
}
|
|
340
|
+
export declare class MaterializedViewRefreshTaskRunningException extends __BaseException {
|
|
341
|
+
readonly name: "MaterializedViewRefreshTaskRunningException";
|
|
342
|
+
readonly $fault: "client";
|
|
343
|
+
Message?: string | undefined;
|
|
344
|
+
constructor(
|
|
345
|
+
opts: __ExceptionOptionType<
|
|
346
|
+
MaterializedViewRefreshTaskRunningException,
|
|
347
|
+
__BaseException
|
|
348
|
+
>
|
|
349
|
+
);
|
|
350
|
+
}
|
|
340
351
|
export declare class MLTransformNotReadyException extends __BaseException {
|
|
341
352
|
readonly name: "MLTransformNotReadyException";
|
|
342
353
|
readonly $fault: "client";
|
|
@@ -391,6 +402,28 @@ export declare class SchedulerNotRunningException extends __BaseException {
|
|
|
391
402
|
opts: __ExceptionOptionType<SchedulerNotRunningException, __BaseException>
|
|
392
403
|
);
|
|
393
404
|
}
|
|
405
|
+
export declare class MaterializedViewRefreshTaskNotRunningException extends __BaseException {
|
|
406
|
+
readonly name: "MaterializedViewRefreshTaskNotRunningException";
|
|
407
|
+
readonly $fault: "client";
|
|
408
|
+
Message?: string | undefined;
|
|
409
|
+
constructor(
|
|
410
|
+
opts: __ExceptionOptionType<
|
|
411
|
+
MaterializedViewRefreshTaskNotRunningException,
|
|
412
|
+
__BaseException
|
|
413
|
+
>
|
|
414
|
+
);
|
|
415
|
+
}
|
|
416
|
+
export declare class MaterializedViewRefreshTaskStoppingException extends __BaseException {
|
|
417
|
+
readonly name: "MaterializedViewRefreshTaskStoppingException";
|
|
418
|
+
readonly $fault: "client";
|
|
419
|
+
Message?: string | undefined;
|
|
420
|
+
constructor(
|
|
421
|
+
opts: __ExceptionOptionType<
|
|
422
|
+
MaterializedViewRefreshTaskStoppingException,
|
|
423
|
+
__BaseException
|
|
424
|
+
>
|
|
425
|
+
);
|
|
426
|
+
}
|
|
394
427
|
export declare class VersionMismatchException extends __BaseException {
|
|
395
428
|
readonly name: "VersionMismatchException";
|
|
396
429
|
readonly $fault: "client";
|
|
@@ -33,6 +33,8 @@ import {
|
|
|
33
33
|
JobBookmarksEncryptionMode,
|
|
34
34
|
Language,
|
|
35
35
|
LastRefreshType,
|
|
36
|
+
MaterializedViewRefreshState,
|
|
37
|
+
MaterializedViewRefreshType,
|
|
36
38
|
MetadataOperation,
|
|
37
39
|
MLUserDataEncryptionModeString,
|
|
38
40
|
PrincipalType,
|
|
@@ -50,7 +52,6 @@ import {
|
|
|
50
52
|
TaskRunSortColumnType,
|
|
51
53
|
TaskStatusType,
|
|
52
54
|
TaskType,
|
|
53
|
-
TransformStatusType,
|
|
54
55
|
TransformType,
|
|
55
56
|
TriggerType,
|
|
56
57
|
UnnestSpec,
|
|
@@ -1590,6 +1591,30 @@ export interface MappingEntry {
|
|
|
1590
1591
|
export interface GetMappingResponse {
|
|
1591
1592
|
Mapping: MappingEntry[] | undefined;
|
|
1592
1593
|
}
|
|
1594
|
+
export interface GetMaterializedViewRefreshTaskRunRequest {
|
|
1595
|
+
CatalogId: string | undefined;
|
|
1596
|
+
MaterializedViewRefreshTaskRunId: string | undefined;
|
|
1597
|
+
}
|
|
1598
|
+
export interface MaterializedViewRefreshTaskRun {
|
|
1599
|
+
CustomerId?: string | undefined;
|
|
1600
|
+
MaterializedViewRefreshTaskRunId?: string | undefined;
|
|
1601
|
+
DatabaseName?: string | undefined;
|
|
1602
|
+
TableName?: string | undefined;
|
|
1603
|
+
CatalogId?: string | undefined;
|
|
1604
|
+
Role?: string | undefined;
|
|
1605
|
+
Status?: MaterializedViewRefreshState | undefined;
|
|
1606
|
+
CreationTime?: Date | undefined;
|
|
1607
|
+
LastUpdated?: Date | undefined;
|
|
1608
|
+
StartTime?: Date | undefined;
|
|
1609
|
+
EndTime?: Date | undefined;
|
|
1610
|
+
ErrorMessage?: string | undefined;
|
|
1611
|
+
DPUSeconds?: number | undefined;
|
|
1612
|
+
RefreshType?: MaterializedViewRefreshType | undefined;
|
|
1613
|
+
ProcessedBytes?: number | undefined;
|
|
1614
|
+
}
|
|
1615
|
+
export interface GetMaterializedViewRefreshTaskRunResponse {
|
|
1616
|
+
MaterializedViewRefreshTaskRun?: MaterializedViewRefreshTaskRun | undefined;
|
|
1617
|
+
}
|
|
1593
1618
|
export interface GetMLTaskRunRequest {
|
|
1594
1619
|
TransformId: string | undefined;
|
|
1595
1620
|
TaskRunId: string | undefined;
|
|
@@ -1684,32 +1709,3 @@ export interface FindMatchesMetrics {
|
|
|
1684
1709
|
ConfusionMatrix?: ConfusionMatrix | undefined;
|
|
1685
1710
|
ColumnImportances?: ColumnImportance[] | undefined;
|
|
1686
1711
|
}
|
|
1687
|
-
export interface EvaluationMetrics {
|
|
1688
|
-
TransformType: TransformType | undefined;
|
|
1689
|
-
FindMatchesMetrics?: FindMatchesMetrics | undefined;
|
|
1690
|
-
}
|
|
1691
|
-
export interface SchemaColumn {
|
|
1692
|
-
Name?: string | undefined;
|
|
1693
|
-
DataType?: string | undefined;
|
|
1694
|
-
}
|
|
1695
|
-
export interface GetMLTransformResponse {
|
|
1696
|
-
TransformId?: string | undefined;
|
|
1697
|
-
Name?: string | undefined;
|
|
1698
|
-
Description?: string | undefined;
|
|
1699
|
-
Status?: TransformStatusType | undefined;
|
|
1700
|
-
CreatedOn?: Date | undefined;
|
|
1701
|
-
LastModifiedOn?: Date | undefined;
|
|
1702
|
-
InputRecordTables?: GlueTable[] | undefined;
|
|
1703
|
-
Parameters?: TransformParameters | undefined;
|
|
1704
|
-
EvaluationMetrics?: EvaluationMetrics | undefined;
|
|
1705
|
-
LabelCount?: number | undefined;
|
|
1706
|
-
Schema?: SchemaColumn[] | undefined;
|
|
1707
|
-
Role?: string | undefined;
|
|
1708
|
-
GlueVersion?: string | undefined;
|
|
1709
|
-
MaxCapacity?: number | undefined;
|
|
1710
|
-
WorkerType?: WorkerType | undefined;
|
|
1711
|
-
NumberOfWorkers?: number | undefined;
|
|
1712
|
-
Timeout?: number | undefined;
|
|
1713
|
-
MaxRetries?: number | undefined;
|
|
1714
|
-
TransformEncryption?: TransformEncryption | undefined;
|
|
1715
|
-
}
|
|
@@ -42,7 +42,6 @@ import {
|
|
|
42
42
|
TransformStatusType,
|
|
43
43
|
TransformType,
|
|
44
44
|
ViewDialect,
|
|
45
|
-
ViewUpdateAction,
|
|
46
45
|
WorkerType,
|
|
47
46
|
} from "./enums";
|
|
48
47
|
import {
|
|
@@ -54,20 +53,16 @@ import {
|
|
|
54
53
|
DatabaseInput,
|
|
55
54
|
DataQualityTargetTable,
|
|
56
55
|
ErrorDetail,
|
|
57
|
-
EventBatchingCondition,
|
|
58
56
|
LakeFormationConfiguration,
|
|
59
57
|
LineageConfiguration,
|
|
60
58
|
NotificationProperty,
|
|
61
59
|
PartitionInput,
|
|
62
|
-
Predicate,
|
|
63
60
|
RecrawlPolicy,
|
|
64
61
|
SchemaChangePolicy,
|
|
65
62
|
SchemaId,
|
|
66
63
|
TableOptimizer,
|
|
67
|
-
TableOptimizerConfiguration,
|
|
68
64
|
TimestampedInclusionAnnotation,
|
|
69
65
|
Workflow,
|
|
70
|
-
Action,
|
|
71
66
|
CustomEntityType,
|
|
72
67
|
DataSource,
|
|
73
68
|
GlueTable,
|
|
@@ -83,7 +78,7 @@ import {
|
|
|
83
78
|
DataCatalogEncryptionSettings,
|
|
84
79
|
DataQualityEvaluationRunAdditionalRunOptions,
|
|
85
80
|
EncryptionConfiguration,
|
|
86
|
-
|
|
81
|
+
FindMatchesMetrics,
|
|
87
82
|
IcebergPartitionSpec,
|
|
88
83
|
IcebergSchema,
|
|
89
84
|
IcebergSortOrder,
|
|
@@ -94,7 +89,6 @@ import {
|
|
|
94
89
|
RegistryId,
|
|
95
90
|
SourceProcessingProperties,
|
|
96
91
|
SourceTableConfig,
|
|
97
|
-
TableInput,
|
|
98
92
|
TargetProcessingProperties,
|
|
99
93
|
TargetTableConfig,
|
|
100
94
|
TransformEncryption,
|
|
@@ -103,11 +97,40 @@ import {
|
|
|
103
97
|
ColumnStatistics,
|
|
104
98
|
IntegrationError,
|
|
105
99
|
MappingEntry,
|
|
100
|
+
MaterializedViewRefreshTaskRun,
|
|
106
101
|
ResourceUri,
|
|
107
|
-
SchemaColumn,
|
|
108
102
|
Session,
|
|
109
103
|
Tag,
|
|
110
104
|
} from "./models_1";
|
|
105
|
+
export interface EvaluationMetrics {
|
|
106
|
+
TransformType: TransformType | undefined;
|
|
107
|
+
FindMatchesMetrics?: FindMatchesMetrics | undefined;
|
|
108
|
+
}
|
|
109
|
+
export interface SchemaColumn {
|
|
110
|
+
Name?: string | undefined;
|
|
111
|
+
DataType?: string | undefined;
|
|
112
|
+
}
|
|
113
|
+
export interface GetMLTransformResponse {
|
|
114
|
+
TransformId?: string | undefined;
|
|
115
|
+
Name?: string | undefined;
|
|
116
|
+
Description?: string | undefined;
|
|
117
|
+
Status?: TransformStatusType | undefined;
|
|
118
|
+
CreatedOn?: Date | undefined;
|
|
119
|
+
LastModifiedOn?: Date | undefined;
|
|
120
|
+
InputRecordTables?: GlueTable[] | undefined;
|
|
121
|
+
Parameters?: TransformParameters | undefined;
|
|
122
|
+
EvaluationMetrics?: EvaluationMetrics | undefined;
|
|
123
|
+
LabelCount?: number | undefined;
|
|
124
|
+
Schema?: SchemaColumn[] | undefined;
|
|
125
|
+
Role?: string | undefined;
|
|
126
|
+
GlueVersion?: string | undefined;
|
|
127
|
+
MaxCapacity?: number | undefined;
|
|
128
|
+
WorkerType?: WorkerType | undefined;
|
|
129
|
+
NumberOfWorkers?: number | undefined;
|
|
130
|
+
Timeout?: number | undefined;
|
|
131
|
+
MaxRetries?: number | undefined;
|
|
132
|
+
TransformEncryption?: TransformEncryption | undefined;
|
|
133
|
+
}
|
|
111
134
|
export interface TransformFilterCriteria {
|
|
112
135
|
Name?: string | undefined;
|
|
113
136
|
TransformType?: TransformType | undefined;
|
|
@@ -881,6 +904,19 @@ export interface ListJobsResponse {
|
|
|
881
904
|
JobNames?: string[] | undefined;
|
|
882
905
|
NextToken?: string | undefined;
|
|
883
906
|
}
|
|
907
|
+
export interface ListMaterializedViewRefreshTaskRunsRequest {
|
|
908
|
+
CatalogId: string | undefined;
|
|
909
|
+
DatabaseName?: string | undefined;
|
|
910
|
+
TableName?: string | undefined;
|
|
911
|
+
MaxResults?: number | undefined;
|
|
912
|
+
NextToken?: string | undefined;
|
|
913
|
+
}
|
|
914
|
+
export interface ListMaterializedViewRefreshTaskRunsResponse {
|
|
915
|
+
MaterializedViewRefreshTaskRuns?:
|
|
916
|
+
| MaterializedViewRefreshTaskRun[]
|
|
917
|
+
| undefined;
|
|
918
|
+
NextToken?: string | undefined;
|
|
919
|
+
}
|
|
884
920
|
export interface ListMLTransformsRequest {
|
|
885
921
|
NextToken?: string | undefined;
|
|
886
922
|
MaxResults?: number | undefined;
|
|
@@ -1260,6 +1296,15 @@ export interface StartJobRunRequest {
|
|
|
1260
1296
|
export interface StartJobRunResponse {
|
|
1261
1297
|
JobRunId?: string | undefined;
|
|
1262
1298
|
}
|
|
1299
|
+
export interface StartMaterializedViewRefreshTaskRunRequest {
|
|
1300
|
+
CatalogId: string | undefined;
|
|
1301
|
+
DatabaseName: string | undefined;
|
|
1302
|
+
TableName: string | undefined;
|
|
1303
|
+
FullRefresh?: boolean | undefined;
|
|
1304
|
+
}
|
|
1305
|
+
export interface StartMaterializedViewRefreshTaskRunResponse {
|
|
1306
|
+
MaterializedViewRefreshTaskRunId?: string | undefined;
|
|
1307
|
+
}
|
|
1263
1308
|
export interface StartMLEvaluationTaskRunRequest {
|
|
1264
1309
|
TransformId: string | undefined;
|
|
1265
1310
|
}
|
|
@@ -1304,6 +1349,12 @@ export interface StopCrawlerScheduleRequest {
|
|
|
1304
1349
|
CrawlerName: string | undefined;
|
|
1305
1350
|
}
|
|
1306
1351
|
export interface StopCrawlerScheduleResponse {}
|
|
1352
|
+
export interface StopMaterializedViewRefreshTaskRunRequest {
|
|
1353
|
+
CatalogId: string | undefined;
|
|
1354
|
+
DatabaseName: string | undefined;
|
|
1355
|
+
TableName: string | undefined;
|
|
1356
|
+
}
|
|
1357
|
+
export interface StopMaterializedViewRefreshTaskRunResponse {}
|
|
1307
1358
|
export interface StopSessionRequest {
|
|
1308
1359
|
Id: string | undefined;
|
|
1309
1360
|
RequestOrigin?: string | undefined;
|
|
@@ -1598,45 +1649,3 @@ export interface IcebergTableUpdate {
|
|
|
1598
1649
|
EncryptionKey?: IcebergEncryptedKey | undefined;
|
|
1599
1650
|
KeyId?: string | undefined;
|
|
1600
1651
|
}
|
|
1601
|
-
export interface UpdateIcebergTableInput {
|
|
1602
|
-
Updates: IcebergTableUpdate[] | undefined;
|
|
1603
|
-
}
|
|
1604
|
-
export interface UpdateIcebergInput {
|
|
1605
|
-
UpdateIcebergTableInput: UpdateIcebergTableInput | undefined;
|
|
1606
|
-
}
|
|
1607
|
-
export interface UpdateOpenTableFormatInput {
|
|
1608
|
-
UpdateIcebergInput?: UpdateIcebergInput | undefined;
|
|
1609
|
-
}
|
|
1610
|
-
export interface UpdateTableRequest {
|
|
1611
|
-
CatalogId?: string | undefined;
|
|
1612
|
-
DatabaseName: string | undefined;
|
|
1613
|
-
Name?: string | undefined;
|
|
1614
|
-
TableInput?: TableInput | undefined;
|
|
1615
|
-
SkipArchive?: boolean | undefined;
|
|
1616
|
-
TransactionId?: string | undefined;
|
|
1617
|
-
VersionId?: string | undefined;
|
|
1618
|
-
ViewUpdateAction?: ViewUpdateAction | undefined;
|
|
1619
|
-
Force?: boolean | undefined;
|
|
1620
|
-
UpdateOpenTableFormatInput?: UpdateOpenTableFormatInput | undefined;
|
|
1621
|
-
}
|
|
1622
|
-
export interface UpdateTableResponse {}
|
|
1623
|
-
export interface UpdateTableOptimizerRequest {
|
|
1624
|
-
CatalogId: string | undefined;
|
|
1625
|
-
DatabaseName: string | undefined;
|
|
1626
|
-
TableName: string | undefined;
|
|
1627
|
-
Type: TableOptimizerType | undefined;
|
|
1628
|
-
TableOptimizerConfiguration: TableOptimizerConfiguration | undefined;
|
|
1629
|
-
}
|
|
1630
|
-
export interface UpdateTableOptimizerResponse {}
|
|
1631
|
-
export interface TriggerUpdate {
|
|
1632
|
-
Name?: string | undefined;
|
|
1633
|
-
Description?: string | undefined;
|
|
1634
|
-
Schedule?: string | undefined;
|
|
1635
|
-
Actions?: Action[] | undefined;
|
|
1636
|
-
Predicate?: Predicate | undefined;
|
|
1637
|
-
EventBatchingCondition?: EventBatchingCondition | undefined;
|
|
1638
|
-
}
|
|
1639
|
-
export interface UpdateTriggerRequest {
|
|
1640
|
-
Name: string | undefined;
|
|
1641
|
-
TriggerUpdate: TriggerUpdate | undefined;
|
|
1642
|
-
}
|
|
@@ -4,6 +4,8 @@ import {
|
|
|
4
4
|
Permission,
|
|
5
5
|
ResourceAction,
|
|
6
6
|
ResourceState,
|
|
7
|
+
TableOptimizerType,
|
|
8
|
+
ViewUpdateAction,
|
|
7
9
|
WorkerType,
|
|
8
10
|
} from "./enums";
|
|
9
11
|
import {
|
|
@@ -34,6 +36,7 @@ import {
|
|
|
34
36
|
ErrorDetail,
|
|
35
37
|
EvaluateDataQuality,
|
|
36
38
|
EvaluateDataQualityMultiFrame,
|
|
39
|
+
EventBatchingCondition,
|
|
37
40
|
ExecutionProperty,
|
|
38
41
|
FillMissingValues,
|
|
39
42
|
Filter,
|
|
@@ -54,6 +57,7 @@ import {
|
|
|
54
57
|
PIIDetection,
|
|
55
58
|
PostgreSQLCatalogSource,
|
|
56
59
|
PostgreSQLCatalogTarget,
|
|
60
|
+
Predicate,
|
|
57
61
|
Recipe,
|
|
58
62
|
RedshiftSource,
|
|
59
63
|
RedshiftTarget,
|
|
@@ -91,21 +95,67 @@ import {
|
|
|
91
95
|
Spigot,
|
|
92
96
|
SplitFields,
|
|
93
97
|
StorageDescriptor,
|
|
98
|
+
TableOptimizerConfiguration,
|
|
94
99
|
Trigger,
|
|
95
100
|
Union,
|
|
101
|
+
Action,
|
|
96
102
|
Column,
|
|
97
103
|
} from "./models_0";
|
|
98
104
|
import {
|
|
99
105
|
ProfileConfiguration,
|
|
100
106
|
TableIdentifier,
|
|
107
|
+
TableInput,
|
|
101
108
|
UserDefinedFunctionInput,
|
|
102
109
|
} from "./models_1";
|
|
103
110
|
import {
|
|
104
111
|
FederatedTable,
|
|
105
112
|
ViewDefinition,
|
|
106
113
|
ColumnRowFilter,
|
|
114
|
+
IcebergTableUpdate,
|
|
107
115
|
ViewValidation,
|
|
108
116
|
} from "./models_2";
|
|
117
|
+
export interface UpdateIcebergTableInput {
|
|
118
|
+
Updates: IcebergTableUpdate[] | undefined;
|
|
119
|
+
}
|
|
120
|
+
export interface UpdateIcebergInput {
|
|
121
|
+
UpdateIcebergTableInput: UpdateIcebergTableInput | undefined;
|
|
122
|
+
}
|
|
123
|
+
export interface UpdateOpenTableFormatInput {
|
|
124
|
+
UpdateIcebergInput?: UpdateIcebergInput | undefined;
|
|
125
|
+
}
|
|
126
|
+
export interface UpdateTableRequest {
|
|
127
|
+
CatalogId?: string | undefined;
|
|
128
|
+
DatabaseName: string | undefined;
|
|
129
|
+
Name?: string | undefined;
|
|
130
|
+
TableInput?: TableInput | undefined;
|
|
131
|
+
SkipArchive?: boolean | undefined;
|
|
132
|
+
TransactionId?: string | undefined;
|
|
133
|
+
VersionId?: string | undefined;
|
|
134
|
+
ViewUpdateAction?: ViewUpdateAction | undefined;
|
|
135
|
+
Force?: boolean | undefined;
|
|
136
|
+
UpdateOpenTableFormatInput?: UpdateOpenTableFormatInput | undefined;
|
|
137
|
+
}
|
|
138
|
+
export interface UpdateTableResponse {}
|
|
139
|
+
export interface UpdateTableOptimizerRequest {
|
|
140
|
+
CatalogId: string | undefined;
|
|
141
|
+
DatabaseName: string | undefined;
|
|
142
|
+
TableName: string | undefined;
|
|
143
|
+
Type: TableOptimizerType | undefined;
|
|
144
|
+
TableOptimizerConfiguration: TableOptimizerConfiguration | undefined;
|
|
145
|
+
}
|
|
146
|
+
export interface UpdateTableOptimizerResponse {}
|
|
147
|
+
export interface TriggerUpdate {
|
|
148
|
+
Name?: string | undefined;
|
|
149
|
+
Description?: string | undefined;
|
|
150
|
+
Schedule?: string | undefined;
|
|
151
|
+
Actions?: Action[] | undefined;
|
|
152
|
+
Predicate?: Predicate | undefined;
|
|
153
|
+
EventBatchingCondition?: EventBatchingCondition | undefined;
|
|
154
|
+
}
|
|
155
|
+
export interface UpdateTriggerRequest {
|
|
156
|
+
Name: string | undefined;
|
|
157
|
+
TriggerUpdate: TriggerUpdate | undefined;
|
|
158
|
+
}
|
|
109
159
|
export interface UpdateTriggerResponse {
|
|
110
160
|
Trigger?: Trigger | undefined;
|
|
111
161
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListMaterializedViewRefreshTaskRunsCommandInput,
|
|
4
|
+
ListMaterializedViewRefreshTaskRunsCommandOutput,
|
|
5
|
+
} from "../commands/ListMaterializedViewRefreshTaskRunsCommand";
|
|
6
|
+
import { GluePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListMaterializedViewRefreshTaskRuns: (
|
|
8
|
+
config: GluePaginationConfiguration,
|
|
9
|
+
input: ListMaterializedViewRefreshTaskRunsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListMaterializedViewRefreshTaskRunsCommandOutput>;
|
|
@@ -34,6 +34,7 @@ export * from "./ListDataQualityRulesetsPaginator";
|
|
|
34
34
|
export * from "./ListDevEndpointsPaginator";
|
|
35
35
|
export * from "./ListEntitiesPaginator";
|
|
36
36
|
export * from "./ListJobsPaginator";
|
|
37
|
+
export * from "./ListMaterializedViewRefreshTaskRunsPaginator";
|
|
37
38
|
export * from "./ListMLTransformsPaginator";
|
|
38
39
|
export * from "./ListRegistriesPaginator";
|
|
39
40
|
export * from "./ListSchemasPaginator";
|