@aws-sdk/client-glue 3.1066.0 → 3.1068.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 +6 -4
- package/dist-cjs/schemas/schemas_0.js +57 -30
- package/dist-es/models/enums.js +6 -4
- package/dist-es/schemas/schemas_0.js +42 -15
- package/dist-types/commands/GetTableCommand.d.ts +121 -0
- package/dist-types/commands/GetTableVersionCommand.d.ts +118 -0
- package/dist-types/commands/GetTableVersionsCommand.d.ts +118 -0
- package/dist-types/commands/GetTablesCommand.d.ts +119 -1
- package/dist-types/commands/GetUnfilteredTableMetadataCommand.d.ts +118 -0
- package/dist-types/commands/SearchTablesCommand.d.ts +118 -0
- package/dist-types/commands/UpdateCrawlerScheduleCommand.d.ts +2 -1
- package/dist-types/models/enums.d.ts +14 -12
- package/dist-types/models/models_2.d.ts +87 -6
- package/dist-types/models/models_3.d.ts +11 -1
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/commands/UpdateCrawlerScheduleCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/enums.d.ts +8 -6
- package/dist-types/ts3.4/models/models_2.d.ts +18 -1
- package/dist-types/ts3.4/models/models_3.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +1 -1
|
@@ -54,6 +54,9 @@ declare const GetTableCommand_base: {
|
|
|
54
54
|
* AllColumnsRequested: true || false,
|
|
55
55
|
* },
|
|
56
56
|
* IncludeStatusDetails: true || false,
|
|
57
|
+
* AttributesToGet: [ // TableAttributesList
|
|
58
|
+
* "NAME" || "TABLE_TYPE" || "DEFAULT" || "LATEST_ICEBERG_METADATA",
|
|
59
|
+
* ],
|
|
57
60
|
* };
|
|
58
61
|
* const command = new GetTableCommand(input);
|
|
59
62
|
* const response = await client.send(command);
|
|
@@ -180,6 +183,65 @@ declare const GetTableCommand_base: {
|
|
|
180
183
|
* // },
|
|
181
184
|
* // IsMultiDialectView: true || false,
|
|
182
185
|
* // IsMaterializedView: true || false,
|
|
186
|
+
* // IcebergTableMetadata: { // IcebergTableMetadata
|
|
187
|
+
* // FormatVersion: "STRING_VALUE",
|
|
188
|
+
* // TableUuid: "STRING_VALUE",
|
|
189
|
+
* // Location: "STRING_VALUE",
|
|
190
|
+
* // Properties: { // StringToStringMap
|
|
191
|
+
* // "<keys>": "STRING_VALUE",
|
|
192
|
+
* // },
|
|
193
|
+
* // Schemas: [ // IcebergSchemaList
|
|
194
|
+
* // { // IcebergSchema
|
|
195
|
+
* // SchemaId: Number("int"),
|
|
196
|
+
* // IdentifierFieldIds: [ // IntegerList
|
|
197
|
+
* // Number("int"),
|
|
198
|
+
* // ],
|
|
199
|
+
* // Type: "struct",
|
|
200
|
+
* // Fields: [ // IcebergStructFieldList // required
|
|
201
|
+
* // { // IcebergStructField
|
|
202
|
+
* // Id: Number("int"), // required
|
|
203
|
+
* // Name: "STRING_VALUE", // required
|
|
204
|
+
* // Type: "DOCUMENT_VALUE", // required
|
|
205
|
+
* // Required: true || false, // required
|
|
206
|
+
* // Doc: "STRING_VALUE",
|
|
207
|
+
* // InitialDefault: "DOCUMENT_VALUE",
|
|
208
|
+
* // WriteDefault: "DOCUMENT_VALUE",
|
|
209
|
+
* // },
|
|
210
|
+
* // ],
|
|
211
|
+
* // },
|
|
212
|
+
* // ],
|
|
213
|
+
* // CurrentSchemaId: Number("int"),
|
|
214
|
+
* // LastColumnId: Number("int"),
|
|
215
|
+
* // PartitionSpecs: [ // IcebergPartitionSpecList
|
|
216
|
+
* // { // IcebergPartitionSpec
|
|
217
|
+
* // Fields: [ // IcebergPartitionSpecFieldList // required
|
|
218
|
+
* // { // IcebergPartitionField
|
|
219
|
+
* // SourceId: Number("int"), // required
|
|
220
|
+
* // Transform: "STRING_VALUE", // required
|
|
221
|
+
* // Name: "STRING_VALUE", // required
|
|
222
|
+
* // FieldId: Number("int"),
|
|
223
|
+
* // },
|
|
224
|
+
* // ],
|
|
225
|
+
* // SpecId: Number("int"),
|
|
226
|
+
* // },
|
|
227
|
+
* // ],
|
|
228
|
+
* // DefaultSpecId: Number("int"),
|
|
229
|
+
* // LastPartitionId: Number("int"),
|
|
230
|
+
* // SortOrders: [ // IcebergSortOrderList
|
|
231
|
+
* // { // IcebergSortOrder
|
|
232
|
+
* // OrderId: Number("int"), // required
|
|
233
|
+
* // Fields: [ // IcebergSortOrderFieldList // required
|
|
234
|
+
* // { // IcebergSortField
|
|
235
|
+
* // SourceId: Number("int"), // required
|
|
236
|
+
* // Transform: "STRING_VALUE", // required
|
|
237
|
+
* // Direction: "asc" || "desc", // required
|
|
238
|
+
* // NullOrder: "nulls-first" || "nulls-last", // required
|
|
239
|
+
* // },
|
|
240
|
+
* // ],
|
|
241
|
+
* // },
|
|
242
|
+
* // ],
|
|
243
|
+
* // DefaultSortOrderId: Number("int"),
|
|
244
|
+
* // },
|
|
183
245
|
* // Status: { // TableStatus
|
|
184
246
|
* // RequestedBy: "STRING_VALUE",
|
|
185
247
|
* // UpdatedBy: "STRING_VALUE",
|
|
@@ -292,6 +354,65 @@ declare const GetTableCommand_base: {
|
|
|
292
354
|
* // },
|
|
293
355
|
* // IsMultiDialectView: true || false,
|
|
294
356
|
* // IsMaterializedView: true || false,
|
|
357
|
+
* // IcebergTableMetadata: {
|
|
358
|
+
* // FormatVersion: "STRING_VALUE",
|
|
359
|
+
* // TableUuid: "STRING_VALUE",
|
|
360
|
+
* // Location: "STRING_VALUE",
|
|
361
|
+
* // Properties: {
|
|
362
|
+
* // "<keys>": "STRING_VALUE",
|
|
363
|
+
* // },
|
|
364
|
+
* // Schemas: [
|
|
365
|
+
* // {
|
|
366
|
+
* // SchemaId: Number("int"),
|
|
367
|
+
* // IdentifierFieldIds: [
|
|
368
|
+
* // Number("int"),
|
|
369
|
+
* // ],
|
|
370
|
+
* // Type: "struct",
|
|
371
|
+
* // Fields: [ // required
|
|
372
|
+
* // {
|
|
373
|
+
* // Id: Number("int"), // required
|
|
374
|
+
* // Name: "STRING_VALUE", // required
|
|
375
|
+
* // Type: "DOCUMENT_VALUE", // required
|
|
376
|
+
* // Required: true || false, // required
|
|
377
|
+
* // Doc: "STRING_VALUE",
|
|
378
|
+
* // InitialDefault: "DOCUMENT_VALUE",
|
|
379
|
+
* // WriteDefault: "DOCUMENT_VALUE",
|
|
380
|
+
* // },
|
|
381
|
+
* // ],
|
|
382
|
+
* // },
|
|
383
|
+
* // ],
|
|
384
|
+
* // CurrentSchemaId: Number("int"),
|
|
385
|
+
* // LastColumnId: Number("int"),
|
|
386
|
+
* // PartitionSpecs: [
|
|
387
|
+
* // {
|
|
388
|
+
* // Fields: [ // required
|
|
389
|
+
* // {
|
|
390
|
+
* // SourceId: Number("int"), // required
|
|
391
|
+
* // Transform: "STRING_VALUE", // required
|
|
392
|
+
* // Name: "STRING_VALUE", // required
|
|
393
|
+
* // FieldId: Number("int"),
|
|
394
|
+
* // },
|
|
395
|
+
* // ],
|
|
396
|
+
* // SpecId: Number("int"),
|
|
397
|
+
* // },
|
|
398
|
+
* // ],
|
|
399
|
+
* // DefaultSpecId: Number("int"),
|
|
400
|
+
* // LastPartitionId: Number("int"),
|
|
401
|
+
* // SortOrders: [
|
|
402
|
+
* // {
|
|
403
|
+
* // OrderId: Number("int"), // required
|
|
404
|
+
* // Fields: [ // required
|
|
405
|
+
* // {
|
|
406
|
+
* // SourceId: Number("int"), // required
|
|
407
|
+
* // Transform: "STRING_VALUE", // required
|
|
408
|
+
* // Direction: "asc" || "desc", // required
|
|
409
|
+
* // NullOrder: "nulls-first" || "nulls-last", // required
|
|
410
|
+
* // },
|
|
411
|
+
* // ],
|
|
412
|
+
* // },
|
|
413
|
+
* // ],
|
|
414
|
+
* // DefaultSortOrderId: Number("int"),
|
|
415
|
+
* // },
|
|
295
416
|
* // Status: {
|
|
296
417
|
* // RequestedBy: "STRING_VALUE",
|
|
297
418
|
* // UpdatedBy: "STRING_VALUE",
|
|
@@ -178,6 +178,65 @@ declare const GetTableVersionCommand_base: {
|
|
|
178
178
|
* // },
|
|
179
179
|
* // IsMultiDialectView: true || false,
|
|
180
180
|
* // IsMaterializedView: true || false,
|
|
181
|
+
* // IcebergTableMetadata: { // IcebergTableMetadata
|
|
182
|
+
* // FormatVersion: "STRING_VALUE",
|
|
183
|
+
* // TableUuid: "STRING_VALUE",
|
|
184
|
+
* // Location: "STRING_VALUE",
|
|
185
|
+
* // Properties: { // StringToStringMap
|
|
186
|
+
* // "<keys>": "STRING_VALUE",
|
|
187
|
+
* // },
|
|
188
|
+
* // Schemas: [ // IcebergSchemaList
|
|
189
|
+
* // { // IcebergSchema
|
|
190
|
+
* // SchemaId: Number("int"),
|
|
191
|
+
* // IdentifierFieldIds: [ // IntegerList
|
|
192
|
+
* // Number("int"),
|
|
193
|
+
* // ],
|
|
194
|
+
* // Type: "struct",
|
|
195
|
+
* // Fields: [ // IcebergStructFieldList // required
|
|
196
|
+
* // { // IcebergStructField
|
|
197
|
+
* // Id: Number("int"), // required
|
|
198
|
+
* // Name: "STRING_VALUE", // required
|
|
199
|
+
* // Type: "DOCUMENT_VALUE", // required
|
|
200
|
+
* // Required: true || false, // required
|
|
201
|
+
* // Doc: "STRING_VALUE",
|
|
202
|
+
* // InitialDefault: "DOCUMENT_VALUE",
|
|
203
|
+
* // WriteDefault: "DOCUMENT_VALUE",
|
|
204
|
+
* // },
|
|
205
|
+
* // ],
|
|
206
|
+
* // },
|
|
207
|
+
* // ],
|
|
208
|
+
* // CurrentSchemaId: Number("int"),
|
|
209
|
+
* // LastColumnId: Number("int"),
|
|
210
|
+
* // PartitionSpecs: [ // IcebergPartitionSpecList
|
|
211
|
+
* // { // IcebergPartitionSpec
|
|
212
|
+
* // Fields: [ // IcebergPartitionSpecFieldList // required
|
|
213
|
+
* // { // IcebergPartitionField
|
|
214
|
+
* // SourceId: Number("int"), // required
|
|
215
|
+
* // Transform: "STRING_VALUE", // required
|
|
216
|
+
* // Name: "STRING_VALUE", // required
|
|
217
|
+
* // FieldId: Number("int"),
|
|
218
|
+
* // },
|
|
219
|
+
* // ],
|
|
220
|
+
* // SpecId: Number("int"),
|
|
221
|
+
* // },
|
|
222
|
+
* // ],
|
|
223
|
+
* // DefaultSpecId: Number("int"),
|
|
224
|
+
* // LastPartitionId: Number("int"),
|
|
225
|
+
* // SortOrders: [ // IcebergSortOrderList
|
|
226
|
+
* // { // IcebergSortOrder
|
|
227
|
+
* // OrderId: Number("int"), // required
|
|
228
|
+
* // Fields: [ // IcebergSortOrderFieldList // required
|
|
229
|
+
* // { // IcebergSortField
|
|
230
|
+
* // SourceId: Number("int"), // required
|
|
231
|
+
* // Transform: "STRING_VALUE", // required
|
|
232
|
+
* // Direction: "asc" || "desc", // required
|
|
233
|
+
* // NullOrder: "nulls-first" || "nulls-last", // required
|
|
234
|
+
* // },
|
|
235
|
+
* // ],
|
|
236
|
+
* // },
|
|
237
|
+
* // ],
|
|
238
|
+
* // DefaultSortOrderId: Number("int"),
|
|
239
|
+
* // },
|
|
181
240
|
* // Status: { // TableStatus
|
|
182
241
|
* // RequestedBy: "STRING_VALUE",
|
|
183
242
|
* // UpdatedBy: "STRING_VALUE",
|
|
@@ -290,6 +349,65 @@ declare const GetTableVersionCommand_base: {
|
|
|
290
349
|
* // },
|
|
291
350
|
* // IsMultiDialectView: true || false,
|
|
292
351
|
* // IsMaterializedView: true || false,
|
|
352
|
+
* // IcebergTableMetadata: {
|
|
353
|
+
* // FormatVersion: "STRING_VALUE",
|
|
354
|
+
* // TableUuid: "STRING_VALUE",
|
|
355
|
+
* // Location: "STRING_VALUE",
|
|
356
|
+
* // Properties: {
|
|
357
|
+
* // "<keys>": "STRING_VALUE",
|
|
358
|
+
* // },
|
|
359
|
+
* // Schemas: [
|
|
360
|
+
* // {
|
|
361
|
+
* // SchemaId: Number("int"),
|
|
362
|
+
* // IdentifierFieldIds: [
|
|
363
|
+
* // Number("int"),
|
|
364
|
+
* // ],
|
|
365
|
+
* // Type: "struct",
|
|
366
|
+
* // Fields: [ // required
|
|
367
|
+
* // {
|
|
368
|
+
* // Id: Number("int"), // required
|
|
369
|
+
* // Name: "STRING_VALUE", // required
|
|
370
|
+
* // Type: "DOCUMENT_VALUE", // required
|
|
371
|
+
* // Required: true || false, // required
|
|
372
|
+
* // Doc: "STRING_VALUE",
|
|
373
|
+
* // InitialDefault: "DOCUMENT_VALUE",
|
|
374
|
+
* // WriteDefault: "DOCUMENT_VALUE",
|
|
375
|
+
* // },
|
|
376
|
+
* // ],
|
|
377
|
+
* // },
|
|
378
|
+
* // ],
|
|
379
|
+
* // CurrentSchemaId: Number("int"),
|
|
380
|
+
* // LastColumnId: Number("int"),
|
|
381
|
+
* // PartitionSpecs: [
|
|
382
|
+
* // {
|
|
383
|
+
* // Fields: [ // required
|
|
384
|
+
* // {
|
|
385
|
+
* // SourceId: Number("int"), // required
|
|
386
|
+
* // Transform: "STRING_VALUE", // required
|
|
387
|
+
* // Name: "STRING_VALUE", // required
|
|
388
|
+
* // FieldId: Number("int"),
|
|
389
|
+
* // },
|
|
390
|
+
* // ],
|
|
391
|
+
* // SpecId: Number("int"),
|
|
392
|
+
* // },
|
|
393
|
+
* // ],
|
|
394
|
+
* // DefaultSpecId: Number("int"),
|
|
395
|
+
* // LastPartitionId: Number("int"),
|
|
396
|
+
* // SortOrders: [
|
|
397
|
+
* // {
|
|
398
|
+
* // OrderId: Number("int"), // required
|
|
399
|
+
* // Fields: [ // required
|
|
400
|
+
* // {
|
|
401
|
+
* // SourceId: Number("int"), // required
|
|
402
|
+
* // Transform: "STRING_VALUE", // required
|
|
403
|
+
* // Direction: "asc" || "desc", // required
|
|
404
|
+
* // NullOrder: "nulls-first" || "nulls-last", // required
|
|
405
|
+
* // },
|
|
406
|
+
* // ],
|
|
407
|
+
* // },
|
|
408
|
+
* // ],
|
|
409
|
+
* // DefaultSortOrderId: Number("int"),
|
|
410
|
+
* // },
|
|
293
411
|
* // Status: {
|
|
294
412
|
* // RequestedBy: "STRING_VALUE",
|
|
295
413
|
* // UpdatedBy: "STRING_VALUE",
|
|
@@ -181,6 +181,65 @@ declare const GetTableVersionsCommand_base: {
|
|
|
181
181
|
* // },
|
|
182
182
|
* // IsMultiDialectView: true || false,
|
|
183
183
|
* // IsMaterializedView: true || false,
|
|
184
|
+
* // IcebergTableMetadata: { // IcebergTableMetadata
|
|
185
|
+
* // FormatVersion: "STRING_VALUE",
|
|
186
|
+
* // TableUuid: "STRING_VALUE",
|
|
187
|
+
* // Location: "STRING_VALUE",
|
|
188
|
+
* // Properties: { // StringToStringMap
|
|
189
|
+
* // "<keys>": "STRING_VALUE",
|
|
190
|
+
* // },
|
|
191
|
+
* // Schemas: [ // IcebergSchemaList
|
|
192
|
+
* // { // IcebergSchema
|
|
193
|
+
* // SchemaId: Number("int"),
|
|
194
|
+
* // IdentifierFieldIds: [ // IntegerList
|
|
195
|
+
* // Number("int"),
|
|
196
|
+
* // ],
|
|
197
|
+
* // Type: "struct",
|
|
198
|
+
* // Fields: [ // IcebergStructFieldList // required
|
|
199
|
+
* // { // IcebergStructField
|
|
200
|
+
* // Id: Number("int"), // required
|
|
201
|
+
* // Name: "STRING_VALUE", // required
|
|
202
|
+
* // Type: "DOCUMENT_VALUE", // required
|
|
203
|
+
* // Required: true || false, // required
|
|
204
|
+
* // Doc: "STRING_VALUE",
|
|
205
|
+
* // InitialDefault: "DOCUMENT_VALUE",
|
|
206
|
+
* // WriteDefault: "DOCUMENT_VALUE",
|
|
207
|
+
* // },
|
|
208
|
+
* // ],
|
|
209
|
+
* // },
|
|
210
|
+
* // ],
|
|
211
|
+
* // CurrentSchemaId: Number("int"),
|
|
212
|
+
* // LastColumnId: Number("int"),
|
|
213
|
+
* // PartitionSpecs: [ // IcebergPartitionSpecList
|
|
214
|
+
* // { // IcebergPartitionSpec
|
|
215
|
+
* // Fields: [ // IcebergPartitionSpecFieldList // required
|
|
216
|
+
* // { // IcebergPartitionField
|
|
217
|
+
* // SourceId: Number("int"), // required
|
|
218
|
+
* // Transform: "STRING_VALUE", // required
|
|
219
|
+
* // Name: "STRING_VALUE", // required
|
|
220
|
+
* // FieldId: Number("int"),
|
|
221
|
+
* // },
|
|
222
|
+
* // ],
|
|
223
|
+
* // SpecId: Number("int"),
|
|
224
|
+
* // },
|
|
225
|
+
* // ],
|
|
226
|
+
* // DefaultSpecId: Number("int"),
|
|
227
|
+
* // LastPartitionId: Number("int"),
|
|
228
|
+
* // SortOrders: [ // IcebergSortOrderList
|
|
229
|
+
* // { // IcebergSortOrder
|
|
230
|
+
* // OrderId: Number("int"), // required
|
|
231
|
+
* // Fields: [ // IcebergSortOrderFieldList // required
|
|
232
|
+
* // { // IcebergSortField
|
|
233
|
+
* // SourceId: Number("int"), // required
|
|
234
|
+
* // Transform: "STRING_VALUE", // required
|
|
235
|
+
* // Direction: "asc" || "desc", // required
|
|
236
|
+
* // NullOrder: "nulls-first" || "nulls-last", // required
|
|
237
|
+
* // },
|
|
238
|
+
* // ],
|
|
239
|
+
* // },
|
|
240
|
+
* // ],
|
|
241
|
+
* // DefaultSortOrderId: Number("int"),
|
|
242
|
+
* // },
|
|
184
243
|
* // Status: { // TableStatus
|
|
185
244
|
* // RequestedBy: "STRING_VALUE",
|
|
186
245
|
* // UpdatedBy: "STRING_VALUE",
|
|
@@ -293,6 +352,65 @@ declare const GetTableVersionsCommand_base: {
|
|
|
293
352
|
* // },
|
|
294
353
|
* // IsMultiDialectView: true || false,
|
|
295
354
|
* // IsMaterializedView: true || false,
|
|
355
|
+
* // IcebergTableMetadata: {
|
|
356
|
+
* // FormatVersion: "STRING_VALUE",
|
|
357
|
+
* // TableUuid: "STRING_VALUE",
|
|
358
|
+
* // Location: "STRING_VALUE",
|
|
359
|
+
* // Properties: {
|
|
360
|
+
* // "<keys>": "STRING_VALUE",
|
|
361
|
+
* // },
|
|
362
|
+
* // Schemas: [
|
|
363
|
+
* // {
|
|
364
|
+
* // SchemaId: Number("int"),
|
|
365
|
+
* // IdentifierFieldIds: [
|
|
366
|
+
* // Number("int"),
|
|
367
|
+
* // ],
|
|
368
|
+
* // Type: "struct",
|
|
369
|
+
* // Fields: [ // required
|
|
370
|
+
* // {
|
|
371
|
+
* // Id: Number("int"), // required
|
|
372
|
+
* // Name: "STRING_VALUE", // required
|
|
373
|
+
* // Type: "DOCUMENT_VALUE", // required
|
|
374
|
+
* // Required: true || false, // required
|
|
375
|
+
* // Doc: "STRING_VALUE",
|
|
376
|
+
* // InitialDefault: "DOCUMENT_VALUE",
|
|
377
|
+
* // WriteDefault: "DOCUMENT_VALUE",
|
|
378
|
+
* // },
|
|
379
|
+
* // ],
|
|
380
|
+
* // },
|
|
381
|
+
* // ],
|
|
382
|
+
* // CurrentSchemaId: Number("int"),
|
|
383
|
+
* // LastColumnId: Number("int"),
|
|
384
|
+
* // PartitionSpecs: [
|
|
385
|
+
* // {
|
|
386
|
+
* // Fields: [ // required
|
|
387
|
+
* // {
|
|
388
|
+
* // SourceId: Number("int"), // required
|
|
389
|
+
* // Transform: "STRING_VALUE", // required
|
|
390
|
+
* // Name: "STRING_VALUE", // required
|
|
391
|
+
* // FieldId: Number("int"),
|
|
392
|
+
* // },
|
|
393
|
+
* // ],
|
|
394
|
+
* // SpecId: Number("int"),
|
|
395
|
+
* // },
|
|
396
|
+
* // ],
|
|
397
|
+
* // DefaultSpecId: Number("int"),
|
|
398
|
+
* // LastPartitionId: Number("int"),
|
|
399
|
+
* // SortOrders: [
|
|
400
|
+
* // {
|
|
401
|
+
* // OrderId: Number("int"), // required
|
|
402
|
+
* // Fields: [ // required
|
|
403
|
+
* // {
|
|
404
|
+
* // SourceId: Number("int"), // required
|
|
405
|
+
* // Transform: "STRING_VALUE", // required
|
|
406
|
+
* // Direction: "asc" || "desc", // required
|
|
407
|
+
* // NullOrder: "nulls-first" || "nulls-last", // required
|
|
408
|
+
* // },
|
|
409
|
+
* // ],
|
|
410
|
+
* // },
|
|
411
|
+
* // ],
|
|
412
|
+
* // DefaultSortOrderId: Number("int"),
|
|
413
|
+
* // },
|
|
296
414
|
* // Status: {
|
|
297
415
|
* // RequestedBy: "STRING_VALUE",
|
|
298
416
|
* // UpdatedBy: "STRING_VALUE",
|
|
@@ -57,7 +57,7 @@ declare const GetTablesCommand_base: {
|
|
|
57
57
|
* },
|
|
58
58
|
* IncludeStatusDetails: true || false,
|
|
59
59
|
* AttributesToGet: [ // TableAttributesList
|
|
60
|
-
* "NAME" || "TABLE_TYPE",
|
|
60
|
+
* "NAME" || "TABLE_TYPE" || "DEFAULT" || "LATEST_ICEBERG_METADATA",
|
|
61
61
|
* ],
|
|
62
62
|
* };
|
|
63
63
|
* const command = new GetTablesCommand(input);
|
|
@@ -186,6 +186,65 @@ declare const GetTablesCommand_base: {
|
|
|
186
186
|
* // },
|
|
187
187
|
* // IsMultiDialectView: true || false,
|
|
188
188
|
* // IsMaterializedView: true || false,
|
|
189
|
+
* // IcebergTableMetadata: { // IcebergTableMetadata
|
|
190
|
+
* // FormatVersion: "STRING_VALUE",
|
|
191
|
+
* // TableUuid: "STRING_VALUE",
|
|
192
|
+
* // Location: "STRING_VALUE",
|
|
193
|
+
* // Properties: { // StringToStringMap
|
|
194
|
+
* // "<keys>": "STRING_VALUE",
|
|
195
|
+
* // },
|
|
196
|
+
* // Schemas: [ // IcebergSchemaList
|
|
197
|
+
* // { // IcebergSchema
|
|
198
|
+
* // SchemaId: Number("int"),
|
|
199
|
+
* // IdentifierFieldIds: [ // IntegerList
|
|
200
|
+
* // Number("int"),
|
|
201
|
+
* // ],
|
|
202
|
+
* // Type: "struct",
|
|
203
|
+
* // Fields: [ // IcebergStructFieldList // required
|
|
204
|
+
* // { // IcebergStructField
|
|
205
|
+
* // Id: Number("int"), // required
|
|
206
|
+
* // Name: "STRING_VALUE", // required
|
|
207
|
+
* // Type: "DOCUMENT_VALUE", // required
|
|
208
|
+
* // Required: true || false, // required
|
|
209
|
+
* // Doc: "STRING_VALUE",
|
|
210
|
+
* // InitialDefault: "DOCUMENT_VALUE",
|
|
211
|
+
* // WriteDefault: "DOCUMENT_VALUE",
|
|
212
|
+
* // },
|
|
213
|
+
* // ],
|
|
214
|
+
* // },
|
|
215
|
+
* // ],
|
|
216
|
+
* // CurrentSchemaId: Number("int"),
|
|
217
|
+
* // LastColumnId: Number("int"),
|
|
218
|
+
* // PartitionSpecs: [ // IcebergPartitionSpecList
|
|
219
|
+
* // { // IcebergPartitionSpec
|
|
220
|
+
* // Fields: [ // IcebergPartitionSpecFieldList // required
|
|
221
|
+
* // { // IcebergPartitionField
|
|
222
|
+
* // SourceId: Number("int"), // required
|
|
223
|
+
* // Transform: "STRING_VALUE", // required
|
|
224
|
+
* // Name: "STRING_VALUE", // required
|
|
225
|
+
* // FieldId: Number("int"),
|
|
226
|
+
* // },
|
|
227
|
+
* // ],
|
|
228
|
+
* // SpecId: Number("int"),
|
|
229
|
+
* // },
|
|
230
|
+
* // ],
|
|
231
|
+
* // DefaultSpecId: Number("int"),
|
|
232
|
+
* // LastPartitionId: Number("int"),
|
|
233
|
+
* // SortOrders: [ // IcebergSortOrderList
|
|
234
|
+
* // { // IcebergSortOrder
|
|
235
|
+
* // OrderId: Number("int"), // required
|
|
236
|
+
* // Fields: [ // IcebergSortOrderFieldList // required
|
|
237
|
+
* // { // IcebergSortField
|
|
238
|
+
* // SourceId: Number("int"), // required
|
|
239
|
+
* // Transform: "STRING_VALUE", // required
|
|
240
|
+
* // Direction: "asc" || "desc", // required
|
|
241
|
+
* // NullOrder: "nulls-first" || "nulls-last", // required
|
|
242
|
+
* // },
|
|
243
|
+
* // ],
|
|
244
|
+
* // },
|
|
245
|
+
* // ],
|
|
246
|
+
* // DefaultSortOrderId: Number("int"),
|
|
247
|
+
* // },
|
|
189
248
|
* // Status: { // TableStatus
|
|
190
249
|
* // RequestedBy: "STRING_VALUE",
|
|
191
250
|
* // UpdatedBy: "STRING_VALUE",
|
|
@@ -298,6 +357,65 @@ declare const GetTablesCommand_base: {
|
|
|
298
357
|
* // },
|
|
299
358
|
* // IsMultiDialectView: true || false,
|
|
300
359
|
* // IsMaterializedView: true || false,
|
|
360
|
+
* // IcebergTableMetadata: {
|
|
361
|
+
* // FormatVersion: "STRING_VALUE",
|
|
362
|
+
* // TableUuid: "STRING_VALUE",
|
|
363
|
+
* // Location: "STRING_VALUE",
|
|
364
|
+
* // Properties: {
|
|
365
|
+
* // "<keys>": "STRING_VALUE",
|
|
366
|
+
* // },
|
|
367
|
+
* // Schemas: [
|
|
368
|
+
* // {
|
|
369
|
+
* // SchemaId: Number("int"),
|
|
370
|
+
* // IdentifierFieldIds: [
|
|
371
|
+
* // Number("int"),
|
|
372
|
+
* // ],
|
|
373
|
+
* // Type: "struct",
|
|
374
|
+
* // Fields: [ // required
|
|
375
|
+
* // {
|
|
376
|
+
* // Id: Number("int"), // required
|
|
377
|
+
* // Name: "STRING_VALUE", // required
|
|
378
|
+
* // Type: "DOCUMENT_VALUE", // required
|
|
379
|
+
* // Required: true || false, // required
|
|
380
|
+
* // Doc: "STRING_VALUE",
|
|
381
|
+
* // InitialDefault: "DOCUMENT_VALUE",
|
|
382
|
+
* // WriteDefault: "DOCUMENT_VALUE",
|
|
383
|
+
* // },
|
|
384
|
+
* // ],
|
|
385
|
+
* // },
|
|
386
|
+
* // ],
|
|
387
|
+
* // CurrentSchemaId: Number("int"),
|
|
388
|
+
* // LastColumnId: Number("int"),
|
|
389
|
+
* // PartitionSpecs: [
|
|
390
|
+
* // {
|
|
391
|
+
* // Fields: [ // required
|
|
392
|
+
* // {
|
|
393
|
+
* // SourceId: Number("int"), // required
|
|
394
|
+
* // Transform: "STRING_VALUE", // required
|
|
395
|
+
* // Name: "STRING_VALUE", // required
|
|
396
|
+
* // FieldId: Number("int"),
|
|
397
|
+
* // },
|
|
398
|
+
* // ],
|
|
399
|
+
* // SpecId: Number("int"),
|
|
400
|
+
* // },
|
|
401
|
+
* // ],
|
|
402
|
+
* // DefaultSpecId: Number("int"),
|
|
403
|
+
* // LastPartitionId: Number("int"),
|
|
404
|
+
* // SortOrders: [
|
|
405
|
+
* // {
|
|
406
|
+
* // OrderId: Number("int"), // required
|
|
407
|
+
* // Fields: [ // required
|
|
408
|
+
* // {
|
|
409
|
+
* // SourceId: Number("int"), // required
|
|
410
|
+
* // Transform: "STRING_VALUE", // required
|
|
411
|
+
* // Direction: "asc" || "desc", // required
|
|
412
|
+
* // NullOrder: "nulls-first" || "nulls-last", // required
|
|
413
|
+
* // },
|
|
414
|
+
* // ],
|
|
415
|
+
* // },
|
|
416
|
+
* // ],
|
|
417
|
+
* // DefaultSortOrderId: Number("int"),
|
|
418
|
+
* // },
|
|
301
419
|
* // Status: {
|
|
302
420
|
* // RequestedBy: "STRING_VALUE",
|
|
303
421
|
* // UpdatedBy: "STRING_VALUE",
|