@aws-sdk/client-glue 3.857.0 → 3.858.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.
Files changed (34) hide show
  1. package/dist-cjs/index.js +54 -18
  2. package/dist-es/models/models_0.js +8 -5
  3. package/dist-es/models/models_1.js +5 -0
  4. package/dist-es/models/models_2.js +0 -9
  5. package/dist-es/models/models_3.js +9 -0
  6. package/dist-es/protocols/Aws_json1_1.js +26 -0
  7. package/dist-types/commands/BatchGetJobsCommand.d.ts +181 -67
  8. package/dist-types/commands/CreateJobCommand.d.ts +181 -67
  9. package/dist-types/commands/GetClassifierCommand.d.ts +2 -1
  10. package/dist-types/commands/GetClassifiersCommand.d.ts +1 -1
  11. package/dist-types/commands/GetColumnStatisticsForPartitionCommand.d.ts +1 -2
  12. package/dist-types/commands/GetJobCommand.d.ts +181 -67
  13. package/dist-types/commands/GetJobsCommand.d.ts +181 -67
  14. package/dist-types/commands/ModifyIntegrationCommand.d.ts +2 -1
  15. package/dist-types/commands/PutDataCatalogEncryptionSettingsCommand.d.ts +1 -1
  16. package/dist-types/commands/PutDataQualityProfileAnnotationCommand.d.ts +1 -1
  17. package/dist-types/commands/PutResourcePolicyCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateJobCommand.d.ts +181 -67
  19. package/dist-types/models/models_0.d.ts +445 -448
  20. package/dist-types/models/models_1.d.ts +430 -231
  21. package/dist-types/models/models_2.d.ts +232 -232
  22. package/dist-types/models/models_3.d.ts +298 -27
  23. package/dist-types/ts3.4/commands/GetClassifierCommand.d.ts +2 -4
  24. package/dist-types/ts3.4/commands/GetClassifiersCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/commands/GetColumnStatisticsForPartitionCommand.d.ts +4 -2
  26. package/dist-types/ts3.4/commands/ModifyIntegrationCommand.d.ts +2 -4
  27. package/dist-types/ts3.4/commands/PutDataCatalogEncryptionSettingsCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/PutDataQualityProfileAnnotationCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/models/models_0.d.ts +94 -75
  31. package/dist-types/ts3.4/models/models_1.d.ts +82 -54
  32. package/dist-types/ts3.4/models/models_2.d.ts +56 -59
  33. package/dist-types/ts3.4/models/models_3.d.ts +69 -4
  34. package/package.json +5 -5
