@aws-sdk/client-glue 3.862.0 → 3.864.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/dist-cjs/index.js +24 -1
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +18 -1
- package/dist-types/commands/BatchGetTableOptimizerCommand.d.ts +5 -0
- package/dist-types/commands/CreateCatalogCommand.d.ts +12 -2
- package/dist-types/commands/CreateTableOptimizerCommand.d.ts +4 -0
- package/dist-types/commands/GetCatalogCommand.d.ts +13 -2
- package/dist-types/commands/GetCatalogsCommand.d.ts +13 -2
- package/dist-types/commands/GetTableOptimizerCommand.d.ts +5 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +1 -1
- package/dist-types/commands/ModifyIntegrationCommand.d.ts +1 -2
- package/dist-types/commands/UpdateCatalogCommand.d.ts +12 -2
- package/dist-types/commands/UpdateTableOptimizerCommand.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +40 -17
- package/dist-types/models/models_1.d.ts +88 -150
- package/dist-types/models/models_2.d.ts +150 -56
- package/dist-types/models/models_3.d.ts +56 -1
- package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyIntegrationCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +11 -4
- package/dist-types/ts3.4/models/models_1.d.ts +21 -32
- package/dist-types/ts3.4/models/models_2.d.ts +33 -17
- package/dist-types/ts3.4/models/models_3.d.ts +14 -0
- package/package.json +5 -5
|
@@ -15,7 +15,6 @@ import {
|
|
|
15
15
|
CrawlerTargets,
|
|
16
16
|
CrawlState,
|
|
17
17
|
DataOperation,
|
|
18
|
-
Edge,
|
|
19
18
|
ErrorDetail,
|
|
20
19
|
EventBatchingCondition,
|
|
21
20
|
ExecutionClass,
|
|
@@ -39,6 +38,10 @@ import {
|
|
|
39
38
|
TriggerType,
|
|
40
39
|
WorkerType,
|
|
41
40
|
} from "./models_0";
|
|
41
|
+
export interface Edge {
|
|
42
|
+
SourceId?: string | undefined;
|
|
43
|
+
DestinationId?: string | undefined;
|
|
44
|
+
}
|
|
42
45
|
export interface Crawl {
|
|
43
46
|
State?: CrawlState | undefined;
|
|
44
47
|
StartedOn?: Date | undefined;
|
|
@@ -289,8 +292,15 @@ export interface DataLakeAccessProperties {
|
|
|
289
292
|
KmsKey?: string | undefined;
|
|
290
293
|
CatalogType?: string | undefined;
|
|
291
294
|
}
|
|
295
|
+
export interface IcebergOptimizationProperties {
|
|
296
|
+
RoleArn?: string | undefined;
|
|
297
|
+
Compaction?: Record<string, string> | undefined;
|
|
298
|
+
Retention?: Record<string, string> | undefined;
|
|
299
|
+
OrphanFileDeletion?: Record<string, string> | undefined;
|
|
300
|
+
}
|
|
292
301
|
export interface CatalogProperties {
|
|
293
302
|
DataLakeAccessProperties?: DataLakeAccessProperties | undefined;
|
|
303
|
+
IcebergOptimizationProperties?: IcebergOptimizationProperties | undefined;
|
|
294
304
|
CustomProperties?: Record<string, string> | undefined;
|
|
295
305
|
}
|
|
296
306
|
export declare const Permission: {
|
|
@@ -1763,8 +1773,18 @@ export interface DataLakeAccessPropertiesOutput {
|
|
|
1763
1773
|
StatusMessage?: string | undefined;
|
|
1764
1774
|
CatalogType?: string | undefined;
|
|
1765
1775
|
}
|
|
1776
|
+
export interface IcebergOptimizationPropertiesOutput {
|
|
1777
|
+
RoleArn?: string | undefined;
|
|
1778
|
+
Compaction?: Record<string, string> | undefined;
|
|
1779
|
+
Retention?: Record<string, string> | undefined;
|
|
1780
|
+
OrphanFileDeletion?: Record<string, string> | undefined;
|
|
1781
|
+
LastUpdatedTime?: Date | undefined;
|
|
1782
|
+
}
|
|
1766
1783
|
export interface CatalogPropertiesOutput {
|
|
1767
1784
|
DataLakeAccessProperties?: DataLakeAccessPropertiesOutput | undefined;
|
|
1785
|
+
IcebergOptimizationProperties?:
|
|
1786
|
+
| IcebergOptimizationPropertiesOutput
|
|
1787
|
+
| undefined;
|
|
1768
1788
|
CustomProperties?: Record<string, string> | undefined;
|
|
1769
1789
|
}
|
|
1770
1790
|
export interface Catalog {
|
|
@@ -1812,37 +1832,6 @@ export interface GetCatalogsResponse {
|
|
|
1812
1832
|
export interface GetClassifierRequest {
|
|
1813
1833
|
Name: string | undefined;
|
|
1814
1834
|
}
|
|
1815
|
-
export interface CsvClassifier {
|
|
1816
|
-
Name: string | undefined;
|
|
1817
|
-
CreationTime?: Date | undefined;
|
|
1818
|
-
LastUpdated?: Date | undefined;
|
|
1819
|
-
Version?: number | undefined;
|
|
1820
|
-
Delimiter?: string | undefined;
|
|
1821
|
-
QuoteSymbol?: string | undefined;
|
|
1822
|
-
ContainsHeader?: CsvHeaderOption | undefined;
|
|
1823
|
-
Header?: string[] | undefined;
|
|
1824
|
-
DisableValueTrimming?: boolean | undefined;
|
|
1825
|
-
AllowSingleColumn?: boolean | undefined;
|
|
1826
|
-
CustomDatatypeConfigured?: boolean | undefined;
|
|
1827
|
-
CustomDatatypes?: string[] | undefined;
|
|
1828
|
-
Serde?: CsvSerdeOption | undefined;
|
|
1829
|
-
}
|
|
1830
|
-
export interface GrokClassifier {
|
|
1831
|
-
Name: string | undefined;
|
|
1832
|
-
Classification: string | undefined;
|
|
1833
|
-
CreationTime?: Date | undefined;
|
|
1834
|
-
LastUpdated?: Date | undefined;
|
|
1835
|
-
Version?: number | undefined;
|
|
1836
|
-
GrokPattern: string | undefined;
|
|
1837
|
-
CustomPatterns?: string | undefined;
|
|
1838
|
-
}
|
|
1839
|
-
export interface JsonClassifier {
|
|
1840
|
-
Name: string | undefined;
|
|
1841
|
-
CreationTime?: Date | undefined;
|
|
1842
|
-
LastUpdated?: Date | undefined;
|
|
1843
|
-
Version?: number | undefined;
|
|
1844
|
-
JsonPath: string | undefined;
|
|
1845
|
-
}
|
|
1846
1835
|
export declare const ConnectionInputFilterSensitiveLog: (
|
|
1847
1836
|
obj: ConnectionInput
|
|
1848
1837
|
) => any;
|
|
@@ -37,15 +37,14 @@ import {
|
|
|
37
37
|
ConnectionPropertyKey,
|
|
38
38
|
ConnectionStatus,
|
|
39
39
|
ConnectionType,
|
|
40
|
-
|
|
40
|
+
CsvHeaderOption,
|
|
41
|
+
CsvSerdeOption,
|
|
41
42
|
DatabaseIdentifier,
|
|
42
43
|
DataFormat,
|
|
43
44
|
DataQualityTargetTable,
|
|
44
45
|
EncryptionConfiguration,
|
|
45
46
|
FederatedDatabase,
|
|
46
|
-
GrokClassifier,
|
|
47
47
|
JobRun,
|
|
48
|
-
JsonClassifier,
|
|
49
48
|
Language,
|
|
50
49
|
Permission,
|
|
51
50
|
PhysicalConnectionRequirements,
|
|
@@ -70,6 +69,37 @@ import {
|
|
|
70
69
|
Workflow,
|
|
71
70
|
WorkflowRun,
|
|
72
71
|
} from "./models_1";
|
|
72
|
+
export interface CsvClassifier {
|
|
73
|
+
Name: string | undefined;
|
|
74
|
+
CreationTime?: Date | undefined;
|
|
75
|
+
LastUpdated?: Date | undefined;
|
|
76
|
+
Version?: number | undefined;
|
|
77
|
+
Delimiter?: string | undefined;
|
|
78
|
+
QuoteSymbol?: string | undefined;
|
|
79
|
+
ContainsHeader?: CsvHeaderOption | undefined;
|
|
80
|
+
Header?: string[] | undefined;
|
|
81
|
+
DisableValueTrimming?: boolean | undefined;
|
|
82
|
+
AllowSingleColumn?: boolean | undefined;
|
|
83
|
+
CustomDatatypeConfigured?: boolean | undefined;
|
|
84
|
+
CustomDatatypes?: string[] | undefined;
|
|
85
|
+
Serde?: CsvSerdeOption | undefined;
|
|
86
|
+
}
|
|
87
|
+
export interface GrokClassifier {
|
|
88
|
+
Name: string | undefined;
|
|
89
|
+
Classification: string | undefined;
|
|
90
|
+
CreationTime?: Date | undefined;
|
|
91
|
+
LastUpdated?: Date | undefined;
|
|
92
|
+
Version?: number | undefined;
|
|
93
|
+
GrokPattern: string | undefined;
|
|
94
|
+
CustomPatterns?: string | undefined;
|
|
95
|
+
}
|
|
96
|
+
export interface JsonClassifier {
|
|
97
|
+
Name: string | undefined;
|
|
98
|
+
CreationTime?: Date | undefined;
|
|
99
|
+
LastUpdated?: Date | undefined;
|
|
100
|
+
Version?: number | undefined;
|
|
101
|
+
JsonPath: string | undefined;
|
|
102
|
+
}
|
|
73
103
|
export interface XMLClassifier {
|
|
74
104
|
Name: string | undefined;
|
|
75
105
|
Classification: string | undefined;
|
|
@@ -1807,20 +1837,6 @@ export interface ListUsageProfilesResponse {
|
|
|
1807
1837
|
Profiles?: UsageProfileDefinition[] | undefined;
|
|
1808
1838
|
NextToken?: string | undefined;
|
|
1809
1839
|
}
|
|
1810
|
-
export interface ListWorkflowsRequest {
|
|
1811
|
-
NextToken?: string | undefined;
|
|
1812
|
-
MaxResults?: number | undefined;
|
|
1813
|
-
}
|
|
1814
|
-
export interface ListWorkflowsResponse {
|
|
1815
|
-
Workflows?: string[] | undefined;
|
|
1816
|
-
NextToken?: string | undefined;
|
|
1817
|
-
}
|
|
1818
|
-
export interface ModifyIntegrationRequest {
|
|
1819
|
-
IntegrationIdentifier: string | undefined;
|
|
1820
|
-
Description?: string | undefined;
|
|
1821
|
-
DataFilter?: string | undefined;
|
|
1822
|
-
IntegrationName?: string | undefined;
|
|
1823
|
-
}
|
|
1824
1840
|
export declare const GetDataQualityResultResponseFilterSensitiveLog: (
|
|
1825
1841
|
obj: GetDataQualityResultResponse
|
|
1826
1842
|
) => any;
|
|
@@ -151,6 +151,20 @@ import {
|
|
|
151
151
|
ViewDefinition,
|
|
152
152
|
ViewValidation,
|
|
153
153
|
} from "./models_2";
|
|
154
|
+
export interface ListWorkflowsRequest {
|
|
155
|
+
NextToken?: string | undefined;
|
|
156
|
+
MaxResults?: number | undefined;
|
|
157
|
+
}
|
|
158
|
+
export interface ListWorkflowsResponse {
|
|
159
|
+
Workflows?: string[] | undefined;
|
|
160
|
+
NextToken?: string | undefined;
|
|
161
|
+
}
|
|
162
|
+
export interface ModifyIntegrationRequest {
|
|
163
|
+
IntegrationIdentifier: string | undefined;
|
|
164
|
+
Description?: string | undefined;
|
|
165
|
+
DataFilter?: string | undefined;
|
|
166
|
+
IntegrationName?: string | undefined;
|
|
167
|
+
}
|
|
154
168
|
export interface ModifyIntegrationResponse {
|
|
155
169
|
SourceArn: string | undefined;
|
|
156
170
|
TargetArn: string | undefined;
|
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.864.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-glue",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.864.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.864.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.862.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.862.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.862.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.864.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.862.0",
|
|
30
30
|
"@aws-sdk/types": "3.862.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.862.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.862.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.864.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.5",
|
|
35
35
|
"@smithy/core": "^3.8.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.1.1",
|