@aws-sdk/client-glue 3.110.0 → 3.118.1
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/CHANGELOG.md +27 -0
- package/dist-cjs/Glue.js +15 -0
- package/dist-cjs/commands/ListCrawlsCommand.js +36 -0
- package/dist-cjs/commands/RegisterSchemaVersionCommand.js +3 -3
- package/dist-cjs/commands/RemoveSchemaVersionMetadataCommand.js +3 -3
- package/dist-cjs/commands/ResetJobBookmarkCommand.js +3 -3
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_1.js +49 -51
- package/dist-cjs/models/models_2.js +53 -3
- package/dist-cjs/protocols/Aws_json1_1.js +123 -7
- package/dist-es/Glue.js +15 -0
- package/dist-es/commands/ListCrawlsCommand.js +39 -0
- package/dist-es/commands/RegisterSchemaVersionCommand.js +1 -1
- package/dist-es/commands/RemoveSchemaVersionMetadataCommand.js +1 -1
- package/dist-es/commands/ResetJobBookmarkCommand.js +1 -1
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_1.js +40 -37
- package/dist-es/models/models_2.js +37 -0
- package/dist-es/protocols/Aws_json1_1.js +126 -2
- package/dist-types/Glue.d.ts +23 -0
- package/dist-types/GlueClient.d.ts +3 -2
- package/dist-types/commands/ListCrawlsCommand.d.ts +51 -0
- package/dist-types/commands/RegisterSchemaVersionCommand.d.ts +1 -1
- package/dist-types/commands/RemoveSchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/commands/ResetJobBookmarkCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +4 -4
- package/dist-types/models/models_1.d.ts +179 -151
- package/dist-types/models/models_2.d.ts +154 -3
- package/dist-types/protocols/Aws_json1_1.d.ts +3 -0
- package/dist-types/ts3.4/Glue.d.ts +5 -0
- package/dist-types/ts3.4/GlueClient.d.ts +3 -2
- package/dist-types/ts3.4/commands/ListCrawlsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RegisterSchemaVersionCommand.d.ts +1 -1
- 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/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +85 -85
- package/dist-types/ts3.4/models/models_2.d.ts +87 -2
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +3 -0
- package/package.json +6 -6
package/dist-es/Glue.js
CHANGED
|
@@ -125,6 +125,7 @@ import { GetWorkflowRunsCommand, } from "./commands/GetWorkflowRunsCommand";
|
|
|
125
125
|
import { ImportCatalogToGlueCommand, } from "./commands/ImportCatalogToGlueCommand";
|
|
126
126
|
import { ListBlueprintsCommand, } from "./commands/ListBlueprintsCommand";
|
|
127
127
|
import { ListCrawlersCommand, } from "./commands/ListCrawlersCommand";
|
|
128
|
+
import { ListCrawlsCommand } from "./commands/ListCrawlsCommand";
|
|
128
129
|
import { ListCustomEntityTypesCommand, } from "./commands/ListCustomEntityTypesCommand";
|
|
129
130
|
import { ListDevEndpointsCommand, } from "./commands/ListDevEndpointsCommand";
|
|
130
131
|
import { ListJobsCommand } from "./commands/ListJobsCommand";
|
|
@@ -1952,6 +1953,20 @@ var Glue = (function (_super) {
|
|
|
1952
1953
|
return this.send(command, optionsOrCb);
|
|
1953
1954
|
}
|
|
1954
1955
|
};
|
|
1956
|
+
Glue.prototype.listCrawls = function (args, optionsOrCb, cb) {
|
|
1957
|
+
var command = new ListCrawlsCommand(args);
|
|
1958
|
+
if (typeof optionsOrCb === "function") {
|
|
1959
|
+
this.send(command, optionsOrCb);
|
|
1960
|
+
}
|
|
1961
|
+
else if (typeof cb === "function") {
|
|
1962
|
+
if (typeof optionsOrCb !== "object")
|
|
1963
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
1964
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
1965
|
+
}
|
|
1966
|
+
else {
|
|
1967
|
+
return this.send(command, optionsOrCb);
|
|
1968
|
+
}
|
|
1969
|
+
};
|
|
1955
1970
|
Glue.prototype.listCustomEntityTypes = function (args, optionsOrCb, cb) {
|
|
1956
1971
|
var command = new ListCustomEntityTypesCommand(args);
|
|
1957
1972
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ListCrawlsRequest, ListCrawlsResponse } from "../models/models_1";
|
|
5
|
+
import { deserializeAws_json1_1ListCrawlsCommand, serializeAws_json1_1ListCrawlsCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
var ListCrawlsCommand = (function (_super) {
|
|
7
|
+
__extends(ListCrawlsCommand, _super);
|
|
8
|
+
function ListCrawlsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
ListCrawlsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "GlueClient";
|
|
18
|
+
var commandName = "ListCrawlsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: ListCrawlsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListCrawlsResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListCrawlsCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_json1_1ListCrawlsCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
ListCrawlsCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_json1_1ListCrawlsCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return ListCrawlsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListCrawlsCommand };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { RegisterSchemaVersionInput, RegisterSchemaVersionResponse } from "../models/
|
|
4
|
+
import { RegisterSchemaVersionInput, RegisterSchemaVersionResponse } from "../models/models_2";
|
|
5
5
|
import { deserializeAws_json1_1RegisterSchemaVersionCommand, serializeAws_json1_1RegisterSchemaVersionCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var RegisterSchemaVersionCommand = (function (_super) {
|
|
7
7
|
__extends(RegisterSchemaVersionCommand, _super);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { RemoveSchemaVersionMetadataInput, RemoveSchemaVersionMetadataResponse } from "../models/
|
|
4
|
+
import { RemoveSchemaVersionMetadataInput, RemoveSchemaVersionMetadataResponse } from "../models/models_2";
|
|
5
5
|
import { deserializeAws_json1_1RemoveSchemaVersionMetadataCommand, serializeAws_json1_1RemoveSchemaVersionMetadataCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var RemoveSchemaVersionMetadataCommand = (function (_super) {
|
|
7
7
|
__extends(RemoveSchemaVersionMetadataCommand, _super);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ResetJobBookmarkRequest, ResetJobBookmarkResponse } from "../models/
|
|
4
|
+
import { ResetJobBookmarkRequest, ResetJobBookmarkResponse } from "../models/models_2";
|
|
5
5
|
import { deserializeAws_json1_1ResetJobBookmarkCommand, serializeAws_json1_1ResetJobBookmarkCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ResetJobBookmarkCommand = (function (_super) {
|
|
7
7
|
__extends(ResetJobBookmarkCommand, _super);
|
|
@@ -124,6 +124,7 @@ export * from "./GetWorkflowRunsCommand";
|
|
|
124
124
|
export * from "./ImportCatalogToGlueCommand";
|
|
125
125
|
export * from "./ListBlueprintsCommand";
|
|
126
126
|
export * from "./ListCrawlersCommand";
|
|
127
|
+
export * from "./ListCrawlsCommand";
|
|
127
128
|
export * from "./ListCustomEntityTypesCommand";
|
|
128
129
|
export * from "./ListDevEndpointsCommand";
|
|
129
130
|
export * from "./ListJobsCommand";
|
|
@@ -1095,6 +1095,46 @@ export var ListCrawlersResponse;
|
|
|
1095
1095
|
(function (ListCrawlersResponse) {
|
|
1096
1096
|
ListCrawlersResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1097
1097
|
})(ListCrawlersResponse || (ListCrawlersResponse = {}));
|
|
1098
|
+
export var FieldName;
|
|
1099
|
+
(function (FieldName) {
|
|
1100
|
+
FieldName["CRAWL_ID"] = "CRAWL_ID";
|
|
1101
|
+
FieldName["DPU_HOUR"] = "DPU_HOUR";
|
|
1102
|
+
FieldName["END_TIME"] = "END_TIME";
|
|
1103
|
+
FieldName["START_TIME"] = "START_TIME";
|
|
1104
|
+
FieldName["STATE"] = "STATE";
|
|
1105
|
+
})(FieldName || (FieldName = {}));
|
|
1106
|
+
export var FilterOperator;
|
|
1107
|
+
(function (FilterOperator) {
|
|
1108
|
+
FilterOperator["EQ"] = "EQ";
|
|
1109
|
+
FilterOperator["GE"] = "GE";
|
|
1110
|
+
FilterOperator["GT"] = "GT";
|
|
1111
|
+
FilterOperator["LE"] = "LE";
|
|
1112
|
+
FilterOperator["LT"] = "LT";
|
|
1113
|
+
FilterOperator["NE"] = "NE";
|
|
1114
|
+
})(FilterOperator || (FilterOperator = {}));
|
|
1115
|
+
export var CrawlsFilter;
|
|
1116
|
+
(function (CrawlsFilter) {
|
|
1117
|
+
CrawlsFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1118
|
+
})(CrawlsFilter || (CrawlsFilter = {}));
|
|
1119
|
+
export var ListCrawlsRequest;
|
|
1120
|
+
(function (ListCrawlsRequest) {
|
|
1121
|
+
ListCrawlsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1122
|
+
})(ListCrawlsRequest || (ListCrawlsRequest = {}));
|
|
1123
|
+
export var CrawlerHistoryState;
|
|
1124
|
+
(function (CrawlerHistoryState) {
|
|
1125
|
+
CrawlerHistoryState["COMPLETED"] = "COMPLETED";
|
|
1126
|
+
CrawlerHistoryState["FAILED"] = "FAILED";
|
|
1127
|
+
CrawlerHistoryState["RUNNING"] = "RUNNING";
|
|
1128
|
+
CrawlerHistoryState["STOPPED"] = "STOPPED";
|
|
1129
|
+
})(CrawlerHistoryState || (CrawlerHistoryState = {}));
|
|
1130
|
+
export var CrawlerHistory;
|
|
1131
|
+
(function (CrawlerHistory) {
|
|
1132
|
+
CrawlerHistory.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1133
|
+
})(CrawlerHistory || (CrawlerHistory = {}));
|
|
1134
|
+
export var ListCrawlsResponse;
|
|
1135
|
+
(function (ListCrawlsResponse) {
|
|
1136
|
+
ListCrawlsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1137
|
+
})(ListCrawlsResponse || (ListCrawlsResponse = {}));
|
|
1098
1138
|
export var ListCustomEntityTypesRequest;
|
|
1099
1139
|
(function (ListCustomEntityTypesRequest) {
|
|
1100
1140
|
ListCustomEntityTypesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1258,40 +1298,3 @@ export var QuerySchemaVersionMetadataResponse;
|
|
|
1258
1298
|
(function (QuerySchemaVersionMetadataResponse) {
|
|
1259
1299
|
QuerySchemaVersionMetadataResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1260
1300
|
})(QuerySchemaVersionMetadataResponse || (QuerySchemaVersionMetadataResponse = {}));
|
|
1261
|
-
export var RegisterSchemaVersionInput;
|
|
1262
|
-
(function (RegisterSchemaVersionInput) {
|
|
1263
|
-
RegisterSchemaVersionInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1264
|
-
})(RegisterSchemaVersionInput || (RegisterSchemaVersionInput = {}));
|
|
1265
|
-
export var RegisterSchemaVersionResponse;
|
|
1266
|
-
(function (RegisterSchemaVersionResponse) {
|
|
1267
|
-
RegisterSchemaVersionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1268
|
-
})(RegisterSchemaVersionResponse || (RegisterSchemaVersionResponse = {}));
|
|
1269
|
-
export var RemoveSchemaVersionMetadataInput;
|
|
1270
|
-
(function (RemoveSchemaVersionMetadataInput) {
|
|
1271
|
-
RemoveSchemaVersionMetadataInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1272
|
-
})(RemoveSchemaVersionMetadataInput || (RemoveSchemaVersionMetadataInput = {}));
|
|
1273
|
-
export var RemoveSchemaVersionMetadataResponse;
|
|
1274
|
-
(function (RemoveSchemaVersionMetadataResponse) {
|
|
1275
|
-
RemoveSchemaVersionMetadataResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1276
|
-
})(RemoveSchemaVersionMetadataResponse || (RemoveSchemaVersionMetadataResponse = {}));
|
|
1277
|
-
export var ResetJobBookmarkRequest;
|
|
1278
|
-
(function (ResetJobBookmarkRequest) {
|
|
1279
|
-
ResetJobBookmarkRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1280
|
-
})(ResetJobBookmarkRequest || (ResetJobBookmarkRequest = {}));
|
|
1281
|
-
export var ResetJobBookmarkResponse;
|
|
1282
|
-
(function (ResetJobBookmarkResponse) {
|
|
1283
|
-
ResetJobBookmarkResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1284
|
-
})(ResetJobBookmarkResponse || (ResetJobBookmarkResponse = {}));
|
|
1285
|
-
var ConcurrentRunsExceededException = (function (_super) {
|
|
1286
|
-
__extends(ConcurrentRunsExceededException, _super);
|
|
1287
|
-
function ConcurrentRunsExceededException(opts) {
|
|
1288
|
-
var _this = _super.call(this, __assign({ name: "ConcurrentRunsExceededException", $fault: "client" }, opts)) || this;
|
|
1289
|
-
_this.name = "ConcurrentRunsExceededException";
|
|
1290
|
-
_this.$fault = "client";
|
|
1291
|
-
Object.setPrototypeOf(_this, ConcurrentRunsExceededException.prototype);
|
|
1292
|
-
_this.Message = opts.Message;
|
|
1293
|
-
return _this;
|
|
1294
|
-
}
|
|
1295
|
-
return ConcurrentRunsExceededException;
|
|
1296
|
-
}(__BaseException));
|
|
1297
|
-
export { ConcurrentRunsExceededException };
|
|
@@ -1,6 +1,43 @@
|
|
|
1
1
|
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
4
|
+
export var RegisterSchemaVersionInput;
|
|
5
|
+
(function (RegisterSchemaVersionInput) {
|
|
6
|
+
RegisterSchemaVersionInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
7
|
+
})(RegisterSchemaVersionInput || (RegisterSchemaVersionInput = {}));
|
|
8
|
+
export var RegisterSchemaVersionResponse;
|
|
9
|
+
(function (RegisterSchemaVersionResponse) {
|
|
10
|
+
RegisterSchemaVersionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
11
|
+
})(RegisterSchemaVersionResponse || (RegisterSchemaVersionResponse = {}));
|
|
12
|
+
export var RemoveSchemaVersionMetadataInput;
|
|
13
|
+
(function (RemoveSchemaVersionMetadataInput) {
|
|
14
|
+
RemoveSchemaVersionMetadataInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
15
|
+
})(RemoveSchemaVersionMetadataInput || (RemoveSchemaVersionMetadataInput = {}));
|
|
16
|
+
export var RemoveSchemaVersionMetadataResponse;
|
|
17
|
+
(function (RemoveSchemaVersionMetadataResponse) {
|
|
18
|
+
RemoveSchemaVersionMetadataResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
19
|
+
})(RemoveSchemaVersionMetadataResponse || (RemoveSchemaVersionMetadataResponse = {}));
|
|
20
|
+
export var ResetJobBookmarkRequest;
|
|
21
|
+
(function (ResetJobBookmarkRequest) {
|
|
22
|
+
ResetJobBookmarkRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
23
|
+
})(ResetJobBookmarkRequest || (ResetJobBookmarkRequest = {}));
|
|
24
|
+
export var ResetJobBookmarkResponse;
|
|
25
|
+
(function (ResetJobBookmarkResponse) {
|
|
26
|
+
ResetJobBookmarkResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
27
|
+
})(ResetJobBookmarkResponse || (ResetJobBookmarkResponse = {}));
|
|
28
|
+
var ConcurrentRunsExceededException = (function (_super) {
|
|
29
|
+
__extends(ConcurrentRunsExceededException, _super);
|
|
30
|
+
function ConcurrentRunsExceededException(opts) {
|
|
31
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentRunsExceededException", $fault: "client" }, opts)) || this;
|
|
32
|
+
_this.name = "ConcurrentRunsExceededException";
|
|
33
|
+
_this.$fault = "client";
|
|
34
|
+
Object.setPrototypeOf(_this, ConcurrentRunsExceededException.prototype);
|
|
35
|
+
_this.Message = opts.Message;
|
|
36
|
+
return _this;
|
|
37
|
+
}
|
|
38
|
+
return ConcurrentRunsExceededException;
|
|
39
|
+
}(__BaseException));
|
|
40
|
+
export { ConcurrentRunsExceededException };
|
|
4
41
|
var IllegalWorkflowStateException = (function (_super) {
|
|
5
42
|
__extends(IllegalWorkflowStateException, _super);
|
|
6
43
|
function IllegalWorkflowStateException(opts) {
|
|
@@ -3,8 +3,8 @@ import { HttpRequest as __HttpRequest } from "@aws-sdk/protocol-http";
|
|
|
3
3
|
import { decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectString as __expectString, limitedParseDouble as __limitedParseDouble, parseEpochTimestamp as __parseEpochTimestamp, serializeFloat as __serializeFloat, } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { GlueServiceException as __BaseException } from "../models/GlueServiceException";
|
|
5
5
|
import { AccessDeniedException, AlreadyExistsException, ConcurrentModificationException, EntityNotFoundException, GlueEncryptionException, IdempotentParameterMismatchException, IllegalSessionStateException, InternalServiceException, InvalidInputException, InvalidStateException, OperationTimeoutException, ResourceNotReadyException, ResourceNumberLimitExceededException, ValidationException, } from "../models/models_0";
|
|
6
|
-
import {
|
|
7
|
-
import { CrawlerNotRunningException, CrawlerStoppingException, IllegalBlueprintStateException, IllegalWorkflowStateException, MLTransformNotReadyException, NoScheduleException, SchedulerNotRunningException, SchedulerRunningException, VersionMismatchException, } from "../models/models_2";
|
|
6
|
+
import { ConditionCheckFailureException, ConflictException, CrawlerRunningException, PermissionTypeMismatchException, SchedulerTransitioningException, } from "../models/models_1";
|
|
7
|
+
import { ConcurrentRunsExceededException, CrawlerNotRunningException, CrawlerStoppingException, IllegalBlueprintStateException, IllegalWorkflowStateException, MLTransformNotReadyException, NoScheduleException, SchedulerNotRunningException, SchedulerRunningException, VersionMismatchException, } from "../models/models_2";
|
|
8
8
|
export var serializeAws_json1_1BatchCreatePartitionCommand = function (input, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
9
9
|
var headers, body;
|
|
10
10
|
return __generator(this, function (_a) {
|
|
@@ -1391,6 +1391,17 @@ export var serializeAws_json1_1ListCrawlersCommand = function (input, context) {
|
|
|
1391
1391
|
return [2, buildHttpRpcRequest(context, headers, "/", undefined, body)];
|
|
1392
1392
|
});
|
|
1393
1393
|
}); };
|
|
1394
|
+
export var serializeAws_json1_1ListCrawlsCommand = function (input, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
1395
|
+
var headers, body;
|
|
1396
|
+
return __generator(this, function (_a) {
|
|
1397
|
+
headers = {
|
|
1398
|
+
"content-type": "application/x-amz-json-1.1",
|
|
1399
|
+
"x-amz-target": "AWSGlue.ListCrawls",
|
|
1400
|
+
};
|
|
1401
|
+
body = JSON.stringify(serializeAws_json1_1ListCrawlsRequest(input, context));
|
|
1402
|
+
return [2, buildHttpRpcRequest(context, headers, "/", undefined, body)];
|
|
1403
|
+
});
|
|
1404
|
+
}); };
|
|
1394
1405
|
export var serializeAws_json1_1ListCustomEntityTypesCommand = function (input, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
1395
1406
|
var headers, body;
|
|
1396
1407
|
return __generator(this, function (_a) {
|
|
@@ -10034,6 +10045,64 @@ var deserializeAws_json1_1ListCrawlersCommandError = function (output, context)
|
|
|
10034
10045
|
}
|
|
10035
10046
|
});
|
|
10036
10047
|
}); };
|
|
10048
|
+
export var deserializeAws_json1_1ListCrawlsCommand = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
10049
|
+
var data, contents, response;
|
|
10050
|
+
return __generator(this, function (_a) {
|
|
10051
|
+
switch (_a.label) {
|
|
10052
|
+
case 0:
|
|
10053
|
+
if (output.statusCode >= 300) {
|
|
10054
|
+
return [2, deserializeAws_json1_1ListCrawlsCommandError(output, context)];
|
|
10055
|
+
}
|
|
10056
|
+
return [4, parseBody(output.body, context)];
|
|
10057
|
+
case 1:
|
|
10058
|
+
data = _a.sent();
|
|
10059
|
+
contents = {};
|
|
10060
|
+
contents = deserializeAws_json1_1ListCrawlsResponse(data, context);
|
|
10061
|
+
response = __assign({ $metadata: deserializeMetadata(output) }, contents);
|
|
10062
|
+
return [2, Promise.resolve(response)];
|
|
10063
|
+
}
|
|
10064
|
+
});
|
|
10065
|
+
}); };
|
|
10066
|
+
var deserializeAws_json1_1ListCrawlsCommandError = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
10067
|
+
var parsedOutput, _a, response, errorCode, _b, parsedBody;
|
|
10068
|
+
var _c;
|
|
10069
|
+
return __generator(this, function (_d) {
|
|
10070
|
+
switch (_d.label) {
|
|
10071
|
+
case 0:
|
|
10072
|
+
_a = [__assign({}, output)];
|
|
10073
|
+
_c = {};
|
|
10074
|
+
return [4, parseBody(output.body, context)];
|
|
10075
|
+
case 1:
|
|
10076
|
+
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
10077
|
+
errorCode = "UnknownError";
|
|
10078
|
+
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
10079
|
+
_b = errorCode;
|
|
10080
|
+
switch (_b) {
|
|
10081
|
+
case "EntityNotFoundException": return [3, 2];
|
|
10082
|
+
case "com.amazonaws.glue#EntityNotFoundException": return [3, 2];
|
|
10083
|
+
case "InvalidInputException": return [3, 4];
|
|
10084
|
+
case "com.amazonaws.glue#InvalidInputException": return [3, 4];
|
|
10085
|
+
case "OperationTimeoutException": return [3, 6];
|
|
10086
|
+
case "com.amazonaws.glue#OperationTimeoutException": return [3, 6];
|
|
10087
|
+
}
|
|
10088
|
+
return [3, 8];
|
|
10089
|
+
case 2: return [4, deserializeAws_json1_1EntityNotFoundExceptionResponse(parsedOutput, context)];
|
|
10090
|
+
case 3: throw _d.sent();
|
|
10091
|
+
case 4: return [4, deserializeAws_json1_1InvalidInputExceptionResponse(parsedOutput, context)];
|
|
10092
|
+
case 5: throw _d.sent();
|
|
10093
|
+
case 6: return [4, deserializeAws_json1_1OperationTimeoutExceptionResponse(parsedOutput, context)];
|
|
10094
|
+
case 7: throw _d.sent();
|
|
10095
|
+
case 8:
|
|
10096
|
+
parsedBody = parsedOutput.body;
|
|
10097
|
+
response = new __BaseException({
|
|
10098
|
+
name: parsedBody.code || parsedBody.Code || errorCode,
|
|
10099
|
+
$fault: "client",
|
|
10100
|
+
$metadata: deserializeMetadata(output),
|
|
10101
|
+
});
|
|
10102
|
+
throw __decorateServiceException(response, parsedBody);
|
|
10103
|
+
}
|
|
10104
|
+
});
|
|
10105
|
+
}); };
|
|
10037
10106
|
export var deserializeAws_json1_1ListCustomEntityTypesCommand = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
10038
10107
|
var data, contents, response;
|
|
10039
10108
|
return __generator(this, function (_a) {
|
|
@@ -14662,6 +14731,20 @@ var serializeAws_json1_1CrawlerTargets = function (input, context) {
|
|
|
14662
14731
|
})), (input.S3Targets !== undefined &&
|
|
14663
14732
|
input.S3Targets !== null && { S3Targets: serializeAws_json1_1S3TargetList(input.S3Targets, context) }));
|
|
14664
14733
|
};
|
|
14734
|
+
var serializeAws_json1_1CrawlsFilter = function (input, context) {
|
|
14735
|
+
return __assign(__assign(__assign({}, (input.FieldName !== undefined && input.FieldName !== null && { FieldName: input.FieldName })), (input.FieldValue !== undefined && input.FieldValue !== null && { FieldValue: input.FieldValue })), (input.FilterOperator !== undefined &&
|
|
14736
|
+
input.FilterOperator !== null && { FilterOperator: input.FilterOperator }));
|
|
14737
|
+
};
|
|
14738
|
+
var serializeAws_json1_1CrawlsFilterList = function (input, context) {
|
|
14739
|
+
return input
|
|
14740
|
+
.filter(function (e) { return e != null; })
|
|
14741
|
+
.map(function (entry) {
|
|
14742
|
+
if (entry === null) {
|
|
14743
|
+
return null;
|
|
14744
|
+
}
|
|
14745
|
+
return serializeAws_json1_1CrawlsFilter(entry, context);
|
|
14746
|
+
});
|
|
14747
|
+
};
|
|
14665
14748
|
var serializeAws_json1_1CreateBlueprintRequest = function (input, context) {
|
|
14666
14749
|
return __assign(__assign(__assign(__assign({}, (input.BlueprintLocation !== undefined &&
|
|
14667
14750
|
input.BlueprintLocation !== null && { BlueprintLocation: input.BlueprintLocation })), (input.Description !== undefined && input.Description !== null && { Description: input.Description })), (input.Name !== undefined && input.Name !== null && { Name: input.Name })), (input.Tags !== undefined && input.Tags !== null && { Tags: serializeAws_json1_1TagsMap(input.Tags, context) }));
|
|
@@ -15769,6 +15852,10 @@ var serializeAws_json1_1ListBlueprintsRequest = function (input, context) {
|
|
|
15769
15852
|
var serializeAws_json1_1ListCrawlersRequest = function (input, context) {
|
|
15770
15853
|
return __assign(__assign(__assign({}, (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken })), (input.Tags !== undefined && input.Tags !== null && { Tags: serializeAws_json1_1TagsMap(input.Tags, context) }));
|
|
15771
15854
|
};
|
|
15855
|
+
var serializeAws_json1_1ListCrawlsRequest = function (input, context) {
|
|
15856
|
+
return __assign(__assign(__assign(__assign({}, (input.CrawlerName !== undefined && input.CrawlerName !== null && { CrawlerName: input.CrawlerName })), (input.Filters !== undefined &&
|
|
15857
|
+
input.Filters !== null && { Filters: serializeAws_json1_1CrawlsFilterList(input.Filters, context) })), (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));
|
|
15858
|
+
};
|
|
15772
15859
|
var serializeAws_json1_1ListCustomEntityTypesRequest = function (input, context) {
|
|
15773
15860
|
return __assign(__assign({}, (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken }));
|
|
15774
15861
|
};
|
|
@@ -18077,6 +18164,35 @@ var deserializeAws_json1_1Crawler = function (output, context) {
|
|
|
18077
18164
|
Version: __expectLong(output.Version),
|
|
18078
18165
|
};
|
|
18079
18166
|
};
|
|
18167
|
+
var deserializeAws_json1_1CrawlerHistory = function (output, context) {
|
|
18168
|
+
return {
|
|
18169
|
+
CrawlId: __expectString(output.CrawlId),
|
|
18170
|
+
DPUHour: __limitedParseDouble(output.DPUHour),
|
|
18171
|
+
EndTime: output.EndTime !== undefined && output.EndTime !== null
|
|
18172
|
+
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.EndTime)))
|
|
18173
|
+
: undefined,
|
|
18174
|
+
ErrorMessage: __expectString(output.ErrorMessage),
|
|
18175
|
+
LogGroup: __expectString(output.LogGroup),
|
|
18176
|
+
LogStream: __expectString(output.LogStream),
|
|
18177
|
+
MessagePrefix: __expectString(output.MessagePrefix),
|
|
18178
|
+
StartTime: output.StartTime !== undefined && output.StartTime !== null
|
|
18179
|
+
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.StartTime)))
|
|
18180
|
+
: undefined,
|
|
18181
|
+
State: __expectString(output.State),
|
|
18182
|
+
Summary: __expectString(output.Summary),
|
|
18183
|
+
};
|
|
18184
|
+
};
|
|
18185
|
+
var deserializeAws_json1_1CrawlerHistoryList = function (output, context) {
|
|
18186
|
+
var retVal = (output || [])
|
|
18187
|
+
.filter(function (e) { return e != null; })
|
|
18188
|
+
.map(function (entry) {
|
|
18189
|
+
if (entry === null) {
|
|
18190
|
+
return null;
|
|
18191
|
+
}
|
|
18192
|
+
return deserializeAws_json1_1CrawlerHistory(entry, context);
|
|
18193
|
+
});
|
|
18194
|
+
return retVal;
|
|
18195
|
+
};
|
|
18080
18196
|
var deserializeAws_json1_1CrawlerList = function (output, context) {
|
|
18081
18197
|
var retVal = (output || [])
|
|
18082
18198
|
.filter(function (e) { return e != null; })
|
|
@@ -20129,6 +20245,14 @@ var deserializeAws_json1_1ListCrawlersResponse = function (output, context) {
|
|
|
20129
20245
|
NextToken: __expectString(output.NextToken),
|
|
20130
20246
|
};
|
|
20131
20247
|
};
|
|
20248
|
+
var deserializeAws_json1_1ListCrawlsResponse = function (output, context) {
|
|
20249
|
+
return {
|
|
20250
|
+
Crawls: output.Crawls !== undefined && output.Crawls !== null
|
|
20251
|
+
? deserializeAws_json1_1CrawlerHistoryList(output.Crawls, context)
|
|
20252
|
+
: undefined,
|
|
20253
|
+
NextToken: __expectString(output.NextToken),
|
|
20254
|
+
};
|
|
20255
|
+
};
|
|
20132
20256
|
var deserializeAws_json1_1ListCustomEntityTypesResponse = function (output, context) {
|
|
20133
20257
|
return {
|
|
20134
20258
|
CustomEntityTypes: output.CustomEntityTypes !== undefined && output.CustomEntityTypes !== null
|
package/dist-types/Glue.d.ts
CHANGED
|
@@ -125,6 +125,7 @@ import { GetWorkflowRunsCommandInput, GetWorkflowRunsCommandOutput } from "./com
|
|
|
125
125
|
import { ImportCatalogToGlueCommandInput, ImportCatalogToGlueCommandOutput } from "./commands/ImportCatalogToGlueCommand";
|
|
126
126
|
import { ListBlueprintsCommandInput, ListBlueprintsCommandOutput } from "./commands/ListBlueprintsCommand";
|
|
127
127
|
import { ListCrawlersCommandInput, ListCrawlersCommandOutput } from "./commands/ListCrawlersCommand";
|
|
128
|
+
import { ListCrawlsCommandInput, ListCrawlsCommandOutput } from "./commands/ListCrawlsCommand";
|
|
128
129
|
import { ListCustomEntityTypesCommandInput, ListCustomEntityTypesCommandOutput } from "./commands/ListCustomEntityTypesCommand";
|
|
129
130
|
import { ListDevEndpointsCommandInput, ListDevEndpointsCommandOutput } from "./commands/ListDevEndpointsCommand";
|
|
130
131
|
import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
@@ -1056,6 +1057,28 @@ export declare class Glue extends GlueClient {
|
|
|
1056
1057
|
listCrawlers(args: ListCrawlersCommandInput, options?: __HttpHandlerOptions): Promise<ListCrawlersCommandOutput>;
|
|
1057
1058
|
listCrawlers(args: ListCrawlersCommandInput, cb: (err: any, data?: ListCrawlersCommandOutput) => void): void;
|
|
1058
1059
|
listCrawlers(args: ListCrawlersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCrawlersCommandOutput) => void): void;
|
|
1060
|
+
/**
|
|
1061
|
+
* <p>Returns all the crawls of a specified crawler. Returns only the crawls that have occurred since the launch date of the crawler history feature, and only retains up to 12 months of crawls. Older crawls will not be returned.</p>
|
|
1062
|
+
*
|
|
1063
|
+
* <p>You may use this API to:</p>
|
|
1064
|
+
* <ul>
|
|
1065
|
+
* <li>
|
|
1066
|
+
* <p>Retrive all the crawls of a specified crawler.</p>
|
|
1067
|
+
* </li>
|
|
1068
|
+
* <li>
|
|
1069
|
+
* <p>Retrieve all the crawls of a specified crawler within a limited count.</p>
|
|
1070
|
+
* </li>
|
|
1071
|
+
* <li>
|
|
1072
|
+
* <p>Retrieve all the crawls of a specified crawler in a specific time range.</p>
|
|
1073
|
+
* </li>
|
|
1074
|
+
* <li>
|
|
1075
|
+
* <p>Retrieve all the crawls of a specified crawler with a particular state, crawl ID, or DPU hour value.</p>
|
|
1076
|
+
* </li>
|
|
1077
|
+
* </ul>
|
|
1078
|
+
*/
|
|
1079
|
+
listCrawls(args: ListCrawlsCommandInput, options?: __HttpHandlerOptions): Promise<ListCrawlsCommandOutput>;
|
|
1080
|
+
listCrawls(args: ListCrawlsCommandInput, cb: (err: any, data?: ListCrawlsCommandOutput) => void): void;
|
|
1081
|
+
listCrawls(args: ListCrawlsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCrawlsCommandOutput) => void): void;
|
|
1059
1082
|
/**
|
|
1060
1083
|
* <p>Lists all the custom patterns that have been created.</p>
|
|
1061
1084
|
*/
|
|
@@ -132,6 +132,7 @@ import { GetWorkflowRunsCommandInput, GetWorkflowRunsCommandOutput } from "./com
|
|
|
132
132
|
import { ImportCatalogToGlueCommandInput, ImportCatalogToGlueCommandOutput } from "./commands/ImportCatalogToGlueCommand";
|
|
133
133
|
import { ListBlueprintsCommandInput, ListBlueprintsCommandOutput } from "./commands/ListBlueprintsCommand";
|
|
134
134
|
import { ListCrawlersCommandInput, ListCrawlersCommandOutput } from "./commands/ListCrawlersCommand";
|
|
135
|
+
import { ListCrawlsCommandInput, ListCrawlsCommandOutput } from "./commands/ListCrawlsCommand";
|
|
135
136
|
import { ListCustomEntityTypesCommandInput, ListCustomEntityTypesCommandOutput } from "./commands/ListCustomEntityTypesCommand";
|
|
136
137
|
import { ListDevEndpointsCommandInput, ListDevEndpointsCommandOutput } from "./commands/ListDevEndpointsCommand";
|
|
137
138
|
import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
@@ -189,8 +190,8 @@ import { UpdateTableCommandInput, UpdateTableCommandOutput } from "./commands/Up
|
|
|
189
190
|
import { UpdateTriggerCommandInput, UpdateTriggerCommandOutput } from "./commands/UpdateTriggerCommand";
|
|
190
191
|
import { UpdateUserDefinedFunctionCommandInput, UpdateUserDefinedFunctionCommandOutput } from "./commands/UpdateUserDefinedFunctionCommand";
|
|
191
192
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "./commands/UpdateWorkflowCommand";
|
|
192
|
-
export declare type ServiceInputTypes = BatchCreatePartitionCommandInput | BatchDeleteConnectionCommandInput | BatchDeletePartitionCommandInput | BatchDeleteTableCommandInput | BatchDeleteTableVersionCommandInput | BatchGetBlueprintsCommandInput | BatchGetCrawlersCommandInput | BatchGetCustomEntityTypesCommandInput | BatchGetDevEndpointsCommandInput | BatchGetJobsCommandInput | BatchGetPartitionCommandInput | BatchGetTriggersCommandInput | BatchGetWorkflowsCommandInput | BatchStopJobRunCommandInput | BatchUpdatePartitionCommandInput | CancelMLTaskRunCommandInput | CancelStatementCommandInput | CheckSchemaVersionValidityCommandInput | CreateBlueprintCommandInput | CreateClassifierCommandInput | CreateConnectionCommandInput | CreateCrawlerCommandInput | CreateCustomEntityTypeCommandInput | CreateDatabaseCommandInput | CreateDevEndpointCommandInput | CreateJobCommandInput | CreateMLTransformCommandInput | CreatePartitionCommandInput | CreatePartitionIndexCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | CreateScriptCommandInput | CreateSecurityConfigurationCommandInput | CreateSessionCommandInput | CreateTableCommandInput | CreateTriggerCommandInput | CreateUserDefinedFunctionCommandInput | CreateWorkflowCommandInput | DeleteBlueprintCommandInput | DeleteClassifierCommandInput | DeleteColumnStatisticsForPartitionCommandInput | DeleteColumnStatisticsForTableCommandInput | DeleteConnectionCommandInput | DeleteCrawlerCommandInput | DeleteCustomEntityTypeCommandInput | DeleteDatabaseCommandInput | DeleteDevEndpointCommandInput | DeleteJobCommandInput | DeleteMLTransformCommandInput | DeletePartitionCommandInput | DeletePartitionIndexCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionsCommandInput | DeleteSecurityConfigurationCommandInput | DeleteSessionCommandInput | DeleteTableCommandInput | DeleteTableVersionCommandInput | DeleteTriggerCommandInput | DeleteUserDefinedFunctionCommandInput | DeleteWorkflowCommandInput | GetBlueprintCommandInput | GetBlueprintRunCommandInput | GetBlueprintRunsCommandInput | GetCatalogImportStatusCommandInput | GetClassifierCommandInput | GetClassifiersCommandInput | GetColumnStatisticsForPartitionCommandInput | GetColumnStatisticsForTableCommandInput | GetConnectionCommandInput | GetConnectionsCommandInput | GetCrawlerCommandInput | GetCrawlerMetricsCommandInput | GetCrawlersCommandInput | GetCustomEntityTypeCommandInput | GetDataCatalogEncryptionSettingsCommandInput | GetDatabaseCommandInput | GetDatabasesCommandInput | GetDataflowGraphCommandInput | GetDevEndpointCommandInput | GetDevEndpointsCommandInput | GetJobBookmarkCommandInput | GetJobCommandInput | GetJobRunCommandInput | GetJobRunsCommandInput | GetJobsCommandInput | GetMLTaskRunCommandInput | GetMLTaskRunsCommandInput | GetMLTransformCommandInput | GetMLTransformsCommandInput | GetMappingCommandInput | GetPartitionCommandInput | GetPartitionIndexesCommandInput | GetPartitionsCommandInput | GetPlanCommandInput | GetRegistryCommandInput | GetResourcePoliciesCommandInput | GetResourcePolicyCommandInput | GetSchemaByDefinitionCommandInput | GetSchemaCommandInput | GetSchemaVersionCommandInput | GetSchemaVersionsDiffCommandInput | GetSecurityConfigurationCommandInput | GetSecurityConfigurationsCommandInput | GetSessionCommandInput | GetStatementCommandInput | GetTableCommandInput | GetTableVersionCommandInput | GetTableVersionsCommandInput | GetTablesCommandInput | GetTagsCommandInput | GetTriggerCommandInput | GetTriggersCommandInput | GetUnfilteredPartitionMetadataCommandInput | GetUnfilteredPartitionsMetadataCommandInput | GetUnfilteredTableMetadataCommandInput | GetUserDefinedFunctionCommandInput | GetUserDefinedFunctionsCommandInput | GetWorkflowCommandInput | GetWorkflowRunCommandInput | GetWorkflowRunPropertiesCommandInput | GetWorkflowRunsCommandInput | ImportCatalogToGlueCommandInput | ListBlueprintsCommandInput | ListCrawlersCommandInput | ListCustomEntityTypesCommandInput | ListDevEndpointsCommandInput | ListJobsCommandInput | ListMLTransformsCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListSessionsCommandInput | ListStatementsCommandInput | ListTriggersCommandInput | ListWorkflowsCommandInput | PutDataCatalogEncryptionSettingsCommandInput | PutResourcePolicyCommandInput | PutSchemaVersionMetadataCommandInput | PutWorkflowRunPropertiesCommandInput | QuerySchemaVersionMetadataCommandInput | RegisterSchemaVersionCommandInput | RemoveSchemaVersionMetadataCommandInput | ResetJobBookmarkCommandInput | ResumeWorkflowRunCommandInput | RunStatementCommandInput | SearchTablesCommandInput | StartBlueprintRunCommandInput | StartCrawlerCommandInput | StartCrawlerScheduleCommandInput | StartExportLabelsTaskRunCommandInput | StartImportLabelsTaskRunCommandInput | StartJobRunCommandInput | StartMLEvaluationTaskRunCommandInput | StartMLLabelingSetGenerationTaskRunCommandInput | StartTriggerCommandInput | StartWorkflowRunCommandInput | StopCrawlerCommandInput | StopCrawlerScheduleCommandInput | StopSessionCommandInput | StopTriggerCommandInput | StopWorkflowRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBlueprintCommandInput | UpdateClassifierCommandInput | UpdateColumnStatisticsForPartitionCommandInput | UpdateColumnStatisticsForTableCommandInput | UpdateConnectionCommandInput | UpdateCrawlerCommandInput | UpdateCrawlerScheduleCommandInput | UpdateDatabaseCommandInput | UpdateDevEndpointCommandInput | UpdateJobCommandInput | UpdateMLTransformCommandInput | UpdatePartitionCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput | UpdateTableCommandInput | UpdateTriggerCommandInput | UpdateUserDefinedFunctionCommandInput | UpdateWorkflowCommandInput;
|
|
193
|
-
export declare type ServiceOutputTypes = BatchCreatePartitionCommandOutput | BatchDeleteConnectionCommandOutput | BatchDeletePartitionCommandOutput | BatchDeleteTableCommandOutput | BatchDeleteTableVersionCommandOutput | BatchGetBlueprintsCommandOutput | BatchGetCrawlersCommandOutput | BatchGetCustomEntityTypesCommandOutput | BatchGetDevEndpointsCommandOutput | BatchGetJobsCommandOutput | BatchGetPartitionCommandOutput | BatchGetTriggersCommandOutput | BatchGetWorkflowsCommandOutput | BatchStopJobRunCommandOutput | BatchUpdatePartitionCommandOutput | CancelMLTaskRunCommandOutput | CancelStatementCommandOutput | CheckSchemaVersionValidityCommandOutput | CreateBlueprintCommandOutput | CreateClassifierCommandOutput | CreateConnectionCommandOutput | CreateCrawlerCommandOutput | CreateCustomEntityTypeCommandOutput | CreateDatabaseCommandOutput | CreateDevEndpointCommandOutput | CreateJobCommandOutput | CreateMLTransformCommandOutput | CreatePartitionCommandOutput | CreatePartitionIndexCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | CreateScriptCommandOutput | CreateSecurityConfigurationCommandOutput | CreateSessionCommandOutput | CreateTableCommandOutput | CreateTriggerCommandOutput | CreateUserDefinedFunctionCommandOutput | CreateWorkflowCommandOutput | DeleteBlueprintCommandOutput | DeleteClassifierCommandOutput | DeleteColumnStatisticsForPartitionCommandOutput | DeleteColumnStatisticsForTableCommandOutput | DeleteConnectionCommandOutput | DeleteCrawlerCommandOutput | DeleteCustomEntityTypeCommandOutput | DeleteDatabaseCommandOutput | DeleteDevEndpointCommandOutput | DeleteJobCommandOutput | DeleteMLTransformCommandOutput | DeletePartitionCommandOutput | DeletePartitionIndexCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionsCommandOutput | DeleteSecurityConfigurationCommandOutput | DeleteSessionCommandOutput | DeleteTableCommandOutput | DeleteTableVersionCommandOutput | DeleteTriggerCommandOutput | DeleteUserDefinedFunctionCommandOutput | DeleteWorkflowCommandOutput | GetBlueprintCommandOutput | GetBlueprintRunCommandOutput | GetBlueprintRunsCommandOutput | GetCatalogImportStatusCommandOutput | GetClassifierCommandOutput | GetClassifiersCommandOutput | GetColumnStatisticsForPartitionCommandOutput | GetColumnStatisticsForTableCommandOutput | GetConnectionCommandOutput | GetConnectionsCommandOutput | GetCrawlerCommandOutput | GetCrawlerMetricsCommandOutput | GetCrawlersCommandOutput | GetCustomEntityTypeCommandOutput | GetDataCatalogEncryptionSettingsCommandOutput | GetDatabaseCommandOutput | GetDatabasesCommandOutput | GetDataflowGraphCommandOutput | GetDevEndpointCommandOutput | GetDevEndpointsCommandOutput | GetJobBookmarkCommandOutput | GetJobCommandOutput | GetJobRunCommandOutput | GetJobRunsCommandOutput | GetJobsCommandOutput | GetMLTaskRunCommandOutput | GetMLTaskRunsCommandOutput | GetMLTransformCommandOutput | GetMLTransformsCommandOutput | GetMappingCommandOutput | GetPartitionCommandOutput | GetPartitionIndexesCommandOutput | GetPartitionsCommandOutput | GetPlanCommandOutput | GetRegistryCommandOutput | GetResourcePoliciesCommandOutput | GetResourcePolicyCommandOutput | GetSchemaByDefinitionCommandOutput | GetSchemaCommandOutput | GetSchemaVersionCommandOutput | GetSchemaVersionsDiffCommandOutput | GetSecurityConfigurationCommandOutput | GetSecurityConfigurationsCommandOutput | GetSessionCommandOutput | GetStatementCommandOutput | GetTableCommandOutput | GetTableVersionCommandOutput | GetTableVersionsCommandOutput | GetTablesCommandOutput | GetTagsCommandOutput | GetTriggerCommandOutput | GetTriggersCommandOutput | GetUnfilteredPartitionMetadataCommandOutput | GetUnfilteredPartitionsMetadataCommandOutput | GetUnfilteredTableMetadataCommandOutput | GetUserDefinedFunctionCommandOutput | GetUserDefinedFunctionsCommandOutput | GetWorkflowCommandOutput | GetWorkflowRunCommandOutput | GetWorkflowRunPropertiesCommandOutput | GetWorkflowRunsCommandOutput | ImportCatalogToGlueCommandOutput | ListBlueprintsCommandOutput | ListCrawlersCommandOutput | ListCustomEntityTypesCommandOutput | ListDevEndpointsCommandOutput | ListJobsCommandOutput | ListMLTransformsCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListSessionsCommandOutput | ListStatementsCommandOutput | ListTriggersCommandOutput | ListWorkflowsCommandOutput | PutDataCatalogEncryptionSettingsCommandOutput | PutResourcePolicyCommandOutput | PutSchemaVersionMetadataCommandOutput | PutWorkflowRunPropertiesCommandOutput | QuerySchemaVersionMetadataCommandOutput | RegisterSchemaVersionCommandOutput | RemoveSchemaVersionMetadataCommandOutput | ResetJobBookmarkCommandOutput | ResumeWorkflowRunCommandOutput | RunStatementCommandOutput | SearchTablesCommandOutput | StartBlueprintRunCommandOutput | StartCrawlerCommandOutput | StartCrawlerScheduleCommandOutput | StartExportLabelsTaskRunCommandOutput | StartImportLabelsTaskRunCommandOutput | StartJobRunCommandOutput | StartMLEvaluationTaskRunCommandOutput | StartMLLabelingSetGenerationTaskRunCommandOutput | StartTriggerCommandOutput | StartWorkflowRunCommandOutput | StopCrawlerCommandOutput | StopCrawlerScheduleCommandOutput | StopSessionCommandOutput | StopTriggerCommandOutput | StopWorkflowRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBlueprintCommandOutput | UpdateClassifierCommandOutput | UpdateColumnStatisticsForPartitionCommandOutput | UpdateColumnStatisticsForTableCommandOutput | UpdateConnectionCommandOutput | UpdateCrawlerCommandOutput | UpdateCrawlerScheduleCommandOutput | UpdateDatabaseCommandOutput | UpdateDevEndpointCommandOutput | UpdateJobCommandOutput | UpdateMLTransformCommandOutput | UpdatePartitionCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput | UpdateTableCommandOutput | UpdateTriggerCommandOutput | UpdateUserDefinedFunctionCommandOutput | UpdateWorkflowCommandOutput;
|
|
193
|
+
export declare type ServiceInputTypes = BatchCreatePartitionCommandInput | BatchDeleteConnectionCommandInput | BatchDeletePartitionCommandInput | BatchDeleteTableCommandInput | BatchDeleteTableVersionCommandInput | BatchGetBlueprintsCommandInput | BatchGetCrawlersCommandInput | BatchGetCustomEntityTypesCommandInput | BatchGetDevEndpointsCommandInput | BatchGetJobsCommandInput | BatchGetPartitionCommandInput | BatchGetTriggersCommandInput | BatchGetWorkflowsCommandInput | BatchStopJobRunCommandInput | BatchUpdatePartitionCommandInput | CancelMLTaskRunCommandInput | CancelStatementCommandInput | CheckSchemaVersionValidityCommandInput | CreateBlueprintCommandInput | CreateClassifierCommandInput | CreateConnectionCommandInput | CreateCrawlerCommandInput | CreateCustomEntityTypeCommandInput | CreateDatabaseCommandInput | CreateDevEndpointCommandInput | CreateJobCommandInput | CreateMLTransformCommandInput | CreatePartitionCommandInput | CreatePartitionIndexCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | CreateScriptCommandInput | CreateSecurityConfigurationCommandInput | CreateSessionCommandInput | CreateTableCommandInput | CreateTriggerCommandInput | CreateUserDefinedFunctionCommandInput | CreateWorkflowCommandInput | DeleteBlueprintCommandInput | DeleteClassifierCommandInput | DeleteColumnStatisticsForPartitionCommandInput | DeleteColumnStatisticsForTableCommandInput | DeleteConnectionCommandInput | DeleteCrawlerCommandInput | DeleteCustomEntityTypeCommandInput | DeleteDatabaseCommandInput | DeleteDevEndpointCommandInput | DeleteJobCommandInput | DeleteMLTransformCommandInput | DeletePartitionCommandInput | DeletePartitionIndexCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionsCommandInput | DeleteSecurityConfigurationCommandInput | DeleteSessionCommandInput | DeleteTableCommandInput | DeleteTableVersionCommandInput | DeleteTriggerCommandInput | DeleteUserDefinedFunctionCommandInput | DeleteWorkflowCommandInput | GetBlueprintCommandInput | GetBlueprintRunCommandInput | GetBlueprintRunsCommandInput | GetCatalogImportStatusCommandInput | GetClassifierCommandInput | GetClassifiersCommandInput | GetColumnStatisticsForPartitionCommandInput | GetColumnStatisticsForTableCommandInput | GetConnectionCommandInput | GetConnectionsCommandInput | GetCrawlerCommandInput | GetCrawlerMetricsCommandInput | GetCrawlersCommandInput | GetCustomEntityTypeCommandInput | GetDataCatalogEncryptionSettingsCommandInput | GetDatabaseCommandInput | GetDatabasesCommandInput | GetDataflowGraphCommandInput | GetDevEndpointCommandInput | GetDevEndpointsCommandInput | GetJobBookmarkCommandInput | GetJobCommandInput | GetJobRunCommandInput | GetJobRunsCommandInput | GetJobsCommandInput | GetMLTaskRunCommandInput | GetMLTaskRunsCommandInput | GetMLTransformCommandInput | GetMLTransformsCommandInput | GetMappingCommandInput | GetPartitionCommandInput | GetPartitionIndexesCommandInput | GetPartitionsCommandInput | GetPlanCommandInput | GetRegistryCommandInput | GetResourcePoliciesCommandInput | GetResourcePolicyCommandInput | GetSchemaByDefinitionCommandInput | GetSchemaCommandInput | GetSchemaVersionCommandInput | GetSchemaVersionsDiffCommandInput | GetSecurityConfigurationCommandInput | GetSecurityConfigurationsCommandInput | GetSessionCommandInput | GetStatementCommandInput | GetTableCommandInput | GetTableVersionCommandInput | GetTableVersionsCommandInput | GetTablesCommandInput | GetTagsCommandInput | GetTriggerCommandInput | GetTriggersCommandInput | GetUnfilteredPartitionMetadataCommandInput | GetUnfilteredPartitionsMetadataCommandInput | GetUnfilteredTableMetadataCommandInput | GetUserDefinedFunctionCommandInput | GetUserDefinedFunctionsCommandInput | GetWorkflowCommandInput | GetWorkflowRunCommandInput | GetWorkflowRunPropertiesCommandInput | GetWorkflowRunsCommandInput | ImportCatalogToGlueCommandInput | ListBlueprintsCommandInput | ListCrawlersCommandInput | ListCrawlsCommandInput | ListCustomEntityTypesCommandInput | ListDevEndpointsCommandInput | ListJobsCommandInput | ListMLTransformsCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListSessionsCommandInput | ListStatementsCommandInput | ListTriggersCommandInput | ListWorkflowsCommandInput | PutDataCatalogEncryptionSettingsCommandInput | PutResourcePolicyCommandInput | PutSchemaVersionMetadataCommandInput | PutWorkflowRunPropertiesCommandInput | QuerySchemaVersionMetadataCommandInput | RegisterSchemaVersionCommandInput | RemoveSchemaVersionMetadataCommandInput | ResetJobBookmarkCommandInput | ResumeWorkflowRunCommandInput | RunStatementCommandInput | SearchTablesCommandInput | StartBlueprintRunCommandInput | StartCrawlerCommandInput | StartCrawlerScheduleCommandInput | StartExportLabelsTaskRunCommandInput | StartImportLabelsTaskRunCommandInput | StartJobRunCommandInput | StartMLEvaluationTaskRunCommandInput | StartMLLabelingSetGenerationTaskRunCommandInput | StartTriggerCommandInput | StartWorkflowRunCommandInput | StopCrawlerCommandInput | StopCrawlerScheduleCommandInput | StopSessionCommandInput | StopTriggerCommandInput | StopWorkflowRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBlueprintCommandInput | UpdateClassifierCommandInput | UpdateColumnStatisticsForPartitionCommandInput | UpdateColumnStatisticsForTableCommandInput | UpdateConnectionCommandInput | UpdateCrawlerCommandInput | UpdateCrawlerScheduleCommandInput | UpdateDatabaseCommandInput | UpdateDevEndpointCommandInput | UpdateJobCommandInput | UpdateMLTransformCommandInput | UpdatePartitionCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput | UpdateTableCommandInput | UpdateTriggerCommandInput | UpdateUserDefinedFunctionCommandInput | UpdateWorkflowCommandInput;
|
|
194
|
+
export declare type ServiceOutputTypes = BatchCreatePartitionCommandOutput | BatchDeleteConnectionCommandOutput | BatchDeletePartitionCommandOutput | BatchDeleteTableCommandOutput | BatchDeleteTableVersionCommandOutput | BatchGetBlueprintsCommandOutput | BatchGetCrawlersCommandOutput | BatchGetCustomEntityTypesCommandOutput | BatchGetDevEndpointsCommandOutput | BatchGetJobsCommandOutput | BatchGetPartitionCommandOutput | BatchGetTriggersCommandOutput | BatchGetWorkflowsCommandOutput | BatchStopJobRunCommandOutput | BatchUpdatePartitionCommandOutput | CancelMLTaskRunCommandOutput | CancelStatementCommandOutput | CheckSchemaVersionValidityCommandOutput | CreateBlueprintCommandOutput | CreateClassifierCommandOutput | CreateConnectionCommandOutput | CreateCrawlerCommandOutput | CreateCustomEntityTypeCommandOutput | CreateDatabaseCommandOutput | CreateDevEndpointCommandOutput | CreateJobCommandOutput | CreateMLTransformCommandOutput | CreatePartitionCommandOutput | CreatePartitionIndexCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | CreateScriptCommandOutput | CreateSecurityConfigurationCommandOutput | CreateSessionCommandOutput | CreateTableCommandOutput | CreateTriggerCommandOutput | CreateUserDefinedFunctionCommandOutput | CreateWorkflowCommandOutput | DeleteBlueprintCommandOutput | DeleteClassifierCommandOutput | DeleteColumnStatisticsForPartitionCommandOutput | DeleteColumnStatisticsForTableCommandOutput | DeleteConnectionCommandOutput | DeleteCrawlerCommandOutput | DeleteCustomEntityTypeCommandOutput | DeleteDatabaseCommandOutput | DeleteDevEndpointCommandOutput | DeleteJobCommandOutput | DeleteMLTransformCommandOutput | DeletePartitionCommandOutput | DeletePartitionIndexCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionsCommandOutput | DeleteSecurityConfigurationCommandOutput | DeleteSessionCommandOutput | DeleteTableCommandOutput | DeleteTableVersionCommandOutput | DeleteTriggerCommandOutput | DeleteUserDefinedFunctionCommandOutput | DeleteWorkflowCommandOutput | GetBlueprintCommandOutput | GetBlueprintRunCommandOutput | GetBlueprintRunsCommandOutput | GetCatalogImportStatusCommandOutput | GetClassifierCommandOutput | GetClassifiersCommandOutput | GetColumnStatisticsForPartitionCommandOutput | GetColumnStatisticsForTableCommandOutput | GetConnectionCommandOutput | GetConnectionsCommandOutput | GetCrawlerCommandOutput | GetCrawlerMetricsCommandOutput | GetCrawlersCommandOutput | GetCustomEntityTypeCommandOutput | GetDataCatalogEncryptionSettingsCommandOutput | GetDatabaseCommandOutput | GetDatabasesCommandOutput | GetDataflowGraphCommandOutput | GetDevEndpointCommandOutput | GetDevEndpointsCommandOutput | GetJobBookmarkCommandOutput | GetJobCommandOutput | GetJobRunCommandOutput | GetJobRunsCommandOutput | GetJobsCommandOutput | GetMLTaskRunCommandOutput | GetMLTaskRunsCommandOutput | GetMLTransformCommandOutput | GetMLTransformsCommandOutput | GetMappingCommandOutput | GetPartitionCommandOutput | GetPartitionIndexesCommandOutput | GetPartitionsCommandOutput | GetPlanCommandOutput | GetRegistryCommandOutput | GetResourcePoliciesCommandOutput | GetResourcePolicyCommandOutput | GetSchemaByDefinitionCommandOutput | GetSchemaCommandOutput | GetSchemaVersionCommandOutput | GetSchemaVersionsDiffCommandOutput | GetSecurityConfigurationCommandOutput | GetSecurityConfigurationsCommandOutput | GetSessionCommandOutput | GetStatementCommandOutput | GetTableCommandOutput | GetTableVersionCommandOutput | GetTableVersionsCommandOutput | GetTablesCommandOutput | GetTagsCommandOutput | GetTriggerCommandOutput | GetTriggersCommandOutput | GetUnfilteredPartitionMetadataCommandOutput | GetUnfilteredPartitionsMetadataCommandOutput | GetUnfilteredTableMetadataCommandOutput | GetUserDefinedFunctionCommandOutput | GetUserDefinedFunctionsCommandOutput | GetWorkflowCommandOutput | GetWorkflowRunCommandOutput | GetWorkflowRunPropertiesCommandOutput | GetWorkflowRunsCommandOutput | ImportCatalogToGlueCommandOutput | ListBlueprintsCommandOutput | ListCrawlersCommandOutput | ListCrawlsCommandOutput | ListCustomEntityTypesCommandOutput | ListDevEndpointsCommandOutput | ListJobsCommandOutput | ListMLTransformsCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListSessionsCommandOutput | ListStatementsCommandOutput | ListTriggersCommandOutput | ListWorkflowsCommandOutput | PutDataCatalogEncryptionSettingsCommandOutput | PutResourcePolicyCommandOutput | PutSchemaVersionMetadataCommandOutput | PutWorkflowRunPropertiesCommandOutput | QuerySchemaVersionMetadataCommandOutput | RegisterSchemaVersionCommandOutput | RemoveSchemaVersionMetadataCommandOutput | ResetJobBookmarkCommandOutput | ResumeWorkflowRunCommandOutput | RunStatementCommandOutput | SearchTablesCommandOutput | StartBlueprintRunCommandOutput | StartCrawlerCommandOutput | StartCrawlerScheduleCommandOutput | StartExportLabelsTaskRunCommandOutput | StartImportLabelsTaskRunCommandOutput | StartJobRunCommandOutput | StartMLEvaluationTaskRunCommandOutput | StartMLLabelingSetGenerationTaskRunCommandOutput | StartTriggerCommandOutput | StartWorkflowRunCommandOutput | StopCrawlerCommandOutput | StopCrawlerScheduleCommandOutput | StopSessionCommandOutput | StopTriggerCommandOutput | StopWorkflowRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBlueprintCommandOutput | UpdateClassifierCommandOutput | UpdateColumnStatisticsForPartitionCommandOutput | UpdateColumnStatisticsForTableCommandOutput | UpdateConnectionCommandOutput | UpdateCrawlerCommandOutput | UpdateCrawlerScheduleCommandOutput | UpdateDatabaseCommandOutput | UpdateDevEndpointCommandOutput | UpdateJobCommandOutput | UpdateMLTransformCommandOutput | UpdatePartitionCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput | UpdateTableCommandOutput | UpdateTriggerCommandOutput | UpdateUserDefinedFunctionCommandOutput | UpdateWorkflowCommandOutput;
|
|
194
195
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
195
196
|
/**
|
|
196
197
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
+
import { ListCrawlsRequest, ListCrawlsResponse } from "../models/models_1";
|
|
5
|
+
export interface ListCrawlsCommandInput extends ListCrawlsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListCrawlsCommandOutput extends ListCrawlsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Returns all the crawls of a specified crawler. Returns only the crawls that have occurred since the launch date of the crawler history feature, and only retains up to 12 months of crawls. Older crawls will not be returned.</p>
|
|
11
|
+
*
|
|
12
|
+
* <p>You may use this API to:</p>
|
|
13
|
+
* <ul>
|
|
14
|
+
* <li>
|
|
15
|
+
* <p>Retrive all the crawls of a specified crawler.</p>
|
|
16
|
+
* </li>
|
|
17
|
+
* <li>
|
|
18
|
+
* <p>Retrieve all the crawls of a specified crawler within a limited count.</p>
|
|
19
|
+
* </li>
|
|
20
|
+
* <li>
|
|
21
|
+
* <p>Retrieve all the crawls of a specified crawler in a specific time range.</p>
|
|
22
|
+
* </li>
|
|
23
|
+
* <li>
|
|
24
|
+
* <p>Retrieve all the crawls of a specified crawler with a particular state, crawl ID, or DPU hour value.</p>
|
|
25
|
+
* </li>
|
|
26
|
+
* </ul>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { GlueClient, ListCrawlsCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
31
|
+
* // const { GlueClient, ListCrawlsCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
32
|
+
* const client = new GlueClient(config);
|
|
33
|
+
* const command = new ListCrawlsCommand(input);
|
|
34
|
+
* const response = await client.send(command);
|
|
35
|
+
* ```
|
|
36
|
+
*
|
|
37
|
+
* @see {@link ListCrawlsCommandInput} for command's `input` shape.
|
|
38
|
+
* @see {@link ListCrawlsCommandOutput} for command's `response` shape.
|
|
39
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
40
|
+
*
|
|
41
|
+
*/
|
|
42
|
+
export declare class ListCrawlsCommand extends $Command<ListCrawlsCommandInput, ListCrawlsCommandOutput, GlueClientResolvedConfig> {
|
|
43
|
+
readonly input: ListCrawlsCommandInput;
|
|
44
|
+
constructor(input: ListCrawlsCommandInput);
|
|
45
|
+
/**
|
|
46
|
+
* @internal
|
|
47
|
+
*/
|
|
48
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlueClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCrawlsCommandInput, ListCrawlsCommandOutput>;
|
|
49
|
+
private serialize;
|
|
50
|
+
private deserialize;
|
|
51
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { RegisterSchemaVersionInput, RegisterSchemaVersionResponse } from "../models/
|
|
4
|
+
import { RegisterSchemaVersionInput, RegisterSchemaVersionResponse } from "../models/models_2";
|
|
5
5
|
export interface RegisterSchemaVersionCommandInput extends RegisterSchemaVersionInput {
|
|
6
6
|
}
|
|
7
7
|
export interface RegisterSchemaVersionCommandOutput extends RegisterSchemaVersionResponse, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { RemoveSchemaVersionMetadataInput, RemoveSchemaVersionMetadataResponse } from "../models/
|
|
4
|
+
import { RemoveSchemaVersionMetadataInput, RemoveSchemaVersionMetadataResponse } from "../models/models_2";
|
|
5
5
|
export interface RemoveSchemaVersionMetadataCommandInput extends RemoveSchemaVersionMetadataInput {
|
|
6
6
|
}
|
|
7
7
|
export interface RemoveSchemaVersionMetadataCommandOutput extends RemoveSchemaVersionMetadataResponse, __MetadataBearer {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { ResetJobBookmarkRequest, ResetJobBookmarkResponse } from "../models/
|
|
4
|
+
import { ResetJobBookmarkRequest, ResetJobBookmarkResponse } from "../models/models_2";
|
|
5
5
|
export interface ResetJobBookmarkCommandInput extends ResetJobBookmarkRequest {
|
|
6
6
|
}
|
|
7
7
|
export interface ResetJobBookmarkCommandOutput extends ResetJobBookmarkResponse, __MetadataBearer {
|
|
@@ -124,6 +124,7 @@ export * from "./GetWorkflowRunsCommand";
|
|
|
124
124
|
export * from "./ImportCatalogToGlueCommand";
|
|
125
125
|
export * from "./ListBlueprintsCommand";
|
|
126
126
|
export * from "./ListCrawlersCommand";
|
|
127
|
+
export * from "./ListCrawlsCommand";
|
|
127
128
|
export * from "./ListCustomEntityTypesCommand";
|
|
128
129
|
export * from "./ListDevEndpointsCommand";
|
|
129
130
|
export * from "./ListJobsCommand";
|