@aws-sdk/client-glue 3.45.0 → 3.47.2

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 (64) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/dist-cjs/Glue.js +45 -0
  3. package/dist-cjs/commands/GetCrawlerMetricsCommand.js +2 -1
  4. package/dist-cjs/commands/GetCrawlersCommand.js +3 -3
  5. package/dist-cjs/commands/GetUnfilteredPartitionMetadataCommand.js +36 -0
  6. package/dist-cjs/commands/GetUnfilteredPartitionsMetadataCommand.js +36 -0
  7. package/dist-cjs/commands/GetUnfilteredTableMetadataCommand.js +36 -0
  8. package/dist-cjs/commands/index.js +3 -0
  9. package/dist-cjs/endpoints.js +0 -24
  10. package/dist-cjs/models/models_0.js +22 -124
  11. package/dist-cjs/models/models_1.js +77 -66
  12. package/dist-cjs/pagination/GetUnfilteredPartitionsMetadataPaginator.js +35 -0
  13. package/dist-cjs/pagination/index.js +1 -0
  14. package/dist-cjs/protocols/Aws_json1_1.js +545 -5
  15. package/dist-cjs/runtimeConfig.browser.js +7 -2
  16. package/dist-cjs/runtimeConfig.js +9 -3
  17. package/dist-es/Glue.js +45 -0
  18. package/dist-es/commands/GetCrawlerMetricsCommand.js +2 -1
  19. package/dist-es/commands/GetCrawlersCommand.js +1 -1
  20. package/dist-es/commands/GetUnfilteredPartitionMetadataCommand.js +39 -0
  21. package/dist-es/commands/GetUnfilteredPartitionsMetadataCommand.js +39 -0
  22. package/dist-es/commands/GetUnfilteredTableMetadataCommand.js +39 -0
  23. package/dist-es/commands/index.js +3 -0
  24. package/dist-es/endpoints.js +0 -24
  25. package/dist-es/models/models_0.js +12 -80
  26. package/dist-es/models/models_1.js +49 -40
  27. package/dist-es/pagination/GetUnfilteredPartitionsMetadataPaginator.js +74 -0
  28. package/dist-es/pagination/index.js +1 -0
  29. package/dist-es/protocols/Aws_json1_1.js +538 -7
  30. package/dist-es/runtimeConfig.browser.js +12 -3
  31. package/dist-es/runtimeConfig.js +13 -6
  32. package/dist-types/Glue.d.ts +12 -0
  33. package/dist-types/GlueClient.d.ts +10 -3
  34. package/dist-types/commands/GetCrawlerMetricsCommand.d.ts +2 -1
  35. package/dist-types/commands/GetCrawlersCommand.d.ts +1 -1
  36. package/dist-types/commands/GetUnfilteredPartitionMetadataCommand.d.ts +18 -0
  37. package/dist-types/commands/GetUnfilteredPartitionsMetadataCommand.d.ts +18 -0
  38. package/dist-types/commands/GetUnfilteredTableMetadataCommand.d.ts +18 -0
  39. package/dist-types/commands/index.d.ts +3 -0
  40. package/dist-types/models/models_0.d.ts +49 -148
  41. package/dist-types/models/models_1.d.ts +172 -61
  42. package/dist-types/pagination/GetUnfilteredPartitionsMetadataPaginator.d.ts +4 -0
  43. package/dist-types/pagination/index.d.ts +1 -0
  44. package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
  45. package/dist-types/runtimeConfig.browser.d.ts +3 -2
  46. package/dist-types/runtimeConfig.d.ts +4 -3
  47. package/dist-types/runtimeConfig.native.d.ts +1 -0
  48. package/dist-types/ts3.4/Glue.d.ts +12 -0
  49. package/dist-types/ts3.4/GlueClient.d.ts +8 -3
  50. package/dist-types/ts3.4/commands/GetCrawlerMetricsCommand.d.ts +2 -1
  51. package/dist-types/ts3.4/commands/GetCrawlersCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/GetUnfilteredPartitionMetadataCommand.d.ts +16 -0
  53. package/dist-types/ts3.4/commands/GetUnfilteredPartitionsMetadataCommand.d.ts +16 -0
  54. package/dist-types/ts3.4/commands/GetUnfilteredTableMetadataCommand.d.ts +16 -0
  55. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  56. package/dist-types/ts3.4/models/models_0.d.ts +32 -38
  57. package/dist-types/ts3.4/models/models_1.d.ts +126 -41
  58. package/dist-types/ts3.4/pagination/GetUnfilteredPartitionsMetadataPaginator.d.ts +4 -0
  59. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  60. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +9 -0
  61. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  62. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
  63. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
  64. package/package.json +39 -46
