@aws-sdk/client-glue 3.859.0 → 3.863.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.
@@ -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
- CsvClassifier,
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.859.0",
4
+ "version": "3.863.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,41 +20,41 @@
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.858.0",
24
- "@aws-sdk/credential-provider-node": "3.859.0",
25
- "@aws-sdk/middleware-host-header": "3.840.0",
26
- "@aws-sdk/middleware-logger": "3.840.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.840.0",
28
- "@aws-sdk/middleware-user-agent": "3.858.0",
29
- "@aws-sdk/region-config-resolver": "3.840.0",
30
- "@aws-sdk/types": "3.840.0",
31
- "@aws-sdk/util-endpoints": "3.848.0",
32
- "@aws-sdk/util-user-agent-browser": "3.840.0",
33
- "@aws-sdk/util-user-agent-node": "3.858.0",
34
- "@smithy/config-resolver": "^4.1.4",
35
- "@smithy/core": "^3.7.2",
36
- "@smithy/fetch-http-handler": "^5.1.0",
37
- "@smithy/hash-node": "^4.0.4",
38
- "@smithy/invalid-dependency": "^4.0.4",
39
- "@smithy/middleware-content-length": "^4.0.4",
40
- "@smithy/middleware-endpoint": "^4.1.17",
41
- "@smithy/middleware-retry": "^4.1.18",
42
- "@smithy/middleware-serde": "^4.0.8",
43
- "@smithy/middleware-stack": "^4.0.4",
44
- "@smithy/node-config-provider": "^4.1.3",
45
- "@smithy/node-http-handler": "^4.1.0",
46
- "@smithy/protocol-http": "^5.1.2",
47
- "@smithy/smithy-client": "^4.4.9",
48
- "@smithy/types": "^4.3.1",
49
- "@smithy/url-parser": "^4.0.4",
23
+ "@aws-sdk/core": "3.863.0",
24
+ "@aws-sdk/credential-provider-node": "3.863.0",
25
+ "@aws-sdk/middleware-host-header": "3.862.0",
26
+ "@aws-sdk/middleware-logger": "3.862.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.862.0",
28
+ "@aws-sdk/middleware-user-agent": "3.863.0",
29
+ "@aws-sdk/region-config-resolver": "3.862.0",
30
+ "@aws-sdk/types": "3.862.0",
31
+ "@aws-sdk/util-endpoints": "3.862.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.862.0",
33
+ "@aws-sdk/util-user-agent-node": "3.863.0",
34
+ "@smithy/config-resolver": "^4.1.5",
35
+ "@smithy/core": "^3.8.0",
36
+ "@smithy/fetch-http-handler": "^5.1.1",
37
+ "@smithy/hash-node": "^4.0.5",
38
+ "@smithy/invalid-dependency": "^4.0.5",
39
+ "@smithy/middleware-content-length": "^4.0.5",
40
+ "@smithy/middleware-endpoint": "^4.1.18",
41
+ "@smithy/middleware-retry": "^4.1.19",
42
+ "@smithy/middleware-serde": "^4.0.9",
43
+ "@smithy/middleware-stack": "^4.0.5",
44
+ "@smithy/node-config-provider": "^4.1.4",
45
+ "@smithy/node-http-handler": "^4.1.1",
46
+ "@smithy/protocol-http": "^5.1.3",
47
+ "@smithy/smithy-client": "^4.4.10",
48
+ "@smithy/types": "^4.3.2",
49
+ "@smithy/url-parser": "^4.0.5",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.25",
54
- "@smithy/util-defaults-mode-node": "^4.0.25",
55
- "@smithy/util-endpoints": "^3.0.6",
56
- "@smithy/util-middleware": "^4.0.4",
57
- "@smithy/util-retry": "^4.0.6",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.26",
54
+ "@smithy/util-defaults-mode-node": "^4.0.26",
55
+ "@smithy/util-endpoints": "^3.0.7",
56
+ "@smithy/util-middleware": "^4.0.5",
57
+ "@smithy/util-retry": "^4.0.7",
58
58
  "@smithy/util-utf8": "^4.0.0",
59
59
  "tslib": "^2.6.2"
60
60
  },