@aws-sdk/client-glue 3.679.0 → 3.684.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 +49 -1
- package/dist-cjs/index.js +298 -33
- package/dist-es/Glue.js +12 -0
- package/dist-es/commands/CreateColumnStatisticsTaskSettingsCommand.js +22 -0
- package/dist-es/commands/DeleteColumnStatisticsTaskSettingsCommand.js +22 -0
- package/dist-es/commands/GetColumnStatisticsTaskSettingsCommand.js +22 -0
- package/dist-es/commands/StartColumnStatisticsTaskRunScheduleCommand.js +22 -0
- package/dist-es/commands/StopColumnStatisticsTaskRunScheduleCommand.js +22 -0
- package/dist-es/commands/UpdateColumnStatisticsTaskSettingsCommand.js +22 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_1.js +17 -9
- package/dist-es/models/models_2.js +9 -13
- package/dist-es/protocols/Aws_json1_1.js +162 -5
- package/dist-types/Glue.d.ts +42 -0
- package/dist-types/GlueClient.d.ts +8 -2
- package/dist-types/commands/CreateColumnStatisticsTaskSettingsCommand.d.ts +102 -0
- package/dist-types/commands/DeleteColumnStatisticsTaskSettingsCommand.d.ts +79 -0
- package/dist-types/commands/GetColumnStatisticsTaskRunCommand.d.ts +1 -0
- package/dist-types/commands/GetColumnStatisticsTaskRunsCommand.d.ts +1 -0
- package/dist-types/commands/GetColumnStatisticsTaskSettingsCommand.d.ts +95 -0
- package/dist-types/commands/GetMLTaskRunCommand.d.ts +2 -1
- package/dist-types/commands/GetMLTaskRunsCommand.d.ts +1 -1
- package/dist-types/commands/StartColumnStatisticsTaskRunScheduleCommand.d.ts +82 -0
- package/dist-types/commands/StopColumnStatisticsTaskRunScheduleCommand.d.ts +79 -0
- package/dist-types/commands/UpdateColumnStatisticsTaskSettingsCommand.d.ts +93 -0
- package/dist-types/commands/UpdateDevEndpointCommand.d.ts +1 -1
- package/dist-types/commands/UpdateJobCommand.d.ts +1 -2
- package/dist-types/commands/UpdateJobFromSourceControlCommand.d.ts +1 -1
- package/dist-types/commands/UpdateMLTransformCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePartitionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRegistryCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSchemaCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSourceControlFromJobCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_1.d.ts +181 -259
- package/dist-types/models/models_2.d.ts +374 -444
- package/dist-types/models/models_3.d.ts +404 -3
- package/dist-types/protocols/Aws_json1_1.d.ts +54 -0
- package/dist-types/ts3.4/Glue.d.ts +132 -0
- package/dist-types/ts3.4/GlueClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateColumnStatisticsTaskSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteColumnStatisticsTaskSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetColumnStatisticsTaskSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetMLTaskRunCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetMLTaskRunsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartColumnStatisticsTaskRunScheduleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopColumnStatisticsTaskRunScheduleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateColumnStatisticsTaskSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDevEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/UpdateJobFromSourceControlCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateMLTransformCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePartitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSchemaCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSourceControlFromJobCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_1.d.ts +53 -65
- package/dist-types/ts3.4/models/models_2.d.ts +91 -97
- package/dist-types/ts3.4/models/models_3.d.ts +91 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
- package/package.json +6 -6
|
@@ -99,6 +99,10 @@ import {
|
|
|
99
99
|
CreateClassifierCommandInput,
|
|
100
100
|
CreateClassifierCommandOutput,
|
|
101
101
|
} from "./commands/CreateClassifierCommand";
|
|
102
|
+
import {
|
|
103
|
+
CreateColumnStatisticsTaskSettingsCommandInput,
|
|
104
|
+
CreateColumnStatisticsTaskSettingsCommandOutput,
|
|
105
|
+
} from "./commands/CreateColumnStatisticsTaskSettingsCommand";
|
|
102
106
|
import {
|
|
103
107
|
CreateConnectionCommandInput,
|
|
104
108
|
CreateConnectionCommandOutput,
|
|
@@ -199,6 +203,10 @@ import {
|
|
|
199
203
|
DeleteColumnStatisticsForTableCommandInput,
|
|
200
204
|
DeleteColumnStatisticsForTableCommandOutput,
|
|
201
205
|
} from "./commands/DeleteColumnStatisticsForTableCommand";
|
|
206
|
+
import {
|
|
207
|
+
DeleteColumnStatisticsTaskSettingsCommandInput,
|
|
208
|
+
DeleteColumnStatisticsTaskSettingsCommandOutput,
|
|
209
|
+
} from "./commands/DeleteColumnStatisticsTaskSettingsCommand";
|
|
202
210
|
import {
|
|
203
211
|
DeleteConnectionCommandInput,
|
|
204
212
|
DeleteConnectionCommandOutput,
|
|
@@ -331,6 +339,10 @@ import {
|
|
|
331
339
|
GetColumnStatisticsTaskRunsCommandInput,
|
|
332
340
|
GetColumnStatisticsTaskRunsCommandOutput,
|
|
333
341
|
} from "./commands/GetColumnStatisticsTaskRunsCommand";
|
|
342
|
+
import {
|
|
343
|
+
GetColumnStatisticsTaskSettingsCommandInput,
|
|
344
|
+
GetColumnStatisticsTaskSettingsCommandOutput,
|
|
345
|
+
} from "./commands/GetColumnStatisticsTaskSettingsCommand";
|
|
334
346
|
import {
|
|
335
347
|
GetConnectionCommandInput,
|
|
336
348
|
GetConnectionCommandOutput,
|
|
@@ -727,6 +739,10 @@ import {
|
|
|
727
739
|
StartColumnStatisticsTaskRunCommandInput,
|
|
728
740
|
StartColumnStatisticsTaskRunCommandOutput,
|
|
729
741
|
} from "./commands/StartColumnStatisticsTaskRunCommand";
|
|
742
|
+
import {
|
|
743
|
+
StartColumnStatisticsTaskRunScheduleCommandInput,
|
|
744
|
+
StartColumnStatisticsTaskRunScheduleCommandOutput,
|
|
745
|
+
} from "./commands/StartColumnStatisticsTaskRunScheduleCommand";
|
|
730
746
|
import {
|
|
731
747
|
StartCrawlerCommandInput,
|
|
732
748
|
StartCrawlerCommandOutput,
|
|
@@ -775,6 +791,10 @@ import {
|
|
|
775
791
|
StopColumnStatisticsTaskRunCommandInput,
|
|
776
792
|
StopColumnStatisticsTaskRunCommandOutput,
|
|
777
793
|
} from "./commands/StopColumnStatisticsTaskRunCommand";
|
|
794
|
+
import {
|
|
795
|
+
StopColumnStatisticsTaskRunScheduleCommandInput,
|
|
796
|
+
StopColumnStatisticsTaskRunScheduleCommandOutput,
|
|
797
|
+
} from "./commands/StopColumnStatisticsTaskRunScheduleCommand";
|
|
778
798
|
import {
|
|
779
799
|
StopCrawlerCommandInput,
|
|
780
800
|
StopCrawlerCommandOutput,
|
|
@@ -823,6 +843,10 @@ import {
|
|
|
823
843
|
UpdateColumnStatisticsForTableCommandInput,
|
|
824
844
|
UpdateColumnStatisticsForTableCommandOutput,
|
|
825
845
|
} from "./commands/UpdateColumnStatisticsForTableCommand";
|
|
846
|
+
import {
|
|
847
|
+
UpdateColumnStatisticsTaskSettingsCommandInput,
|
|
848
|
+
UpdateColumnStatisticsTaskSettingsCommandOutput,
|
|
849
|
+
} from "./commands/UpdateColumnStatisticsTaskSettingsCommand";
|
|
826
850
|
import {
|
|
827
851
|
UpdateConnectionCommandInput,
|
|
828
852
|
UpdateConnectionCommandOutput,
|
|
@@ -1245,6 +1269,25 @@ export interface Glue {
|
|
|
1245
1269
|
options: __HttpHandlerOptions,
|
|
1246
1270
|
cb: (err: any, data?: CreateClassifierCommandOutput) => void
|
|
1247
1271
|
): void;
|
|
1272
|
+
createColumnStatisticsTaskSettings(
|
|
1273
|
+
args: CreateColumnStatisticsTaskSettingsCommandInput,
|
|
1274
|
+
options?: __HttpHandlerOptions
|
|
1275
|
+
): Promise<CreateColumnStatisticsTaskSettingsCommandOutput>;
|
|
1276
|
+
createColumnStatisticsTaskSettings(
|
|
1277
|
+
args: CreateColumnStatisticsTaskSettingsCommandInput,
|
|
1278
|
+
cb: (
|
|
1279
|
+
err: any,
|
|
1280
|
+
data?: CreateColumnStatisticsTaskSettingsCommandOutput
|
|
1281
|
+
) => void
|
|
1282
|
+
): void;
|
|
1283
|
+
createColumnStatisticsTaskSettings(
|
|
1284
|
+
args: CreateColumnStatisticsTaskSettingsCommandInput,
|
|
1285
|
+
options: __HttpHandlerOptions,
|
|
1286
|
+
cb: (
|
|
1287
|
+
err: any,
|
|
1288
|
+
data?: CreateColumnStatisticsTaskSettingsCommandOutput
|
|
1289
|
+
) => void
|
|
1290
|
+
): void;
|
|
1248
1291
|
createConnection(
|
|
1249
1292
|
args: CreateConnectionCommandInput,
|
|
1250
1293
|
options?: __HttpHandlerOptions
|
|
@@ -1577,6 +1620,25 @@ export interface Glue {
|
|
|
1577
1620
|
options: __HttpHandlerOptions,
|
|
1578
1621
|
cb: (err: any, data?: DeleteColumnStatisticsForTableCommandOutput) => void
|
|
1579
1622
|
): void;
|
|
1623
|
+
deleteColumnStatisticsTaskSettings(
|
|
1624
|
+
args: DeleteColumnStatisticsTaskSettingsCommandInput,
|
|
1625
|
+
options?: __HttpHandlerOptions
|
|
1626
|
+
): Promise<DeleteColumnStatisticsTaskSettingsCommandOutput>;
|
|
1627
|
+
deleteColumnStatisticsTaskSettings(
|
|
1628
|
+
args: DeleteColumnStatisticsTaskSettingsCommandInput,
|
|
1629
|
+
cb: (
|
|
1630
|
+
err: any,
|
|
1631
|
+
data?: DeleteColumnStatisticsTaskSettingsCommandOutput
|
|
1632
|
+
) => void
|
|
1633
|
+
): void;
|
|
1634
|
+
deleteColumnStatisticsTaskSettings(
|
|
1635
|
+
args: DeleteColumnStatisticsTaskSettingsCommandInput,
|
|
1636
|
+
options: __HttpHandlerOptions,
|
|
1637
|
+
cb: (
|
|
1638
|
+
err: any,
|
|
1639
|
+
data?: DeleteColumnStatisticsTaskSettingsCommandOutput
|
|
1640
|
+
) => void
|
|
1641
|
+
): void;
|
|
1580
1642
|
deleteConnection(
|
|
1581
1643
|
args: DeleteConnectionCommandInput,
|
|
1582
1644
|
options?: __HttpHandlerOptions
|
|
@@ -2009,6 +2071,19 @@ export interface Glue {
|
|
|
2009
2071
|
options: __HttpHandlerOptions,
|
|
2010
2072
|
cb: (err: any, data?: GetColumnStatisticsTaskRunsCommandOutput) => void
|
|
2011
2073
|
): void;
|
|
2074
|
+
getColumnStatisticsTaskSettings(
|
|
2075
|
+
args: GetColumnStatisticsTaskSettingsCommandInput,
|
|
2076
|
+
options?: __HttpHandlerOptions
|
|
2077
|
+
): Promise<GetColumnStatisticsTaskSettingsCommandOutput>;
|
|
2078
|
+
getColumnStatisticsTaskSettings(
|
|
2079
|
+
args: GetColumnStatisticsTaskSettingsCommandInput,
|
|
2080
|
+
cb: (err: any, data?: GetColumnStatisticsTaskSettingsCommandOutput) => void
|
|
2081
|
+
): void;
|
|
2082
|
+
getColumnStatisticsTaskSettings(
|
|
2083
|
+
args: GetColumnStatisticsTaskSettingsCommandInput,
|
|
2084
|
+
options: __HttpHandlerOptions,
|
|
2085
|
+
cb: (err: any, data?: GetColumnStatisticsTaskSettingsCommandOutput) => void
|
|
2086
|
+
): void;
|
|
2012
2087
|
getConnection(
|
|
2013
2088
|
args: GetConnectionCommandInput,
|
|
2014
2089
|
options?: __HttpHandlerOptions
|
|
@@ -3362,6 +3437,25 @@ export interface Glue {
|
|
|
3362
3437
|
options: __HttpHandlerOptions,
|
|
3363
3438
|
cb: (err: any, data?: StartColumnStatisticsTaskRunCommandOutput) => void
|
|
3364
3439
|
): void;
|
|
3440
|
+
startColumnStatisticsTaskRunSchedule(
|
|
3441
|
+
args: StartColumnStatisticsTaskRunScheduleCommandInput,
|
|
3442
|
+
options?: __HttpHandlerOptions
|
|
3443
|
+
): Promise<StartColumnStatisticsTaskRunScheduleCommandOutput>;
|
|
3444
|
+
startColumnStatisticsTaskRunSchedule(
|
|
3445
|
+
args: StartColumnStatisticsTaskRunScheduleCommandInput,
|
|
3446
|
+
cb: (
|
|
3447
|
+
err: any,
|
|
3448
|
+
data?: StartColumnStatisticsTaskRunScheduleCommandOutput
|
|
3449
|
+
) => void
|
|
3450
|
+
): void;
|
|
3451
|
+
startColumnStatisticsTaskRunSchedule(
|
|
3452
|
+
args: StartColumnStatisticsTaskRunScheduleCommandInput,
|
|
3453
|
+
options: __HttpHandlerOptions,
|
|
3454
|
+
cb: (
|
|
3455
|
+
err: any,
|
|
3456
|
+
data?: StartColumnStatisticsTaskRunScheduleCommandOutput
|
|
3457
|
+
) => void
|
|
3458
|
+
): void;
|
|
3365
3459
|
startCrawler(
|
|
3366
3460
|
args: StartCrawlerCommandInput,
|
|
3367
3461
|
options?: __HttpHandlerOptions
|
|
@@ -3536,6 +3630,25 @@ export interface Glue {
|
|
|
3536
3630
|
options: __HttpHandlerOptions,
|
|
3537
3631
|
cb: (err: any, data?: StopColumnStatisticsTaskRunCommandOutput) => void
|
|
3538
3632
|
): void;
|
|
3633
|
+
stopColumnStatisticsTaskRunSchedule(
|
|
3634
|
+
args: StopColumnStatisticsTaskRunScheduleCommandInput,
|
|
3635
|
+
options?: __HttpHandlerOptions
|
|
3636
|
+
): Promise<StopColumnStatisticsTaskRunScheduleCommandOutput>;
|
|
3637
|
+
stopColumnStatisticsTaskRunSchedule(
|
|
3638
|
+
args: StopColumnStatisticsTaskRunScheduleCommandInput,
|
|
3639
|
+
cb: (
|
|
3640
|
+
err: any,
|
|
3641
|
+
data?: StopColumnStatisticsTaskRunScheduleCommandOutput
|
|
3642
|
+
) => void
|
|
3643
|
+
): void;
|
|
3644
|
+
stopColumnStatisticsTaskRunSchedule(
|
|
3645
|
+
args: StopColumnStatisticsTaskRunScheduleCommandInput,
|
|
3646
|
+
options: __HttpHandlerOptions,
|
|
3647
|
+
cb: (
|
|
3648
|
+
err: any,
|
|
3649
|
+
data?: StopColumnStatisticsTaskRunScheduleCommandOutput
|
|
3650
|
+
) => void
|
|
3651
|
+
): void;
|
|
3539
3652
|
stopCrawler(
|
|
3540
3653
|
args: StopCrawlerCommandInput,
|
|
3541
3654
|
options?: __HttpHandlerOptions
|
|
@@ -3700,6 +3813,25 @@ export interface Glue {
|
|
|
3700
3813
|
options: __HttpHandlerOptions,
|
|
3701
3814
|
cb: (err: any, data?: UpdateColumnStatisticsForTableCommandOutput) => void
|
|
3702
3815
|
): void;
|
|
3816
|
+
updateColumnStatisticsTaskSettings(
|
|
3817
|
+
args: UpdateColumnStatisticsTaskSettingsCommandInput,
|
|
3818
|
+
options?: __HttpHandlerOptions
|
|
3819
|
+
): Promise<UpdateColumnStatisticsTaskSettingsCommandOutput>;
|
|
3820
|
+
updateColumnStatisticsTaskSettings(
|
|
3821
|
+
args: UpdateColumnStatisticsTaskSettingsCommandInput,
|
|
3822
|
+
cb: (
|
|
3823
|
+
err: any,
|
|
3824
|
+
data?: UpdateColumnStatisticsTaskSettingsCommandOutput
|
|
3825
|
+
) => void
|
|
3826
|
+
): void;
|
|
3827
|
+
updateColumnStatisticsTaskSettings(
|
|
3828
|
+
args: UpdateColumnStatisticsTaskSettingsCommandInput,
|
|
3829
|
+
options: __HttpHandlerOptions,
|
|
3830
|
+
cb: (
|
|
3831
|
+
err: any,
|
|
3832
|
+
data?: UpdateColumnStatisticsTaskSettingsCommandOutput
|
|
3833
|
+
) => void
|
|
3834
|
+
): void;
|
|
3703
3835
|
updateConnection(
|
|
3704
3836
|
args: UpdateConnectionCommandInput,
|
|
3705
3837
|
options?: __HttpHandlerOptions
|
|
@@ -145,6 +145,10 @@ import {
|
|
|
145
145
|
CreateClassifierCommandInput,
|
|
146
146
|
CreateClassifierCommandOutput,
|
|
147
147
|
} from "./commands/CreateClassifierCommand";
|
|
148
|
+
import {
|
|
149
|
+
CreateColumnStatisticsTaskSettingsCommandInput,
|
|
150
|
+
CreateColumnStatisticsTaskSettingsCommandOutput,
|
|
151
|
+
} from "./commands/CreateColumnStatisticsTaskSettingsCommand";
|
|
148
152
|
import {
|
|
149
153
|
CreateConnectionCommandInput,
|
|
150
154
|
CreateConnectionCommandOutput,
|
|
@@ -245,6 +249,10 @@ import {
|
|
|
245
249
|
DeleteColumnStatisticsForTableCommandInput,
|
|
246
250
|
DeleteColumnStatisticsForTableCommandOutput,
|
|
247
251
|
} from "./commands/DeleteColumnStatisticsForTableCommand";
|
|
252
|
+
import {
|
|
253
|
+
DeleteColumnStatisticsTaskSettingsCommandInput,
|
|
254
|
+
DeleteColumnStatisticsTaskSettingsCommandOutput,
|
|
255
|
+
} from "./commands/DeleteColumnStatisticsTaskSettingsCommand";
|
|
248
256
|
import {
|
|
249
257
|
DeleteConnectionCommandInput,
|
|
250
258
|
DeleteConnectionCommandOutput,
|
|
@@ -377,6 +385,10 @@ import {
|
|
|
377
385
|
GetColumnStatisticsTaskRunsCommandInput,
|
|
378
386
|
GetColumnStatisticsTaskRunsCommandOutput,
|
|
379
387
|
} from "./commands/GetColumnStatisticsTaskRunsCommand";
|
|
388
|
+
import {
|
|
389
|
+
GetColumnStatisticsTaskSettingsCommandInput,
|
|
390
|
+
GetColumnStatisticsTaskSettingsCommandOutput,
|
|
391
|
+
} from "./commands/GetColumnStatisticsTaskSettingsCommand";
|
|
380
392
|
import {
|
|
381
393
|
GetConnectionCommandInput,
|
|
382
394
|
GetConnectionCommandOutput,
|
|
@@ -773,6 +785,10 @@ import {
|
|
|
773
785
|
StartColumnStatisticsTaskRunCommandInput,
|
|
774
786
|
StartColumnStatisticsTaskRunCommandOutput,
|
|
775
787
|
} from "./commands/StartColumnStatisticsTaskRunCommand";
|
|
788
|
+
import {
|
|
789
|
+
StartColumnStatisticsTaskRunScheduleCommandInput,
|
|
790
|
+
StartColumnStatisticsTaskRunScheduleCommandOutput,
|
|
791
|
+
} from "./commands/StartColumnStatisticsTaskRunScheduleCommand";
|
|
776
792
|
import {
|
|
777
793
|
StartCrawlerCommandInput,
|
|
778
794
|
StartCrawlerCommandOutput,
|
|
@@ -821,6 +837,10 @@ import {
|
|
|
821
837
|
StopColumnStatisticsTaskRunCommandInput,
|
|
822
838
|
StopColumnStatisticsTaskRunCommandOutput,
|
|
823
839
|
} from "./commands/StopColumnStatisticsTaskRunCommand";
|
|
840
|
+
import {
|
|
841
|
+
StopColumnStatisticsTaskRunScheduleCommandInput,
|
|
842
|
+
StopColumnStatisticsTaskRunScheduleCommandOutput,
|
|
843
|
+
} from "./commands/StopColumnStatisticsTaskRunScheduleCommand";
|
|
824
844
|
import {
|
|
825
845
|
StopCrawlerCommandInput,
|
|
826
846
|
StopCrawlerCommandOutput,
|
|
@@ -869,6 +889,10 @@ import {
|
|
|
869
889
|
UpdateColumnStatisticsForTableCommandInput,
|
|
870
890
|
UpdateColumnStatisticsForTableCommandOutput,
|
|
871
891
|
} from "./commands/UpdateColumnStatisticsForTableCommand";
|
|
892
|
+
import {
|
|
893
|
+
UpdateColumnStatisticsTaskSettingsCommandInput,
|
|
894
|
+
UpdateColumnStatisticsTaskSettingsCommandOutput,
|
|
895
|
+
} from "./commands/UpdateColumnStatisticsTaskSettingsCommand";
|
|
872
896
|
import {
|
|
873
897
|
UpdateConnectionCommandInput,
|
|
874
898
|
UpdateConnectionCommandOutput,
|
|
@@ -978,6 +1002,7 @@ export type ServiceInputTypes =
|
|
|
978
1002
|
| CheckSchemaVersionValidityCommandInput
|
|
979
1003
|
| CreateBlueprintCommandInput
|
|
980
1004
|
| CreateClassifierCommandInput
|
|
1005
|
+
| CreateColumnStatisticsTaskSettingsCommandInput
|
|
981
1006
|
| CreateConnectionCommandInput
|
|
982
1007
|
| CreateCrawlerCommandInput
|
|
983
1008
|
| CreateCustomEntityTypeCommandInput
|
|
@@ -1003,6 +1028,7 @@ export type ServiceInputTypes =
|
|
|
1003
1028
|
| DeleteClassifierCommandInput
|
|
1004
1029
|
| DeleteColumnStatisticsForPartitionCommandInput
|
|
1005
1030
|
| DeleteColumnStatisticsForTableCommandInput
|
|
1031
|
+
| DeleteColumnStatisticsTaskSettingsCommandInput
|
|
1006
1032
|
| DeleteConnectionCommandInput
|
|
1007
1033
|
| DeleteCrawlerCommandInput
|
|
1008
1034
|
| DeleteCustomEntityTypeCommandInput
|
|
@@ -1036,6 +1062,7 @@ export type ServiceInputTypes =
|
|
|
1036
1062
|
| GetColumnStatisticsForTableCommandInput
|
|
1037
1063
|
| GetColumnStatisticsTaskRunCommandInput
|
|
1038
1064
|
| GetColumnStatisticsTaskRunsCommandInput
|
|
1065
|
+
| GetColumnStatisticsTaskSettingsCommandInput
|
|
1039
1066
|
| GetConnectionCommandInput
|
|
1040
1067
|
| GetConnectionsCommandInput
|
|
1041
1068
|
| GetCrawlerCommandInput
|
|
@@ -1135,6 +1162,7 @@ export type ServiceInputTypes =
|
|
|
1135
1162
|
| SearchTablesCommandInput
|
|
1136
1163
|
| StartBlueprintRunCommandInput
|
|
1137
1164
|
| StartColumnStatisticsTaskRunCommandInput
|
|
1165
|
+
| StartColumnStatisticsTaskRunScheduleCommandInput
|
|
1138
1166
|
| StartCrawlerCommandInput
|
|
1139
1167
|
| StartCrawlerScheduleCommandInput
|
|
1140
1168
|
| StartDataQualityRuleRecommendationRunCommandInput
|
|
@@ -1147,6 +1175,7 @@ export type ServiceInputTypes =
|
|
|
1147
1175
|
| StartTriggerCommandInput
|
|
1148
1176
|
| StartWorkflowRunCommandInput
|
|
1149
1177
|
| StopColumnStatisticsTaskRunCommandInput
|
|
1178
|
+
| StopColumnStatisticsTaskRunScheduleCommandInput
|
|
1150
1179
|
| StopCrawlerCommandInput
|
|
1151
1180
|
| StopCrawlerScheduleCommandInput
|
|
1152
1181
|
| StopSessionCommandInput
|
|
@@ -1159,6 +1188,7 @@ export type ServiceInputTypes =
|
|
|
1159
1188
|
| UpdateClassifierCommandInput
|
|
1160
1189
|
| UpdateColumnStatisticsForPartitionCommandInput
|
|
1161
1190
|
| UpdateColumnStatisticsForTableCommandInput
|
|
1191
|
+
| UpdateColumnStatisticsTaskSettingsCommandInput
|
|
1162
1192
|
| UpdateConnectionCommandInput
|
|
1163
1193
|
| UpdateCrawlerCommandInput
|
|
1164
1194
|
| UpdateCrawlerScheduleCommandInput
|
|
@@ -1204,6 +1234,7 @@ export type ServiceOutputTypes =
|
|
|
1204
1234
|
| CheckSchemaVersionValidityCommandOutput
|
|
1205
1235
|
| CreateBlueprintCommandOutput
|
|
1206
1236
|
| CreateClassifierCommandOutput
|
|
1237
|
+
| CreateColumnStatisticsTaskSettingsCommandOutput
|
|
1207
1238
|
| CreateConnectionCommandOutput
|
|
1208
1239
|
| CreateCrawlerCommandOutput
|
|
1209
1240
|
| CreateCustomEntityTypeCommandOutput
|
|
@@ -1229,6 +1260,7 @@ export type ServiceOutputTypes =
|
|
|
1229
1260
|
| DeleteClassifierCommandOutput
|
|
1230
1261
|
| DeleteColumnStatisticsForPartitionCommandOutput
|
|
1231
1262
|
| DeleteColumnStatisticsForTableCommandOutput
|
|
1263
|
+
| DeleteColumnStatisticsTaskSettingsCommandOutput
|
|
1232
1264
|
| DeleteConnectionCommandOutput
|
|
1233
1265
|
| DeleteCrawlerCommandOutput
|
|
1234
1266
|
| DeleteCustomEntityTypeCommandOutput
|
|
@@ -1262,6 +1294,7 @@ export type ServiceOutputTypes =
|
|
|
1262
1294
|
| GetColumnStatisticsForTableCommandOutput
|
|
1263
1295
|
| GetColumnStatisticsTaskRunCommandOutput
|
|
1264
1296
|
| GetColumnStatisticsTaskRunsCommandOutput
|
|
1297
|
+
| GetColumnStatisticsTaskSettingsCommandOutput
|
|
1265
1298
|
| GetConnectionCommandOutput
|
|
1266
1299
|
| GetConnectionsCommandOutput
|
|
1267
1300
|
| GetCrawlerCommandOutput
|
|
@@ -1361,6 +1394,7 @@ export type ServiceOutputTypes =
|
|
|
1361
1394
|
| SearchTablesCommandOutput
|
|
1362
1395
|
| StartBlueprintRunCommandOutput
|
|
1363
1396
|
| StartColumnStatisticsTaskRunCommandOutput
|
|
1397
|
+
| StartColumnStatisticsTaskRunScheduleCommandOutput
|
|
1364
1398
|
| StartCrawlerCommandOutput
|
|
1365
1399
|
| StartCrawlerScheduleCommandOutput
|
|
1366
1400
|
| StartDataQualityRuleRecommendationRunCommandOutput
|
|
@@ -1373,6 +1407,7 @@ export type ServiceOutputTypes =
|
|
|
1373
1407
|
| StartTriggerCommandOutput
|
|
1374
1408
|
| StartWorkflowRunCommandOutput
|
|
1375
1409
|
| StopColumnStatisticsTaskRunCommandOutput
|
|
1410
|
+
| StopColumnStatisticsTaskRunScheduleCommandOutput
|
|
1376
1411
|
| StopCrawlerCommandOutput
|
|
1377
1412
|
| StopCrawlerScheduleCommandOutput
|
|
1378
1413
|
| StopSessionCommandOutput
|
|
@@ -1385,6 +1420,7 @@ export type ServiceOutputTypes =
|
|
|
1385
1420
|
| UpdateClassifierCommandOutput
|
|
1386
1421
|
| UpdateColumnStatisticsForPartitionCommandOutput
|
|
1387
1422
|
| UpdateColumnStatisticsForTableCommandOutput
|
|
1423
|
+
| UpdateColumnStatisticsTaskSettingsCommandOutput
|
|
1388
1424
|
| UpdateConnectionCommandOutput
|
|
1389
1425
|
| UpdateCrawlerCommandOutput
|
|
1390
1426
|
| UpdateCrawlerScheduleCommandOutput
|
|
@@ -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
|
+
CreateColumnStatisticsTaskSettingsRequest,
|
|
10
|
+
CreateColumnStatisticsTaskSettingsResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateColumnStatisticsTaskSettingsCommandInput
|
|
15
|
+
extends CreateColumnStatisticsTaskSettingsRequest {}
|
|
16
|
+
export interface CreateColumnStatisticsTaskSettingsCommandOutput
|
|
17
|
+
extends CreateColumnStatisticsTaskSettingsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateColumnStatisticsTaskSettingsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateColumnStatisticsTaskSettingsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateColumnStatisticsTaskSettingsCommandInput,
|
|
24
|
+
CreateColumnStatisticsTaskSettingsCommandOutput,
|
|
25
|
+
GlueClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateColumnStatisticsTaskSettingsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateColumnStatisticsTaskSettingsCommandInput,
|
|
33
|
+
CreateColumnStatisticsTaskSettingsCommandOutput,
|
|
34
|
+
GlueClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateColumnStatisticsTaskSettingsCommand extends CreateColumnStatisticsTaskSettingsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateColumnStatisticsTaskSettingsRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateColumnStatisticsTaskSettingsCommandInput;
|
|
48
|
+
output: CreateColumnStatisticsTaskSettingsCommandOutput;
|
|
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
|
+
DeleteColumnStatisticsTaskSettingsRequest,
|
|
10
|
+
DeleteColumnStatisticsTaskSettingsResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteColumnStatisticsTaskSettingsCommandInput
|
|
15
|
+
extends DeleteColumnStatisticsTaskSettingsRequest {}
|
|
16
|
+
export interface DeleteColumnStatisticsTaskSettingsCommandOutput
|
|
17
|
+
extends DeleteColumnStatisticsTaskSettingsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteColumnStatisticsTaskSettingsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteColumnStatisticsTaskSettingsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteColumnStatisticsTaskSettingsCommandInput,
|
|
24
|
+
DeleteColumnStatisticsTaskSettingsCommandOutput,
|
|
25
|
+
GlueClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteColumnStatisticsTaskSettingsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteColumnStatisticsTaskSettingsCommandInput,
|
|
33
|
+
DeleteColumnStatisticsTaskSettingsCommandOutput,
|
|
34
|
+
GlueClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteColumnStatisticsTaskSettingsCommand extends DeleteColumnStatisticsTaskSettingsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteColumnStatisticsTaskSettingsRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteColumnStatisticsTaskSettingsCommandInput;
|
|
48
|
+
output: DeleteColumnStatisticsTaskSettingsCommandOutput;
|
|
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
|
+
GetColumnStatisticsTaskSettingsRequest,
|
|
10
|
+
GetColumnStatisticsTaskSettingsResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetColumnStatisticsTaskSettingsCommandInput
|
|
15
|
+
extends GetColumnStatisticsTaskSettingsRequest {}
|
|
16
|
+
export interface GetColumnStatisticsTaskSettingsCommandOutput
|
|
17
|
+
extends GetColumnStatisticsTaskSettingsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetColumnStatisticsTaskSettingsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetColumnStatisticsTaskSettingsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetColumnStatisticsTaskSettingsCommandInput,
|
|
24
|
+
GetColumnStatisticsTaskSettingsCommandOutput,
|
|
25
|
+
GlueClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetColumnStatisticsTaskSettingsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetColumnStatisticsTaskSettingsCommandInput,
|
|
33
|
+
GetColumnStatisticsTaskSettingsCommandOutput,
|
|
34
|
+
GlueClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetColumnStatisticsTaskSettingsCommand extends GetColumnStatisticsTaskSettingsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetColumnStatisticsTaskSettingsRequest;
|
|
44
|
+
output: GetColumnStatisticsTaskSettingsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetColumnStatisticsTaskSettingsCommandInput;
|
|
48
|
+
output: GetColumnStatisticsTaskSettingsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,7 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GlueClient";
|
|
8
|
-
import { GetMLTaskRunRequest
|
|
8
|
+
import { GetMLTaskRunRequest } from "../models/models_1";
|
|
9
|
+
import { GetMLTaskRunResponse } from "../models/models_2";
|
|
9
10
|
export { __MetadataBearer };
|
|
10
11
|
export { $Command };
|
|
11
12
|
export interface GetMLTaskRunCommandInput extends GetMLTaskRunRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
GetMLTaskRunsRequest,
|
|
10
10
|
GetMLTaskRunsResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface GetMLTaskRunsCommandInput extends GetMLTaskRunsRequest {}
|
|
@@ -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
|
+
StartColumnStatisticsTaskRunScheduleRequest,
|
|
10
|
+
StartColumnStatisticsTaskRunScheduleResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartColumnStatisticsTaskRunScheduleCommandInput
|
|
15
|
+
extends StartColumnStatisticsTaskRunScheduleRequest {}
|
|
16
|
+
export interface StartColumnStatisticsTaskRunScheduleCommandOutput
|
|
17
|
+
extends StartColumnStatisticsTaskRunScheduleResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartColumnStatisticsTaskRunScheduleCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartColumnStatisticsTaskRunScheduleCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartColumnStatisticsTaskRunScheduleCommandInput,
|
|
24
|
+
StartColumnStatisticsTaskRunScheduleCommandOutput,
|
|
25
|
+
GlueClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StartColumnStatisticsTaskRunScheduleCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartColumnStatisticsTaskRunScheduleCommandInput,
|
|
33
|
+
StartColumnStatisticsTaskRunScheduleCommandOutput,
|
|
34
|
+
GlueClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartColumnStatisticsTaskRunScheduleCommand extends StartColumnStatisticsTaskRunScheduleCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartColumnStatisticsTaskRunScheduleRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartColumnStatisticsTaskRunScheduleCommandInput;
|
|
48
|
+
output: StartColumnStatisticsTaskRunScheduleCommandOutput;
|
|
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
|
+
StopColumnStatisticsTaskRunScheduleRequest,
|
|
10
|
+
StopColumnStatisticsTaskRunScheduleResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StopColumnStatisticsTaskRunScheduleCommandInput
|
|
15
|
+
extends StopColumnStatisticsTaskRunScheduleRequest {}
|
|
16
|
+
export interface StopColumnStatisticsTaskRunScheduleCommandOutput
|
|
17
|
+
extends StopColumnStatisticsTaskRunScheduleResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StopColumnStatisticsTaskRunScheduleCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StopColumnStatisticsTaskRunScheduleCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StopColumnStatisticsTaskRunScheduleCommandInput,
|
|
24
|
+
StopColumnStatisticsTaskRunScheduleCommandOutput,
|
|
25
|
+
GlueClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StopColumnStatisticsTaskRunScheduleCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StopColumnStatisticsTaskRunScheduleCommandInput,
|
|
33
|
+
StopColumnStatisticsTaskRunScheduleCommandOutput,
|
|
34
|
+
GlueClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StopColumnStatisticsTaskRunScheduleCommand extends StopColumnStatisticsTaskRunScheduleCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StopColumnStatisticsTaskRunScheduleRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StopColumnStatisticsTaskRunScheduleCommandInput;
|
|
48
|
+
output: StopColumnStatisticsTaskRunScheduleCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|