@@ -10,12 +10,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
10
10
  */
11
11
  Message?: string;
12
12
  }
13
- export declare namespace AccessDeniedException {
14
- /**
15
- * @internal
16
- */
17
- const filterSensitiveLog: (obj: AccessDeniedException) => any;
18
- }
19
13
  /**
20
14
  * <p>Specifies configuration properties of a notification.</p>
21
15
  */
@@ -87,11 +81,14 @@ export interface AlreadyExistsException extends __SmithyException, $MetadataBear
87
81
  */
88
82
  Message?: string;
89
83
  }
90
- export declare namespace AlreadyExistsException {
84
+ export interface AuditContext {
85
+ AdditionalAuditContext?: string;
86
+ }
87
+ export declare namespace AuditContext {
91
88
  /**
92
89
  * @internal
93
90
  */
94
- const filterSensitiveLog: (obj: AlreadyExistsException) => any;
91
+ const filterSensitiveLog: (obj: AuditContext) => any;
95
92
  }
96
93
  /**
97
94
  * <p>A column in a <code>Table</code>.</p>
@@ -256,6 +253,7 @@ export interface StorageDescriptor {
256
253
  * name.</p>
257
254
  */
258
255
  Location?: string;
256
+ AdditionalLocations?: string[];
259
257
  /**
260
258
  * <p>The input format: <code>SequenceFileInputFormat</code> (binary),
261
259
  * or <code>TextInputFormat</code>, or a custom format.</p>
@@ -442,12 +440,6 @@ export interface EntityNotFoundException extends __SmithyException, $MetadataBea
442
440
  */
443
441
  Message?: string;
444
442
  }
445
- export declare namespace EntityNotFoundException {
446
- /**
447
- * @internal
448
- */
449
- const filterSensitiveLog: (obj: EntityNotFoundException) => any;
450
- }
451
443
  /**
452
444
  * <p>An encryption operation failed.</p>
453
445
  */
@@ -459,12 +451,6 @@ export interface GlueEncryptionException extends __SmithyException, $MetadataBea
459
451
  */
460
452
  Message?: string;
461
453
  }
462
- export declare namespace GlueEncryptionException {
463
- /**
464
- * @internal
465
- */
466
- const filterSensitiveLog: (obj: GlueEncryptionException) => any;
467
- }
468
454
  /**
469
455
  * <p>An internal service error occurred.</p>
470
456
  */
@@ -476,12 +462,6 @@ export interface InternalServiceException extends __SmithyException, $MetadataBe
476
462
  */
477
463
  Message?: string;
478
464
  }
479
- export declare namespace InternalServiceException {
480
- /**
481
- * @internal
482
- */
483
- const filterSensitiveLog: (obj: InternalServiceException) => any;
484
- }
485
465
  /**
486
466
  * <p>The input provided was not valid.</p>
487
467
  */
@@ -493,12 +473,6 @@ export interface InvalidInputException extends __SmithyException, $MetadataBeare
493
473
  */
494
474
  Message?: string;
495
475
  }
496
- export declare namespace InvalidInputException {
497
- /**
498
- * @internal
499
- */
500
- const filterSensitiveLog: (obj: InvalidInputException) => any;
501
- }
502
476
  /**
503
477
  * <p>The operation timed out.</p>
504
478
  */
@@ -510,12 +484,6 @@ export interface OperationTimeoutException extends __SmithyException, $MetadataB
510
484
  */
511
485
  Message?: string;
512
486
  }
513
- export declare namespace OperationTimeoutException {
514
- /**
515
- * @internal
516
- */
517
- const filterSensitiveLog: (obj: OperationTimeoutException) => any;
518
- }
519
487
  /**
520
488
  * <p>A resource numerical limit was exceeded.</p>
521
489
  */
@@ -527,12 +495,6 @@ export interface ResourceNumberLimitExceededException extends __SmithyException,
527
495
  */
528
496
  Message?: string;
529
497
  }
530
- export declare namespace ResourceNumberLimitExceededException {
531
- /**
532
- * @internal
533
- */
534
- const filterSensitiveLog: (obj: ResourceNumberLimitExceededException) => any;
535
- }
536
498
  export interface BatchDeleteConnectionRequest {
537
499
  /**
538
500
  * <p>The ID of the Data Catalog in which the connections reside. If none is provided, the Amazon Web Services
@@ -692,12 +654,6 @@ export interface ResourceNotReadyException extends __SmithyException, $MetadataB
692
654
  */
693
655
  Message?: string;
694
656
  }
