@aws-sdk/client-glue 3.682.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 +1 -1
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
+
import { StartColumnStatisticsTaskRunScheduleRequest, StartColumnStatisticsTaskRunScheduleResponse } from "../models/models_2";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link StartColumnStatisticsTaskRunScheduleCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface StartColumnStatisticsTaskRunScheduleCommandInput extends StartColumnStatisticsTaskRunScheduleRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link StartColumnStatisticsTaskRunScheduleCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface StartColumnStatisticsTaskRunScheduleCommandOutput extends StartColumnStatisticsTaskRunScheduleResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const StartColumnStatisticsTaskRunScheduleCommand_base: {
|
|
25
|
+
new (input: StartColumnStatisticsTaskRunScheduleCommandInput): import("@smithy/smithy-client").CommandImpl<StartColumnStatisticsTaskRunScheduleCommandInput, StartColumnStatisticsTaskRunScheduleCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: StartColumnStatisticsTaskRunScheduleCommandInput): import("@smithy/smithy-client").CommandImpl<StartColumnStatisticsTaskRunScheduleCommandInput, StartColumnStatisticsTaskRunScheduleCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Starts a column statistics task run schedule.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GlueClient, StartColumnStatisticsTaskRunScheduleCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
35
|
+
* // const { GlueClient, StartColumnStatisticsTaskRunScheduleCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
36
|
+
* const client = new GlueClient(config);
|
|
37
|
+
* const input = { // StartColumnStatisticsTaskRunScheduleRequest
|
|
38
|
+
* DatabaseName: "STRING_VALUE", // required
|
|
39
|
+
* TableName: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new StartColumnStatisticsTaskRunScheduleCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // {};
|
|
44
|
+
*
|
|
45
|
+
* ```
|
|
46
|
+
*
|
|
47
|
+
* @param StartColumnStatisticsTaskRunScheduleCommandInput - {@link StartColumnStatisticsTaskRunScheduleCommandInput}
|
|
48
|
+
* @returns {@link StartColumnStatisticsTaskRunScheduleCommandOutput}
|
|
49
|
+
* @see {@link StartColumnStatisticsTaskRunScheduleCommandInput} for command's `input` shape.
|
|
50
|
+
* @see {@link StartColumnStatisticsTaskRunScheduleCommandOutput} for command's `response` shape.
|
|
51
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
54
|
+
* <p>Access to a resource was denied.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link EntityNotFoundException} (client fault)
|
|
57
|
+
* <p>A specified entity does not exist</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
60
|
+
* <p>The input provided was not valid.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link OperationTimeoutException} (client fault)
|
|
63
|
+
* <p>The operation timed out.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link GlueServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
67
|
+
*
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
export declare class StartColumnStatisticsTaskRunScheduleCommand extends StartColumnStatisticsTaskRunScheduleCommand_base {
|
|
71
|
+
/** @internal type navigation helper, not in runtime. */
|
|
72
|
+
protected static __types: {
|
|
73
|
+
api: {
|
|
74
|
+
input: StartColumnStatisticsTaskRunScheduleRequest;
|
|
75
|
+
output: {};
|
|
76
|
+
};
|
|
77
|
+
sdk: {
|
|
78
|
+
input: StartColumnStatisticsTaskRunScheduleCommandInput;
|
|
79
|
+
output: StartColumnStatisticsTaskRunScheduleCommandOutput;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
+
import { StopColumnStatisticsTaskRunScheduleRequest, StopColumnStatisticsTaskRunScheduleResponse } from "../models/models_2";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link StopColumnStatisticsTaskRunScheduleCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface StopColumnStatisticsTaskRunScheduleCommandInput extends StopColumnStatisticsTaskRunScheduleRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link StopColumnStatisticsTaskRunScheduleCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface StopColumnStatisticsTaskRunScheduleCommandOutput extends StopColumnStatisticsTaskRunScheduleResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const StopColumnStatisticsTaskRunScheduleCommand_base: {
|
|
25
|
+
new (input: StopColumnStatisticsTaskRunScheduleCommandInput): import("@smithy/smithy-client").CommandImpl<StopColumnStatisticsTaskRunScheduleCommandInput, StopColumnStatisticsTaskRunScheduleCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: StopColumnStatisticsTaskRunScheduleCommandInput): import("@smithy/smithy-client").CommandImpl<StopColumnStatisticsTaskRunScheduleCommandInput, StopColumnStatisticsTaskRunScheduleCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Stops a column statistics task run schedule.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GlueClient, StopColumnStatisticsTaskRunScheduleCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
35
|
+
* // const { GlueClient, StopColumnStatisticsTaskRunScheduleCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
36
|
+
* const client = new GlueClient(config);
|
|
37
|
+
* const input = { // StopColumnStatisticsTaskRunScheduleRequest
|
|
38
|
+
* DatabaseName: "STRING_VALUE", // required
|
|
39
|
+
* TableName: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new StopColumnStatisticsTaskRunScheduleCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // {};
|
|
44
|
+
*
|
|
45
|
+
* ```
|
|
46
|
+
*
|
|
47
|
+
* @param StopColumnStatisticsTaskRunScheduleCommandInput - {@link StopColumnStatisticsTaskRunScheduleCommandInput}
|
|
48
|
+
* @returns {@link StopColumnStatisticsTaskRunScheduleCommandOutput}
|
|
49
|
+
* @see {@link StopColumnStatisticsTaskRunScheduleCommandInput} for command's `input` shape.
|
|
50
|
+
* @see {@link StopColumnStatisticsTaskRunScheduleCommandOutput} for command's `response` shape.
|
|
51
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link EntityNotFoundException} (client fault)
|
|
54
|
+
* <p>A specified entity does not exist</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
57
|
+
* <p>The input provided was not valid.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link OperationTimeoutException} (client fault)
|
|
60
|
+
* <p>The operation timed out.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link GlueServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
64
|
+
*
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export declare class StopColumnStatisticsTaskRunScheduleCommand extends StopColumnStatisticsTaskRunScheduleCommand_base {
|
|
68
|
+
/** @internal type navigation helper, not in runtime. */
|
|
69
|
+
protected static __types: {
|
|
70
|
+
api: {
|
|
71
|
+
input: StopColumnStatisticsTaskRunScheduleRequest;
|
|
72
|
+
output: {};
|
|
73
|
+
};
|
|
74
|
+
sdk: {
|
|
75
|
+
input: StopColumnStatisticsTaskRunScheduleCommandInput;
|
|
76
|
+
output: StopColumnStatisticsTaskRunScheduleCommandOutput;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
+
import { UpdateColumnStatisticsTaskSettingsRequest, UpdateColumnStatisticsTaskSettingsResponse } from "../models/models_2";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateColumnStatisticsTaskSettingsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateColumnStatisticsTaskSettingsCommandInput extends UpdateColumnStatisticsTaskSettingsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateColumnStatisticsTaskSettingsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateColumnStatisticsTaskSettingsCommandOutput extends UpdateColumnStatisticsTaskSettingsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateColumnStatisticsTaskSettingsCommand_base: {
|
|
25
|
+
new (input: UpdateColumnStatisticsTaskSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateColumnStatisticsTaskSettingsCommandInput, UpdateColumnStatisticsTaskSettingsCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: UpdateColumnStatisticsTaskSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateColumnStatisticsTaskSettingsCommandInput, UpdateColumnStatisticsTaskSettingsCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates settings for a column statistics task.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GlueClient, UpdateColumnStatisticsTaskSettingsCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
35
|
+
* // const { GlueClient, UpdateColumnStatisticsTaskSettingsCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
36
|
+
* const client = new GlueClient(config);
|
|
37
|
+
* const input = { // UpdateColumnStatisticsTaskSettingsRequest
|
|
38
|
+
* DatabaseName: "STRING_VALUE", // required
|
|
39
|
+
* TableName: "STRING_VALUE", // required
|
|
40
|
+
* Role: "STRING_VALUE",
|
|
41
|
+
* Schedule: "STRING_VALUE",
|
|
42
|
+
* ColumnNameList: [ // ColumnNameList
|
|
43
|
+
* "STRING_VALUE",
|
|
44
|
+
* ],
|
|
45
|
+
* SampleSize: Number("double"),
|
|
46
|
+
* CatalogID: "STRING_VALUE",
|
|
47
|
+
* SecurityConfiguration: "STRING_VALUE",
|
|
48
|
+
* };
|
|
49
|
+
* const command = new UpdateColumnStatisticsTaskSettingsCommand(input);
|
|
50
|
+
* const response = await client.send(command);
|
|
51
|
+
* // {};
|
|
52
|
+
*
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* @param UpdateColumnStatisticsTaskSettingsCommandInput - {@link UpdateColumnStatisticsTaskSettingsCommandInput}
|
|
56
|
+
* @returns {@link UpdateColumnStatisticsTaskSettingsCommandOutput}
|
|
57
|
+
* @see {@link UpdateColumnStatisticsTaskSettingsCommandInput} for command's `input` shape.
|
|
58
|
+
* @see {@link UpdateColumnStatisticsTaskSettingsCommandOutput} for command's `response` shape.
|
|
59
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
62
|
+
* <p>Access to a resource was denied.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link EntityNotFoundException} (client fault)
|
|
65
|
+
* <p>A specified entity does not exist</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
68
|
+
* <p>The input provided was not valid.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link OperationTimeoutException} (client fault)
|
|
71
|
+
* <p>The operation timed out.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link VersionMismatchException} (client fault)
|
|
74
|
+
* <p>There was a version conflict.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link GlueServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
78
|
+
*
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export declare class UpdateColumnStatisticsTaskSettingsCommand extends UpdateColumnStatisticsTaskSettingsCommand_base {
|
|
82
|
+
/** @internal type navigation helper, not in runtime. */
|
|
83
|
+
protected static __types: {
|
|
84
|
+
api: {
|
|
85
|
+
input: UpdateColumnStatisticsTaskSettingsRequest;
|
|
86
|
+
output: {};
|
|
87
|
+
};
|
|
88
|
+
sdk: {
|
|
89
|
+
input: UpdateColumnStatisticsTaskSettingsCommandInput;
|
|
90
|
+
output: UpdateColumnStatisticsTaskSettingsCommandOutput;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
}
|
|
@@ -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 { UpdateDevEndpointRequest, UpdateDevEndpointResponse } from "../models/
|
|
4
|
+
import { UpdateDevEndpointRequest, UpdateDevEndpointResponse } from "../models/models_3";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -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 { UpdateJobResponse } from "../models/
|
|
5
|
-
import { UpdateJobRequest } from "../models/models_3";
|
|
4
|
+
import { UpdateJobRequest, UpdateJobResponse } from "../models/models_3";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
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 { UpdateJobFromSourceControlRequest, UpdateJobFromSourceControlResponse } from "../models/
|
|
4
|
+
import { UpdateJobFromSourceControlRequest, UpdateJobFromSourceControlResponse } 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 { UpdateMLTransformRequest, UpdateMLTransformResponse } from "../models/
|
|
4
|
+
import { UpdateMLTransformRequest, UpdateMLTransformResponse } 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 { UpdatePartitionRequest, UpdatePartitionResponse } from "../models/
|
|
4
|
+
import { UpdatePartitionRequest, UpdatePartitionResponse } 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 { UpdateRegistryInput, UpdateRegistryResponse } from "../models/
|
|
4
|
+
import { UpdateRegistryInput, UpdateRegistryResponse } 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 { UpdateSchemaInput, UpdateSchemaResponse } from "../models/
|
|
4
|
+
import { UpdateSchemaInput, UpdateSchemaResponse } from "../models/models_3";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -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 { UpdateSourceControlFromJobRequest } from "../models/
|
|
5
|
-
import { UpdateSourceControlFromJobResponse } from "../models/models_3";
|
|
4
|
+
import { UpdateSourceControlFromJobRequest, UpdateSourceControlFromJobResponse } from "../models/models_3";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -23,6 +23,7 @@ export * from "./CancelStatementCommand";
|
|
|
23
23
|
export * from "./CheckSchemaVersionValidityCommand";
|
|
24
24
|
export * from "./CreateBlueprintCommand";
|
|
25
25
|
export * from "./CreateClassifierCommand";
|
|
26
|
+
export * from "./CreateColumnStatisticsTaskSettingsCommand";
|
|
26
27
|
export * from "./CreateConnectionCommand";
|
|
27
28
|
export * from "./CreateCrawlerCommand";
|
|
28
29
|
export * from "./CreateCustomEntityTypeCommand";
|
|
@@ -48,6 +49,7 @@ export * from "./DeleteBlueprintCommand";
|
|
|
48
49
|
export * from "./DeleteClassifierCommand";
|
|
49
50
|
export * from "./DeleteColumnStatisticsForPartitionCommand";
|
|
50
51
|
export * from "./DeleteColumnStatisticsForTableCommand";
|
|
52
|
+
export * from "./DeleteColumnStatisticsTaskSettingsCommand";
|
|
51
53
|
export * from "./DeleteConnectionCommand";
|
|
52
54
|
export * from "./DeleteCrawlerCommand";
|
|
53
55
|
export * from "./DeleteCustomEntityTypeCommand";
|
|
@@ -81,6 +83,7 @@ export * from "./GetColumnStatisticsForPartitionCommand";
|
|
|
81
83
|
export * from "./GetColumnStatisticsForTableCommand";
|
|
82
84
|
export * from "./GetColumnStatisticsTaskRunCommand";
|
|
83
85
|
export * from "./GetColumnStatisticsTaskRunsCommand";
|
|
86
|
+
export * from "./GetColumnStatisticsTaskSettingsCommand";
|
|
84
87
|
export * from "./GetConnectionCommand";
|
|
85
88
|
export * from "./GetConnectionsCommand";
|
|
86
89
|
export * from "./GetCrawlerCommand";
|
|
@@ -180,6 +183,7 @@ export * from "./RunStatementCommand";
|
|
|
180
183
|
export * from "./SearchTablesCommand";
|
|
181
184
|
export * from "./StartBlueprintRunCommand";
|
|
182
185
|
export * from "./StartColumnStatisticsTaskRunCommand";
|
|
186
|
+
export * from "./StartColumnStatisticsTaskRunScheduleCommand";
|
|
183
187
|
export * from "./StartCrawlerCommand";
|
|
184
188
|
export * from "./StartCrawlerScheduleCommand";
|
|
185
189
|
export * from "./StartDataQualityRuleRecommendationRunCommand";
|
|
@@ -192,6 +196,7 @@ export * from "./StartMLLabelingSetGenerationTaskRunCommand";
|
|
|
192
196
|
export * from "./StartTriggerCommand";
|
|
193
197
|
export * from "./StartWorkflowRunCommand";
|
|
194
198
|
export * from "./StopColumnStatisticsTaskRunCommand";
|
|
199
|
+
export * from "./StopColumnStatisticsTaskRunScheduleCommand";
|
|
195
200
|
export * from "./StopCrawlerCommand";
|
|
196
201
|
export * from "./StopCrawlerScheduleCommand";
|
|
197
202
|
export * from "./StopSessionCommand";
|
|
@@ -204,6 +209,7 @@ export * from "./UpdateBlueprintCommand";
|
|
|
204
209
|
export * from "./UpdateClassifierCommand";
|
|
205
210
|
export * from "./UpdateColumnStatisticsForPartitionCommand";
|
|
206
211
|
export * from "./UpdateColumnStatisticsForTableCommand";
|
|
212
|
+
export * from "./UpdateColumnStatisticsTaskSettingsCommand";
|
|
207
213
|
export * from "./UpdateConnectionCommand";
|
|
208
214
|
export * from "./UpdateCrawlerCommand";
|
|
209
215
|
export * from "./UpdateCrawlerScheduleCommand";
|