@aws-sdk/client-glue 3.1061.0 → 3.1063.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 +14 -0
- package/dist-cjs/index.js +38 -0
- package/dist-cjs/models/errors.js +16 -1
- package/dist-cjs/schemas/schemas_0.js +91 -36
- package/dist-es/Glue.js +4 -0
- package/dist-es/commands/GetDashboardUrlCommand.js +16 -0
- package/dist-es/commands/GetSessionEndpointCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +8 -0
- package/dist-es/models/errors.js +14 -0
- package/dist-es/schemas/schemas_0.js +66 -11
- package/dist-types/Glue.d.ts +14 -0
- package/dist-types/GlueClient.d.ts +4 -2
- package/dist-types/commands/CreateSessionCommand.d.ts +5 -0
- package/dist-types/commands/GetDashboardUrlCommand.d.ts +93 -0
- package/dist-types/commands/GetMLTaskRunCommand.d.ts +1 -2
- package/dist-types/commands/GetSessionCommand.d.ts +1 -0
- package/dist-types/commands/GetSessionEndpointCommand.d.ts +101 -0
- package/dist-types/commands/ListSessionsCommand.d.ts +1 -0
- package/dist-types/commands/RunStatementCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDataQualityRulesetCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDatabaseCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +24 -0
- package/dist-types/models/errors.d.ts +17 -0
- package/dist-types/models/models_1.d.ts +41 -28
- package/dist-types/models/models_2.d.ts +70 -97
- package/dist-types/models/models_3.d.ts +97 -2
- package/dist-types/schemas/schemas_0.d.ts +8 -0
- package/dist-types/ts3.4/Glue.d.ts +34 -0
- package/dist-types/ts3.4/GlueClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetDashboardUrlCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/GetMLTaskRunCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetSessionEndpointCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateDataQualityRulesetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDatabaseCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +11 -0
- package/dist-types/ts3.4/models/errors.d.ts +8 -0
- package/dist-types/ts3.4/models/models_1.d.ts +12 -7
- package/dist-types/ts3.4/models/models_2.d.ts +18 -22
- package/dist-types/ts3.4/models/models_3.d.ts +21 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -0
- package/package.json +5 -5
|
@@ -472,6 +472,10 @@ import {
|
|
|
472
472
|
GetCustomEntityTypeCommandInput,
|
|
473
473
|
GetCustomEntityTypeCommandOutput,
|
|
474
474
|
} from "./commands/GetCustomEntityTypeCommand";
|
|
475
|
+
import {
|
|
476
|
+
GetDashboardUrlCommandInput,
|
|
477
|
+
GetDashboardUrlCommandOutput,
|
|
478
|
+
} from "./commands/GetDashboardUrlCommand";
|
|
475
479
|
import {
|
|
476
480
|
GetDatabaseCommandInput,
|
|
477
481
|
GetDatabaseCommandOutput,
|
|
@@ -636,6 +640,10 @@ import {
|
|
|
636
640
|
GetSessionCommandInput,
|
|
637
641
|
GetSessionCommandOutput,
|
|
638
642
|
} from "./commands/GetSessionCommand";
|
|
643
|
+
import {
|
|
644
|
+
GetSessionEndpointCommandInput,
|
|
645
|
+
GetSessionEndpointCommandOutput,
|
|
646
|
+
} from "./commands/GetSessionEndpointCommand";
|
|
639
647
|
import {
|
|
640
648
|
GetStatementCommandInput,
|
|
641
649
|
GetStatementCommandOutput,
|
|
@@ -1213,6 +1221,7 @@ export type ServiceInputTypes =
|
|
|
1213
1221
|
| GetCrawlerMetricsCommandInput
|
|
1214
1222
|
| GetCrawlersCommandInput
|
|
1215
1223
|
| GetCustomEntityTypeCommandInput
|
|
1224
|
+
| GetDashboardUrlCommandInput
|
|
1216
1225
|
| GetDataCatalogEncryptionSettingsCommandInput
|
|
1217
1226
|
| GetDataQualityModelCommandInput
|
|
1218
1227
|
| GetDataQualityModelResultCommandInput
|
|
@@ -1254,6 +1263,7 @@ export type ServiceInputTypes =
|
|
|
1254
1263
|
| GetSecurityConfigurationCommandInput
|
|
1255
1264
|
| GetSecurityConfigurationsCommandInput
|
|
1256
1265
|
| GetSessionCommandInput
|
|
1266
|
+
| GetSessionEndpointCommandInput
|
|
1257
1267
|
| GetStatementCommandInput
|
|
1258
1268
|
| GetTableCommandInput
|
|
1259
1269
|
| GetTableOptimizerCommandInput
|
|
@@ -1479,6 +1489,7 @@ export type ServiceOutputTypes =
|
|
|
1479
1489
|
| GetCrawlerMetricsCommandOutput
|
|
1480
1490
|
| GetCrawlersCommandOutput
|
|
1481
1491
|
| GetCustomEntityTypeCommandOutput
|
|
1492
|
+
| GetDashboardUrlCommandOutput
|
|
1482
1493
|
| GetDataCatalogEncryptionSettingsCommandOutput
|
|
1483
1494
|
| GetDataQualityModelCommandOutput
|
|
1484
1495
|
| GetDataQualityModelResultCommandOutput
|
|
@@ -1520,6 +1531,7 @@ export type ServiceOutputTypes =
|
|
|
1520
1531
|
| GetSecurityConfigurationCommandOutput
|
|
1521
1532
|
| GetSecurityConfigurationsCommandOutput
|
|
1522
1533
|
| GetSessionCommandOutput
|
|
1534
|
+
| GetSessionEndpointCommandOutput
|
|
1523
1535
|
| GetStatementCommandOutput
|
|
1524
1536
|
| GetTableCommandOutput
|
|
1525
1537
|
| GetTableOptimizerCommandOutput
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GlueClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GlueClient";
|
|
8
|
+
import {
|
|
9
|
+
GetDashboardUrlRequest,
|
|
10
|
+
GetDashboardUrlResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDashboardUrlCommandInput extends GetDashboardUrlRequest {}
|
|
15
|
+
export interface GetDashboardUrlCommandOutput
|
|
16
|
+
extends GetDashboardUrlResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetDashboardUrlCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetDashboardUrlCommandInput
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
22
|
+
GetDashboardUrlCommandInput,
|
|
23
|
+
GetDashboardUrlCommandOutput,
|
|
24
|
+
GlueClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: GetDashboardUrlCommandInput
|
|
30
|
+
): import("@smithy/core/client").CommandImpl<
|
|
31
|
+
GetDashboardUrlCommandInput,
|
|
32
|
+
GetDashboardUrlCommandOutput,
|
|
33
|
+
GlueClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): {
|
|
38
|
+
[x: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export declare class GetDashboardUrlCommand extends GetDashboardUrlCommand_base {
|
|
42
|
+
protected static __types: {
|
|
43
|
+
api: {
|
|
44
|
+
input: GetDashboardUrlRequest;
|
|
45
|
+
output: GetDashboardUrlResponse;
|
|
46
|
+
};
|
|
47
|
+
sdk: {
|
|
48
|
+
input: GetDashboardUrlCommandInput;
|
|
49
|
+
output: GetDashboardUrlCommandOutput;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
}
|
|
@@ -5,8 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GlueClient";
|
|
8
|
-
import { GetMLTaskRunRequest } from "../models/
|
|
9
|
-
import { GetMLTaskRunResponse } from "../models/models_2";
|
|
8
|
+
import { GetMLTaskRunRequest, GetMLTaskRunResponse } from "../models/models_2";
|
|
10
9
|
export { __MetadataBearer };
|
|
11
10
|
export { $Command };
|
|
12
11
|
export interface GetMLTaskRunCommandInput extends GetMLTaskRunRequest {}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GlueClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../GlueClient";
|
|
8
|
+
import {
|
|
9
|
+
GetSessionEndpointRequest,
|
|
10
|
+
GetSessionEndpointResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetSessionEndpointCommandInput
|
|
15
|
+
extends GetSessionEndpointRequest {}
|
|
16
|
+
export interface GetSessionEndpointCommandOutput
|
|
17
|
+
extends GetSessionEndpointResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetSessionEndpointCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetSessionEndpointCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
GetSessionEndpointCommandInput,
|
|
24
|
+
GetSessionEndpointCommandOutput,
|
|
25
|
+
GlueClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetSessionEndpointCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
GetSessionEndpointCommandInput,
|
|
33
|
+
GetSessionEndpointCommandOutput,
|
|
34
|
+
GlueClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class GetSessionEndpointCommand extends GetSessionEndpointCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: GetSessionEndpointRequest;
|
|
46
|
+
output: GetSessionEndpointResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: GetSessionEndpointCommandInput;
|
|
50
|
+
output: GetSessionEndpointCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UpdateDataQualityRulesetRequest,
|
|
10
10
|
UpdateDataQualityRulesetResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_3";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UpdateDataQualityRulesetCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UpdateDatabaseRequest,
|
|
10
10
|
UpdateDatabaseResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_3";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UpdateDatabaseCommandInput extends UpdateDatabaseRequest {}
|
|
@@ -107,6 +107,7 @@ export * from "./GetCrawlerCommand";
|
|
|
107
107
|
export * from "./GetCrawlerMetricsCommand";
|
|
108
108
|
export * from "./GetCrawlersCommand";
|
|
109
109
|
export * from "./GetCustomEntityTypeCommand";
|
|
110
|
+
export * from "./GetDashboardUrlCommand";
|
|
110
111
|
export * from "./GetDataCatalogEncryptionSettingsCommand";
|
|
111
112
|
export * from "./GetDataQualityModelCommand";
|
|
112
113
|
export * from "./GetDataQualityModelResultCommand";
|
|
@@ -148,6 +149,7 @@ export * from "./GetSchemaVersionsDiffCommand";
|
|
|
148
149
|
export * from "./GetSecurityConfigurationCommand";
|
|
149
150
|
export * from "./GetSecurityConfigurationsCommand";
|
|
150
151
|
export * from "./GetSessionCommand";
|
|
152
|
+
export * from "./GetSessionEndpointCommand";
|
|
151
153
|
export * from "./GetStatementCommand";
|
|
152
154
|
export * from "./GetTableCommand";
|
|
153
155
|
export * from "./GetTableOptimizerCommand";
|
|
@@ -799,6 +799,11 @@ export declare const S3EncryptionMode: {
|
|
|
799
799
|
};
|
|
800
800
|
export type S3EncryptionMode =
|
|
801
801
|
(typeof S3EncryptionMode)[keyof typeof S3EncryptionMode];
|
|
802
|
+
export declare const SessionType: {
|
|
803
|
+
readonly LIVY: "LIVY";
|
|
804
|
+
readonly SPARK_CONNECT: "SPARK_CONNECT";
|
|
805
|
+
};
|
|
806
|
+
export type SessionType = (typeof SessionType)[keyof typeof SessionType];
|
|
802
807
|
export declare const SessionStatus: {
|
|
803
808
|
readonly FAILED: "FAILED";
|
|
804
809
|
readonly PROVISIONING: "PROVISIONING";
|
|
@@ -955,6 +960,12 @@ export declare const SettingSource: {
|
|
|
955
960
|
readonly TABLE: "TABLE";
|
|
956
961
|
};
|
|
957
962
|
export type SettingSource = (typeof SettingSource)[keyof typeof SettingSource];
|
|
963
|
+
export declare const GlueResourceType: {
|
|
964
|
+
readonly JOB: "JOB";
|
|
965
|
+
readonly SESSION: "SESSION";
|
|
966
|
+
};
|
|
967
|
+
export type GlueResourceType =
|
|
968
|
+
(typeof GlueResourceType)[keyof typeof GlueResourceType];
|
|
958
969
|
export declare const DatabaseAttributes: {
|
|
959
970
|
readonly NAME: "NAME";
|
|
960
971
|
readonly TARGET_DATABASE: "TARGET_DATABASE";
|
|
@@ -313,6 +313,14 @@ export declare class IllegalWorkflowStateException extends __BaseException {
|
|
|
313
313
|
opts: __ExceptionOptionType<IllegalWorkflowStateException, __BaseException>
|
|
314
314
|
);
|
|
315
315
|
}
|
|
316
|
+
export declare class SessionBusyException extends __BaseException {
|
|
317
|
+
readonly name: "SessionBusyException";
|
|
318
|
+
readonly $fault: "client";
|
|
319
|
+
Message?: string | undefined;
|
|
320
|
+
constructor(
|
|
321
|
+
opts: __ExceptionOptionType<SessionBusyException, __BaseException>
|
|
322
|
+
);
|
|
323
|
+
}
|
|
316
324
|
export declare class IllegalBlueprintStateException extends __BaseException {
|
|
317
325
|
readonly name: "IllegalBlueprintStateException";
|
|
318
326
|
readonly $fault: "client";
|
|
@@ -25,6 +25,7 @@ import {
|
|
|
25
25
|
FieldDataType,
|
|
26
26
|
FieldFilterOperator,
|
|
27
27
|
FunctionType,
|
|
28
|
+
GlueResourceType,
|
|
28
29
|
HTTPMethod,
|
|
29
30
|
IcebergNullOrder,
|
|
30
31
|
IcebergSortDirection,
|
|
@@ -49,6 +50,7 @@ import {
|
|
|
49
50
|
SchemaStatus,
|
|
50
51
|
SchemaVersionStatus,
|
|
51
52
|
SessionStatus,
|
|
53
|
+
SessionType,
|
|
52
54
|
SettingSource,
|
|
53
55
|
TableOptimizerType,
|
|
54
56
|
TaskStatusType,
|
|
@@ -404,6 +406,7 @@ export interface CreateSessionRequest {
|
|
|
404
406
|
GlueVersion?: string | undefined;
|
|
405
407
|
Tags?: Record<string, string> | undefined;
|
|
406
408
|
RequestOrigin?: string | undefined;
|
|
409
|
+
SessionType?: SessionType | undefined;
|
|
407
410
|
}
|
|
408
411
|
export interface Session {
|
|
409
412
|
Id?: string | undefined;
|
|
@@ -426,6 +429,7 @@ export interface Session {
|
|
|
426
429
|
DPUSeconds?: number | undefined;
|
|
427
430
|
IdleTimeout?: number | undefined;
|
|
428
431
|
ProfileName?: string | undefined;
|
|
432
|
+
SessionType?: SessionType | undefined;
|
|
429
433
|
}
|
|
430
434
|
export interface CreateSessionResponse {
|
|
431
435
|
Session?: Session | undefined;
|
|
@@ -1380,6 +1384,14 @@ export interface GetCustomEntityTypeResponse {
|
|
|
1380
1384
|
RegexString?: string | undefined;
|
|
1381
1385
|
ContextWords?: string[] | undefined;
|
|
1382
1386
|
}
|
|
1387
|
+
export interface GetDashboardUrlRequest {
|
|
1388
|
+
ResourceId: string | undefined;
|
|
1389
|
+
ResourceType: GlueResourceType | undefined;
|
|
1390
|
+
RequestOrigin?: string | undefined;
|
|
1391
|
+
}
|
|
1392
|
+
export interface GetDashboardUrlResponse {
|
|
1393
|
+
Url: string | undefined;
|
|
1394
|
+
}
|
|
1383
1395
|
export interface GetDatabaseRequest {
|
|
1384
1396
|
CatalogId?: string | undefined;
|
|
1385
1397
|
Name: string | undefined;
|
|
@@ -1686,10 +1698,3 @@ export interface MaterializedViewRefreshTaskRun {
|
|
|
1686
1698
|
export interface GetMaterializedViewRefreshTaskRunResponse {
|
|
1687
1699
|
MaterializedViewRefreshTaskRun?: MaterializedViewRefreshTaskRun | undefined;
|
|
1688
1700
|
}
|
|
1689
|
-
export interface GetMLTaskRunRequest {
|
|
1690
|
-
TransformId: string | undefined;
|
|
1691
|
-
TaskRunId: string | undefined;
|
|
1692
|
-
}
|
|
1693
|
-
export interface ExportLabelsTaskRunProperties {
|
|
1694
|
-
OutputS3Path?: string | undefined;
|
|
1695
|
-
}
|
|
@@ -55,7 +55,6 @@ import {
|
|
|
55
55
|
ConnectionInput,
|
|
56
56
|
CrawlerTargets,
|
|
57
57
|
CustomEntityType,
|
|
58
|
-
DatabaseInput,
|
|
59
58
|
DataQualityTargetTable,
|
|
60
59
|
DataSource,
|
|
61
60
|
ErrorDetail,
|
|
@@ -85,7 +84,6 @@ import {
|
|
|
85
84
|
DataCatalogEncryptionSettings,
|
|
86
85
|
DataQualityEvaluationRunAdditionalRunOptions,
|
|
87
86
|
EncryptionConfiguration,
|
|
88
|
-
ExportLabelsTaskRunProperties,
|
|
89
87
|
IntegrationConfig,
|
|
90
88
|
IntegrationError,
|
|
91
89
|
JobBookmarkEntry,
|
|
@@ -103,6 +101,13 @@ import {
|
|
|
103
101
|
TransformEncryption,
|
|
104
102
|
TransformParameters,
|
|
105
103
|
} from "./models_1";
|
|
104
|
+
export interface GetMLTaskRunRequest {
|
|
105
|
+
TransformId: string | undefined;
|
|
106
|
+
TaskRunId: string | undefined;
|
|
107
|
+
}
|
|
108
|
+
export interface ExportLabelsTaskRunProperties {
|
|
109
|
+
OutputS3Path?: string | undefined;
|
|
110
|
+
}
|
|
106
111
|
export interface FindMatchesTaskRunProperties {
|
|
107
112
|
JobId?: string | undefined;
|
|
108
113
|
JobName?: string | undefined;
|
|
@@ -448,6 +453,17 @@ export interface GetSessionRequest {
|
|
|
448
453
|
export interface GetSessionResponse {
|
|
449
454
|
Session?: Session | undefined;
|
|
450
455
|
}
|
|
456
|
+
export interface GetSessionEndpointRequest {
|
|
457
|
+
SessionId: string | undefined;
|
|
458
|
+
}
|
|
459
|
+
export interface SessionEndpoint {
|
|
460
|
+
Url: string | undefined;
|
|
461
|
+
AuthToken: string | undefined;
|
|
462
|
+
AuthTokenExpirationTime: Date | undefined;
|
|
463
|
+
}
|
|
464
|
+
export interface GetSessionEndpointResponse {
|
|
465
|
+
SparkConnect: SessionEndpoint | undefined;
|
|
466
|
+
}
|
|
451
467
|
export interface GetStatementRequest {
|
|
452
468
|
SessionId: string | undefined;
|
|
453
469
|
Id: number | undefined;
|
|
@@ -1659,23 +1675,3 @@ export interface UpdateCrawlerScheduleRequest {
|
|
|
1659
1675
|
Schedule?: string | undefined;
|
|
1660
1676
|
}
|
|
1661
1677
|
export interface UpdateCrawlerScheduleResponse {}
|
|
1662
|
-
export interface UpdateDatabaseRequest {
|
|
1663
|
-
CatalogId?: string | undefined;
|
|
1664
|
-
Name: string | undefined;
|
|
1665
|
-
DatabaseInput: DatabaseInput | undefined;
|
|
1666
|
-
}
|
|
1667
|
-
export interface UpdateDatabaseResponse {}
|
|
1668
|
-
export interface UpdateDataQualityRulesetRequest {
|
|
1669
|
-
Name: string | undefined;
|
|
1670
|
-
Description?: string | undefined;
|
|
1671
|
-
Ruleset?: string | undefined;
|
|
1672
|
-
}
|
|
1673
|
-
export interface UpdateDataQualityRulesetResponse {
|
|
1674
|
-
Name?: string | undefined;
|
|
1675
|
-
Description?: string | undefined;
|
|
1676
|
-
Ruleset?: string | undefined;
|
|
1677
|
-
}
|
|
1678
|
-
export interface DevEndpointCustomLibraries {
|
|
1679
|
-
ExtraPythonLibsS3Path?: string | undefined;
|
|
1680
|
-
ExtraJarsS3Path?: string | undefined;
|
|
1681
|
-
}
|
|
@@ -30,6 +30,7 @@ import {
|
|
|
30
30
|
ConnectorDataSource,
|
|
31
31
|
ConnectorDataTarget,
|
|
32
32
|
CustomCode,
|
|
33
|
+
DatabaseInput,
|
|
33
34
|
DirectJDBCSource,
|
|
34
35
|
DirectKafkaSource,
|
|
35
36
|
DirectKinesisSource,
|
|
@@ -124,12 +125,31 @@ import {
|
|
|
124
125
|
} from "./models_1";
|
|
125
126
|
import {
|
|
126
127
|
ColumnRowFilter,
|
|
127
|
-
DevEndpointCustomLibraries,
|
|
128
128
|
FederatedTable,
|
|
129
129
|
SchemaVersionNumber,
|
|
130
130
|
ViewDefinition,
|
|
131
131
|
ViewValidation,
|
|
132
132
|
} from "./models_2";
|
|
133
|
+
export interface UpdateDatabaseRequest {
|
|
134
|
+
CatalogId?: string | undefined;
|
|
135
|
+
Name: string | undefined;
|
|
136
|
+
DatabaseInput: DatabaseInput | undefined;
|
|
137
|
+
}
|
|
138
|
+
export interface UpdateDatabaseResponse {}
|
|
139
|
+
export interface UpdateDataQualityRulesetRequest {
|
|
140
|
+
Name: string | undefined;
|
|
141
|
+
Description?: string | undefined;
|
|
142
|
+
Ruleset?: string | undefined;
|
|
143
|
+
}
|
|
144
|
+
export interface UpdateDataQualityRulesetResponse {
|
|
145
|
+
Name?: string | undefined;
|
|
146
|
+
Description?: string | undefined;
|
|
147
|
+
Ruleset?: string | undefined;
|
|
148
|
+
}
|
|
149
|
+
export interface DevEndpointCustomLibraries {
|
|
150
|
+
ExtraPythonLibsS3Path?: string | undefined;
|
|
151
|
+
ExtraJarsS3Path?: string | undefined;
|
|
152
|
+
}
|
|
133
153
|
export interface UpdateDevEndpointRequest {
|
|
134
154
|
EndpointName: string | undefined;
|
|
135
155
|
PublicKey?: string | undefined;
|
|
@@ -50,6 +50,7 @@ export declare var ResourceNumberLimitExceededException$: StaticErrorSchema;
|
|
|
50
50
|
export declare var SchedulerNotRunningException$: StaticErrorSchema;
|
|
51
51
|
export declare var SchedulerRunningException$: StaticErrorSchema;
|
|
52
52
|
export declare var SchedulerTransitioningException$: StaticErrorSchema;
|
|
53
|
+
export declare var SessionBusyException$: StaticErrorSchema;
|
|
53
54
|
export declare var TargetResourceNotFound$: StaticErrorSchema;
|
|
54
55
|
export declare var ThrottlingException$: StaticErrorSchema;
|
|
55
56
|
export declare var ValidationException$: StaticErrorSchema;
|
|
@@ -452,6 +453,8 @@ export declare var GetCrawlersRequest$: StaticStructureSchema;
|
|
|
452
453
|
export declare var GetCrawlersResponse$: StaticStructureSchema;
|
|
453
454
|
export declare var GetCustomEntityTypeRequest$: StaticStructureSchema;
|
|
454
455
|
export declare var GetCustomEntityTypeResponse$: StaticStructureSchema;
|
|
456
|
+
export declare var GetDashboardUrlRequest$: StaticStructureSchema;
|
|
457
|
+
export declare var GetDashboardUrlResponse$: StaticStructureSchema;
|
|
455
458
|
export declare var GetDatabaseRequest$: StaticStructureSchema;
|
|
456
459
|
export declare var GetDatabaseResponse$: StaticStructureSchema;
|
|
457
460
|
export declare var GetDatabasesRequest$: StaticStructureSchema;
|
|
@@ -532,6 +535,8 @@ export declare var GetSecurityConfigurationRequest$: StaticStructureSchema;
|
|
|
532
535
|
export declare var GetSecurityConfigurationResponse$: StaticStructureSchema;
|
|
533
536
|
export declare var GetSecurityConfigurationsRequest$: StaticStructureSchema;
|
|
534
537
|
export declare var GetSecurityConfigurationsResponse$: StaticStructureSchema;
|
|
538
|
+
export declare var GetSessionEndpointRequest$: StaticStructureSchema;
|
|
539
|
+
export declare var GetSessionEndpointResponse$: StaticStructureSchema;
|
|
535
540
|
export declare var GetSessionRequest$: StaticStructureSchema;
|
|
536
541
|
export declare var GetSessionResponse$: StaticStructureSchema;
|
|
537
542
|
export declare var GetStatementRequest$: StaticStructureSchema;
|
|
@@ -826,6 +831,7 @@ export declare var SelectFromCollection$: StaticStructureSchema;
|
|
|
826
831
|
export declare var SerDeInfo$: StaticStructureSchema;
|
|
827
832
|
export declare var Session$: StaticStructureSchema;
|
|
828
833
|
export declare var SessionCommand$: StaticStructureSchema;
|
|
834
|
+
export declare var SessionEndpoint$: StaticStructureSchema;
|
|
829
835
|
export declare var SkewedInfo$: StaticStructureSchema;
|
|
830
836
|
export declare var SnowflakeNodeData$: StaticStructureSchema;
|
|
831
837
|
export declare var SnowflakeSource$: StaticStructureSchema;
|
|
@@ -1123,6 +1129,7 @@ export declare var GetCrawler$: StaticOperationSchema;
|
|
|
1123
1129
|
export declare var GetCrawlerMetrics$: StaticOperationSchema;
|
|
1124
1130
|
export declare var GetCrawlers$: StaticOperationSchema;
|
|
1125
1131
|
export declare var GetCustomEntityType$: StaticOperationSchema;
|
|
1132
|
+
export declare var GetDashboardUrl$: StaticOperationSchema;
|
|
1126
1133
|
export declare var GetDatabase$: StaticOperationSchema;
|
|
1127
1134
|
export declare var GetDatabases$: StaticOperationSchema;
|
|
1128
1135
|
export declare var GetDataCatalogEncryptionSettings$: StaticOperationSchema;
|
|
@@ -1164,6 +1171,7 @@ export declare var GetSchemaVersionsDiff$: StaticOperationSchema;
|
|
|
1164
1171
|
export declare var GetSecurityConfiguration$: StaticOperationSchema;
|
|
1165
1172
|
export declare var GetSecurityConfigurations$: StaticOperationSchema;
|
|
1166
1173
|
export declare var GetSession$: StaticOperationSchema;
|
|
1174
|
+
export declare var GetSessionEndpoint$: StaticOperationSchema;
|
|
1167
1175
|
export declare var GetStatement$: StaticOperationSchema;
|
|
1168
1176
|
export declare var GetTable$: StaticOperationSchema;
|
|
1169
1177
|
export declare var GetTableOptimizer$: StaticOperationSchema;
|
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.1063.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-glue",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.974.18",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.52",
|
|
26
|
+
"@aws-sdk/types": "^3.973.11",
|
|
27
27
|
"@smithy/core": "^3.24.6",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.6",
|
|
29
29
|
"@smithy/node-http-handler": "^4.7.6",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
],
|
|
54
54
|
"author": {
|
|
55
55
|
"name": "AWS SDK for JavaScript Team",
|
|
56
|
-
"url": "https://aws.amazon.com/javascript/"
|
|
56
|
+
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
57
57
|
},
|
|
58
58
|
"license": "Apache-2.0",
|
|
59
59
|
"browser": {
|