695
- export declare namespace ResourceNotReadyException {
696
- /**
697
- * @internal
698
- */
699
- const filterSensitiveLog: (obj: ResourceNotReadyException) => any;
700
- }
701
657
  export interface BatchDeleteTableVersionRequest {
702
658
  /**
703
659
  * <p>The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account
@@ -913,6 +869,16 @@ export declare namespace BatchGetCrawlersRequest {
913
869
  */
914
870
  const filterSensitiveLog: (obj: BatchGetCrawlersRequest) => any;
915
871
  }
872
+ export interface LakeFormationConfiguration {
873
+ UseLakeFormationCredentials?: boolean;
874
+ AccountId?: string;
875
+ }
876
+ export declare namespace LakeFormationConfiguration {
877
+ /**
878
+ * @internal
879
+ */
880
+ const filterSensitiveLog: (obj: LakeFormationConfiguration) => any;
881
+ }
916
882
  export declare enum LastCrawlStatus {
917
883
  CANCELLED = "CANCELLED",
918
884
  FAILED = "FAILED",
@@ -1078,6 +1044,10 @@ export interface CatalogTarget {
1078
1044
  * <p>A list of the tables to be synchronized.</p>
1079
1045
  */
1080
1046
  Tables: string[] | undefined;
1047
+ /**
1048
+ * <p>The name of the connection for an Amazon S3-backed Data Catalog table to be a target of the crawl when using a <code>Catalog</code> connection type paired with a <code>NETWORK</code> Connection type.</p>
1049
+ */
1050
+ ConnectionName?: string;
1081
1051
  }
1082
1052
  export declare namespace CatalogTarget {
1083
1053
  /**
@@ -1085,6 +1055,29 @@ export declare namespace CatalogTarget {
1085
1055
  */
1086
1056
  const filterSensitiveLog: (obj: CatalogTarget) => any;
1087
1057
  }
1058
+ /**
1059
+ * <p>Specifies a Delta data store to crawl one or more Delta tables.</p>
1060
+ */
1061
+ export interface DeltaTarget {
1062
+ /**
1063
+ * <p>A list of the Amazon S3 paths to the Delta tables.</p>
1064
+ */
1065
+ DeltaTables?: string[];
1066
+ /**
1067
+ * <p>The name of the connection to use to connect to the Delta table target.</p>
1068
+ */
1069
+ ConnectionName?: string;
1070
+ /**
1071
+ * <p>Specifies whether to write the manifest files to the Delta table path.</p>
1072
+ */
1073
+ WriteManifest?: boolean;
1074
+ }
1075
+ export declare namespace DeltaTarget {
1076
+ /**
1077
+ * @internal
1078
+ */
1079
+ const filterSensitiveLog: (obj: DeltaTarget) => any;
1080
+ }
1088
1081
  /**
1089
1082
  * <p>Specifies an Amazon DynamoDB table to crawl.</p>
1090
1083
  */
@@ -1221,6 +1214,10 @@ export interface CrawlerTargets {
1221
1214
  * <p>Specifies Glue Data Catalog targets.</p>
1222
1215
  */
1223
1216
  CatalogTargets?: CatalogTarget[];
1217
+ /**
1218
+ * <p>Specifies Delta data store targets.</p>
1219
+ */
1220
+ DeltaTargets?: DeltaTarget[];
1224
1221
  }
1225
1222
  export declare namespace CrawlerTargets {
1226
1223
  /**
@@ -1317,6 +1314,7 @@ export interface Crawler {
1317
1314
  * crawler.</p>
1318
1315
  */
1319
1316
  CrawlerSecurityConfiguration?: string;
1317
+ LakeFormationConfiguration?: LakeFormationConfiguration;
1320
1318
  }
1321
1319
  export declare namespace Crawler {
1322
1320
  /**
@@ -1886,12 +1884,6 @@ export interface InvalidStateException extends __SmithyException, $MetadataBeare
1886
1884
  */
1887
1885
  Message?: string;
1888
1886
  }
1889
- export declare namespace InvalidStateException {
1890
- /**
1891
- * @internal
1892
- */
1893
- const filterSensitiveLog: (obj: InvalidStateException) => any;
1894
- }
1895
1887
  export interface BatchGetTriggersRequest {
1896
1888
  /**
1897
1889
  * <p>A list of trigger names, which may be the names returned from the <code>ListTriggers</code> operation.</p>
@@ -3291,6 +3283,7 @@ export interface CreateCrawlerRequest {
3291
3283
  * <p>Specifies data lineage configuration settings for the crawler.</p>
3292
3284
  */
3293
3285
  LineageConfiguration?: LineageConfiguration;
3286
+ LakeFormationConfiguration?: LakeFormationConfiguration;
3294
3287
  /**
3295
3288
  * <p>Crawler configuration information. This versioned JSON
3296
3289
  * string allows users to specify aspects of a crawler's behavior.
@@ -3336,12 +3329,6 @@ export interface ConcurrentModificationException extends __SmithyException, $Met
3336
3329
  */
3337
3330
  Message?: string;
3338
3331
  }
3339
- export declare namespace ConcurrentModificationException {
3340
- /**
3341
- * @internal
3342
- */
3343
- const filterSensitiveLog: (obj: ConcurrentModificationException) => any;
3344
- }
3345
3332
  export declare enum Permission {
3346
3333
  ALL = "ALL",
3347
3334
  ALTER = "ALTER",
@@ -3700,12 +3687,6 @@ export interface IdempotentParameterMismatchException extends __SmithyException,
3700
3687
  */
3701
3688
  Message?: string;
3702
3689
  }
3703
- export declare namespace IdempotentParameterMismatchException {
3704
- /**
3705
- * @internal
3706
- */
3707
- const filterSensitiveLog: (obj: IdempotentParameterMismatchException) => any;
3708
- }
3709
3690
  /**
3710
3691
  * <p>A value could not be validated.</p>
3711
3692
  */
@@ -3717,12 +3698,6 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
3717
3698
  */
3718
3699
  Message?: string;
3719
3700
  }
