@aws-sdk/client-glue 3.51.0 → 3.54.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/CHANGELOG.md +30 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/GlueServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +245 -6
- package/dist-cjs/models/models_1.js +159 -4
- package/dist-cjs/protocols/Aws_json1_1.js +1695 -6420
- package/dist-es/index.js +1 -0
- package/dist-es/models/GlueServiceException.js +12 -0
- package/dist-es/models/models_0.js +223 -1
- package/dist-es/models/models_1.js +145 -1
- package/dist-es/protocols/Aws_json1_1.js +3800 -7044
- package/dist-types/GlueClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/GlueServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +121 -52
- package/dist-types/models/models_1.d.ts +81 -34
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/GlueClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/GlueServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +52 -31
- package/dist-types/ts3.4/models/models_1.d.ts +58 -34
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { BatchCreatePartitionCommandInput, BatchCreatePartitionCommandOutput } from "./commands/BatchCreatePartitionCommand";
|
|
10
10
|
import { BatchDeleteConnectionCommandInput, BatchDeleteConnectionCommandOutput } from "./commands/BatchDeleteConnectionCommand";
|
|
11
11
|
import { BatchDeletePartitionCommandInput, BatchDeletePartitionCommandOutput } from "./commands/BatchDeletePartitionCommand";
|
|
@@ -197,7 +197,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
197
197
|
* A function that can calculate the length of a request body.
|
|
198
198
|
* @internal
|
|
199
199
|
*/
|
|
200
|
-
bodyLengthChecker?:
|
|
200
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
201
201
|
/**
|
|
202
202
|
* A function that converts a stream into an array of bytes.
|
|
203
203
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from Glue service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class GlueServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,14 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Access to a resource was denied.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
8
9
|
/**
|
|
9
10
|
* <p>A message describing the problem.</p>
|
|
10
11
|
*/
|
|
11
12
|
Message?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
12
17
|
}
|
|
13
18
|
/**
|
|
14
19
|
* <p>Specifies configuration properties of a notification.</p>
|
|
@@ -73,13 +78,17 @@ export declare namespace Action {
|
|
|
73
78
|
/**
|
|
74
79
|
* <p>A resource to be created or added already exists.</p>
|
|
75
80
|
*/
|
|
76
|
-
export
|
|
77
|
-
name: "AlreadyExistsException";
|
|
78
|
-
$fault: "client";
|
|
81
|
+
export declare class AlreadyExistsException extends __BaseException {
|
|
82
|
+
readonly name: "AlreadyExistsException";
|
|
83
|
+
readonly $fault: "client";
|
|
79
84
|
/**
|
|
80
85
|
* <p>A message describing the problem.</p>
|
|
81
86
|
*/
|
|
82
87
|
Message?: string;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
91
|
+
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
83
92
|
}
|
|
84
93
|
export interface AuditContext {
|
|
85
94
|
AdditionalAuditContext?: string;
|
|
@@ -432,68 +441,92 @@ export declare namespace BatchCreatePartitionResponse {
|
|
|
432
441
|
/**
|
|
433
442
|
* <p>A specified entity does not exist</p>
|
|
434
443
|
*/
|
|
435
|
-
export
|
|
436
|
-
name: "EntityNotFoundException";
|
|
437
|
-
$fault: "client";
|
|
444
|
+
export declare class EntityNotFoundException extends __BaseException {
|
|
445
|
+
readonly name: "EntityNotFoundException";
|
|
446
|
+
readonly $fault: "client";
|
|
438
447
|
/**
|
|
439
448
|
* <p>A message describing the problem.</p>
|
|
440
449
|
*/
|
|
441
450
|
Message?: string;
|
|
451
|
+
/**
|
|
452
|
+
* @internal
|
|
453
|
+
*/
|
|
454
|
+
constructor(opts: __ExceptionOptionType<EntityNotFoundException, __BaseException>);
|
|
442
455
|
}
|
|
443
456
|
/**
|
|
444
457
|
* <p>An encryption operation failed.</p>
|
|
445
458
|
*/
|
|
446
|
-
export
|
|
447
|
-
name: "GlueEncryptionException";
|
|
448
|
-
$fault: "client";
|
|
459
|
+
export declare class GlueEncryptionException extends __BaseException {
|
|
460
|
+
readonly name: "GlueEncryptionException";
|
|
461
|
+
readonly $fault: "client";
|
|
449
462
|
/**
|
|
450
463
|
* <p>A message describing the problem.</p>
|
|
451
464
|
*/
|
|
452
465
|
Message?: string;
|
|
466
|
+
/**
|
|
467
|
+
* @internal
|
|
468
|
+
*/
|
|
469
|
+
constructor(opts: __ExceptionOptionType<GlueEncryptionException, __BaseException>);
|
|
453
470
|
}
|
|
454
471
|
/**
|
|
455
472
|
* <p>An internal service error occurred.</p>
|
|
456
473
|
*/
|
|
457
|
-
export
|
|
458
|
-
name: "InternalServiceException";
|
|
459
|
-
$fault: "server";
|
|
474
|
+
export declare class InternalServiceException extends __BaseException {
|
|
475
|
+
readonly name: "InternalServiceException";
|
|
476
|
+
readonly $fault: "server";
|
|
460
477
|
/**
|
|
461
478
|
* <p>A message describing the problem.</p>
|
|
462
479
|
*/
|
|
463
480
|
Message?: string;
|
|
481
|
+
/**
|
|
482
|
+
* @internal
|
|
483
|
+
*/
|
|
484
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
464
485
|
}
|
|
465
486
|
/**
|
|
466
487
|
* <p>The input provided was not valid.</p>
|
|
467
488
|
*/
|
|
468
|
-
export
|
|
469
|
-
name: "InvalidInputException";
|
|
470
|
-
$fault: "client";
|
|
489
|
+
export declare class InvalidInputException extends __BaseException {
|
|
490
|
+
readonly name: "InvalidInputException";
|
|
491
|
+
readonly $fault: "client";
|
|
471
492
|
/**
|
|
472
493
|
* <p>A message describing the problem.</p>
|
|
473
494
|
*/
|
|
474
495
|
Message?: string;
|
|
496
|
+
/**
|
|
497
|
+
* @internal
|
|
498
|
+
*/
|
|
499
|
+
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
475
500
|
}
|
|
476
501
|
/**
|
|
477
502
|
* <p>The operation timed out.</p>
|
|
478
503
|
*/
|
|
479
|
-
export
|
|
480
|
-
name: "OperationTimeoutException";
|
|
481
|
-
$fault: "client";
|
|
504
|
+
export declare class OperationTimeoutException extends __BaseException {
|
|
505
|
+
readonly name: "OperationTimeoutException";
|
|
506
|
+
readonly $fault: "client";
|
|
482
507
|
/**
|
|
483
508
|
* <p>A message describing the problem.</p>
|
|
484
509
|
*/
|
|
485
510
|
Message?: string;
|
|
511
|
+
/**
|
|
512
|
+
* @internal
|
|
513
|
+
*/
|
|
514
|
+
constructor(opts: __ExceptionOptionType<OperationTimeoutException, __BaseException>);
|
|
486
515
|
}
|
|
487
516
|
/**
|
|
488
517
|
* <p>A resource numerical limit was exceeded.</p>
|
|
489
518
|
*/
|
|
490
|
-
export
|
|
491
|
-
name: "ResourceNumberLimitExceededException";
|
|
492
|
-
$fault: "client";
|
|
519
|
+
export declare class ResourceNumberLimitExceededException extends __BaseException {
|
|
520
|
+
readonly name: "ResourceNumberLimitExceededException";
|
|
521
|
+
readonly $fault: "client";
|
|
493
522
|
/**
|
|
494
523
|
* <p>A message describing the problem.</p>
|
|
495
524
|
*/
|
|
496
525
|
Message?: string;
|
|
526
|
+
/**
|
|
527
|
+
* @internal
|
|
528
|
+
*/
|
|
529
|
+
constructor(opts: __ExceptionOptionType<ResourceNumberLimitExceededException, __BaseException>);
|
|
497
530
|
}
|
|
498
531
|
export interface BatchDeleteConnectionRequest {
|
|
499
532
|
/**
|
|
@@ -646,13 +679,17 @@ export declare namespace BatchDeleteTableResponse {
|
|
|
646
679
|
/**
|
|
647
680
|
* <p>A resource was not ready for a transaction.</p>
|
|
648
681
|
*/
|
|
649
|
-
export
|
|
650
|
-
name: "ResourceNotReadyException";
|
|
651
|
-
$fault: "client";
|
|
682
|
+
export declare class ResourceNotReadyException extends __BaseException {
|
|
683
|
+
readonly name: "ResourceNotReadyException";
|
|
684
|
+
readonly $fault: "client";
|
|
652
685
|
/**
|
|
653
686
|
* <p>A message describing the problem.</p>
|
|
654
687
|
*/
|
|
655
688
|
Message?: string;
|
|
689
|
+
/**
|
|
690
|
+
* @internal
|
|
691
|
+
*/
|
|
692
|
+
constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
|
|
656
693
|
}
|
|
657
694
|
export interface BatchDeleteTableVersionRequest {
|
|
658
695
|
/**
|
|
@@ -1876,13 +1913,17 @@ export declare namespace BatchGetPartitionResponse {
|
|
|
1876
1913
|
/**
|
|
1877
1914
|
* <p>An error that indicates your data is in an invalid state.</p>
|
|
1878
1915
|
*/
|
|
1879
|
-
export
|
|
1880
|
-
name: "InvalidStateException";
|
|
1881
|
-
$fault: "client";
|
|
1916
|
+
export declare class InvalidStateException extends __BaseException {
|
|
1917
|
+
readonly name: "InvalidStateException";
|
|
1918
|
+
readonly $fault: "client";
|
|
1882
1919
|
/**
|
|
1883
1920
|
* <p>A message describing the problem.</p>
|
|
1884
1921
|
*/
|
|
1885
1922
|
Message?: string;
|
|
1923
|
+
/**
|
|
1924
|
+
* @internal
|
|
1925
|
+
*/
|
|
1926
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
1886
1927
|
}
|
|
1887
1928
|
export interface BatchGetTriggersRequest {
|
|
1888
1929
|
/**
|
|
@@ -3322,13 +3363,17 @@ export declare namespace CreateCrawlerResponse {
|
|
|
3322
3363
|
/**
|
|
3323
3364
|
* <p>Two processes are trying to modify a resource simultaneously.</p>
|
|
3324
3365
|
*/
|
|
3325
|
-
export
|
|
3326
|
-
name: "ConcurrentModificationException";
|
|
3327
|
-
$fault: "client";
|
|
3366
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
3367
|
+
readonly name: "ConcurrentModificationException";
|
|
3368
|
+
readonly $fault: "client";
|
|
3328
3369
|
/**
|
|
3329
3370
|
* <p>A message describing the problem.</p>
|
|
3330
3371
|
*/
|
|
3331
3372
|
Message?: string;
|
|
3373
|
+
/**
|
|
3374
|
+
* @internal
|
|
3375
|
+
*/
|
|
3376
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
3332
3377
|
}
|
|
3333
3378
|
export declare enum Permission {
|
|
3334
3379
|
ALL = "ALL",
|
|
@@ -3680,24 +3725,32 @@ export declare namespace CreateDevEndpointResponse {
|
|
|
3680
3725
|
/**
|
|
3681
3726
|
* <p>The same unique identifier was associated with two different records.</p>
|
|
3682
3727
|
*/
|
|
3683
|
-
export
|
|
3684
|
-
name: "IdempotentParameterMismatchException";
|
|
3685
|
-
$fault: "client";
|
|
3728
|
+
export declare class IdempotentParameterMismatchException extends __BaseException {
|
|
3729
|
+
readonly name: "IdempotentParameterMismatchException";
|
|
3730
|
+
readonly $fault: "client";
|
|
3686
3731
|
/**
|
|
3687
3732
|
* <p>A message describing the problem.</p>
|
|
3688
3733
|
*/
|
|
3689
3734
|
Message?: string;
|
|
3735
|
+
/**
|
|
3736
|
+
* @internal
|
|
3737
|
+
*/
|
|
3738
|
+
constructor(opts: __ExceptionOptionType<IdempotentParameterMismatchException, __BaseException>);
|
|
3690
3739
|
}
|
|
3691
3740
|
/**
|
|
3692
3741
|
* <p>A value could not be validated.</p>
|
|
3693
3742
|
*/
|
|
3694
|
-
export
|
|
3695
|
-
name: "ValidationException";
|
|
3696
|
-
$fault: "client";
|
|
3743
|
+
export declare class ValidationException extends __BaseException {
|
|
3744
|
+
readonly name: "ValidationException";
|
|
3745
|
+
readonly $fault: "client";
|
|
3697
3746
|
/**
|
|
3698
3747
|
* <p>A message describing the problem.</p>
|
|
3699
3748
|
*/
|
|
3700
3749
|
Message?: string;
|
|
3750
|
+
/**
|
|
3751
|
+
* @internal
|
|
3752
|
+
*/
|
|
3753
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
3701
3754
|
}
|
|
3702
3755
|
export interface CreateJobRequest {
|
|
3703
3756
|
/**
|
|
@@ -5177,13 +5230,17 @@ export declare namespace DeleteConnectionResponse {
|
|
|
5177
5230
|
/**
|
|
5178
5231
|
* <p>The operation cannot be performed because the crawler is already running.</p>
|
|
5179
5232
|
*/
|
|
5180
|
-
export
|
|
5181
|
-
name: "CrawlerRunningException";
|
|
5182
|
-
$fault: "client";
|
|
5233
|
+
export declare class CrawlerRunningException extends __BaseException {
|
|
5234
|
+
readonly name: "CrawlerRunningException";
|
|
5235
|
+
readonly $fault: "client";
|
|
5183
5236
|
/**
|
|
5184
5237
|
* <p>A message describing the problem.</p>
|
|
5185
5238
|
*/
|
|
5186
5239
|
Message?: string;
|
|
5240
|
+
/**
|
|
5241
|
+
* @internal
|
|
5242
|
+
*/
|
|
5243
|
+
constructor(opts: __ExceptionOptionType<CrawlerRunningException, __BaseException>);
|
|
5187
5244
|
}
|
|
5188
5245
|
export interface DeleteCrawlerRequest {
|
|
5189
5246
|
/**
|
|
@@ -5208,13 +5265,17 @@ export declare namespace DeleteCrawlerResponse {
|
|
|
5208
5265
|
/**
|
|
5209
5266
|
* <p>The specified scheduler is transitioning.</p>
|
|
5210
5267
|
*/
|
|
5211
|
-
export
|
|
5212
|
-
name: "SchedulerTransitioningException";
|
|
5213
|
-
$fault: "client";
|
|
5268
|
+
export declare class SchedulerTransitioningException extends __BaseException {
|
|
5269
|
+
readonly name: "SchedulerTransitioningException";
|
|
5270
|
+
readonly $fault: "client";
|
|
5214
5271
|
/**
|
|
5215
5272
|
* <p>A message describing the problem.</p>
|
|
5216
5273
|
*/
|
|
5217
5274
|
Message?: string;
|
|
5275
|
+
/**
|
|
5276
|
+
* @internal
|
|
5277
|
+
*/
|
|
5278
|
+
constructor(opts: __ExceptionOptionType<SchedulerTransitioningException, __BaseException>);
|
|
5218
5279
|
}
|
|
5219
5280
|
export interface DeleteDatabaseRequest {
|
|
5220
5281
|
/**
|
|
@@ -5347,13 +5408,17 @@ export declare namespace DeletePartitionResponse {
|
|
|
5347
5408
|
/**
|
|
5348
5409
|
* <p>The <code>CreatePartitions</code> API was called on a table that has indexes enabled. </p>
|
|
5349
5410
|
*/
|
|
5350
|
-
export
|
|
5351
|
-
name: "ConflictException";
|
|
5352
|
-
$fault: "client";
|
|
5411
|
+
export declare class ConflictException extends __BaseException {
|
|
5412
|
+
readonly name: "ConflictException";
|
|
5413
|
+
readonly $fault: "client";
|
|
5353
5414
|
/**
|
|
5354
5415
|
* <p>A message describing the problem.</p>
|
|
5355
5416
|
*/
|
|
5356
5417
|
Message?: string;
|
|
5418
|
+
/**
|
|
5419
|
+
* @internal
|
|
5420
|
+
*/
|
|
5421
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
5357
5422
|
}
|
|
5358
5423
|
export interface DeletePartitionIndexRequest {
|
|
5359
5424
|
/**
|
|
@@ -5426,13 +5491,17 @@ export declare namespace DeleteRegistryResponse {
|
|
|
5426
5491
|
/**
|
|
5427
5492
|
* <p>A specified condition was not satisfied.</p>
|
|
5428
5493
|
*/
|
|
5429
|
-
export
|
|
5430
|
-
name: "ConditionCheckFailureException";
|
|
5431
|
-
$fault: "client";
|
|
5494
|
+
export declare class ConditionCheckFailureException extends __BaseException {
|
|
5495
|
+
readonly name: "ConditionCheckFailureException";
|
|
5496
|
+
readonly $fault: "client";
|
|
5432
5497
|
/**
|
|
5433
5498
|
* <p>A message describing the problem.</p>
|
|
5434
5499
|
*/
|
|
5435
5500
|
Message?: string;
|
|
5501
|
+
/**
|
|
5502
|
+
* @internal
|
|
5503
|
+
*/
|
|
5504
|
+
constructor(opts: __ExceptionOptionType<ConditionCheckFailureException, __BaseException>);
|
|
5436
5505
|
}
|
|
5437
5506
|
export interface DeleteResourcePolicyRequest {
|
|
5438
5507
|
/**
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
2
3
|
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
4
|
export interface GetCrawlerMetricsResponse {
|
|
4
5
|
/**
|
|
@@ -2596,6 +2597,7 @@ export interface Table {
|
|
|
2596
2597
|
* <p>The ID of the Data Catalog in which the table resides.</p>
|
|
2597
2598
|
*/
|
|
2598
2599
|
CatalogId?: string;
|
|
2600
|
+
VersionId?: string;
|
|
2599
2601
|
}
|
|
2600
2602
|
export declare namespace Table {
|
|
2601
2603
|
/**
|
|
@@ -2898,10 +2900,14 @@ export declare namespace GetUnfilteredPartitionMetadataResponse {
|
|
|
2898
2900
|
*/
|
|
2899
2901
|
const filterSensitiveLog: (obj: GetUnfilteredPartitionMetadataResponse) => any;
|
|
2900
2902
|
}
|
|
2901
|
-
export
|
|
2902
|
-
name: "PermissionTypeMismatchException";
|
|
2903
|
-
$fault: "client";
|
|
2903
|
+
export declare class PermissionTypeMismatchException extends __BaseException {
|
|
2904
|
+
readonly name: "PermissionTypeMismatchException";
|
|
2905
|
+
readonly $fault: "client";
|
|
2904
2906
|
Message?: string;
|
|
2907
|
+
/**
|
|
2908
|
+
* @internal
|
|
2909
|
+
*/
|
|
2910
|
+
constructor(opts: __ExceptionOptionType<PermissionTypeMismatchException, __BaseException>);
|
|
2905
2911
|
}
|
|
2906
2912
|
export interface GetUnfilteredPartitionsMetadataRequest {
|
|
2907
2913
|
CatalogId: string | undefined;
|
|
@@ -4198,24 +4204,32 @@ export declare namespace ResetJobBookmarkResponse {
|
|
|
4198
4204
|
/**
|
|
4199
4205
|
* <p>Too many jobs are being run concurrently.</p>
|
|
4200
4206
|
*/
|
|
4201
|
-
export
|
|
4202
|
-
name: "ConcurrentRunsExceededException";
|
|
4203
|
-
$fault: "client";
|
|
4207
|
+
export declare class ConcurrentRunsExceededException extends __BaseException {
|
|
4208
|
+
readonly name: "ConcurrentRunsExceededException";
|
|
4209
|
+
readonly $fault: "client";
|
|
4204
4210
|
/**
|
|
4205
4211
|
* <p>A message describing the problem.</p>
|
|
4206
4212
|
*/
|
|
4207
4213
|
Message?: string;
|
|
4214
|
+
/**
|
|
4215
|
+
* @internal
|
|
4216
|
+
*/
|
|
4217
|
+
constructor(opts: __ExceptionOptionType<ConcurrentRunsExceededException, __BaseException>);
|
|
4208
4218
|
}
|
|
4209
4219
|
/**
|
|
4210
4220
|
* <p>The workflow is in an invalid state to perform a requested operation.</p>
|
|
4211
4221
|
*/
|
|
4212
|
-
export
|
|
4213
|
-
name: "IllegalWorkflowStateException";
|
|
4214
|
-
$fault: "client";
|
|
4222
|
+
export declare class IllegalWorkflowStateException extends __BaseException {
|
|
4223
|
+
readonly name: "IllegalWorkflowStateException";
|
|
4224
|
+
readonly $fault: "client";
|
|
4215
4225
|
/**
|
|
4216
4226
|
* <p>A message describing the problem.</p>
|
|
4217
4227
|
*/
|
|
4218
4228
|
Message?: string;
|
|
4229
|
+
/**
|
|
4230
|
+
* @internal
|
|
4231
|
+
*/
|
|
4232
|
+
constructor(opts: __ExceptionOptionType<IllegalWorkflowStateException, __BaseException>);
|
|
4219
4233
|
}
|
|
4220
4234
|
export interface ResumeWorkflowRunRequest {
|
|
4221
4235
|
/**
|
|
@@ -4372,10 +4386,14 @@ export declare namespace SearchTablesResponse {
|
|
|
4372
4386
|
*/
|
|
4373
4387
|
const filterSensitiveLog: (obj: SearchTablesResponse) => any;
|
|
4374
4388
|
}
|
|
4375
|
-
export
|
|
4376
|
-
name: "IllegalBlueprintStateException";
|
|
4377
|
-
$fault: "client";
|
|
4389
|
+
export declare class IllegalBlueprintStateException extends __BaseException {
|
|
4390
|
+
readonly name: "IllegalBlueprintStateException";
|
|
4391
|
+
readonly $fault: "client";
|
|
4378
4392
|
Message?: string;
|
|
4393
|
+
/**
|
|
4394
|
+
* @internal
|
|
4395
|
+
*/
|
|
4396
|
+
constructor(opts: __ExceptionOptionType<IllegalBlueprintStateException, __BaseException>);
|
|
4379
4397
|
}
|
|
4380
4398
|
export interface StartBlueprintRunRequest {
|
|
4381
4399
|
/**
|
|
@@ -4432,24 +4450,32 @@ export declare namespace StartCrawlerResponse {
|
|
|
4432
4450
|
/**
|
|
4433
4451
|
* <p>There is no applicable schedule.</p>
|
|
4434
4452
|
*/
|
|
4435
|
-
export
|
|
4436
|
-
name: "NoScheduleException";
|
|
4437
|
-
$fault: "client";
|
|
4453
|
+
export declare class NoScheduleException extends __BaseException {
|
|
4454
|
+
readonly name: "NoScheduleException";
|
|
4455
|
+
readonly $fault: "client";
|
|
4438
4456
|
/**
|
|
4439
4457
|
* <p>A message describing the problem.</p>
|
|
4440
4458
|
*/
|
|
4441
4459
|
Message?: string;
|
|
4460
|
+
/**
|
|
4461
|
+
* @internal
|
|
4462
|
+
*/
|
|
4463
|
+
constructor(opts: __ExceptionOptionType<NoScheduleException, __BaseException>);
|
|
4442
4464
|
}
|
|
4443
4465
|
/**
|
|
4444
4466
|
* <p>The specified scheduler is already running.</p>
|
|
4445
4467
|
*/
|
|
4446
|
-
export
|
|
4447
|
-
name: "SchedulerRunningException";
|
|
4448
|
-
$fault: "client";
|
|
4468
|
+
export declare class SchedulerRunningException extends __BaseException {
|
|
4469
|
+
readonly name: "SchedulerRunningException";
|
|
4470
|
+
readonly $fault: "client";
|
|
4449
4471
|
/**
|
|
4450
4472
|
* <p>A message describing the problem.</p>
|
|
4451
4473
|
*/
|
|
4452
4474
|
Message?: string;
|
|
4475
|
+
/**
|
|
4476
|
+
* @internal
|
|
4477
|
+
*/
|
|
4478
|
+
constructor(opts: __ExceptionOptionType<SchedulerRunningException, __BaseException>);
|
|
4453
4479
|
}
|
|
4454
4480
|
export interface StartCrawlerScheduleRequest {
|
|
4455
4481
|
/**
|
|
@@ -4642,13 +4668,17 @@ export declare namespace StartJobRunResponse {
|
|
|
4642
4668
|
/**
|
|
4643
4669
|
* <p>The machine learning transform is not ready to run.</p>
|
|
4644
4670
|
*/
|
|
4645
|
-
export
|
|
4646
|
-
name: "MLTransformNotReadyException";
|
|
4647
|
-
$fault: "client";
|
|
4671
|
+
export declare class MLTransformNotReadyException extends __BaseException {
|
|
4672
|
+
readonly name: "MLTransformNotReadyException";
|
|
4673
|
+
readonly $fault: "client";
|
|
4648
4674
|
/**
|
|
4649
4675
|
* <p>A message describing the problem.</p>
|
|
4650
4676
|
*/
|
|
4651
4677
|
Message?: string;
|
|
4678
|
+
/**
|
|
4679
|
+
* @internal
|
|
4680
|
+
*/
|
|
4681
|
+
constructor(opts: __ExceptionOptionType<MLTransformNotReadyException, __BaseException>);
|
|
4652
4682
|
}
|
|
4653
4683
|
export interface StartMLEvaluationTaskRunRequest {
|
|
4654
4684
|
/**
|
|
@@ -4760,24 +4790,32 @@ export declare namespace StartWorkflowRunResponse {
|
|
|
4760
4790
|
/**
|
|
4761
4791
|
* <p>The specified crawler is not running.</p>
|
|
4762
4792
|
*/
|
|
4763
|
-
export
|
|
4764
|
-
name: "CrawlerNotRunningException";
|
|
4765
|
-
$fault: "client";
|
|
4793
|
+
export declare class CrawlerNotRunningException extends __BaseException {
|
|
4794
|
+
readonly name: "CrawlerNotRunningException";
|
|
4795
|
+
readonly $fault: "client";
|
|
4766
4796
|
/**
|
|
4767
4797
|
* <p>A message describing the problem.</p>
|
|
4768
4798
|
*/
|
|
4769
4799
|
Message?: string;
|
|
4800
|
+
/**
|
|
4801
|
+
* @internal
|
|
4802
|
+
*/
|
|
4803
|
+
constructor(opts: __ExceptionOptionType<CrawlerNotRunningException, __BaseException>);
|
|
4770
4804
|
}
|
|
4771
4805
|
/**
|
|
4772
4806
|
* <p>The specified crawler is stopping.</p>
|
|
4773
4807
|
*/
|
|
4774
|
-
export
|
|
4775
|
-
name: "CrawlerStoppingException";
|
|
4776
|
-
$fault: "client";
|
|
4808
|
+
export declare class CrawlerStoppingException extends __BaseException {
|
|
4809
|
+
readonly name: "CrawlerStoppingException";
|
|
4810
|
+
readonly $fault: "client";
|
|
4777
4811
|
/**
|
|
4778
4812
|
* <p>A message describing the problem.</p>
|
|
4779
4813
|
*/
|
|
4780
4814
|
Message?: string;
|
|
4815
|
+
/**
|
|
4816
|
+
* @internal
|
|
4817
|
+
*/
|
|
4818
|
+
constructor(opts: __ExceptionOptionType<CrawlerStoppingException, __BaseException>);
|
|
4781
4819
|
}
|
|
4782
4820
|
export interface StopCrawlerRequest {
|
|
4783
4821
|
/**
|
|
@@ -4802,13 +4840,17 @@ export declare namespace StopCrawlerResponse {
|
|
|
4802
4840
|
/**
|
|
4803
4841
|
* <p>The specified scheduler is not running.</p>
|
|
4804
4842
|
*/
|
|
4805
|
-
export
|
|
4806
|
-
name: "SchedulerNotRunningException";
|
|
4807
|
-
$fault: "client";
|
|
4843
|
+
export declare class SchedulerNotRunningException extends __BaseException {
|
|
4844
|
+
readonly name: "SchedulerNotRunningException";
|
|
4845
|
+
readonly $fault: "client";
|
|
4808
4846
|
/**
|
|
4809
4847
|
* <p>A message describing the problem.</p>
|
|
4810
4848
|
*/
|
|
4811
4849
|
Message?: string;
|
|
4850
|
+
/**
|
|
4851
|
+
* @internal
|
|
4852
|
+
*/
|
|
4853
|
+
constructor(opts: __ExceptionOptionType<SchedulerNotRunningException, __BaseException>);
|
|
4812
4854
|
}
|
|
4813
4855
|
export interface StopCrawlerScheduleRequest {
|
|
4814
4856
|
/**
|
|
@@ -5112,13 +5154,17 @@ export declare namespace UpdateClassifierResponse {
|
|
|
5112
5154
|
/**
|
|
5113
5155
|
* <p>There was a version conflict.</p>
|
|
5114
5156
|
*/
|
|
5115
|
-
export
|
|
5116
|
-
name: "VersionMismatchException";
|
|
5117
|
-
$fault: "client";
|
|
5157
|
+
export declare class VersionMismatchException extends __BaseException {
|
|
5158
|
+
readonly name: "VersionMismatchException";
|
|
5159
|
+
readonly $fault: "client";
|
|
5118
5160
|
/**
|
|
5119
5161
|
* <p>A message describing the problem.</p>
|
|
5120
5162
|
*/
|
|
5121
5163
|
Message?: string;
|
|
5164
|
+
/**
|
|
5165
|
+
* @internal
|
|
5166
|
+
*/
|
|
5167
|
+
constructor(opts: __ExceptionOptionType<VersionMismatchException, __BaseException>);
|
|
5122
5168
|
}
|
|
5123
5169
|
export interface UpdateColumnStatisticsForPartitionRequest {
|
|
5124
5170
|
/**
|
|
@@ -5873,6 +5919,7 @@ export interface UpdateTableRequest {
|
|
|
5873
5919
|
* <p>The transaction ID at which to update the table contents. </p>
|
|
5874
5920
|
*/
|
|
5875
5921
|
TransactionId?: string;
|
|
5922
|
+
VersionId?: string;
|
|
5876
5923
|
}
|
|
5877
5924
|
export declare namespace UpdateTableRequest {
|
|
5878
5925
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: GlueClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: GlueClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: GlueClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { BatchCreatePartitionCommandInput, BatchCreatePartitionCommandOutput } from "./commands/BatchCreatePartitionCommand";
|
|
10
10
|
import { BatchDeleteConnectionCommandInput, BatchDeleteConnectionCommandOutput } from "./commands/BatchDeleteConnectionCommand";
|
|
11
11
|
import { BatchDeletePartitionCommandInput, BatchDeletePartitionCommandOutput } from "./commands/BatchDeletePartitionCommand";
|
|
@@ -185,7 +185,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
185
185
|
|
|
186
186
|
urlParser?: __UrlParser;
|
|
187
187
|
|
|
188
|
-
bodyLengthChecker?:
|
|
188
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
189
189
|
|
|
190
190
|
streamCollector?: __StreamCollector;
|
|
191
191
|
|