@@ -10,6 +10,7 @@ import {
10
10
  BasicCatalogTarget,
11
11
  CatalogDeltaSource,
12
12
  CatalogHudiSource,
13
+ CatalogIcebergSource,
13
14
  CatalogKafkaSource,
14
15
  CatalogKinesisSource,
15
16
  CatalogSource,
@@ -28,6 +29,7 @@ import {
28
29
  DropNullFields,
29
30
  DynamicTransform,
30
31
  DynamoDBCatalogSource,
32
+ DynamoDBELTConnectorSource,
31
33
  ErrorDetail,
32
34
  EvaluateDataQuality,
33
35
  EvaluateDataQualityMultiFrame,
@@ -38,6 +40,7 @@ import {
38
40
  Filter,
39
41
  GovernedCatalogSource,
40
42
  GovernedCatalogTarget,
43
+ InclusionAnnotationValue,
41
44
  JDBCConnectorSource,
42
45
  JDBCConnectorTarget,
43
46
  JobCommand,
@@ -64,8 +67,10 @@ import {
64
67
  RedshiftTarget,
65
68
  RelationalCatalogSource,
66
69
  RenameField,
70
+ Route,
67
71
  S3CatalogDeltaSource,
68
72
  S3CatalogHudiSource,
73
+ S3CatalogIcebergSource,
69
74
  S3CatalogSource,
70
75
  S3CatalogTarget,
71
76
  S3CsvSource,
@@ -79,6 +84,7 @@ import {
79
84
  S3HudiDirectTarget,
80
85
  S3HudiSource,
81
86
  S3HyperDirectTarget,
87
+ S3IcebergCatalogTarget,
82
88
  S3IcebergDirectTarget,
83
89
  S3JsonSource,
84
90
  S3ParquetSource,
@@ -115,6 +121,8 @@ import {
115
121
  IcebergPartitionSpec,
116
122
  IcebergSchema,
117
123
  IcebergSortOrder,
124
+ IntegrationError,
125
+ IntegrationStatus,
118
126
  Permission,
119
127
  ProfileConfiguration,
120
128
  RegistryId,
@@ -123,6 +131,7 @@ import {
123
131
  SourceTableConfig,
124
132
  TableIdentifier,
125
133
  TableInput,
134
+ Tag,
126
135
  TargetProcessingProperties,
127
136
  TargetTableConfig,
128
137
  TransformParameters,
@@ -131,10 +140,10 @@ import {
131
140
  import {
132
141
  ColumnRowFilter,
133
142
  ColumnStatistics,
143
+ DataCatalogEncryptionSettings,
134
144
  DataQualityEvaluationRunAdditionalRunOptions,
135
145
  FederatedTable,
136
146
  JobBookmarkEntry,
137
- MetadataKeyValuePair,
138
147
  ResourceAction,
139
148
  ResourceShareType,
140
149
  ResourceState,
@@ -142,6 +151,57 @@ import {
142
151
  ViewDefinition,
143
152
  ViewValidation,
144
153
  } from "./models_2";
154
+ export interface ModifyIntegrationResponse {
155
+ SourceArn: string | undefined;
156
+ TargetArn: string | undefined;
157
+ IntegrationName: string | undefined;
158
+ Description?: string | undefined;
159
+ IntegrationArn: string | undefined;
160
+ KmsKeyId?: string | undefined;
161
+ AdditionalEncryptionContext?: Record<string, string> | undefined;
162
+ Tags?: Tag[] | undefined;
163
+ Status: IntegrationStatus | undefined;
164
+ CreateTime: Date | undefined;
165
+ Errors?: IntegrationError[] | undefined;
166
+ DataFilter?: string | undefined;
167
+ }
168
+ export interface PutDataCatalogEncryptionSettingsRequest {
169
+ CatalogId?: string | undefined;
170
+ DataCatalogEncryptionSettings: DataCatalogEncryptionSettings | undefined;
171
+ }
172
+ export interface PutDataCatalogEncryptionSettingsResponse {}
173
+ export interface PutDataQualityProfileAnnotationRequest {
174
+ ProfileId: string | undefined;
175
+ InclusionAnnotation: InclusionAnnotationValue | undefined;
176
+ }
177
+ export interface PutDataQualityProfileAnnotationResponse {}
178
+ export declare const EnableHybridValues: {
179
+ readonly FALSE: "FALSE";
180
+ readonly TRUE: "TRUE";
181
+ };
182
+ export type EnableHybridValues =
183
+ (typeof EnableHybridValues)[keyof typeof EnableHybridValues];
184
+ export declare const ExistCondition: {
185
+ readonly MUST_EXIST: "MUST_EXIST";
186
+ readonly NONE: "NONE";
187
+ readonly NOT_EXIST: "NOT_EXIST";
188
+ };
189
+ export type ExistCondition =
190
+ (typeof ExistCondition)[keyof typeof ExistCondition];
191
+ export interface PutResourcePolicyRequest {
192
+ PolicyInJson: string | undefined;
193
+ ResourceArn?: string | undefined;
194
+ PolicyHashCondition?: string | undefined;
195
+ PolicyExistsCondition?: ExistCondition | undefined;
196
+ EnableHybrid?: EnableHybridValues | undefined;
197
+ }
198
+ export interface PutResourcePolicyResponse {
199
+ PolicyHash?: string | undefined;
200
+ }
201
+ export interface MetadataKeyValuePair {
202
+ MetadataKey?: string | undefined;
203
+ MetadataValue?: string | undefined;
204
+ }
145
205
  export interface PutSchemaVersionMetadataInput {
146
206
  SchemaId?: SchemaId | undefined;
147
207
  SchemaVersionNumber?: SchemaVersionNumber | undefined;
@@ -926,7 +986,6 @@ export interface CodeGenConfigurationNode {
926
986
  RedshiftSource?: RedshiftSource | undefined;
927
987
  S3CatalogSource?: S3CatalogSource | undefined;
928
988
  S3CsvSource?: S3CsvSource | undefined;
929
- S3ExcelSource?: S3ExcelSource | undefined;
930
989
  S3JsonSource?: S3JsonSource | undefined;
931
990
  S3ParquetSource?: S3ParquetSource | undefined;
932
991
  RelationalCatalogSource?: RelationalCatalogSource | undefined;
@@ -937,9 +996,7 @@ export interface CodeGenConfigurationNode {
937
996
  RedshiftTarget?: RedshiftTarget | undefined;
938
997
  S3CatalogTarget?: S3CatalogTarget | undefined;
939
998
  S3GlueParquetTarget?: S3GlueParquetTarget | undefined;
940
- S3HyperDirectTarget?: S3HyperDirectTarget | undefined;
941
999
  S3DirectTarget?: S3DirectTarget | undefined;
942
- S3IcebergDirectTarget?: S3IcebergDirectTarget | undefined;
943
1000
  ApplyMapping?: ApplyMapping | undefined;
944
1001
  SelectFields?: SelectFields | undefined;
945
1002
  DropFields?: DropFields | undefined;
@@ -972,6 +1029,7 @@ export interface CodeGenConfigurationNode {
972
1029
  MySQLCatalogTarget?: MySQLCatalogTarget | undefined;
973
1030
  OracleSQLCatalogTarget?: OracleSQLCatalogTarget | undefined;
974
1031
  PostgreSQLCatalogTarget?: PostgreSQLCatalogTarget | undefined;
1032
+ Route?: Route | undefined;
975
1033
  DynamicTransform?: DynamicTransform | undefined;
976
1034
  EvaluateDataQuality?: EvaluateDataQuality | undefined;
977
1035
  S3CatalogHudiSource?: S3CatalogHudiSource | undefined;
@@ -993,6 +1051,13 @@ export interface CodeGenConfigurationNode {
993
1051
  SnowflakeTarget?: SnowflakeTarget | undefined;
994
1052
  ConnectorDataSource?: ConnectorDataSource | undefined;
995
1053
  ConnectorDataTarget?: ConnectorDataTarget | undefined;
1054
+ S3CatalogIcebergSource?: S3CatalogIcebergSource | undefined;
1055
+ CatalogIcebergSource?: CatalogIcebergSource | undefined;
1056
+ S3IcebergCatalogTarget?: S3IcebergCatalogTarget | undefined;
1057
+ S3IcebergDirectTarget?: S3IcebergDirectTarget | undefined;
1058
+ S3ExcelSource?: S3ExcelSource | undefined;
1059
+ S3HyperDirectTarget?: S3HyperDirectTarget | undefined;
1060
+ DynamoDBELTConnectorSource?: DynamoDBELTConnectorSource | undefined;
996
1061
  }
997
1062
  export interface GetTableResponse {
998
1063
  Table?: Table | 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.857.0",
4
+ "version": "3.858.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.857.0",
24
- "@aws-sdk/credential-provider-node": "3.857.0",
23
+ "@aws-sdk/core": "3.858.0",
24
+ "@aws-sdk/credential-provider-node": "3.858.0",
25
25
  "@aws-sdk/middleware-host-header": "3.840.0",
26
26
  "@aws-sdk/middleware-logger": "3.840.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.840.0",
28
- "@aws-sdk/middleware-user-agent": "3.857.0",
28
+ "@aws-sdk/middleware-user-agent": "3.858.0",
29
29
  "@aws-sdk/region-config-resolver": "3.840.0",
30
30
  "@aws-sdk/types": "3.840.0",
31
31
  "@aws-sdk/util-endpoints": "3.848.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.840.0",
33
- "@aws-sdk/util-user-agent-node": "3.857.0",
33
+ "@aws-sdk/util-user-agent-node": "3.858.0",
34
34
  "@smithy/config-resolver": "^4.1.4",
35
35
  "@smithy/core": "^3.7.2",
36
36
  "@smithy/fetch-http-handler": "^5.1.0",