3720
- export declare namespace ValidationException {
3721
- /**
3722
- * @internal
3723
- */
3724
- const filterSensitiveLog: (obj: ValidationException) => any;
3725
- }
3726
3701
  export interface CreateJobRequest {
3727
3702
  /**
3728
3703
  * <p>The name you assign to this job definition. It must be unique in your account.</p>
@@ -5209,12 +5184,6 @@ export interface CrawlerRunningException extends __SmithyException, $MetadataBea
5209
5184
  */
5210
5185
  Message?: string;
5211
5186
  }
5212
- export declare namespace CrawlerRunningException {
5213
- /**
5214
- * @internal
5215
- */
5216
- const filterSensitiveLog: (obj: CrawlerRunningException) => any;
5217
- }
5218
5187
  export interface DeleteCrawlerRequest {
5219
5188
  /**
5220
5189
  * <p>The name of the crawler to remove.</p>
@@ -5246,12 +5215,6 @@ export interface SchedulerTransitioningException extends __SmithyException, $Met
5246
5215
  */
5247
5216
  Message?: string;
5248
5217
  }
5249
- export declare namespace SchedulerTransitioningException {
5250
- /**
5251
- * @internal
5252
- */
5253
- const filterSensitiveLog: (obj: SchedulerTransitioningException) => any;
5254
- }
5255
5218
  export interface DeleteDatabaseRequest {
5256
5219
  /**
5257
5220
  * <p>The ID of the Data Catalog in which the database resides. If none is provided, the Amazon Web Services
@@ -5391,12 +5354,6 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
5391
5354
  */
5392
5355
  Message?: string;
5393
5356
  }
5394
- export declare namespace ConflictException {
5395
- /**
5396
- * @internal
5397
- */
5398
- const filterSensitiveLog: (obj: ConflictException) => any;
5399
- }
5400
5357
  export interface DeletePartitionIndexRequest {
5401
5358
  /**
5402
5359
  * <p>The catalog ID where the table resides.</p>
@@ -5476,12 +5433,6 @@ export interface ConditionCheckFailureException extends __SmithyException, $Meta
5476
5433
  */
5477
5434
  Message?: string;
5478
5435
  }
5479
- export declare namespace ConditionCheckFailureException {
5480
- /**
5481
- * @internal
5482
- */
5483
- const filterSensitiveLog: (obj: ConditionCheckFailureException) => any;
5484
- }
5485
5436
  export interface DeleteResourcePolicyRequest {
5486
5437
  /**
5487
5438
  * <p>The hash value returned when this policy was set.</p>
@@ -7013,53 +6964,3 @@ export declare namespace CrawlerMetrics {
7013
6964
  */
7014
6965
  const filterSensitiveLog: (obj: CrawlerMetrics) => any;
7015
6966
  }
