@aws-sdk/client-glue 3.112.0 → 3.118.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/CHANGELOG.md +11 -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 +4 -4
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
export declare class ListCrawlsCommand extends $Command<ListCrawlsCommandInput, ListCrawlsCommandOutput, GlueClientResolvedConfig> {
|
|
11
|
+
readonly input: ListCrawlsCommandInput;
|
|
12
|
+
constructor(input: ListCrawlsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlueClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCrawlsCommandInput, ListCrawlsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -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";
|
|
@@ -2931,6 +2931,91 @@ export declare namespace ListCrawlersResponse {
|
|
|
2931
2931
|
|
|
2932
2932
|
const filterSensitiveLog: (obj: ListCrawlersResponse) => any;
|
|
2933
2933
|
}
|
|
2934
|
+
export declare enum FieldName {
|
|
2935
|
+
CRAWL_ID = "CRAWL_ID",
|
|
2936
|
+
DPU_HOUR = "DPU_HOUR",
|
|
2937
|
+
END_TIME = "END_TIME",
|
|
2938
|
+
START_TIME = "START_TIME",
|
|
2939
|
+
STATE = "STATE"
|
|
2940
|
+
}
|
|
2941
|
+
export declare enum FilterOperator {
|
|
2942
|
+
EQ = "EQ",
|
|
2943
|
+
GE = "GE",
|
|
2944
|
+
GT = "GT",
|
|
2945
|
+
LE = "LE",
|
|
2946
|
+
LT = "LT",
|
|
2947
|
+
NE = "NE"
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2950
|
+
export interface CrawlsFilter {
|
|
2951
|
+
|
|
2952
|
+
FieldName?: FieldName | string;
|
|
2953
|
+
|
|
2954
|
+
FilterOperator?: FilterOperator | string;
|
|
2955
|
+
|
|
2956
|
+
FieldValue?: string;
|
|
2957
|
+
}
|
|
2958
|
+
export declare namespace CrawlsFilter {
|
|
2959
|
+
|
|
2960
|
+
const filterSensitiveLog: (obj: CrawlsFilter) => any;
|
|
2961
|
+
}
|
|
2962
|
+
export interface ListCrawlsRequest {
|
|
2963
|
+
|
|
2964
|
+
CrawlerName: string | undefined;
|
|
2965
|
+
|
|
2966
|
+
MaxResults?: number;
|
|
2967
|
+
|
|
2968
|
+
Filters?: CrawlsFilter[];
|
|
2969
|
+
|
|
2970
|
+
NextToken?: string;
|
|
2971
|
+
}
|
|
2972
|
+
export declare namespace ListCrawlsRequest {
|
|
2973
|
+
|
|
2974
|
+
const filterSensitiveLog: (obj: ListCrawlsRequest) => any;
|
|
2975
|
+
}
|
|
2976
|
+
export declare enum CrawlerHistoryState {
|
|
2977
|
+
COMPLETED = "COMPLETED",
|
|
2978
|
+
FAILED = "FAILED",
|
|
2979
|
+
RUNNING = "RUNNING",
|
|
2980
|
+
STOPPED = "STOPPED"
|
|
2981
|
+
}
|
|
2982
|
+
|
|
2983
|
+
export interface CrawlerHistory {
|
|
2984
|
+
|
|
2985
|
+
CrawlId?: string;
|
|
2986
|
+
|
|
2987
|
+
State?: CrawlerHistoryState | string;
|
|
2988
|
+
|
|
2989
|
+
StartTime?: Date;
|
|
2990
|
+
|
|
2991
|
+
EndTime?: Date;
|
|
2992
|
+
|
|
2993
|
+
Summary?: string;
|
|
2994
|
+
|
|
2995
|
+
ErrorMessage?: string;
|
|
2996
|
+
|
|
2997
|
+
LogGroup?: string;
|
|
2998
|
+
|
|
2999
|
+
LogStream?: string;
|
|
3000
|
+
|
|
3001
|
+
MessagePrefix?: string;
|
|
3002
|
+
|
|
3003
|
+
DPUHour?: number;
|
|
3004
|
+
}
|
|
3005
|
+
export declare namespace CrawlerHistory {
|
|
3006
|
+
|
|
3007
|
+
const filterSensitiveLog: (obj: CrawlerHistory) => any;
|
|
3008
|
+
}
|
|
3009
|
+
export interface ListCrawlsResponse {
|
|
3010
|
+
|
|
3011
|
+
Crawls?: CrawlerHistory[];
|
|
3012
|
+
|
|
3013
|
+
NextToken?: string;
|
|
3014
|
+
}
|
|
3015
|
+
export declare namespace ListCrawlsResponse {
|
|
3016
|
+
|
|
3017
|
+
const filterSensitiveLog: (obj: ListCrawlsResponse) => any;
|
|
3018
|
+
}
|
|
2934
3019
|
export interface ListCustomEntityTypesRequest {
|
|
2935
3020
|
|
|
2936
3021
|
NextToken?: string;
|
|
@@ -3400,88 +3485,3 @@ export declare namespace QuerySchemaVersionMetadataResponse {
|
|
|
3400
3485
|
|
|
3401
3486
|
const filterSensitiveLog: (obj: QuerySchemaVersionMetadataResponse) => any;
|
|
3402
3487
|
}
|
|
3403
|
-
export interface RegisterSchemaVersionInput {
|
|
3404
|
-
|
|
3405
|
-
SchemaId: SchemaId | undefined;
|
|
3406
|
-
|
|
3407
|
-
SchemaDefinition: string | undefined;
|
|
3408
|
-
}
|
|
3409
|
-
export declare namespace RegisterSchemaVersionInput {
|
|
3410
|
-
|
|
3411
|
-
const filterSensitiveLog: (obj: RegisterSchemaVersionInput) => any;
|
|
3412
|
-
}
|
|
3413
|
-
export interface RegisterSchemaVersionResponse {
|
|
3414
|
-
|
|
3415
|
-
SchemaVersionId?: string;
|
|
3416
|
-
|
|
3417
|
-
VersionNumber?: number;
|
|
3418
|
-
|
|
3419
|
-
Status?: SchemaVersionStatus | string;
|
|
3420
|
-
}
|
|
3421
|
-
export declare namespace RegisterSchemaVersionResponse {
|
|
3422
|
-
|
|
3423
|
-
const filterSensitiveLog: (obj: RegisterSchemaVersionResponse) => any;
|
|
3424
|
-
}
|
|
3425
|
-
export interface RemoveSchemaVersionMetadataInput {
|
|
3426
|
-
|
|
3427
|
-
SchemaId?: SchemaId;
|
|
3428
|
-
|
|
3429
|
-
SchemaVersionNumber?: SchemaVersionNumber;
|
|
3430
|
-
|
|
3431
|
-
SchemaVersionId?: string;
|
|
3432
|
-
|
|
3433
|
-
MetadataKeyValue: MetadataKeyValuePair | undefined;
|
|
3434
|
-
}
|
|
3435
|
-
export declare namespace RemoveSchemaVersionMetadataInput {
|
|
3436
|
-
|
|
3437
|
-
const filterSensitiveLog: (obj: RemoveSchemaVersionMetadataInput) => any;
|
|
3438
|
-
}
|
|
3439
|
-
export interface RemoveSchemaVersionMetadataResponse {
|
|
3440
|
-
|
|
3441
|
-
SchemaArn?: string;
|
|
3442
|
-
|
|
3443
|
-
SchemaName?: string;
|
|
3444
|
-
|
|
3445
|
-
RegistryName?: string;
|
|
3446
|
-
|
|
3447
|
-
LatestVersion?: boolean;
|
|
3448
|
-
|
|
3449
|
-
VersionNumber?: number;
|
|
3450
|
-
|
|
3451
|
-
SchemaVersionId?: string;
|
|
3452
|
-
|
|
3453
|
-
MetadataKey?: string;
|
|
3454
|
-
|
|
3455
|
-
MetadataValue?: string;
|
|
3456
|
-
}
|
|
3457
|
-
export declare namespace RemoveSchemaVersionMetadataResponse {
|
|
3458
|
-
|
|
3459
|
-
const filterSensitiveLog: (obj: RemoveSchemaVersionMetadataResponse) => any;
|
|
3460
|
-
}
|
|
3461
|
-
export interface ResetJobBookmarkRequest {
|
|
3462
|
-
|
|
3463
|
-
JobName: string | undefined;
|
|
3464
|
-
|
|
3465
|
-
RunId?: string;
|
|
3466
|
-
}
|
|
3467
|
-
export declare namespace ResetJobBookmarkRequest {
|
|
3468
|
-
|
|
3469
|
-
const filterSensitiveLog: (obj: ResetJobBookmarkRequest) => any;
|
|
3470
|
-
}
|
|
3471
|
-
export interface ResetJobBookmarkResponse {
|
|
3472
|
-
|
|
3473
|
-
JobBookmarkEntry?: JobBookmarkEntry;
|
|
3474
|
-
}
|
|
3475
|
-
export declare namespace ResetJobBookmarkResponse {
|
|
3476
|
-
|
|
3477
|
-
const filterSensitiveLog: (obj: ResetJobBookmarkResponse) => any;
|
|
3478
|
-
}
|
|
3479
|
-
|
|
3480
|
-
export declare class ConcurrentRunsExceededException extends __BaseException {
|
|
3481
|
-
readonly name: "ConcurrentRunsExceededException";
|
|
3482
|
-
readonly $fault: "client";
|
|
3483
|
-
|
|
3484
|
-
Message?: string;
|
|
3485
|
-
|
|
3486
|
-
constructor(opts: __ExceptionOptionType<ConcurrentRunsExceededException, __BaseException>);
|
|
3487
|
-
}
|
|
@@ -1,7 +1,92 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
|
-
import { Action, Aggregate, AthenaConnectorSource, BasicCatalogTarget, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Compatibility, ConnectionInput, ConnectionsList, CrawlerTargets, CsvHeaderOption, CustomCode, DatabaseInput, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamoDBCatalogSource, ErrorDetail, EventBatchingCondition, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, RecrawlPolicy, RedshiftSource, RedshiftTarget, RegistryId, RelationalCatalogSource, RenameField, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DirectTarget, S3GlueParquetTarget, S3JsonSource, S3ParquetSource, SchemaChangePolicy, SchemaId, SelectFields, SelectFromCollection, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, TableInput, TransformParameters, Trigger, Union, UserDefinedFunctionInput, WorkerType } from "./models_0";
|
|
4
|
-
import { ColumnStatistics, ResourceShareType, SchemaVersionNumber, Table } from "./models_1";
|
|
3
|
+
import { Action, Aggregate, AthenaConnectorSource, BasicCatalogTarget, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Compatibility, ConnectionInput, ConnectionsList, CrawlerTargets, CsvHeaderOption, CustomCode, DatabaseInput, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamoDBCatalogSource, ErrorDetail, EventBatchingCondition, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, RecrawlPolicy, RedshiftSource, RedshiftTarget, RegistryId, RelationalCatalogSource, RenameField, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DirectTarget, S3GlueParquetTarget, S3JsonSource, S3ParquetSource, SchemaChangePolicy, SchemaId, SchemaVersionStatus, SelectFields, SelectFromCollection, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, TableInput, TransformParameters, Trigger, Union, UserDefinedFunctionInput, WorkerType } from "./models_0";
|
|
4
|
+
import { ColumnStatistics, JobBookmarkEntry, MetadataKeyValuePair, ResourceShareType, SchemaVersionNumber, Table } from "./models_1";
|
|
5
|
+
export interface RegisterSchemaVersionInput {
|
|
6
|
+
|
|
7
|
+
SchemaId: SchemaId | undefined;
|
|
8
|
+
|
|
9
|
+
SchemaDefinition: string | undefined;
|
|
10
|
+
}
|
|
11
|
+
export declare namespace RegisterSchemaVersionInput {
|
|
12
|
+
|
|
13
|
+
const filterSensitiveLog: (obj: RegisterSchemaVersionInput) => any;
|
|
14
|
+
}
|
|
15
|
+
export interface RegisterSchemaVersionResponse {
|
|
16
|
+
|
|
17
|
+
SchemaVersionId?: string;
|
|
18
|
+
|
|
19
|
+
VersionNumber?: number;
|
|
20
|
+
|
|
21
|
+
Status?: SchemaVersionStatus | string;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace RegisterSchemaVersionResponse {
|
|
24
|
+
|
|
25
|
+
const filterSensitiveLog: (obj: RegisterSchemaVersionResponse) => any;
|
|
26
|
+
}
|
|
27
|
+
export interface RemoveSchemaVersionMetadataInput {
|
|
28
|
+
|
|
29
|
+
SchemaId?: SchemaId;
|
|
30
|
+
|
|
31
|
+
SchemaVersionNumber?: SchemaVersionNumber;
|
|
32
|
+
|
|
33
|
+
SchemaVersionId?: string;
|
|
34
|
+
|
|
35
|
+
MetadataKeyValue: MetadataKeyValuePair | undefined;
|
|
36
|
+
}
|
|
37
|
+
export declare namespace RemoveSchemaVersionMetadataInput {
|
|
38
|
+
|
|
39
|
+
const filterSensitiveLog: (obj: RemoveSchemaVersionMetadataInput) => any;
|
|
40
|
+
}
|
|
41
|
+
export interface RemoveSchemaVersionMetadataResponse {
|
|
42
|
+
|
|
43
|
+
SchemaArn?: string;
|
|
44
|
+
|
|
45
|
+
SchemaName?: string;
|
|
46
|
+
|
|
47
|
+
RegistryName?: string;
|
|
48
|
+
|
|
49
|
+
LatestVersion?: boolean;
|
|
50
|
+
|
|
51
|
+
VersionNumber?: number;
|
|
52
|
+
|
|
53
|
+
SchemaVersionId?: string;
|
|
54
|
+
|
|
55
|
+
MetadataKey?: string;
|
|
56
|
+
|
|
57
|
+
MetadataValue?: string;
|
|
58
|
+
}
|
|
59
|
+
export declare namespace RemoveSchemaVersionMetadataResponse {
|
|
60
|
+
|
|
61
|
+
const filterSensitiveLog: (obj: RemoveSchemaVersionMetadataResponse) => any;
|
|
62
|
+
}
|
|
63
|
+
export interface ResetJobBookmarkRequest {
|
|
64
|
+
|
|
65
|
+
JobName: string | undefined;
|
|
66
|
+
|
|
67
|
+
RunId?: string;
|
|
68
|
+
}
|
|
69
|
+
export declare namespace ResetJobBookmarkRequest {
|
|
70
|
+
|
|
71
|
+
const filterSensitiveLog: (obj: ResetJobBookmarkRequest) => any;
|
|
72
|
+
}
|
|
73
|
+
export interface ResetJobBookmarkResponse {
|
|
74
|
+
|
|
75
|
+
JobBookmarkEntry?: JobBookmarkEntry;
|
|
76
|
+
}
|
|
77
|
+
export declare namespace ResetJobBookmarkResponse {
|
|
78
|
+
|
|
79
|
+
const filterSensitiveLog: (obj: ResetJobBookmarkResponse) => any;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export declare class ConcurrentRunsExceededException extends __BaseException {
|
|
83
|
+
readonly name: "ConcurrentRunsExceededException";
|
|
84
|
+
readonly $fault: "client";
|
|
85
|
+
|
|
86
|
+
Message?: string;
|
|
87
|
+
|
|
88
|
+
constructor(opts: __ExceptionOptionType<ConcurrentRunsExceededException, __BaseException>);
|
|
89
|
+
}
|
|
5
90
|
|
|
6
91
|
export declare class IllegalWorkflowStateException extends __BaseException {
|
|
7
92
|
readonly name: "IllegalWorkflowStateException";
|
|
@@ -126,6 +126,7 @@ import { GetWorkflowRunsCommandInput, GetWorkflowRunsCommandOutput } from "../co
|
|
|
126
126
|
import { ImportCatalogToGlueCommandInput, ImportCatalogToGlueCommandOutput } from "../commands/ImportCatalogToGlueCommand";
|
|
127
127
|
import { ListBlueprintsCommandInput, ListBlueprintsCommandOutput } from "../commands/ListBlueprintsCommand";
|
|
128
128
|
import { ListCrawlersCommandInput, ListCrawlersCommandOutput } from "../commands/ListCrawlersCommand";
|
|
129
|
+
import { ListCrawlsCommandInput, ListCrawlsCommandOutput } from "../commands/ListCrawlsCommand";
|
|
129
130
|
import { ListCustomEntityTypesCommandInput, ListCustomEntityTypesCommandOutput } from "../commands/ListCustomEntityTypesCommand";
|
|
130
131
|
import { ListDevEndpointsCommandInput, ListDevEndpointsCommandOutput } from "../commands/ListDevEndpointsCommand";
|
|
131
132
|
import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
|
|
@@ -309,6 +310,7 @@ export declare const serializeAws_json1_1GetWorkflowRunsCommand: (input: GetWork
|
|
|
309
310
|
export declare const serializeAws_json1_1ImportCatalogToGlueCommand: (input: ImportCatalogToGlueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
310
311
|
export declare const serializeAws_json1_1ListBlueprintsCommand: (input: ListBlueprintsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
311
312
|
export declare const serializeAws_json1_1ListCrawlersCommand: (input: ListCrawlersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
313
|
+
export declare const serializeAws_json1_1ListCrawlsCommand: (input: ListCrawlsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
312
314
|
export declare const serializeAws_json1_1ListCustomEntityTypesCommand: (input: ListCustomEntityTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
313
315
|
export declare const serializeAws_json1_1ListDevEndpointsCommand: (input: ListDevEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
314
316
|
export declare const serializeAws_json1_1ListJobsCommand: (input: ListJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -492,6 +494,7 @@ export declare const deserializeAws_json1_1GetWorkflowRunsCommand: (output: __Ht
|
|
|
492
494
|
export declare const deserializeAws_json1_1ImportCatalogToGlueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportCatalogToGlueCommandOutput>;
|
|
493
495
|
export declare const deserializeAws_json1_1ListBlueprintsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBlueprintsCommandOutput>;
|
|
494
496
|
export declare const deserializeAws_json1_1ListCrawlersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCrawlersCommandOutput>;
|
|
497
|
+
export declare const deserializeAws_json1_1ListCrawlsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCrawlsCommandOutput>;
|
|
495
498
|
export declare const deserializeAws_json1_1ListCustomEntityTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCustomEntityTypesCommandOutput>;
|
|
496
499
|
export declare const deserializeAws_json1_1ListDevEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDevEndpointsCommandOutput>;
|
|
497
500
|
export declare const deserializeAws_json1_1ListJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobsCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-glue",
|
|
3
3
|
"description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.118.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.118.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.110.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.118.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.110.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.110.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.110.0",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@aws-sdk/util-defaults-mode-browser": "3.110.0",
|
|
47
47
|
"@aws-sdk/util-defaults-mode-node": "3.110.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.110.0",
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.118.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1"
|