@aws-sdk/client-glue 3.835.0 → 3.840.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 +106 -11
- package/dist-es/models/models_1.js +11 -9
- package/dist-es/models/models_2.js +9 -0
- package/dist-es/protocols/Aws_json1_1.js +83 -1
- package/dist-types/commands/CreateCatalogCommand.d.ts +1 -0
- package/dist-types/commands/CreateDatabaseCommand.d.ts +1 -0
- package/dist-types/commands/CreateIntegrationCommand.d.ts +6 -0
- package/dist-types/commands/CreateTableCommand.d.ts +45 -0
- package/dist-types/commands/DescribeInboundIntegrationsCommand.d.ts +3 -0
- package/dist-types/commands/DescribeIntegrationsCommand.d.ts +3 -0
- package/dist-types/commands/GetCatalogCommand.d.ts +1 -0
- package/dist-types/commands/GetCatalogsCommand.d.ts +1 -0
- package/dist-types/commands/GetColumnStatisticsForPartitionCommand.d.ts +2 -1
- package/dist-types/commands/GetColumnStatisticsForTableCommand.d.ts +1 -2
- package/dist-types/commands/GetDatabaseCommand.d.ts +1 -0
- package/dist-types/commands/GetDatabasesCommand.d.ts +1 -0
- package/dist-types/commands/GetTableCommand.d.ts +2 -0
- package/dist-types/commands/GetTableVersionCommand.d.ts +2 -0
- package/dist-types/commands/GetTableVersionsCommand.d.ts +2 -0
- package/dist-types/commands/GetTablesCommand.d.ts +2 -0
- package/dist-types/commands/GetUnfilteredTableMetadataCommand.d.ts +2 -0
- package/dist-types/commands/PutSchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/commands/PutWorkflowRunPropertiesCommand.d.ts +1 -1
- package/dist-types/commands/QuerySchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/commands/RegisterSchemaVersionCommand.d.ts +1 -1
- package/dist-types/commands/SearchTablesCommand.d.ts +2 -0
- package/dist-types/commands/StartMLLabelingSetGenerationTaskRunCommand.d.ts +2 -0
- package/dist-types/commands/UpdateCatalogCommand.d.ts +1 -0
- package/dist-types/commands/UpdateDatabaseCommand.d.ts +1 -0
- package/dist-types/commands/UpdateTableCommand.d.ts +53 -0
- package/dist-types/models/models_1.d.ts +242 -254
- package/dist-types/models/models_2.d.ts +260 -232
- package/dist-types/models/models_3.d.ts +320 -3
- package/dist-types/ts3.4/commands/GetColumnStatisticsForPartitionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetColumnStatisticsForTableCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/PutSchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutWorkflowRunPropertiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/QuerySchemaVersionMetadataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RegisterSchemaVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_1.d.ts +63 -65
- package/dist-types/ts3.4/models/models_2.d.ts +70 -55
- package/dist-types/ts3.4/models/models_3.d.ts +77 -2
- package/package.json +18 -18
package/dist-cjs/index.js
CHANGED
|
@@ -272,6 +272,9 @@ __export(index_exports, {
|
|
|
272
272
|
GlueServiceException: () => GlueServiceException,
|
|
273
273
|
HudiTargetCompressionType: () => HudiTargetCompressionType,
|
|
274
274
|
HyperTargetCompressionType: () => HyperTargetCompressionType,
|
|
275
|
+
IcebergNullOrder: () => IcebergNullOrder,
|
|
276
|
+
IcebergSortDirection: () => IcebergSortDirection,
|
|
277
|
+
IcebergStructTypeEnum: () => IcebergStructTypeEnum,
|
|
275
278
|
IcebergTargetCompressionType: () => IcebergTargetCompressionType,
|
|
276
279
|
IdempotentParameterMismatchException: () => IdempotentParameterMismatchException,
|
|
277
280
|
IllegalBlueprintStateException: () => IllegalBlueprintStateException,
|
|
@@ -1973,6 +1976,17 @@ var SessionStatus = {
|
|
|
1973
1976
|
STOPPING: "STOPPING",
|
|
1974
1977
|
TIMEOUT: "TIMEOUT"
|
|
1975
1978
|
};
|
|
1979
|
+
var IcebergStructTypeEnum = {
|
|
1980
|
+
STRUCT: "struct"
|
|
1981
|
+
};
|
|
1982
|
+
var IcebergSortDirection = {
|
|
1983
|
+
ASC: "asc",
|
|
1984
|
+
DESC: "desc"
|
|
1985
|
+
};
|
|
1986
|
+
var IcebergNullOrder = {
|
|
1987
|
+
NULLS_FIRST: "nulls-first",
|
|
1988
|
+
NULLS_LAST: "nulls-last"
|
|
1989
|
+
};
|
|
1976
1990
|
var MetadataOperation = {
|
|
1977
1991
|
CREATE: "CREATE"
|
|
1978
1992
|
};
|
|
@@ -2198,15 +2212,6 @@ var BlueprintRunState = {
|
|
|
2198
2212
|
RUNNING: "RUNNING",
|
|
2199
2213
|
SUCCEEDED: "SUCCEEDED"
|
|
2200
2214
|
};
|
|
2201
|
-
var ColumnStatisticsType = {
|
|
2202
|
-
BINARY: "BINARY",
|
|
2203
|
-
BOOLEAN: "BOOLEAN",
|
|
2204
|
-
DATE: "DATE",
|
|
2205
|
-
DECIMAL: "DECIMAL",
|
|
2206
|
-
DOUBLE: "DOUBLE",
|
|
2207
|
-
LONG: "LONG",
|
|
2208
|
-
STRING: "STRING"
|
|
2209
|
-
};
|
|
2210
2215
|
var ConnectionInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2211
2216
|
...obj,
|
|
2212
2217
|
...obj.AuthenticationConfiguration && {
|
|
@@ -2220,6 +2225,15 @@ var CreateConnectionRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) =>
|
|
|
2220
2225
|
|
|
2221
2226
|
// src/models/models_2.ts
|
|
2222
2227
|
|
|
2228
|
+
var ColumnStatisticsType = {
|
|
2229
|
+
BINARY: "BINARY",
|
|
2230
|
+
BOOLEAN: "BOOLEAN",
|
|
2231
|
+
DATE: "DATE",
|
|
2232
|
+
DECIMAL: "DECIMAL",
|
|
2233
|
+
DOUBLE: "DOUBLE",
|
|
2234
|
+
LONG: "LONG",
|
|
2235
|
+
STRING: "STRING"
|
|
2236
|
+
};
|
|
2223
2237
|
var ComputationType = {
|
|
2224
2238
|
FULL: "FULL",
|
|
2225
2239
|
INCREMENTAL: "INCREMENTAL"
|
|
@@ -8351,6 +8365,15 @@ var se_CreateCrawlerRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
8351
8365
|
Targets: /* @__PURE__ */ __name((_) => se_CrawlerTargets(_, context), "Targets")
|
|
8352
8366
|
});
|
|
8353
8367
|
}, "se_CreateCrawlerRequest");
|
|
8368
|
+
var se_CreateIcebergTableInput = /* @__PURE__ */ __name((input, context) => {
|
|
8369
|
+
return (0, import_smithy_client.take)(input, {
|
|
8370
|
+
Location: [],
|
|
8371
|
+
PartitionSpec: import_smithy_client._json,
|
|
8372
|
+
Properties: import_smithy_client._json,
|
|
8373
|
+
Schema: /* @__PURE__ */ __name((_) => se_IcebergSchema(_, context), "Schema"),
|
|
8374
|
+
WriteOrder: import_smithy_client._json
|
|
8375
|
+
});
|
|
8376
|
+
}, "se_CreateIcebergTableInput");
|
|
8354
8377
|
var se_CreateJobRequest = /* @__PURE__ */ __name((input, context) => {
|
|
8355
8378
|
return (0, import_smithy_client.take)(input, {
|
|
8356
8379
|
AllocatedCapacity: [],
|
|
@@ -8428,7 +8451,8 @@ var se_CreateTableRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
8428
8451
|
return (0, import_smithy_client.take)(input, {
|
|
8429
8452
|
CatalogId: [],
|
|
8430
8453
|
DatabaseName: [],
|
|
8431
|
-
|
|
8454
|
+
Name: [],
|
|
8455
|
+
OpenTableFormatInput: /* @__PURE__ */ __name((_) => se_OpenTableFormatInput(_, context), "OpenTableFormatInput"),
|
|
8432
8456
|
PartitionIndexes: import_smithy_client._json,
|
|
8433
8457
|
TableInput: /* @__PURE__ */ __name((_) => se_TableInput(_, context), "TableInput"),
|
|
8434
8458
|
TransactionId: []
|
|
@@ -8632,6 +8656,52 @@ var se_GetUnfilteredTableMetadataRequest = /* @__PURE__ */ __name((input, contex
|
|
|
8632
8656
|
SupportedPermissionTypes: import_smithy_client._json
|
|
8633
8657
|
});
|
|
8634
8658
|
}, "se_GetUnfilteredTableMetadataRequest");
|
|
8659
|
+
var se_IcebergDocument = /* @__PURE__ */ __name((input, context) => {
|
|
8660
|
+
return input;
|
|
8661
|
+
}, "se_IcebergDocument");
|
|
8662
|
+
var se_IcebergInput = /* @__PURE__ */ __name((input, context) => {
|
|
8663
|
+
return (0, import_smithy_client.take)(input, {
|
|
8664
|
+
CreateIcebergTableInput: /* @__PURE__ */ __name((_) => se_CreateIcebergTableInput(_, context), "CreateIcebergTableInput"),
|
|
8665
|
+
MetadataOperation: [],
|
|
8666
|
+
Version: []
|
|
8667
|
+
});
|
|
8668
|
+
}, "se_IcebergInput");
|
|
8669
|
+
var se_IcebergSchema = /* @__PURE__ */ __name((input, context) => {
|
|
8670
|
+
return (0, import_smithy_client.take)(input, {
|
|
8671
|
+
Fields: /* @__PURE__ */ __name((_) => se_IcebergStructFieldList(_, context), "Fields"),
|
|
8672
|
+
IdentifierFieldIds: import_smithy_client._json,
|
|
8673
|
+
SchemaId: [],
|
|
8674
|
+
Type: []
|
|
8675
|
+
});
|
|
8676
|
+
}, "se_IcebergSchema");
|
|
8677
|
+
var se_IcebergStructField = /* @__PURE__ */ __name((input, context) => {
|
|
8678
|
+
return (0, import_smithy_client.take)(input, {
|
|
8679
|
+
Doc: [],
|
|
8680
|
+
Id: [],
|
|
8681
|
+
Name: [],
|
|
8682
|
+
Required: [],
|
|
8683
|
+
Type: /* @__PURE__ */ __name((_) => se_IcebergDocument(_, context), "Type")
|
|
8684
|
+
});
|
|
8685
|
+
}, "se_IcebergStructField");
|
|
8686
|
+
var se_IcebergStructFieldList = /* @__PURE__ */ __name((input, context) => {
|
|
8687
|
+
return input.filter((e) => e != null).map((entry) => {
|
|
8688
|
+
return se_IcebergStructField(entry, context);
|
|
8689
|
+
});
|
|
8690
|
+
}, "se_IcebergStructFieldList");
|
|
8691
|
+
var se_IcebergTableUpdate = /* @__PURE__ */ __name((input, context) => {
|
|
8692
|
+
return (0, import_smithy_client.take)(input, {
|
|
8693
|
+
Location: [],
|
|
8694
|
+
PartitionSpec: import_smithy_client._json,
|
|
8695
|
+
Properties: import_smithy_client._json,
|
|
8696
|
+
Schema: /* @__PURE__ */ __name((_) => se_IcebergSchema(_, context), "Schema"),
|
|
8697
|
+
SortOrder: import_smithy_client._json
|
|
8698
|
+
});
|
|
8699
|
+
}, "se_IcebergTableUpdate");
|
|
8700
|
+
var se_IcebergTableUpdateList = /* @__PURE__ */ __name((input, context) => {
|
|
8701
|
+
return input.filter((e) => e != null).map((entry) => {
|
|
8702
|
+
return se_IcebergTableUpdate(entry, context);
|
|
8703
|
+
});
|
|
8704
|
+
}, "se_IcebergTableUpdateList");
|
|
8635
8705
|
var se_JobUpdate = /* @__PURE__ */ __name((input, context) => {
|
|
8636
8706
|
return (0, import_smithy_client.take)(input, {
|
|
8637
8707
|
AllocatedCapacity: [],
|
|
@@ -8778,6 +8848,11 @@ var se_Mappings = /* @__PURE__ */ __name((input, context) => {
|
|
|
8778
8848
|
return se_Mapping(entry, context);
|
|
8779
8849
|
});
|
|
8780
8850
|
}, "se_Mappings");
|
|
8851
|
+
var se_OpenTableFormatInput = /* @__PURE__ */ __name((input, context) => {
|
|
8852
|
+
return (0, import_smithy_client.take)(input, {
|
|
8853
|
+
IcebergInput: /* @__PURE__ */ __name((_) => se_IcebergInput(_, context), "IcebergInput")
|
|
8854
|
+
});
|
|
8855
|
+
}, "se_OpenTableFormatInput");
|
|
8781
8856
|
var se_PartitionInput = /* @__PURE__ */ __name((input, context) => {
|
|
8782
8857
|
return (0, import_smithy_client.take)(input, {
|
|
8783
8858
|
LastAccessTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "LastAccessTime"),
|
|
@@ -8960,6 +9035,16 @@ var se_UpdateCrawlerRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
8960
9035
|
Targets: /* @__PURE__ */ __name((_) => se_CrawlerTargets(_, context), "Targets")
|
|
8961
9036
|
});
|
|
8962
9037
|
}, "se_UpdateCrawlerRequest");
|
|
9038
|
+
var se_UpdateIcebergInput = /* @__PURE__ */ __name((input, context) => {
|
|
9039
|
+
return (0, import_smithy_client.take)(input, {
|
|
9040
|
+
UpdateIcebergTableInput: /* @__PURE__ */ __name((_) => se_UpdateIcebergTableInput(_, context), "UpdateIcebergTableInput")
|
|
9041
|
+
});
|
|
9042
|
+
}, "se_UpdateIcebergInput");
|
|
9043
|
+
var se_UpdateIcebergTableInput = /* @__PURE__ */ __name((input, context) => {
|
|
9044
|
+
return (0, import_smithy_client.take)(input, {
|
|
9045
|
+
Updates: /* @__PURE__ */ __name((_) => se_IcebergTableUpdateList(_, context), "Updates")
|
|
9046
|
+
});
|
|
9047
|
+
}, "se_UpdateIcebergTableInput");
|
|
8963
9048
|
var se_UpdateJobRequest = /* @__PURE__ */ __name((input, context) => {
|
|
8964
9049
|
return (0, import_smithy_client.take)(input, {
|
|
8965
9050
|
JobName: [],
|
|
@@ -8981,6 +9066,11 @@ var se_UpdateMLTransformRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
8981
9066
|
WorkerType: []
|
|
8982
9067
|
});
|
|
8983
9068
|
}, "se_UpdateMLTransformRequest");
|
|
9069
|
+
var se_UpdateOpenTableFormatInput = /* @__PURE__ */ __name((input, context) => {
|
|
9070
|
+
return (0, import_smithy_client.take)(input, {
|
|
9071
|
+
UpdateIcebergInput: /* @__PURE__ */ __name((_) => se_UpdateIcebergInput(_, context), "UpdateIcebergInput")
|
|
9072
|
+
});
|
|
9073
|
+
}, "se_UpdateOpenTableFormatInput");
|
|
8984
9074
|
var se_UpdatePartitionRequest = /* @__PURE__ */ __name((input, context) => {
|
|
8985
9075
|
return (0, import_smithy_client.take)(input, {
|
|
8986
9076
|
CatalogId: [],
|
|
@@ -8995,9 +9085,11 @@ var se_UpdateTableRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
8995
9085
|
CatalogId: [],
|
|
8996
9086
|
DatabaseName: [],
|
|
8997
9087
|
Force: [],
|
|
9088
|
+
Name: [],
|
|
8998
9089
|
SkipArchive: [],
|
|
8999
9090
|
TableInput: /* @__PURE__ */ __name((_) => se_TableInput(_, context), "TableInput"),
|
|
9000
9091
|
TransactionId: [],
|
|
9092
|
+
UpdateOpenTableFormatInput: /* @__PURE__ */ __name((_) => se_UpdateOpenTableFormatInput(_, context), "UpdateOpenTableFormatInput"),
|
|
9001
9093
|
VersionId: [],
|
|
9002
9094
|
ViewUpdateAction: []
|
|
9003
9095
|
});
|
|
@@ -15851,6 +15943,9 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
|
|
|
15851
15943
|
JobBookmarksEncryptionMode,
|
|
15852
15944
|
S3EncryptionMode,
|
|
15853
15945
|
SessionStatus,
|
|
15946
|
+
IcebergStructTypeEnum,
|
|
15947
|
+
IcebergSortDirection,
|
|
15948
|
+
IcebergNullOrder,
|
|
15854
15949
|
MetadataOperation,
|
|
15855
15950
|
ViewDialect,
|
|
15856
15951
|
OperationNotSupportedException,
|
|
@@ -15866,9 +15961,9 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
|
|
|
15866
15961
|
FieldFilterOperator,
|
|
15867
15962
|
TargetResourceNotFound,
|
|
15868
15963
|
BlueprintRunState,
|
|
15869
|
-
ColumnStatisticsType,
|
|
15870
15964
|
ConnectionInputFilterSensitiveLog,
|
|
15871
15965
|
CreateConnectionRequestFilterSensitiveLog,
|
|
15966
|
+
ColumnStatisticsType,
|
|
15872
15967
|
ComputationType,
|
|
15873
15968
|
ColumnStatisticsState,
|
|
15874
15969
|
ExecutionStatus,
|
|
@@ -375,6 +375,17 @@ export const SessionStatus = {
|
|
|
375
375
|
STOPPING: "STOPPING",
|
|
376
376
|
TIMEOUT: "TIMEOUT",
|
|
377
377
|
};
|
|
378
|
+
export const IcebergStructTypeEnum = {
|
|
379
|
+
STRUCT: "struct",
|
|
380
|
+
};
|
|
381
|
+
export const IcebergSortDirection = {
|
|
382
|
+
ASC: "asc",
|
|
383
|
+
DESC: "desc",
|
|
384
|
+
};
|
|
385
|
+
export const IcebergNullOrder = {
|
|
386
|
+
NULLS_FIRST: "nulls-first",
|
|
387
|
+
NULLS_LAST: "nulls-last",
|
|
388
|
+
};
|
|
378
389
|
export const MetadataOperation = {
|
|
379
390
|
CREATE: "CREATE",
|
|
380
391
|
};
|
|
@@ -530,15 +541,6 @@ export const BlueprintRunState = {
|
|
|
530
541
|
RUNNING: "RUNNING",
|
|
531
542
|
SUCCEEDED: "SUCCEEDED",
|
|
532
543
|
};
|
|
533
|
-
export const ColumnStatisticsType = {
|
|
534
|
-
BINARY: "BINARY",
|
|
535
|
-
BOOLEAN: "BOOLEAN",
|
|
536
|
-
DATE: "DATE",
|
|
537
|
-
DECIMAL: "DECIMAL",
|
|
538
|
-
DOUBLE: "DOUBLE",
|
|
539
|
-
LONG: "LONG",
|
|
540
|
-
STRING: "STRING",
|
|
541
|
-
};
|
|
542
544
|
export const ConnectionInputFilterSensitiveLog = (obj) => ({
|
|
543
545
|
...obj,
|
|
544
546
|
...(obj.AuthenticationConfiguration && {
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
3
|
import { DataQualityAnalyzerResultFilterSensitiveLog, DataQualityObservationFilterSensitiveLog, DataQualityRuleResultFilterSensitiveLog, } from "./models_0";
|
|
4
|
+
export const ColumnStatisticsType = {
|
|
5
|
+
BINARY: "BINARY",
|
|
6
|
+
BOOLEAN: "BOOLEAN",
|
|
7
|
+
DATE: "DATE",
|
|
8
|
+
DECIMAL: "DECIMAL",
|
|
9
|
+
DOUBLE: "DOUBLE",
|
|
10
|
+
LONG: "LONG",
|
|
11
|
+
STRING: "STRING",
|
|
12
|
+
};
|
|
4
13
|
export const ComputationType = {
|
|
5
14
|
FULL: "FULL",
|
|
6
15
|
INCREMENTAL: "INCREMENTAL",
|
|
@@ -5585,6 +5585,15 @@ const se_CreateCrawlerRequest = (input, context) => {
|
|
|
5585
5585
|
Targets: (_) => se_CrawlerTargets(_, context),
|
|
5586
5586
|
});
|
|
5587
5587
|
};
|
|
5588
|
+
const se_CreateIcebergTableInput = (input, context) => {
|
|
5589
|
+
return take(input, {
|
|
5590
|
+
Location: [],
|
|
5591
|
+
PartitionSpec: _json,
|
|
5592
|
+
Properties: _json,
|
|
5593
|
+
Schema: (_) => se_IcebergSchema(_, context),
|
|
5594
|
+
WriteOrder: _json,
|
|
5595
|
+
});
|
|
5596
|
+
};
|
|
5588
5597
|
const se_CreateJobRequest = (input, context) => {
|
|
5589
5598
|
return take(input, {
|
|
5590
5599
|
AllocatedCapacity: [],
|
|
@@ -5662,7 +5671,8 @@ const se_CreateTableRequest = (input, context) => {
|
|
|
5662
5671
|
return take(input, {
|
|
5663
5672
|
CatalogId: [],
|
|
5664
5673
|
DatabaseName: [],
|
|
5665
|
-
|
|
5674
|
+
Name: [],
|
|
5675
|
+
OpenTableFormatInput: (_) => se_OpenTableFormatInput(_, context),
|
|
5666
5676
|
PartitionIndexes: _json,
|
|
5667
5677
|
TableInput: (_) => se_TableInput(_, context),
|
|
5668
5678
|
TransactionId: [],
|
|
@@ -5868,6 +5878,56 @@ const se_GetUnfilteredTableMetadataRequest = (input, context) => {
|
|
|
5868
5878
|
SupportedPermissionTypes: _json,
|
|
5869
5879
|
});
|
|
5870
5880
|
};
|
|
5881
|
+
const se_IcebergDocument = (input, context) => {
|
|
5882
|
+
return input;
|
|
5883
|
+
};
|
|
5884
|
+
const se_IcebergInput = (input, context) => {
|
|
5885
|
+
return take(input, {
|
|
5886
|
+
CreateIcebergTableInput: (_) => se_CreateIcebergTableInput(_, context),
|
|
5887
|
+
MetadataOperation: [],
|
|
5888
|
+
Version: [],
|
|
5889
|
+
});
|
|
5890
|
+
};
|
|
5891
|
+
const se_IcebergSchema = (input, context) => {
|
|
5892
|
+
return take(input, {
|
|
5893
|
+
Fields: (_) => se_IcebergStructFieldList(_, context),
|
|
5894
|
+
IdentifierFieldIds: _json,
|
|
5895
|
+
SchemaId: [],
|
|
5896
|
+
Type: [],
|
|
5897
|
+
});
|
|
5898
|
+
};
|
|
5899
|
+
const se_IcebergStructField = (input, context) => {
|
|
5900
|
+
return take(input, {
|
|
5901
|
+
Doc: [],
|
|
5902
|
+
Id: [],
|
|
5903
|
+
Name: [],
|
|
5904
|
+
Required: [],
|
|
5905
|
+
Type: (_) => se_IcebergDocument(_, context),
|
|
5906
|
+
});
|
|
5907
|
+
};
|
|
5908
|
+
const se_IcebergStructFieldList = (input, context) => {
|
|
5909
|
+
return input
|
|
5910
|
+
.filter((e) => e != null)
|
|
5911
|
+
.map((entry) => {
|
|
5912
|
+
return se_IcebergStructField(entry, context);
|
|
5913
|
+
});
|
|
5914
|
+
};
|
|
5915
|
+
const se_IcebergTableUpdate = (input, context) => {
|
|
5916
|
+
return take(input, {
|
|
5917
|
+
Location: [],
|
|
5918
|
+
PartitionSpec: _json,
|
|
5919
|
+
Properties: _json,
|
|
5920
|
+
Schema: (_) => se_IcebergSchema(_, context),
|
|
5921
|
+
SortOrder: _json,
|
|
5922
|
+
});
|
|
5923
|
+
};
|
|
5924
|
+
const se_IcebergTableUpdateList = (input, context) => {
|
|
5925
|
+
return input
|
|
5926
|
+
.filter((e) => e != null)
|
|
5927
|
+
.map((entry) => {
|
|
5928
|
+
return se_IcebergTableUpdate(entry, context);
|
|
5929
|
+
});
|
|
5930
|
+
};
|
|
5871
5931
|
const se_JobUpdate = (input, context) => {
|
|
5872
5932
|
return take(input, {
|
|
5873
5933
|
AllocatedCapacity: [],
|
|
@@ -6016,6 +6076,11 @@ const se_Mappings = (input, context) => {
|
|
|
6016
6076
|
return se_Mapping(entry, context);
|
|
6017
6077
|
});
|
|
6018
6078
|
};
|
|
6079
|
+
const se_OpenTableFormatInput = (input, context) => {
|
|
6080
|
+
return take(input, {
|
|
6081
|
+
IcebergInput: (_) => se_IcebergInput(_, context),
|
|
6082
|
+
});
|
|
6083
|
+
};
|
|
6019
6084
|
const se_PartitionInput = (input, context) => {
|
|
6020
6085
|
return take(input, {
|
|
6021
6086
|
LastAccessTime: (_) => _.getTime() / 1_000,
|
|
@@ -6202,6 +6267,16 @@ const se_UpdateCrawlerRequest = (input, context) => {
|
|
|
6202
6267
|
Targets: (_) => se_CrawlerTargets(_, context),
|
|
6203
6268
|
});
|
|
6204
6269
|
};
|
|
6270
|
+
const se_UpdateIcebergInput = (input, context) => {
|
|
6271
|
+
return take(input, {
|
|
6272
|
+
UpdateIcebergTableInput: (_) => se_UpdateIcebergTableInput(_, context),
|
|
6273
|
+
});
|
|
6274
|
+
};
|
|
6275
|
+
const se_UpdateIcebergTableInput = (input, context) => {
|
|
6276
|
+
return take(input, {
|
|
6277
|
+
Updates: (_) => se_IcebergTableUpdateList(_, context),
|
|
6278
|
+
});
|
|
6279
|
+
};
|
|
6205
6280
|
const se_UpdateJobRequest = (input, context) => {
|
|
6206
6281
|
return take(input, {
|
|
6207
6282
|
JobName: [],
|
|
@@ -6223,6 +6298,11 @@ const se_UpdateMLTransformRequest = (input, context) => {
|
|
|
6223
6298
|
WorkerType: [],
|
|
6224
6299
|
});
|
|
6225
6300
|
};
|
|
6301
|
+
const se_UpdateOpenTableFormatInput = (input, context) => {
|
|
6302
|
+
return take(input, {
|
|
6303
|
+
UpdateIcebergInput: (_) => se_UpdateIcebergInput(_, context),
|
|
6304
|
+
});
|
|
6305
|
+
};
|
|
6226
6306
|
const se_UpdatePartitionRequest = (input, context) => {
|
|
6227
6307
|
return take(input, {
|
|
6228
6308
|
CatalogId: [],
|
|
@@ -6237,9 +6317,11 @@ const se_UpdateTableRequest = (input, context) => {
|
|
|
6237
6317
|
CatalogId: [],
|
|
6238
6318
|
DatabaseName: [],
|
|
6239
6319
|
Force: [],
|
|
6320
|
+
Name: [],
|
|
6240
6321
|
SkipArchive: [],
|
|
6241
6322
|
TableInput: (_) => se_TableInput(_, context),
|
|
6242
6323
|
TransactionId: [],
|
|
6324
|
+
UpdateOpenTableFormatInput: (_) => se_UpdateOpenTableFormatInput(_, context),
|
|
6243
6325
|
VersionId: [],
|
|
6244
6326
|
ViewUpdateAction: [],
|
|
6245
6327
|
});
|
|
@@ -41,6 +41,7 @@ declare const CreateCatalogCommand_base: {
|
|
|
41
41
|
* FederatedCatalog: { // FederatedCatalog
|
|
42
42
|
* Identifier: "STRING_VALUE",
|
|
43
43
|
* ConnectionName: "STRING_VALUE",
|
|
44
|
+
* ConnectionType: "STRING_VALUE",
|
|
44
45
|
* },
|
|
45
46
|
* Parameters: { // ParametersMap
|
|
46
47
|
* "<keys>": "STRING_VALUE",
|
|
@@ -52,6 +52,9 @@ declare const CreateIntegrationCommand_base: {
|
|
|
52
52
|
* ],
|
|
53
53
|
* IntegrationConfig: { // IntegrationConfig
|
|
54
54
|
* RefreshInterval: "STRING_VALUE",
|
|
55
|
+
* SourceProperties: { // IntegrationSourcePropertiesMap
|
|
56
|
+
* "<keys>": "STRING_VALUE",
|
|
57
|
+
* },
|
|
55
58
|
* },
|
|
56
59
|
* };
|
|
57
60
|
* const command = new CreateIntegrationCommand(input);
|
|
@@ -83,6 +86,9 @@ declare const CreateIntegrationCommand_base: {
|
|
|
83
86
|
* // DataFilter: "STRING_VALUE",
|
|
84
87
|
* // IntegrationConfig: { // IntegrationConfig
|
|
85
88
|
* // RefreshInterval: "STRING_VALUE",
|
|
89
|
+
* // SourceProperties: { // IntegrationSourcePropertiesMap
|
|
90
|
+
* // "<keys>": "STRING_VALUE",
|
|
91
|
+
* // },
|
|
86
92
|
* // },
|
|
87
93
|
* // };
|
|
88
94
|
*
|
|
@@ -37,6 +37,7 @@ declare const CreateTableCommand_base: {
|
|
|
37
37
|
* const input = { // CreateTableRequest
|
|
38
38
|
* CatalogId: "STRING_VALUE",
|
|
39
39
|
* DatabaseName: "STRING_VALUE", // required
|
|
40
|
+
* Name: "STRING_VALUE",
|
|
40
41
|
* TableInput: { // TableInput
|
|
41
42
|
* Name: "STRING_VALUE", // required
|
|
42
43
|
* Description: "STRING_VALUE",
|
|
@@ -150,6 +151,50 @@ declare const CreateTableCommand_base: {
|
|
|
150
151
|
* IcebergInput: { // IcebergInput
|
|
151
152
|
* MetadataOperation: "CREATE", // required
|
|
152
153
|
* Version: "STRING_VALUE",
|
|
154
|
+
* CreateIcebergTableInput: { // CreateIcebergTableInput
|
|
155
|
+
* Location: "STRING_VALUE", // required
|
|
156
|
+
* Schema: { // IcebergSchema
|
|
157
|
+
* SchemaId: Number("int"),
|
|
158
|
+
* IdentifierFieldIds: [ // IntegerList
|
|
159
|
+
* Number("int"),
|
|
160
|
+
* ],
|
|
161
|
+
* Type: "struct",
|
|
162
|
+
* Fields: [ // IcebergStructFieldList // required
|
|
163
|
+
* { // IcebergStructField
|
|
164
|
+
* Id: Number("int"), // required
|
|
165
|
+
* Name: "STRING_VALUE", // required
|
|
166
|
+
* Type: "DOCUMENT_VALUE", // required
|
|
167
|
+
* Required: true || false, // required
|
|
168
|
+
* Doc: "STRING_VALUE",
|
|
169
|
+
* },
|
|
170
|
+
* ],
|
|
171
|
+
* },
|
|
172
|
+
* PartitionSpec: { // IcebergPartitionSpec
|
|
173
|
+
* Fields: [ // IcebergPartitionSpecFieldList // required
|
|
174
|
+
* { // IcebergPartitionField
|
|
175
|
+
* SourceId: Number("int"), // required
|
|
176
|
+
* Transform: "STRING_VALUE", // required
|
|
177
|
+
* Name: "STRING_VALUE", // required
|
|
178
|
+
* FieldId: Number("int"),
|
|
179
|
+
* },
|
|
180
|
+
* ],
|
|
181
|
+
* SpecId: Number("int"),
|
|
182
|
+
* },
|
|
183
|
+
* WriteOrder: { // IcebergSortOrder
|
|
184
|
+
* OrderId: Number("int"), // required
|
|
185
|
+
* Fields: [ // IcebergSortOrderFieldList // required
|
|
186
|
+
* { // IcebergSortField
|
|
187
|
+
* SourceId: Number("int"), // required
|
|
188
|
+
* Transform: "STRING_VALUE", // required
|
|
189
|
+
* Direction: "asc" || "desc", // required
|
|
190
|
+
* NullOrder: "nulls-first" || "nulls-last", // required
|
|
191
|
+
* },
|
|
192
|
+
* ],
|
|
193
|
+
* },
|
|
194
|
+
* Properties: { // StringToStringMap
|
|
195
|
+
* "<keys>": "STRING_VALUE",
|
|
196
|
+
* },
|
|
197
|
+
* },
|
|
153
198
|
* },
|
|
154
199
|
* },
|
|
155
200
|
* };
|
|
@@ -52,6 +52,9 @@ declare const DescribeInboundIntegrationsCommand_base: {
|
|
|
52
52
|
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
53
53
|
* // IntegrationConfig: { // IntegrationConfig
|
|
54
54
|
* // RefreshInterval: "STRING_VALUE",
|
|
55
|
+
* // SourceProperties: { // IntegrationSourcePropertiesMap
|
|
56
|
+
* // "<keys>": "STRING_VALUE",
|
|
57
|
+
* // },
|
|
55
58
|
* // },
|
|
56
59
|
* // Errors: [ // IntegrationErrorList
|
|
57
60
|
* // { // IntegrationError
|
|
@@ -71,6 +71,9 @@ declare const DescribeIntegrationsCommand_base: {
|
|
|
71
71
|
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
72
72
|
* // IntegrationConfig: { // IntegrationConfig
|
|
73
73
|
* // RefreshInterval: "STRING_VALUE",
|
|
74
|
+
* // SourceProperties: { // IntegrationSourcePropertiesMap
|
|
75
|
+
* // "<keys>": "STRING_VALUE",
|
|
76
|
+
* // },
|
|
74
77
|
* // },
|
|
75
78
|
* // Errors: [ // IntegrationErrorList
|
|
76
79
|
* // { // IntegrationError
|
|
@@ -56,6 +56,7 @@ declare const GetCatalogCommand_base: {
|
|
|
56
56
|
* // FederatedCatalog: { // FederatedCatalog
|
|
57
57
|
* // Identifier: "STRING_VALUE",
|
|
58
58
|
* // ConnectionName: "STRING_VALUE",
|
|
59
|
+
* // ConnectionType: "STRING_VALUE",
|
|
59
60
|
* // },
|
|
60
61
|
* // CatalogProperties: { // CatalogPropertiesOutput
|
|
61
62
|
* // DataLakeAccessProperties: { // DataLakeAccessPropertiesOutput
|
|
@@ -61,6 +61,7 @@ declare const GetCatalogsCommand_base: {
|
|
|
61
61
|
* // FederatedCatalog: { // FederatedCatalog
|
|
62
62
|
* // Identifier: "STRING_VALUE",
|
|
63
63
|
* // ConnectionName: "STRING_VALUE",
|
|
64
|
+
* // ConnectionType: "STRING_VALUE",
|
|
64
65
|
* // },
|
|
65
66
|
* // CatalogProperties: { // CatalogPropertiesOutput
|
|
66
67
|
* // DataLakeAccessProperties: { // DataLakeAccessPropertiesOutput
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { GetColumnStatisticsForPartitionRequest
|
|
4
|
+
import { GetColumnStatisticsForPartitionRequest } from "../models/models_1";
|
|
5
|
+
import { GetColumnStatisticsForPartitionResponse } from "../models/models_2";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { GetColumnStatisticsForTableRequest } from "../models/
|
|
5
|
-
import { GetColumnStatisticsForTableResponse } from "../models/models_2";
|
|
4
|
+
import { GetColumnStatisticsForTableRequest, GetColumnStatisticsForTableResponse } from "../models/models_2";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -141,6 +141,7 @@ declare const GetTableCommand_base: {
|
|
|
141
141
|
* // Identifier: "STRING_VALUE",
|
|
142
142
|
* // DatabaseIdentifier: "STRING_VALUE",
|
|
143
143
|
* // ConnectionName: "STRING_VALUE",
|
|
144
|
+
* // ConnectionType: "STRING_VALUE",
|
|
144
145
|
* // },
|
|
145
146
|
* // ViewDefinition: { // ViewDefinition
|
|
146
147
|
* // IsProtected: true || false,
|
|
@@ -244,6 +245,7 @@ declare const GetTableCommand_base: {
|
|
|
244
245
|
* // Identifier: "STRING_VALUE",
|
|
245
246
|
* // DatabaseIdentifier: "STRING_VALUE",
|
|
246
247
|
* // ConnectionName: "STRING_VALUE",
|
|
248
|
+
* // ConnectionType: "STRING_VALUE",
|
|
247
249
|
* // },
|
|
248
250
|
* // ViewDefinition: {
|
|
249
251
|
* // IsProtected: true || false,
|
|
@@ -139,6 +139,7 @@ declare const GetTableVersionCommand_base: {
|
|
|
139
139
|
* // Identifier: "STRING_VALUE",
|
|
140
140
|
* // DatabaseIdentifier: "STRING_VALUE",
|
|
141
141
|
* // ConnectionName: "STRING_VALUE",
|
|
142
|
+
* // ConnectionType: "STRING_VALUE",
|
|
142
143
|
* // },
|
|
143
144
|
* // ViewDefinition: { // ViewDefinition
|
|
144
145
|
* // IsProtected: true || false,
|
|
@@ -242,6 +243,7 @@ declare const GetTableVersionCommand_base: {
|
|
|
242
243
|
* // Identifier: "STRING_VALUE",
|
|
243
244
|
* // DatabaseIdentifier: "STRING_VALUE",
|
|
244
245
|
* // ConnectionName: "STRING_VALUE",
|
|
246
|
+
* // ConnectionType: "STRING_VALUE",
|
|
245
247
|
* // },
|
|
246
248
|
* // ViewDefinition: {
|
|
247
249
|
* // IsProtected: true || false,
|
|
@@ -142,6 +142,7 @@ declare const GetTableVersionsCommand_base: {
|
|
|
142
142
|
* // Identifier: "STRING_VALUE",
|
|
143
143
|
* // DatabaseIdentifier: "STRING_VALUE",
|
|
144
144
|
* // ConnectionName: "STRING_VALUE",
|
|
145
|
+
* // ConnectionType: "STRING_VALUE",
|
|
145
146
|
* // },
|
|
146
147
|
* // ViewDefinition: { // ViewDefinition
|
|
147
148
|
* // IsProtected: true || false,
|
|
@@ -245,6 +246,7 @@ declare const GetTableVersionsCommand_base: {
|
|
|
245
246
|
* // Identifier: "STRING_VALUE",
|
|
246
247
|
* // DatabaseIdentifier: "STRING_VALUE",
|
|
247
248
|
* // ConnectionName: "STRING_VALUE",
|
|
249
|
+
* // ConnectionType: "STRING_VALUE",
|
|
248
250
|
* // },
|
|
249
251
|
* // ViewDefinition: {
|
|
250
252
|
* // IsProtected: true || false,
|
|
@@ -147,6 +147,7 @@ declare const GetTablesCommand_base: {
|
|
|
147
147
|
* // Identifier: "STRING_VALUE",
|
|
148
148
|
* // DatabaseIdentifier: "STRING_VALUE",
|
|
149
149
|
* // ConnectionName: "STRING_VALUE",
|
|
150
|
+
* // ConnectionType: "STRING_VALUE",
|
|
150
151
|
* // },
|
|
151
152
|
* // ViewDefinition: { // ViewDefinition
|
|
152
153
|
* // IsProtected: true || false,
|
|
@@ -250,6 +251,7 @@ declare const GetTablesCommand_base: {
|
|
|
250
251
|
* // Identifier: "STRING_VALUE",
|
|
251
252
|
* // DatabaseIdentifier: "STRING_VALUE",
|
|
252
253
|
* // ConnectionName: "STRING_VALUE",
|
|
254
|
+
* // ConnectionType: "STRING_VALUE",
|
|
253
255
|
* // },
|
|
254
256
|
* // ViewDefinition: {
|
|
255
257
|
* // IsProtected: true || false,
|
|
@@ -167,6 +167,7 @@ declare const GetUnfilteredTableMetadataCommand_base: {
|
|
|
167
167
|
* // Identifier: "STRING_VALUE",
|
|
168
168
|
* // DatabaseIdentifier: "STRING_VALUE",
|
|
169
169
|
* // ConnectionName: "STRING_VALUE",
|
|
170
|
+
* // ConnectionType: "STRING_VALUE",
|
|
170
171
|
* // },
|
|
171
172
|
* // ViewDefinition: { // ViewDefinition
|
|
172
173
|
* // IsProtected: true || false,
|
|
@@ -270,6 +271,7 @@ declare const GetUnfilteredTableMetadataCommand_base: {
|
|
|
270
271
|
* // Identifier: "STRING_VALUE",
|
|
271
272
|
* // DatabaseIdentifier: "STRING_VALUE",
|
|
272
273
|
* // ConnectionName: "STRING_VALUE",
|
|
274
|
+
* // ConnectionType: "STRING_VALUE",
|
|
273
275
|
* // },
|
|
274
276
|
* // ViewDefinition: {
|
|
275
277
|
* // IsProtected: true || false,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { PutSchemaVersionMetadataInput, PutSchemaVersionMetadataResponse } from "../models/
|
|
4
|
+
import { PutSchemaVersionMetadataInput, PutSchemaVersionMetadataResponse } from "../models/models_3";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|