7016
- export interface GetCrawlerMetricsResponse {
7017
- /**
7018
- * <p>A list of metrics for the specified crawler.</p>
7019
- */
7020
- CrawlerMetricsList?: CrawlerMetrics[];
7021
- /**
7022
- * <p>A continuation token, if the returned list does not contain the
7023
- * last metric available.</p>
7024
- */
7025
- NextToken?: string;
7026
- }
7027
- export declare namespace GetCrawlerMetricsResponse {
7028
- /**
7029
- * @internal
7030
- */
7031
- const filterSensitiveLog: (obj: GetCrawlerMetricsResponse) => any;
7032
- }
7033
- export interface GetCrawlersRequest {
7034
- /**
7035
- * <p>The number of crawlers to return on each call.</p>
7036
- */
7037
- MaxResults?: number;
7038
- /**
7039
- * <p>A continuation token, if this is a continuation request.</p>
7040
- */
7041
- NextToken?: string;
7042
- }
7043
- export declare namespace GetCrawlersRequest {
7044
- /**
7045
- * @internal
7046
- */
7047
- const filterSensitiveLog: (obj: GetCrawlersRequest) => any;
7048
- }
7049
- export interface GetCrawlersResponse {
7050
- /**
7051
- * <p>A list of crawler metadata.</p>
7052
- */
7053
- Crawlers?: Crawler[];
7054
- /**
7055
- * <p>A continuation token, if the returned list has not reached the end
7056
- * of those defined in this customer account.</p>
7057
- */
7058
- NextToken?: string;
7059
- }
7060
- export declare namespace GetCrawlersResponse {
7061
- /**
7062
- * @internal
7063
- */
7064
- const filterSensitiveLog: (obj: GetCrawlersResponse) => any;
7065
- }
@@ -1,5 +1,55 @@
1
1
  import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
- import { Action, CodeGenEdge, CodeGenNode, CodeGenNodeArg, Column, ColumnStatistics, Compatibility, ConnectionInput, ConnectionsList, CrawlerTargets, CsvHeaderOption, DatabaseIdentifier, DatabaseInput, DataFormat, DevEndpoint, EncryptionConfiguration, ErrorDetail, EventBatchingCondition, ExecutionProperty, GlueTable, Job, JobCommand, JobRun, Language, LineageConfiguration, NotificationProperty, Partition, PartitionInput, PartitionValueList, Predicate, PrincipalPermissions, PrincipalType, RecrawlPolicy, RegistryId, RegistryStatus, ResourceUri, SchemaChangePolicy, SchemaId, SchemaStatus, SchemaVersionStatus, StorageDescriptor, TableIdentifier, TableInput, TaskStatusType, TransformEncryption, TransformParameters, TransformType, Trigger, UserDefinedFunctionInput, WorkerType, Workflow, WorkflowRun } from "./models_0";
2
+ import { Action, AuditContext, CodeGenEdge, CodeGenNode, CodeGenNodeArg, Column, ColumnStatistics, Compatibility, ConnectionInput, ConnectionsList, Crawler, CrawlerMetrics, CrawlerTargets, CsvHeaderOption, DatabaseIdentifier, DatabaseInput, DataFormat, DevEndpoint, EncryptionConfiguration, ErrorDetail, EventBatchingCondition, ExecutionProperty, GlueTable, Job, JobCommand, JobRun, LakeFormationConfiguration, Language, LineageConfiguration, NotificationProperty, Partition, PartitionInput, PartitionValueList, Predicate, PrincipalPermissions, PrincipalType, RecrawlPolicy, RegistryId, RegistryStatus, ResourceUri, SchemaChangePolicy, SchemaId, SchemaStatus, SchemaVersionStatus, StorageDescriptor, TableIdentifier, TableInput, TaskStatusType, TransformEncryption, TransformParameters, TransformType, Trigger, UserDefinedFunctionInput, WorkerType, Workflow, WorkflowRun } from "./models_0";
3
+ export interface GetCrawlerMetricsResponse {
4
+ /**
5
+ * <p>A list of metrics for the specified crawler.</p>
6
+ */
7
+ CrawlerMetricsList?: CrawlerMetrics[];
8
+ /**
9
+ * <p>A continuation token, if the returned list does not contain the
10
+ * last metric available.</p>
11
+ */
12
+ NextToken?: string;
13
+ }
14
+ export declare namespace GetCrawlerMetricsResponse {
15
+ /**
16
+ * @internal
17
+ */
18
+ const filterSensitiveLog: (obj: GetCrawlerMetricsResponse) => any;
19
+ }
20
+ export interface GetCrawlersRequest {
21
+ /**
22
+ * <p>The number of crawlers to return on each call.</p>
23
+ */
24
+ MaxResults?: number;
25
+ /**
26
+ * <p>A continuation token, if this is a continuation request.</p>
27
+ */
28
+ NextToken?: string;
29
+ }
30
+ export declare namespace GetCrawlersRequest {
31
+ /**
32
+ * @internal
33
+ */
34
+ const filterSensitiveLog: (obj: GetCrawlersRequest) => any;
35
+ }
36
+ export interface GetCrawlersResponse {
37
+ /**
38
+ * <p>A list of crawler metadata.</p>
39
+ */
40
+ Crawlers?: Crawler[];
41
+ /**
42
+ * <p>A continuation token, if the returned list has not reached the end
43
+ * of those defined in this customer account.</p>
44
+ */
45
+ NextToken?: string;
46
+ }
47
+ export declare namespace GetCrawlersResponse {
48
+ /**
49
+ * @internal
50
+ */
51
+ const filterSensitiveLog: (obj: GetCrawlersResponse) => any;
52
+ }
3
53
  export interface GetDatabaseRequest {
4
54
  /**
5
55
  * <p>The ID of the Data Catalog in which the database resides. If none is provided, the Amazon Web Services
@@ -2816,6 +2866,126 @@ export declare namespace GetTriggersResponse {
2816
2866
  */
2817
2867
  const filterSensitiveLog: (obj: GetTriggersResponse) => any;
2818
2868
  }
