@aws-sdk/client-glue 3.750.0 → 3.768.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 +354 -348
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +1 -0
- package/dist-types/commands/CreateCatalogCommand.d.ts +1 -0
- package/dist-types/commands/GetCatalogCommand.d.ts +1 -0
- package/dist-types/commands/GetCatalogsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateCatalogCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +12 -22
- package/dist-types/models/models_1.d.ts +37 -27
- package/dist-types/models/models_2.d.ts +27 -22
- package/dist-types/models/models_3.d.ts +22 -1
- package/dist-types/ts3.4/models/models_0.d.ts +6 -5
- package/dist-types/ts3.4/models/models_1.d.ts +12 -7
- package/dist-types/ts3.4/models/models_2.d.ts +7 -6
- package/dist-types/ts3.4/models/models_3.d.ts +6 -1
- package/package.json +12 -12
|
@@ -35,6 +35,10 @@ export const AggFunction = {
|
|
|
35
35
|
var_pop: "var_pop",
|
|
36
36
|
var_samp: "var_samp",
|
|
37
37
|
};
|
|
38
|
+
export const AllowFullTableExternalDataAccessEnum = {
|
|
39
|
+
False: "False",
|
|
40
|
+
True: "True",
|
|
41
|
+
};
|
|
38
42
|
export class AlreadyExistsException extends __BaseException {
|
|
39
43
|
name = "AlreadyExistsException";
|
|
40
44
|
$fault = "client";
|
|
@@ -6373,6 +6373,7 @@ const de_Blueprints = (output, context) => {
|
|
|
6373
6373
|
};
|
|
6374
6374
|
const de_Catalog = (output, context) => {
|
|
6375
6375
|
return take(output, {
|
|
6376
|
+
AllowFullTableExternalDataAccess: __expectString,
|
|
6376
6377
|
CatalogId: __expectString,
|
|
6377
6378
|
CatalogProperties: _json,
|
|
6378
6379
|
CreateDatabaseDefaultPermissions: _json,
|
|
@@ -172,6 +172,18 @@ export interface AllowedValue {
|
|
|
172
172
|
*/
|
|
173
173
|
Value: string | undefined;
|
|
174
174
|
}
|
|
175
|
+
/**
|
|
176
|
+
* @public
|
|
177
|
+
* @enum
|
|
178
|
+
*/
|
|
179
|
+
export declare const AllowFullTableExternalDataAccessEnum: {
|
|
180
|
+
readonly False: "False";
|
|
181
|
+
readonly True: "True";
|
|
182
|
+
};
|
|
183
|
+
/**
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
export type AllowFullTableExternalDataAccessEnum = (typeof AllowFullTableExternalDataAccessEnum)[keyof typeof AllowFullTableExternalDataAccessEnum];
|
|
175
187
|
/**
|
|
176
188
|
* <p>A resource to be created or added already exists.</p>
|
|
177
189
|
* @public
|
|
@@ -8060,28 +8072,6 @@ export interface BatchStopJobRunRequest {
|
|
|
8060
8072
|
*/
|
|
8061
8073
|
JobRunIds: string[] | undefined;
|
|
8062
8074
|
}
|
|
8063
|
-
/**
|
|
8064
|
-
* <p>Records an error that occurred when attempting to stop a
|
|
8065
|
-
* specified job run.</p>
|
|
8066
|
-
* @public
|
|
8067
|
-
*/
|
|
8068
|
-
export interface BatchStopJobRunError {
|
|
8069
|
-
/**
|
|
8070
|
-
* <p>The name of the job definition that is used in the job run in question.</p>
|
|
8071
|
-
* @public
|
|
8072
|
-
*/
|
|
8073
|
-
JobName?: string | undefined;
|
|
8074
|
-
/**
|
|
8075
|
-
* <p>The <code>JobRunId</code> of the job run in question.</p>
|
|
8076
|
-
* @public
|
|
8077
|
-
*/
|
|
8078
|
-
JobRunId?: string | undefined;
|
|
8079
|
-
/**
|
|
8080
|
-
* <p>Specifies details about the error that was encountered.</p>
|
|
8081
|
-
* @public
|
|
8082
|
-
*/
|
|
8083
|
-
ErrorDetail?: ErrorDetail | undefined;
|
|
8084
|
-
}
|
|
8085
8075
|
/**
|
|
8086
8076
|
* @internal
|
|
8087
8077
|
*/
|
|
@@ -1,6 +1,28 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
|
-
import { Action, AuthConfiguration, AuthenticationConfigurationInput, AuthenticationType,
|
|
3
|
+
import { Action, AllowFullTableExternalDataAccessEnum, AuthConfiguration, AuthenticationConfigurationInput, AuthenticationType, Blueprint, Column, ConnectionsList, CrawlerTargets, DataOperation, ErrorDetail, EventBatchingCondition, GlueTable, LakeFormationConfiguration, LineageConfiguration, PartitionInput, Predicate, Property, RecrawlPolicy, SchemaChangePolicy, SchemaId, StorageDescriptor, TableOptimizerConfiguration, TableOptimizerType, TriggerType, WorkerType } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Records an error that occurred when attempting to stop a
|
|
6
|
+
* specified job run.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface BatchStopJobRunError {
|
|
10
|
+
/**
|
|
11
|
+
* <p>The name of the job definition that is used in the job run in question.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
JobName?: string | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* <p>The <code>JobRunId</code> of the job run in question.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
JobRunId?: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* <p>Specifies details about the error that was encountered.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
ErrorDetail?: ErrorDetail | undefined;
|
|
25
|
+
}
|
|
4
26
|
/**
|
|
5
27
|
* <p>Records a successful request to stop a specified <code>JobRun</code>.</p>
|
|
6
28
|
* @public
|
|
@@ -477,6 +499,13 @@ export interface CatalogInput {
|
|
|
477
499
|
* @public
|
|
478
500
|
*/
|
|
479
501
|
CreateDatabaseDefaultPermissions?: PrincipalPermissions[] | undefined;
|
|
502
|
+
/**
|
|
503
|
+
* <p>
|
|
504
|
+
* Allows third-party engines to access data in Amazon S3 locations that are registered with Lake Formation.
|
|
505
|
+
* </p>
|
|
506
|
+
* @public
|
|
507
|
+
*/
|
|
508
|
+
AllowFullTableExternalDataAccess?: AllowFullTableExternalDataAccessEnum | undefined;
|
|
480
509
|
}
|
|
481
510
|
/**
|
|
482
511
|
* @public
|
|
@@ -5849,6 +5878,13 @@ export interface Catalog {
|
|
|
5849
5878
|
* @public
|
|
5850
5879
|
*/
|
|
5851
5880
|
CreateDatabaseDefaultPermissions?: PrincipalPermissions[] | undefined;
|
|
5881
|
+
/**
|
|
5882
|
+
* <p>
|
|
5883
|
+
* Allows third-party engines to access data in Amazon S3 locations that are registered with Lake Formation.
|
|
5884
|
+
* </p>
|
|
5885
|
+
* @public
|
|
5886
|
+
*/
|
|
5887
|
+
AllowFullTableExternalDataAccess?: AllowFullTableExternalDataAccessEnum | undefined;
|
|
5852
5888
|
}
|
|
5853
5889
|
/**
|
|
5854
5890
|
* @public
|
|
@@ -6821,32 +6857,6 @@ export declare const ExecutionStatus: {
|
|
|
6821
6857
|
* @public
|
|
6822
6858
|
*/
|
|
6823
6859
|
export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
6824
|
-
/**
|
|
6825
|
-
* <p>A run attempt for a column statistics task run.</p>
|
|
6826
|
-
* @public
|
|
6827
|
-
*/
|
|
6828
|
-
export interface ExecutionAttempt {
|
|
6829
|
-
/**
|
|
6830
|
-
* <p>The status of the last column statistics task run.</p>
|
|
6831
|
-
* @public
|
|
6832
|
-
*/
|
|
6833
|
-
Status?: ExecutionStatus | undefined;
|
|
6834
|
-
/**
|
|
6835
|
-
* <p>A task run ID for the last column statistics task run.</p>
|
|
6836
|
-
* @public
|
|
6837
|
-
*/
|
|
6838
|
-
ColumnStatisticsTaskRunId?: string | undefined;
|
|
6839
|
-
/**
|
|
6840
|
-
* <p>A timestamp when the last column statistics task run occurred.</p>
|
|
6841
|
-
* @public
|
|
6842
|
-
*/
|
|
6843
|
-
ExecutionTimestamp?: Date | undefined;
|
|
6844
|
-
/**
|
|
6845
|
-
* <p>An error message associated with the last column statistics task run.</p>
|
|
6846
|
-
* @public
|
|
6847
|
-
*/
|
|
6848
|
-
ErrorMessage?: string | undefined;
|
|
6849
|
-
}
|
|
6850
6860
|
/**
|
|
6851
6861
|
* @internal
|
|
6852
6862
|
*/
|
|
@@ -2,7 +2,33 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
|
|
|
2
2
|
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
3
3
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
4
4
|
import { AuditContext, AuthenticationConfiguration, Crawler, CustomEntityType, DataQualityAnalyzerResult, DataQualityObservation, DataQualityRuleResult, DataSource, DevEndpoint, ErrorDetail, GlueTable, InclusionAnnotationValue, JobRun, Partition, PartitionValueList, Schedule, SchemaId, StatisticAnnotation, TableOptimizer, TableOptimizerRun, TableOptimizerType, TimestampedInclusionAnnotation, Trigger, WorkerType, Workflow, WorkflowRun } from "./models_0";
|
|
5
|
-
import { Capabilities, CodeGenEdge, CodeGenNode, CodeGenNodeArg, Compatibility, ComputeEnvironment, ConnectionPropertyKey, ConnectionStatus, ConnectionType, DatabaseIdentifier, DataFormat, DataQualityTargetTable, EncryptionConfiguration,
|
|
5
|
+
import { Capabilities, CodeGenEdge, CodeGenNode, CodeGenNodeArg, Compatibility, ComputeEnvironment, ConnectionPropertyKey, ConnectionStatus, ConnectionType, DatabaseIdentifier, DataFormat, DataQualityTargetTable, EncryptionConfiguration, ExecutionStatus, FederatedDatabase, IntegrationError, IntegrationStatus, Language, Permission, PhysicalConnectionRequirements, PrincipalPermissions, PrincipalType, ProfileConfiguration, RegistryId, RegistryStatus, ResourceUri, SchemaStatus, SchemaVersionStatus, Session, SourceProcessingProperties, SourceTableConfig, Tag, TargetProcessingProperties, TargetTableConfig, TaskStatusType, TransformEncryption, TransformParameters, TransformType, ViewDialect } from "./models_1";
|
|
6
|
+
/**
|
|
7
|
+
* <p>A run attempt for a column statistics task run.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export interface ExecutionAttempt {
|
|
11
|
+
/**
|
|
12
|
+
* <p>The status of the last column statistics task run.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
Status?: ExecutionStatus | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>A task run ID for the last column statistics task run.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
ColumnStatisticsTaskRunId?: string | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>A timestamp when the last column statistics task run occurred.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
ExecutionTimestamp?: Date | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>An error message associated with the last column statistics task run.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
ErrorMessage?: string | undefined;
|
|
31
|
+
}
|
|
6
32
|
/**
|
|
7
33
|
* @public
|
|
8
34
|
* @enum
|
|
@@ -7447,27 +7473,6 @@ export declare const Comparator: {
|
|
|
7447
7473
|
* @public
|
|
7448
7474
|
*/
|
|
7449
7475
|
export type Comparator = (typeof Comparator)[keyof typeof Comparator];
|
|
7450
|
-
/**
|
|
7451
|
-
* <p>Defines a property predicate.</p>
|
|
7452
|
-
* @public
|
|
7453
|
-
*/
|
|
7454
|
-
export interface PropertyPredicate {
|
|
7455
|
-
/**
|
|
7456
|
-
* <p>The key of the property.</p>
|
|
7457
|
-
* @public
|
|
7458
|
-
*/
|
|
7459
|
-
Key?: string | undefined;
|
|
7460
|
-
/**
|
|
7461
|
-
* <p>The value of the property.</p>
|
|
7462
|
-
* @public
|
|
7463
|
-
*/
|
|
7464
|
-
Value?: string | undefined;
|
|
7465
|
-
/**
|
|
7466
|
-
* <p>The comparator used to compare this property to others.</p>
|
|
7467
|
-
* @public
|
|
7468
|
-
*/
|
|
7469
|
-
Comparator?: Comparator | undefined;
|
|
7470
|
-
}
|
|
7471
7476
|
/**
|
|
7472
7477
|
* @internal
|
|
7473
7478
|
*/
|
|
@@ -2,7 +2,28 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
|
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
3
|
import { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, AuthenticationConfigurationInput, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CrawlerTargets, CustomCode, DataSource, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionClass, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, JobMode, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, Recipe, RecrawlPolicy, RedshiftSource, RedshiftTarget, RelationalCatalogSource, RenameField, S3CatalogDeltaSource, S3CatalogHudiSource, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DeltaCatalogTarget, S3DeltaDirectTarget, S3DeltaSource, S3DirectTarget, S3GlueParquetTarget, S3HudiCatalogTarget, S3HudiDirectTarget, S3HudiSource, S3JsonSource, S3ParquetSource, SchemaChangePolicy, SchemaId, SelectFields, SelectFromCollection, SnowflakeSource, SnowflakeTarget, SourceControlAuthStrategy, SourceControlDetails, SourceControlProvider, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, StorageDescriptor, TableOptimizerConfiguration, TableOptimizerType, Trigger, Union, WorkerType } from "./models_0";
|
|
4
4
|
import { CatalogInput, ColumnStatistics, Compatibility, ConnectionInput, ConnectionPropertyKey, ConnectionType, CsvHeaderOption, CsvSerdeOption, DatabaseInput, Permission, ProfileConfiguration, RegistryId, SourceProcessingProperties, SourceTableConfig, TableIdentifier, TableInput, TargetProcessingProperties, TargetTableConfig, TransformParameters, UserDefinedFunctionInput } from "./models_1";
|
|
5
|
-
import { ColumnRowFilter, DataQualityEvaluationRunAdditionalRunOptions, FederatedTable,
|
|
5
|
+
import { ColumnRowFilter, Comparator, DataQualityEvaluationRunAdditionalRunOptions, FederatedTable, ResourceAction, ResourceShareType, ResourceState, SchemaVersionNumber, ViewDefinition, ViewValidation } from "./models_2";
|
|
6
|
+
/**
|
|
7
|
+
* <p>Defines a property predicate.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export interface PropertyPredicate {
|
|
11
|
+
/**
|
|
12
|
+
* <p>The key of the property.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
Key?: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The value of the property.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
Value?: string | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>The comparator used to compare this property to others.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
Comparator?: Comparator | undefined;
|
|
26
|
+
}
|
|
6
27
|
/**
|
|
7
28
|
* @public
|
|
8
29
|
* @enum
|
|
@@ -57,6 +57,12 @@ export interface AllowedValue {
|
|
|
57
57
|
Description?: string | undefined;
|
|
58
58
|
Value: string | undefined;
|
|
59
59
|
}
|
|
60
|
+
export declare const AllowFullTableExternalDataAccessEnum: {
|
|
61
|
+
readonly False: "False";
|
|
62
|
+
readonly True: "True";
|
|
63
|
+
};
|
|
64
|
+
export type AllowFullTableExternalDataAccessEnum =
|
|
65
|
+
(typeof AllowFullTableExternalDataAccessEnum)[keyof typeof AllowFullTableExternalDataAccessEnum];
|
|
60
66
|
export declare class AlreadyExistsException extends __BaseException {
|
|
61
67
|
readonly name: "AlreadyExistsException";
|
|
62
68
|
readonly $fault: "client";
|
|
@@ -2091,11 +2097,6 @@ export interface BatchStopJobRunRequest {
|
|
|
2091
2097
|
JobName: string | undefined;
|
|
2092
2098
|
JobRunIds: string[] | undefined;
|
|
2093
2099
|
}
|
|
2094
|
-
export interface BatchStopJobRunError {
|
|
2095
|
-
JobName?: string | undefined;
|
|
2096
|
-
JobRunId?: string | undefined;
|
|
2097
|
-
ErrorDetail?: ErrorDetail | undefined;
|
|
2098
|
-
}
|
|
2099
2100
|
export declare const BasicAuthenticationCredentialsFilterSensitiveLog: (
|
|
2100
2101
|
obj: BasicAuthenticationCredentials
|
|
2101
2102
|
) => any;
|
|
@@ -2,10 +2,10 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
|
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
3
|
import {
|
|
4
4
|
Action,
|
|
5
|
+
AllowFullTableExternalDataAccessEnum,
|
|
5
6
|
AuthConfiguration,
|
|
6
7
|
AuthenticationConfigurationInput,
|
|
7
8
|
AuthenticationType,
|
|
8
|
-
BatchStopJobRunError,
|
|
9
9
|
Blueprint,
|
|
10
10
|
Column,
|
|
11
11
|
ConnectionsList,
|
|
@@ -28,6 +28,11 @@ import {
|
|
|
28
28
|
TriggerType,
|
|
29
29
|
WorkerType,
|
|
30
30
|
} from "./models_0";
|
|
31
|
+
export interface BatchStopJobRunError {
|
|
32
|
+
JobName?: string | undefined;
|
|
33
|
+
JobRunId?: string | undefined;
|
|
34
|
+
ErrorDetail?: ErrorDetail | undefined;
|
|
35
|
+
}
|
|
31
36
|
export interface BatchStopJobRunSuccessfulSubmission {
|
|
32
37
|
JobName?: string | undefined;
|
|
33
38
|
JobRunId?: string | undefined;
|
|
@@ -173,6 +178,9 @@ export interface CatalogInput {
|
|
|
173
178
|
CatalogProperties?: CatalogProperties | undefined;
|
|
174
179
|
CreateTableDefaultPermissions?: PrincipalPermissions[] | undefined;
|
|
175
180
|
CreateDatabaseDefaultPermissions?: PrincipalPermissions[] | undefined;
|
|
181
|
+
AllowFullTableExternalDataAccess?:
|
|
182
|
+
| AllowFullTableExternalDataAccessEnum
|
|
183
|
+
| undefined;
|
|
176
184
|
}
|
|
177
185
|
export interface CreateCatalogRequest {
|
|
178
186
|
Name: string | undefined;
|
|
@@ -1553,6 +1561,9 @@ export interface Catalog {
|
|
|
1553
1561
|
CatalogProperties?: CatalogPropertiesOutput | undefined;
|
|
1554
1562
|
CreateTableDefaultPermissions?: PrincipalPermissions[] | undefined;
|
|
1555
1563
|
CreateDatabaseDefaultPermissions?: PrincipalPermissions[] | undefined;
|
|
1564
|
+
AllowFullTableExternalDataAccess?:
|
|
1565
|
+
| AllowFullTableExternalDataAccessEnum
|
|
1566
|
+
| undefined;
|
|
1556
1567
|
}
|
|
1557
1568
|
export interface GetCatalogResponse {
|
|
1558
1569
|
Catalog?: Catalog | undefined;
|
|
@@ -1796,12 +1807,6 @@ export declare const ExecutionStatus: {
|
|
|
1796
1807
|
};
|
|
1797
1808
|
export type ExecutionStatus =
|
|
1798
1809
|
(typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
1799
|
-
export interface ExecutionAttempt {
|
|
1800
|
-
Status?: ExecutionStatus | undefined;
|
|
1801
|
-
ColumnStatisticsTaskRunId?: string | undefined;
|
|
1802
|
-
ExecutionTimestamp?: Date | undefined;
|
|
1803
|
-
ErrorMessage?: string | undefined;
|
|
1804
|
-
}
|
|
1805
1810
|
export declare const ConnectionInputFilterSensitiveLog: (
|
|
1806
1811
|
obj: ConnectionInput
|
|
1807
1812
|
) => any;
|
|
@@ -43,7 +43,7 @@ import {
|
|
|
43
43
|
DataFormat,
|
|
44
44
|
DataQualityTargetTable,
|
|
45
45
|
EncryptionConfiguration,
|
|
46
|
-
|
|
46
|
+
ExecutionStatus,
|
|
47
47
|
FederatedDatabase,
|
|
48
48
|
IntegrationError,
|
|
49
49
|
IntegrationStatus,
|
|
@@ -70,6 +70,12 @@ import {
|
|
|
70
70
|
TransformType,
|
|
71
71
|
ViewDialect,
|
|
72
72
|
} from "./models_1";
|
|
73
|
+
export interface ExecutionAttempt {
|
|
74
|
+
Status?: ExecutionStatus | undefined;
|
|
75
|
+
ColumnStatisticsTaskRunId?: string | undefined;
|
|
76
|
+
ExecutionTimestamp?: Date | undefined;
|
|
77
|
+
ErrorMessage?: string | undefined;
|
|
78
|
+
}
|
|
73
79
|
export declare const ScheduleType: {
|
|
74
80
|
readonly AUTO: "AUTO";
|
|
75
81
|
readonly CRON: "CRON";
|
|
@@ -1790,11 +1796,6 @@ export declare const Comparator: {
|
|
|
1790
1796
|
readonly LESS_THAN_EQUALS: "LESS_THAN_EQUALS";
|
|
1791
1797
|
};
|
|
1792
1798
|
export type Comparator = (typeof Comparator)[keyof typeof Comparator];
|
|
1793
|
-
export interface PropertyPredicate {
|
|
1794
|
-
Key?: string | undefined;
|
|
1795
|
-
Value?: string | undefined;
|
|
1796
|
-
Comparator?: Comparator | undefined;
|
|
1797
|
-
}
|
|
1798
1799
|
export declare const GetDataQualityResultResponseFilterSensitiveLog: (
|
|
1799
1800
|
obj: GetDataQualityResultResponse
|
|
1800
1801
|
) => any;
|
|
@@ -124,9 +124,9 @@ import {
|
|
|
124
124
|
} from "./models_1";
|
|
125
125
|
import {
|
|
126
126
|
ColumnRowFilter,
|
|
127
|
+
Comparator,
|
|
127
128
|
DataQualityEvaluationRunAdditionalRunOptions,
|
|
128
129
|
FederatedTable,
|
|
129
|
-
PropertyPredicate,
|
|
130
130
|
ResourceAction,
|
|
131
131
|
ResourceShareType,
|
|
132
132
|
ResourceState,
|
|
@@ -134,6 +134,11 @@ import {
|
|
|
134
134
|
ViewDefinition,
|
|
135
135
|
ViewValidation,
|
|
136
136
|
} from "./models_2";
|
|
137
|
+
export interface PropertyPredicate {
|
|
138
|
+
Key?: string | undefined;
|
|
139
|
+
Value?: string | undefined;
|
|
140
|
+
Comparator?: Comparator | undefined;
|
|
141
|
+
}
|
|
137
142
|
export declare const Sort: {
|
|
138
143
|
readonly ASCENDING: "ASC";
|
|
139
144
|
readonly DESCENDING: "DESC";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-glue",
|
|
3
3
|
"description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.768.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-glue",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.758.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.758.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.734.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.758.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
30
30
|
"@aws-sdk/types": "3.734.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.743.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.734.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.758.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.0.1",
|
|
35
|
-
"@smithy/core": "^3.1.
|
|
35
|
+
"@smithy/core": "^3.1.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.1",
|
|
37
37
|
"@smithy/hash-node": "^4.0.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
41
|
-
"@smithy/middleware-retry": "^4.0.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.0.6",
|
|
41
|
+
"@smithy/middleware-retry": "^4.0.7",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.2",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.0.1",
|
|
45
|
-
"@smithy/node-http-handler": "^4.0.
|
|
45
|
+
"@smithy/node-http-handler": "^4.0.3",
|
|
46
46
|
"@smithy/protocol-http": "^5.0.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.1.
|
|
47
|
+
"@smithy/smithy-client": "^4.1.6",
|
|
48
48
|
"@smithy/types": "^4.1.0",
|
|
49
49
|
"@smithy/url-parser": "^4.0.1",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.7",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.7",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.1",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.1",
|
|
57
57
|
"@smithy/util-retry": "^4.0.1",
|