2869
+ export declare enum PermissionType {
2870
+ CELL_FILTER_PERMISSION = "CELL_FILTER_PERMISSION",
2871
+ COLUMN_PERMISSION = "COLUMN_PERMISSION"
2872
+ }
2873
+ export interface GetUnfilteredPartitionMetadataRequest {
2874
+ CatalogId: string | undefined;
2875
+ DatabaseName: string | undefined;
2876
+ TableName: string | undefined;
2877
+ PartitionValues: string[] | undefined;
2878
+ AuditContext?: AuditContext;
2879
+ SupportedPermissionTypes: (PermissionType | string)[] | undefined;
2880
+ }
2881
+ export declare namespace GetUnfilteredPartitionMetadataRequest {
2882
+ /**
2883
+ * @internal
2884
+ */
2885
+ const filterSensitiveLog: (obj: GetUnfilteredPartitionMetadataRequest) => any;
2886
+ }
2887
+ export interface GetUnfilteredPartitionMetadataResponse {
2888
+ /**
2889
+ * <p>Represents a slice of table data.</p>
2890
+ */
2891
+ Partition?: Partition;
2892
+ AuthorizedColumns?: string[];
2893
+ IsRegisteredWithLakeFormation?: boolean;
2894
+ }
2895
+ export declare namespace GetUnfilteredPartitionMetadataResponse {
2896
+ /**
2897
+ * @internal
2898
+ */
2899
+ const filterSensitiveLog: (obj: GetUnfilteredPartitionMetadataResponse) => any;
2900
+ }
2901
+ export interface PermissionTypeMismatchException extends __SmithyException, $MetadataBearer {
2902
+ name: "PermissionTypeMismatchException";
2903
+ $fault: "client";
2904
+ Message?: string;
2905
+ }
2906
+ export interface GetUnfilteredPartitionsMetadataRequest {
2907
+ CatalogId: string | undefined;
2908
+ DatabaseName: string | undefined;
2909
+ TableName: string | undefined;
2910
+ Expression?: string;
2911
+ AuditContext?: AuditContext;
2912
+ SupportedPermissionTypes: (PermissionType | string)[] | undefined;
2913
+ NextToken?: string;
2914
+ /**
2915
+ * <p>Defines a non-overlapping region of a table's partitions, allowing
2916
+ * multiple requests to be run in parallel.</p>
2917
+ */
2918
+ Segment?: Segment;
2919
+ MaxResults?: number;
2920
+ }
2921
+ export declare namespace GetUnfilteredPartitionsMetadataRequest {
2922
+ /**
2923
+ * @internal
2924
+ */
2925
+ const filterSensitiveLog: (obj: GetUnfilteredPartitionsMetadataRequest) => any;
2926
+ }
2927
+ export interface UnfilteredPartition {
2928
+ /**
2929
+ * <p>Represents a slice of table data.</p>
2930
+ */
2931
+ Partition?: Partition;
2932
+ AuthorizedColumns?: string[];
2933
+ IsRegisteredWithLakeFormation?: boolean;
2934
+ }
2935
+ export declare namespace UnfilteredPartition {
2936
+ /**
2937
+ * @internal
2938
+ */
2939
+ const filterSensitiveLog: (obj: UnfilteredPartition) => any;
2940
+ }
2941
+ export interface GetUnfilteredPartitionsMetadataResponse {
2942
+ UnfilteredPartitions?: UnfilteredPartition[];
2943
+ NextToken?: string;
2944
+ }
2945
+ export declare namespace GetUnfilteredPartitionsMetadataResponse {
2946
+ /**
2947
+ * @internal
2948
+ */
2949
+ const filterSensitiveLog: (obj: GetUnfilteredPartitionsMetadataResponse) => any;
2950
+ }
2951
+ export interface GetUnfilteredTableMetadataRequest {
2952
+ CatalogId: string | undefined;
2953
+ DatabaseName: string | undefined;
2954
+ Name: string | undefined;
2955
+ AuditContext?: AuditContext;
2956
+ SupportedPermissionTypes: (PermissionType | string)[] | undefined;
2957
+ }
2958
+ export declare namespace GetUnfilteredTableMetadataRequest {
2959
+ /**
2960
+ * @internal
2961
+ */
2962
+ const filterSensitiveLog: (obj: GetUnfilteredTableMetadataRequest) => any;
2963
+ }
2964
+ export interface ColumnRowFilter {
2965
+ ColumnName?: string;
2966
+ RowFilterExpression?: string;
2967
+ }
2968
+ export declare namespace ColumnRowFilter {
2969
+ /**
2970
+ * @internal
2971
+ */
2972
+ const filterSensitiveLog: (obj: ColumnRowFilter) => any;
2973
+ }
2974
+ export interface GetUnfilteredTableMetadataResponse {
2975
+ /**
2976
+ * <p>Represents a collection of related data organized in columns and rows.</p>
2977
+ */
2978
+ Table?: Table;
2979
+ AuthorizedColumns?: string[];
2980
+ IsRegisteredWithLakeFormation?: boolean;
2981
+ CellFilters?: ColumnRowFilter[];
2982
+ }
2983
+ export declare namespace GetUnfilteredTableMetadataResponse {
2984
+ /**
2985
+ * @internal
2986
+ */
2987
+ const filterSensitiveLog: (obj: GetUnfilteredTableMetadataResponse) => any;
2988
+ }
2819
2989
  export interface GetUserDefinedFunctionRequest {
2820
2990
  /**
2821
2991
  * <p>The ID of the Data Catalog where the function to be retrieved is located. If none is
@@ -4036,12 +4206,6 @@ export interface ConcurrentRunsExceededException extends __SmithyException, $Met
4036
4206
  */
4037
4207
  Message?: string;
4038
4208
  }
4039
- export declare namespace ConcurrentRunsExceededException {
4040
- /**
4041
- * @internal
4042
- */
4043
- const filterSensitiveLog: (obj: ConcurrentRunsExceededException) => any;
4044
- }
4045
4209
  /**
4046
4210
  * <p>The workflow is in an invalid state to perform a requested operation.</p>
4047
4211
  */
@@ -4053,12 +4217,6 @@ export interface IllegalWorkflowStateException extends __SmithyException, $Metad
4053
4217
  */
4054
4218
  Message?: string;
4055
4219
  }
4056
- export declare namespace IllegalWorkflowStateException {
4057
- /**
4058
- * @internal
4059
- */
4060
- const filterSensitiveLog: (obj: IllegalWorkflowStateException) => any;
4061
- }
4062
4220
  export interface ResumeWorkflowRunRequest {
4063
4221
  /**
4064
4222
  * <p>The name of the workflow to resume.</p>
@@ -4219,12 +4377,6 @@ export interface IllegalBlueprintStateException extends __SmithyException, $Meta
4219
4377
  $fault: "client";
4220
4378
  Message?: string;
4221
4379
  }
4222
- export declare namespace IllegalBlueprintStateException {
4223
- /**
4224
- * @internal
4225
- */
4226
- const filterSensitiveLog: (obj: IllegalBlueprintStateException) => any;
4227
- }
4228
4380
  export interface StartBlueprintRunRequest {
4229
4381
  /**
4230
4382
  * <p>The name of the blueprint.</p>
@@ -4288,12 +4440,6 @@ export interface NoScheduleException extends __SmithyException, $MetadataBearer
4288
4440
  */
4289
4441
  Message?: string;
4290
4442
  }
4291
- export declare namespace NoScheduleException {
4292
- /**
4293
- * @internal
4294
- */
4295
- const filterSensitiveLog: (obj: NoScheduleException) => any;
4296
- }
4297
4443
  /**
4298
4444
  * <p>The specified scheduler is already running.</p>
4299
4445
  */
@@ -4305,12 +4451,6 @@ export interface SchedulerRunningException extends __SmithyException, $MetadataB
4305
4451
  */
4306
4452
  Message?: string;
4307
4453
  }
4308
- export declare namespace SchedulerRunningException {
4309
- /**
4310
- * @internal
4311
- */
4312
- const filterSensitiveLog: (obj: SchedulerRunningException) => any;
4313
- }
4314
4454
  export interface StartCrawlerScheduleRequest {
4315
4455
  /**
4316
4456
  * <p>Name of the crawler to schedule.</p>
@@ -4510,12 +4650,6 @@ export interface MLTransformNotReadyException extends __SmithyException, $Metada
4510
4650
  */
4511
4651
  Message?: string;
4512
4652
  }
4513
- export declare namespace MLTransformNotReadyException {
4514
- /**
4515
- * @internal
4516
- */
4517
- const filterSensitiveLog: (obj: MLTransformNotReadyException) => any;
4518
- }
4519
4653
  export interface StartMLEvaluationTaskRunRequest {
4520
4654
  /**
4521
4655
  * <p>The unique identifier of the machine learning transform.</p>
@@ -4628,12 +4762,6 @@ export interface CrawlerNotRunningException extends __SmithyException, $Metadata
4628
4762
  */
4629
4763
  Message?: string;
4630
4764
  }
4631
- export declare namespace CrawlerNotRunningException {
4632
- /**
4633
- * @internal
4634
- */
4635
- const filterSensitiveLog: (obj: CrawlerNotRunningException) => any;
4636
- }
4637
4765
  /**
4638
4766
  * <p>The specified crawler is stopping.</p>
4639
4767
  */
@@ -4645,12 +4773,6 @@ export interface CrawlerStoppingException extends __SmithyException, $MetadataBe
4645
4773
  */
4646
4774
  Message?: string;
4647
4775
  }
4648
- export declare namespace CrawlerStoppingException {
4649
- /**
4650
- * @internal
4651
- */
4652
- const filterSensitiveLog: (obj: CrawlerStoppingException) => any;
4653
- }
4654
4776
  export interface StopCrawlerRequest {
4655
4777
  /**
4656
4778
  * <p>Name of the crawler to stop.</p>
@@ -4682,12 +4804,6 @@ export interface SchedulerNotRunningException extends __SmithyException, $Metada
4682
4804
  */
4683
4805
  Message?: string;
4684
4806
  }
4685
- export declare namespace SchedulerNotRunningException {
4686
- /**
4687
- * @internal
4688
- */
4689
- const filterSensitiveLog: (obj: SchedulerNotRunningException) => any;
4690
- }
4691
4807
  export interface StopCrawlerScheduleRequest {
4692
4808
  /**
4693
4809
  * <p>Name of the crawler whose schedule state to set.</p>
@@ -4998,12 +5114,6 @@ export interface VersionMismatchException extends __SmithyException, $MetadataBe
4998
5114
  */
4999
5115
  Message?: string;
5000
5116
  }
5001
- export declare namespace VersionMismatchException {
5002
- /**
5003
- * @internal
5004
- */
5005
- const filterSensitiveLog: (obj: VersionMismatchException) => any;
5006
- }
5007
5117
  export interface UpdateColumnStatisticsForPartitionRequest {
5008
5118
  /**
5009
5119
  * <p>The ID of the Data Catalog where the partitions in question reside.
@@ -5183,6 +5293,7 @@ export interface UpdateCrawlerRequest {
5183
5293
  * <p>Specifies data lineage configuration settings for the crawler.</p>
5184
5294
  */
5185
5295
  LineageConfiguration?: LineageConfiguration;
5296
+ LakeFormationConfiguration?: LakeFormationConfiguration;
5186
5297
  /**
5187
5298
  * <p>Crawler configuration information. This versioned JSON string allows users
5188
5299
  * to specify aspects of a crawler's behavior.
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetUnfilteredPartitionsMetadataCommandInput, GetUnfilteredPartitionsMetadataCommandOutput } from "../commands/GetUnfilteredPartitionsMetadataCommand";
3
+ import { GluePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetUnfilteredPartitionsMetadata(config: GluePaginationConfiguration, input: GetUnfilteredPartitionsMetadataCommandInput, ...additionalArguments: any): Paginator<GetUnfilteredPartitionsMetadataCommandOutput>;
@@ -17,6 +17,7 @@ export * from "./GetSecurityConfigurationsPaginator";
17
17
  export * from "./GetTableVersionsPaginator";
18
18
  export * from "./GetTablesPaginator";
19
19
  export * from "./GetTriggersPaginator";
20
+ export * from "./GetUnfilteredPartitionsMetadataPaginator";
20
21
  export * from "./GetUserDefinedFunctionsPaginator";
21
22
  export * from "./GetWorkflowRunsPaginator";
22
23
  export * from "./ListBlueprintsPaginator";