@aws-sdk/client-glue 3.583.0 → 3.587.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 +40 -29
- package/dist-es/models/models_0.js +5 -0
- package/dist-es/protocols/Aws_json1_1.js +34 -30
- package/dist-types/commands/BatchGetJobsCommand.d.ts +1 -0
- package/dist-types/commands/BatchGetWorkflowsCommand.d.ts +2 -0
- package/dist-types/commands/CreateCustomEntityTypeCommand.d.ts +1 -2
- package/dist-types/commands/CreateJobCommand.d.ts +1 -0
- package/dist-types/commands/GetJobCommand.d.ts +1 -0
- package/dist-types/commands/GetJobRunCommand.d.ts +1 -0
- package/dist-types/commands/GetJobRunsCommand.d.ts +1 -0
- package/dist-types/commands/GetJobsCommand.d.ts +1 -0
- package/dist-types/commands/GetSecurityConfigurationsCommand.d.ts +1 -2
- package/dist-types/commands/GetWorkflowCommand.d.ts +2 -0
- package/dist-types/commands/GetWorkflowRunCommand.d.ts +1 -0
- package/dist-types/commands/GetWorkflowRunsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateJobCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +33 -26
- package/dist-types/models/models_1.d.ts +26 -15
- package/dist-types/models/models_2.d.ts +76 -1
- package/dist-types/ts3.4/commands/CreateCustomEntityTypeCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetSecurityConfigurationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +7 -6
- package/dist-types/ts3.4/models/models_1.d.ts +6 -4
- package/dist-types/ts3.4/models/models_2.d.ts +8 -0
- package/package.json +18 -18
package/dist-cjs/index.js
CHANGED
|
@@ -233,6 +233,7 @@ __export(src_exports, {
|
|
|
233
233
|
JdbcMetadataEntry: () => JdbcMetadataEntry,
|
|
234
234
|
JobBookmarksEncryptionMode: () => JobBookmarksEncryptionMode,
|
|
235
235
|
JobFilterSensitiveLog: () => JobFilterSensitiveLog,
|
|
236
|
+
JobMode: () => JobMode,
|
|
236
237
|
JobRunState: () => JobRunState,
|
|
237
238
|
JobUpdateFilterSensitiveLog: () => JobUpdateFilterSensitiveLog,
|
|
238
239
|
JoinType: () => JoinType,
|
|
@@ -999,6 +1000,11 @@ var ExecutionClass = {
|
|
|
999
1000
|
FLEX: "FLEX",
|
|
1000
1001
|
STANDARD: "STANDARD"
|
|
1001
1002
|
};
|
|
1003
|
+
var JobMode = {
|
|
1004
|
+
NOTEBOOK: "NOTEBOOK",
|
|
1005
|
+
SCRIPT: "SCRIPT",
|
|
1006
|
+
VISUAL: "VISUAL"
|
|
1007
|
+
};
|
|
1002
1008
|
var SourceControlAuthStrategy = {
|
|
1003
1009
|
AWS_SECRETS_MANAGER: "AWS_SECRETS_MANAGER",
|
|
1004
1010
|
PERSONAL_ACCESS_TOKEN: "PERSONAL_ACCESS_TOKEN"
|
|
@@ -6511,7 +6517,7 @@ var se_CodeGenConfigurationNodes = /* @__PURE__ */ __name((input, context) => {
|
|
|
6511
6517
|
}, "se_CodeGenConfigurationNodes");
|
|
6512
6518
|
var se_ColumnStatistics = /* @__PURE__ */ __name((input, context) => {
|
|
6513
6519
|
return (0, import_smithy_client.take)(input, {
|
|
6514
|
-
AnalyzedTime: (_) =>
|
|
6520
|
+
AnalyzedTime: (_) => _.getTime() / 1e3,
|
|
6515
6521
|
ColumnName: [],
|
|
6516
6522
|
ColumnType: [],
|
|
6517
6523
|
StatisticsData: (_) => se_ColumnStatisticsData(_, context)
|
|
@@ -6571,6 +6577,7 @@ var se_CreateJobRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
6571
6577
|
ExecutionClass: [],
|
|
6572
6578
|
ExecutionProperty: import_smithy_client._json,
|
|
6573
6579
|
GlueVersion: [],
|
|
6580
|
+
JobMode: [],
|
|
6574
6581
|
LogUri: [],
|
|
6575
6582
|
MaintenanceWindow: [],
|
|
6576
6583
|
MaxCapacity: import_smithy_client.serializeFloat,
|
|
@@ -6646,39 +6653,39 @@ var se_DataQualityResultFilterCriteria = /* @__PURE__ */ __name((input, context)
|
|
|
6646
6653
|
DataSource: import_smithy_client._json,
|
|
6647
6654
|
JobName: [],
|
|
6648
6655
|
JobRunId: [],
|
|
6649
|
-
StartedAfter: (_) =>
|
|
6650
|
-
StartedBefore: (_) =>
|
|
6656
|
+
StartedAfter: (_) => _.getTime() / 1e3,
|
|
6657
|
+
StartedBefore: (_) => _.getTime() / 1e3
|
|
6651
6658
|
});
|
|
6652
6659
|
}, "se_DataQualityResultFilterCriteria");
|
|
6653
6660
|
var se_DataQualityRuleRecommendationRunFilter = /* @__PURE__ */ __name((input, context) => {
|
|
6654
6661
|
return (0, import_smithy_client.take)(input, {
|
|
6655
6662
|
DataSource: import_smithy_client._json,
|
|
6656
|
-
StartedAfter: (_) =>
|
|
6657
|
-
StartedBefore: (_) =>
|
|
6663
|
+
StartedAfter: (_) => _.getTime() / 1e3,
|
|
6664
|
+
StartedBefore: (_) => _.getTime() / 1e3
|
|
6658
6665
|
});
|
|
6659
6666
|
}, "se_DataQualityRuleRecommendationRunFilter");
|
|
6660
6667
|
var se_DataQualityRulesetEvaluationRunFilter = /* @__PURE__ */ __name((input, context) => {
|
|
6661
6668
|
return (0, import_smithy_client.take)(input, {
|
|
6662
6669
|
DataSource: import_smithy_client._json,
|
|
6663
|
-
StartedAfter: (_) =>
|
|
6664
|
-
StartedBefore: (_) =>
|
|
6670
|
+
StartedAfter: (_) => _.getTime() / 1e3,
|
|
6671
|
+
StartedBefore: (_) => _.getTime() / 1e3
|
|
6665
6672
|
});
|
|
6666
6673
|
}, "se_DataQualityRulesetEvaluationRunFilter");
|
|
6667
6674
|
var se_DataQualityRulesetFilterCriteria = /* @__PURE__ */ __name((input, context) => {
|
|
6668
6675
|
return (0, import_smithy_client.take)(input, {
|
|
6669
|
-
CreatedAfter: (_) =>
|
|
6670
|
-
CreatedBefore: (_) =>
|
|
6676
|
+
CreatedAfter: (_) => _.getTime() / 1e3,
|
|
6677
|
+
CreatedBefore: (_) => _.getTime() / 1e3,
|
|
6671
6678
|
Description: [],
|
|
6672
|
-
LastModifiedAfter: (_) =>
|
|
6673
|
-
LastModifiedBefore: (_) =>
|
|
6679
|
+
LastModifiedAfter: (_) => _.getTime() / 1e3,
|
|
6680
|
+
LastModifiedBefore: (_) => _.getTime() / 1e3,
|
|
6674
6681
|
Name: [],
|
|
6675
6682
|
TargetTable: import_smithy_client._json
|
|
6676
6683
|
});
|
|
6677
6684
|
}, "se_DataQualityRulesetFilterCriteria");
|
|
6678
6685
|
var se_DateColumnStatisticsData = /* @__PURE__ */ __name((input, context) => {
|
|
6679
6686
|
return (0, import_smithy_client.take)(input, {
|
|
6680
|
-
MaximumValue: (_) =>
|
|
6681
|
-
MinimumValue: (_) =>
|
|
6687
|
+
MaximumValue: (_) => _.getTime() / 1e3,
|
|
6688
|
+
MinimumValue: (_) => _.getTime() / 1e3,
|
|
6682
6689
|
NumberOfDistinctValues: [],
|
|
6683
6690
|
NumberOfNulls: []
|
|
6684
6691
|
});
|
|
@@ -6768,7 +6775,7 @@ var se_GetPartitionsRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
6768
6775
|
Expression: [],
|
|
6769
6776
|
MaxResults: [],
|
|
6770
6777
|
NextToken: [],
|
|
6771
|
-
QueryAsOfTime: (_) =>
|
|
6778
|
+
QueryAsOfTime: (_) => _.getTime() / 1e3,
|
|
6772
6779
|
Segment: import_smithy_client._json,
|
|
6773
6780
|
TableName: [],
|
|
6774
6781
|
TransactionId: []
|
|
@@ -6779,7 +6786,7 @@ var se_GetTableRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
6779
6786
|
CatalogId: [],
|
|
6780
6787
|
DatabaseName: [],
|
|
6781
6788
|
Name: [],
|
|
6782
|
-
QueryAsOfTime: (_) =>
|
|
6789
|
+
QueryAsOfTime: (_) => _.getTime() / 1e3,
|
|
6783
6790
|
TransactionId: []
|
|
6784
6791
|
});
|
|
6785
6792
|
}, "se_GetTableRequest");
|
|
@@ -6790,7 +6797,7 @@ var se_GetTablesRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
6790
6797
|
Expression: [],
|
|
6791
6798
|
MaxResults: [],
|
|
6792
6799
|
NextToken: [],
|
|
6793
|
-
QueryAsOfTime: (_) =>
|
|
6800
|
+
QueryAsOfTime: (_) => _.getTime() / 1e3,
|
|
6794
6801
|
TransactionId: []
|
|
6795
6802
|
});
|
|
6796
6803
|
}, "se_GetTablesRequest");
|
|
@@ -6847,6 +6854,7 @@ var se_JobUpdate = /* @__PURE__ */ __name((input, context) => {
|
|
|
6847
6854
|
ExecutionClass: [],
|
|
6848
6855
|
ExecutionProperty: import_smithy_client._json,
|
|
6849
6856
|
GlueVersion: [],
|
|
6857
|
+
JobMode: [],
|
|
6850
6858
|
LogUri: [],
|
|
6851
6859
|
MaintenanceWindow: [],
|
|
6852
6860
|
MaxCapacity: import_smithy_client.serializeFloat,
|
|
@@ -6879,7 +6887,7 @@ var se_KafkaStreamingSourceOptions = /* @__PURE__ */ __name((input, context) =>
|
|
|
6879
6887
|
RetryIntervalMs: [],
|
|
6880
6888
|
SecurityProtocol: [],
|
|
6881
6889
|
StartingOffsets: [],
|
|
6882
|
-
StartingTimestamp:
|
|
6890
|
+
StartingTimestamp: import_smithy_client.serializeDateTime,
|
|
6883
6891
|
SubscribePattern: [],
|
|
6884
6892
|
TopicName: []
|
|
6885
6893
|
});
|
|
@@ -6904,7 +6912,7 @@ var se_KinesisStreamingSourceOptions = /* @__PURE__ */ __name((input, context) =
|
|
|
6904
6912
|
RoleArn: [],
|
|
6905
6913
|
RoleSessionName: [],
|
|
6906
6914
|
StartingPosition: [],
|
|
6907
|
-
StartingTimestamp:
|
|
6915
|
+
StartingTimestamp: import_smithy_client.serializeDateTime,
|
|
6908
6916
|
StreamArn: [],
|
|
6909
6917
|
StreamName: []
|
|
6910
6918
|
});
|
|
@@ -6964,8 +6972,8 @@ var se_Mappings = /* @__PURE__ */ __name((input, context) => {
|
|
|
6964
6972
|
}, "se_Mappings");
|
|
6965
6973
|
var se_PartitionInput = /* @__PURE__ */ __name((input, context) => {
|
|
6966
6974
|
return (0, import_smithy_client.take)(input, {
|
|
6967
|
-
LastAccessTime: (_) =>
|
|
6968
|
-
LastAnalyzedTime: (_) =>
|
|
6975
|
+
LastAccessTime: (_) => _.getTime() / 1e3,
|
|
6976
|
+
LastAnalyzedTime: (_) => _.getTime() / 1e3,
|
|
6969
6977
|
Parameters: import_smithy_client._json,
|
|
6970
6978
|
StorageDescriptor: import_smithy_client._json,
|
|
6971
6979
|
Values: import_smithy_client._json
|
|
@@ -6994,7 +7002,7 @@ var se_QuerySessionContext = /* @__PURE__ */ __name((input, context) => {
|
|
|
6994
7002
|
ClusterId: [],
|
|
6995
7003
|
QueryAuthorizationId: [],
|
|
6996
7004
|
QueryId: [],
|
|
6997
|
-
QueryStartTime: (_) =>
|
|
7005
|
+
QueryStartTime: (_) => _.getTime() / 1e3
|
|
6998
7006
|
});
|
|
6999
7007
|
}, "se_QuerySessionContext");
|
|
7000
7008
|
var se_Spigot = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -7043,8 +7051,8 @@ var se_StringColumnStatisticsData = /* @__PURE__ */ __name((input, context) => {
|
|
|
7043
7051
|
var se_TableInput = /* @__PURE__ */ __name((input, context) => {
|
|
7044
7052
|
return (0, import_smithy_client.take)(input, {
|
|
7045
7053
|
Description: [],
|
|
7046
|
-
LastAccessTime: (_) =>
|
|
7047
|
-
LastAnalyzedTime: (_) =>
|
|
7054
|
+
LastAccessTime: (_) => _.getTime() / 1e3,
|
|
7055
|
+
LastAnalyzedTime: (_) => _.getTime() / 1e3,
|
|
7048
7056
|
Name: [],
|
|
7049
7057
|
Owner: [],
|
|
7050
7058
|
Parameters: import_smithy_client._json,
|
|
@@ -7059,19 +7067,19 @@ var se_TableInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
7059
7067
|
}, "se_TableInput");
|
|
7060
7068
|
var se_TaskRunFilterCriteria = /* @__PURE__ */ __name((input, context) => {
|
|
7061
7069
|
return (0, import_smithy_client.take)(input, {
|
|
7062
|
-
StartedAfter: (_) =>
|
|
7063
|
-
StartedBefore: (_) =>
|
|
7070
|
+
StartedAfter: (_) => _.getTime() / 1e3,
|
|
7071
|
+
StartedBefore: (_) => _.getTime() / 1e3,
|
|
7064
7072
|
Status: [],
|
|
7065
7073
|
TaskRunType: []
|
|
7066
7074
|
});
|
|
7067
7075
|
}, "se_TaskRunFilterCriteria");
|
|
7068
7076
|
var se_TransformFilterCriteria = /* @__PURE__ */ __name((input, context) => {
|
|
7069
7077
|
return (0, import_smithy_client.take)(input, {
|
|
7070
|
-
CreatedAfter: (_) =>
|
|
7071
|
-
CreatedBefore: (_) =>
|
|
7078
|
+
CreatedAfter: (_) => _.getTime() / 1e3,
|
|
7079
|
+
CreatedBefore: (_) => _.getTime() / 1e3,
|
|
7072
7080
|
GlueVersion: [],
|
|
7073
|
-
LastModifiedAfter: (_) =>
|
|
7074
|
-
LastModifiedBefore: (_) =>
|
|
7081
|
+
LastModifiedAfter: (_) => _.getTime() / 1e3,
|
|
7082
|
+
LastModifiedBefore: (_) => _.getTime() / 1e3,
|
|
7075
7083
|
Name: [],
|
|
7076
7084
|
Schema: import_smithy_client._json,
|
|
7077
7085
|
Status: [],
|
|
@@ -8349,6 +8357,7 @@ var de_Job = /* @__PURE__ */ __name((output, context) => {
|
|
|
8349
8357
|
ExecutionClass: import_smithy_client.expectString,
|
|
8350
8358
|
ExecutionProperty: import_smithy_client._json,
|
|
8351
8359
|
GlueVersion: import_smithy_client.expectString,
|
|
8360
|
+
JobMode: import_smithy_client.expectString,
|
|
8352
8361
|
LastModifiedOn: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
8353
8362
|
LogUri: import_smithy_client.expectString,
|
|
8354
8363
|
MaintenanceWindow: import_smithy_client.expectString,
|
|
@@ -8388,6 +8397,7 @@ var de_JobRun = /* @__PURE__ */ __name((output, context) => {
|
|
|
8388
8397
|
ExecutionTime: import_smithy_client.expectInt32,
|
|
8389
8398
|
GlueVersion: import_smithy_client.expectString,
|
|
8390
8399
|
Id: import_smithy_client.expectString,
|
|
8400
|
+
JobMode: import_smithy_client.expectString,
|
|
8391
8401
|
JobName: import_smithy_client.expectString,
|
|
8392
8402
|
JobRunState: import_smithy_client.expectString,
|
|
8393
8403
|
LastModifiedOn: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
@@ -13245,6 +13255,7 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
|
|
|
13245
13255
|
HudiTargetCompressionType,
|
|
13246
13256
|
UnionType,
|
|
13247
13257
|
ExecutionClass,
|
|
13258
|
+
JobMode,
|
|
13248
13259
|
SourceControlAuthStrategy,
|
|
13249
13260
|
SourceControlProvider,
|
|
13250
13261
|
FederationSourceErrorCode,
|
|
@@ -365,6 +365,11 @@ export const ExecutionClass = {
|
|
|
365
365
|
FLEX: "FLEX",
|
|
366
366
|
STANDARD: "STANDARD",
|
|
367
367
|
};
|
|
368
|
+
export const JobMode = {
|
|
369
|
+
NOTEBOOK: "NOTEBOOK",
|
|
370
|
+
SCRIPT: "SCRIPT",
|
|
371
|
+
VISUAL: "VISUAL",
|
|
372
|
+
};
|
|
368
373
|
export const SourceControlAuthStrategy = {
|
|
369
374
|
AWS_SECRETS_MANAGER: "AWS_SECRETS_MANAGER",
|
|
370
375
|
PERSONAL_ACCESS_TOKEN: "PERSONAL_ACCESS_TOKEN",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody } from "@aws-sdk/core";
|
|
2
2
|
import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
3
|
-
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectString as __expectString, limitedParseDouble as __limitedParseDouble, parseEpochTimestamp as __parseEpochTimestamp, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, serializeFloat as __serializeFloat, take, withBaseException, } from "@smithy/smithy-client";
|
|
3
|
+
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectString as __expectString, limitedParseDouble as __limitedParseDouble, parseEpochTimestamp as __parseEpochTimestamp, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, serializeDateTime as __serializeDateTime, serializeFloat as __serializeFloat, take, withBaseException, } from "@smithy/smithy-client";
|
|
4
4
|
import { GlueServiceException as __BaseException } from "../models/GlueServiceException";
|
|
5
5
|
import { AccessDeniedException, AlreadyExistsException, EntityNotFoundException, FederationSourceException, FederationSourceRetryableException, GlueEncryptionException, IllegalSessionStateException, InternalServiceException, InvalidInputException, InvalidStateException, OperationTimeoutException, ResourceNotReadyException, ResourceNumberLimitExceededException, } from "../models/models_0";
|
|
6
6
|
import { ConcurrentModificationException, ConditionCheckFailureException, ConflictException, CrawlerRunningException, FederatedResourceAlreadyExistsException, IdempotentParameterMismatchException, SchedulerTransitioningException, ValidationException, } from "../models/models_1";
|
|
@@ -4639,7 +4639,7 @@ const se_CodeGenConfigurationNodes = (input, context) => {
|
|
|
4639
4639
|
};
|
|
4640
4640
|
const se_ColumnStatistics = (input, context) => {
|
|
4641
4641
|
return take(input, {
|
|
4642
|
-
AnalyzedTime: (_) =>
|
|
4642
|
+
AnalyzedTime: (_) => _.getTime() / 1000,
|
|
4643
4643
|
ColumnName: [],
|
|
4644
4644
|
ColumnType: [],
|
|
4645
4645
|
StatisticsData: (_) => se_ColumnStatisticsData(_, context),
|
|
@@ -4699,6 +4699,7 @@ const se_CreateJobRequest = (input, context) => {
|
|
|
4699
4699
|
ExecutionClass: [],
|
|
4700
4700
|
ExecutionProperty: _json,
|
|
4701
4701
|
GlueVersion: [],
|
|
4702
|
+
JobMode: [],
|
|
4702
4703
|
LogUri: [],
|
|
4703
4704
|
MaintenanceWindow: [],
|
|
4704
4705
|
MaxCapacity: __serializeFloat,
|
|
@@ -4774,39 +4775,39 @@ const se_DataQualityResultFilterCriteria = (input, context) => {
|
|
|
4774
4775
|
DataSource: _json,
|
|
4775
4776
|
JobName: [],
|
|
4776
4777
|
JobRunId: [],
|
|
4777
|
-
StartedAfter: (_) =>
|
|
4778
|
-
StartedBefore: (_) =>
|
|
4778
|
+
StartedAfter: (_) => _.getTime() / 1000,
|
|
4779
|
+
StartedBefore: (_) => _.getTime() / 1000,
|
|
4779
4780
|
});
|
|
4780
4781
|
};
|
|
4781
4782
|
const se_DataQualityRuleRecommendationRunFilter = (input, context) => {
|
|
4782
4783
|
return take(input, {
|
|
4783
4784
|
DataSource: _json,
|
|
4784
|
-
StartedAfter: (_) =>
|
|
4785
|
-
StartedBefore: (_) =>
|
|
4785
|
+
StartedAfter: (_) => _.getTime() / 1000,
|
|
4786
|
+
StartedBefore: (_) => _.getTime() / 1000,
|
|
4786
4787
|
});
|
|
4787
4788
|
};
|
|
4788
4789
|
const se_DataQualityRulesetEvaluationRunFilter = (input, context) => {
|
|
4789
4790
|
return take(input, {
|
|
4790
4791
|
DataSource: _json,
|
|
4791
|
-
StartedAfter: (_) =>
|
|
4792
|
-
StartedBefore: (_) =>
|
|
4792
|
+
StartedAfter: (_) => _.getTime() / 1000,
|
|
4793
|
+
StartedBefore: (_) => _.getTime() / 1000,
|
|
4793
4794
|
});
|
|
4794
4795
|
};
|
|
4795
4796
|
const se_DataQualityRulesetFilterCriteria = (input, context) => {
|
|
4796
4797
|
return take(input, {
|
|
4797
|
-
CreatedAfter: (_) =>
|
|
4798
|
-
CreatedBefore: (_) =>
|
|
4798
|
+
CreatedAfter: (_) => _.getTime() / 1000,
|
|
4799
|
+
CreatedBefore: (_) => _.getTime() / 1000,
|
|
4799
4800
|
Description: [],
|
|
4800
|
-
LastModifiedAfter: (_) =>
|
|
4801
|
-
LastModifiedBefore: (_) =>
|
|
4801
|
+
LastModifiedAfter: (_) => _.getTime() / 1000,
|
|
4802
|
+
LastModifiedBefore: (_) => _.getTime() / 1000,
|
|
4802
4803
|
Name: [],
|
|
4803
4804
|
TargetTable: _json,
|
|
4804
4805
|
});
|
|
4805
4806
|
};
|
|
4806
4807
|
const se_DateColumnStatisticsData = (input, context) => {
|
|
4807
4808
|
return take(input, {
|
|
4808
|
-
MaximumValue: (_) =>
|
|
4809
|
-
MinimumValue: (_) =>
|
|
4809
|
+
MaximumValue: (_) => _.getTime() / 1000,
|
|
4810
|
+
MinimumValue: (_) => _.getTime() / 1000,
|
|
4810
4811
|
NumberOfDistinctValues: [],
|
|
4811
4812
|
NumberOfNulls: [],
|
|
4812
4813
|
});
|
|
@@ -4898,7 +4899,7 @@ const se_GetPartitionsRequest = (input, context) => {
|
|
|
4898
4899
|
Expression: [],
|
|
4899
4900
|
MaxResults: [],
|
|
4900
4901
|
NextToken: [],
|
|
4901
|
-
QueryAsOfTime: (_) =>
|
|
4902
|
+
QueryAsOfTime: (_) => _.getTime() / 1000,
|
|
4902
4903
|
Segment: _json,
|
|
4903
4904
|
TableName: [],
|
|
4904
4905
|
TransactionId: [],
|
|
@@ -4909,7 +4910,7 @@ const se_GetTableRequest = (input, context) => {
|
|
|
4909
4910
|
CatalogId: [],
|
|
4910
4911
|
DatabaseName: [],
|
|
4911
4912
|
Name: [],
|
|
4912
|
-
QueryAsOfTime: (_) =>
|
|
4913
|
+
QueryAsOfTime: (_) => _.getTime() / 1000,
|
|
4913
4914
|
TransactionId: [],
|
|
4914
4915
|
});
|
|
4915
4916
|
};
|
|
@@ -4920,7 +4921,7 @@ const se_GetTablesRequest = (input, context) => {
|
|
|
4920
4921
|
Expression: [],
|
|
4921
4922
|
MaxResults: [],
|
|
4922
4923
|
NextToken: [],
|
|
4923
|
-
QueryAsOfTime: (_) =>
|
|
4924
|
+
QueryAsOfTime: (_) => _.getTime() / 1000,
|
|
4924
4925
|
TransactionId: [],
|
|
4925
4926
|
});
|
|
4926
4927
|
};
|
|
@@ -4977,6 +4978,7 @@ const se_JobUpdate = (input, context) => {
|
|
|
4977
4978
|
ExecutionClass: [],
|
|
4978
4979
|
ExecutionProperty: _json,
|
|
4979
4980
|
GlueVersion: [],
|
|
4981
|
+
JobMode: [],
|
|
4980
4982
|
LogUri: [],
|
|
4981
4983
|
MaintenanceWindow: [],
|
|
4982
4984
|
MaxCapacity: __serializeFloat,
|
|
@@ -5009,7 +5011,7 @@ const se_KafkaStreamingSourceOptions = (input, context) => {
|
|
|
5009
5011
|
RetryIntervalMs: [],
|
|
5010
5012
|
SecurityProtocol: [],
|
|
5011
5013
|
StartingOffsets: [],
|
|
5012
|
-
StartingTimestamp:
|
|
5014
|
+
StartingTimestamp: __serializeDateTime,
|
|
5013
5015
|
SubscribePattern: [],
|
|
5014
5016
|
TopicName: [],
|
|
5015
5017
|
});
|
|
@@ -5034,7 +5036,7 @@ const se_KinesisStreamingSourceOptions = (input, context) => {
|
|
|
5034
5036
|
RoleArn: [],
|
|
5035
5037
|
RoleSessionName: [],
|
|
5036
5038
|
StartingPosition: [],
|
|
5037
|
-
StartingTimestamp:
|
|
5039
|
+
StartingTimestamp: __serializeDateTime,
|
|
5038
5040
|
StreamArn: [],
|
|
5039
5041
|
StreamName: [],
|
|
5040
5042
|
});
|
|
@@ -5096,8 +5098,8 @@ const se_Mappings = (input, context) => {
|
|
|
5096
5098
|
};
|
|
5097
5099
|
const se_PartitionInput = (input, context) => {
|
|
5098
5100
|
return take(input, {
|
|
5099
|
-
LastAccessTime: (_) =>
|
|
5100
|
-
LastAnalyzedTime: (_) =>
|
|
5101
|
+
LastAccessTime: (_) => _.getTime() / 1000,
|
|
5102
|
+
LastAnalyzedTime: (_) => _.getTime() / 1000,
|
|
5101
5103
|
Parameters: _json,
|
|
5102
5104
|
StorageDescriptor: _json,
|
|
5103
5105
|
Values: _json,
|
|
@@ -5128,7 +5130,7 @@ const se_QuerySessionContext = (input, context) => {
|
|
|
5128
5130
|
ClusterId: [],
|
|
5129
5131
|
QueryAuthorizationId: [],
|
|
5130
5132
|
QueryId: [],
|
|
5131
|
-
QueryStartTime: (_) =>
|
|
5133
|
+
QueryStartTime: (_) => _.getTime() / 1000,
|
|
5132
5134
|
});
|
|
5133
5135
|
};
|
|
5134
5136
|
const se_Spigot = (input, context) => {
|
|
@@ -5177,8 +5179,8 @@ const se_StringColumnStatisticsData = (input, context) => {
|
|
|
5177
5179
|
const se_TableInput = (input, context) => {
|
|
5178
5180
|
return take(input, {
|
|
5179
5181
|
Description: [],
|
|
5180
|
-
LastAccessTime: (_) =>
|
|
5181
|
-
LastAnalyzedTime: (_) =>
|
|
5182
|
+
LastAccessTime: (_) => _.getTime() / 1000,
|
|
5183
|
+
LastAnalyzedTime: (_) => _.getTime() / 1000,
|
|
5182
5184
|
Name: [],
|
|
5183
5185
|
Owner: [],
|
|
5184
5186
|
Parameters: _json,
|
|
@@ -5193,19 +5195,19 @@ const se_TableInput = (input, context) => {
|
|
|
5193
5195
|
};
|
|
5194
5196
|
const se_TaskRunFilterCriteria = (input, context) => {
|
|
5195
5197
|
return take(input, {
|
|
5196
|
-
StartedAfter: (_) =>
|
|
5197
|
-
StartedBefore: (_) =>
|
|
5198
|
+
StartedAfter: (_) => _.getTime() / 1000,
|
|
5199
|
+
StartedBefore: (_) => _.getTime() / 1000,
|
|
5198
5200
|
Status: [],
|
|
5199
5201
|
TaskRunType: [],
|
|
5200
5202
|
});
|
|
5201
5203
|
};
|
|
5202
5204
|
const se_TransformFilterCriteria = (input, context) => {
|
|
5203
5205
|
return take(input, {
|
|
5204
|
-
CreatedAfter: (_) =>
|
|
5205
|
-
CreatedBefore: (_) =>
|
|
5206
|
+
CreatedAfter: (_) => _.getTime() / 1000,
|
|
5207
|
+
CreatedBefore: (_) => _.getTime() / 1000,
|
|
5206
5208
|
GlueVersion: [],
|
|
5207
|
-
LastModifiedAfter: (_) =>
|
|
5208
|
-
LastModifiedBefore: (_) =>
|
|
5209
|
+
LastModifiedAfter: (_) => _.getTime() / 1000,
|
|
5210
|
+
LastModifiedBefore: (_) => _.getTime() / 1000,
|
|
5209
5211
|
Name: [],
|
|
5210
5212
|
Schema: _json,
|
|
5211
5213
|
Status: [],
|
|
@@ -6537,6 +6539,7 @@ const de_Job = (output, context) => {
|
|
|
6537
6539
|
ExecutionClass: __expectString,
|
|
6538
6540
|
ExecutionProperty: _json,
|
|
6539
6541
|
GlueVersion: __expectString,
|
|
6542
|
+
JobMode: __expectString,
|
|
6540
6543
|
LastModifiedOn: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
6541
6544
|
LogUri: __expectString,
|
|
6542
6545
|
MaintenanceWindow: __expectString,
|
|
@@ -6578,6 +6581,7 @@ const de_JobRun = (output, context) => {
|
|
|
6578
6581
|
ExecutionTime: __expectInt32,
|
|
6579
6582
|
GlueVersion: __expectString,
|
|
6580
6583
|
Id: __expectString,
|
|
6584
|
+
JobMode: __expectString,
|
|
6581
6585
|
JobName: __expectString,
|
|
6582
6586
|
JobRunState: __expectString,
|
|
6583
6587
|
LastModifiedOn: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
@@ -46,6 +46,7 @@ declare const BatchGetJobsCommand_base: {
|
|
|
46
46
|
* // Jobs: [ // JobList
|
|
47
47
|
* // { // Job
|
|
48
48
|
* // Name: "STRING_VALUE",
|
|
49
|
+
* // JobMode: "SCRIPT" || "VISUAL" || "NOTEBOOK",
|
|
49
50
|
* // Description: "STRING_VALUE",
|
|
50
51
|
* // LogUri: "STRING_VALUE",
|
|
51
52
|
* // Role: "STRING_VALUE",
|
|
@@ -127,6 +127,7 @@ declare const BatchGetWorkflowsCommand_base: {
|
|
|
127
127
|
* // PreviousRunId: "STRING_VALUE",
|
|
128
128
|
* // TriggerName: "STRING_VALUE",
|
|
129
129
|
* // JobName: "STRING_VALUE",
|
|
130
|
+
* // JobMode: "SCRIPT" || "VISUAL" || "NOTEBOOK",
|
|
130
131
|
* // StartedOn: new Date("TIMESTAMP"),
|
|
131
132
|
* // LastModifiedOn: new Date("TIMESTAMP"),
|
|
132
133
|
* // CompletedOn: new Date("TIMESTAMP"),
|
|
@@ -240,6 +241,7 @@ declare const BatchGetWorkflowsCommand_base: {
|
|
|
240
241
|
* // PreviousRunId: "STRING_VALUE",
|
|
241
242
|
* // TriggerName: "STRING_VALUE",
|
|
242
243
|
* // JobName: "STRING_VALUE",
|
|
244
|
+
* // JobMode: "SCRIPT" || "VISUAL" || "NOTEBOOK",
|
|
243
245
|
* // StartedOn: new Date("TIMESTAMP"),
|
|
244
246
|
* // LastModifiedOn: new Date("TIMESTAMP"),
|
|
245
247
|
* // CompletedOn: new Date("TIMESTAMP"),
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { CreateCustomEntityTypeRequest } from "../models/
|
|
5
|
-
import { CreateCustomEntityTypeResponse } from "../models/models_1";
|
|
4
|
+
import { CreateCustomEntityTypeRequest, CreateCustomEntityTypeResponse } from "../models/models_1";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -36,6 +36,7 @@ declare const CreateJobCommand_base: {
|
|
|
36
36
|
* const client = new GlueClient(config);
|
|
37
37
|
* const input = { // CreateJobRequest
|
|
38
38
|
* Name: "STRING_VALUE", // required
|
|
39
|
+
* JobMode: "SCRIPT" || "VISUAL" || "NOTEBOOK",
|
|
39
40
|
* Description: "STRING_VALUE",
|
|
40
41
|
* LogUri: "STRING_VALUE",
|
|
41
42
|
* Role: "STRING_VALUE", // required
|
|
@@ -42,6 +42,7 @@ declare const GetJobCommand_base: {
|
|
|
42
42
|
* // { // GetJobResponse
|
|
43
43
|
* // Job: { // Job
|
|
44
44
|
* // Name: "STRING_VALUE",
|
|
45
|
+
* // JobMode: "SCRIPT" || "VISUAL" || "NOTEBOOK",
|
|
45
46
|
* // Description: "STRING_VALUE",
|
|
46
47
|
* // LogUri: "STRING_VALUE",
|
|
47
48
|
* // Role: "STRING_VALUE",
|
|
@@ -47,6 +47,7 @@ declare const GetJobRunCommand_base: {
|
|
|
47
47
|
* // PreviousRunId: "STRING_VALUE",
|
|
48
48
|
* // TriggerName: "STRING_VALUE",
|
|
49
49
|
* // JobName: "STRING_VALUE",
|
|
50
|
+
* // JobMode: "SCRIPT" || "VISUAL" || "NOTEBOOK",
|
|
50
51
|
* // StartedOn: new Date("TIMESTAMP"),
|
|
51
52
|
* // LastModifiedOn: new Date("TIMESTAMP"),
|
|
52
53
|
* // CompletedOn: new Date("TIMESTAMP"),
|
|
@@ -48,6 +48,7 @@ declare const GetJobRunsCommand_base: {
|
|
|
48
48
|
* // PreviousRunId: "STRING_VALUE",
|
|
49
49
|
* // TriggerName: "STRING_VALUE",
|
|
50
50
|
* // JobName: "STRING_VALUE",
|
|
51
|
+
* // JobMode: "SCRIPT" || "VISUAL" || "NOTEBOOK",
|
|
51
52
|
* // StartedOn: new Date("TIMESTAMP"),
|
|
52
53
|
* // LastModifiedOn: new Date("TIMESTAMP"),
|
|
53
54
|
* // CompletedOn: new Date("TIMESTAMP"),
|
|
@@ -44,6 +44,7 @@ declare const GetJobsCommand_base: {
|
|
|
44
44
|
* // Jobs: [ // JobList
|
|
45
45
|
* // { // Job
|
|
46
46
|
* // Name: "STRING_VALUE",
|
|
47
|
+
* // JobMode: "SCRIPT" || "VISUAL" || "NOTEBOOK",
|
|
47
48
|
* // Description: "STRING_VALUE",
|
|
48
49
|
* // LogUri: "STRING_VALUE",
|
|
49
50
|
* // Role: "STRING_VALUE",
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
|
|
4
|
-
import { GetSecurityConfigurationsRequest } from "../models/
|
|
5
|
-
import { GetSecurityConfigurationsResponse } from "../models/models_2";
|
|
4
|
+
import { GetSecurityConfigurationsRequest, GetSecurityConfigurationsResponse } from "../models/models_2";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -124,6 +124,7 @@ declare const GetWorkflowCommand_base: {
|
|
|
124
124
|
* // PreviousRunId: "STRING_VALUE",
|
|
125
125
|
* // TriggerName: "STRING_VALUE",
|
|
126
126
|
* // JobName: "STRING_VALUE",
|
|
127
|
+
* // JobMode: "SCRIPT" || "VISUAL" || "NOTEBOOK",
|
|
127
128
|
* // StartedOn: new Date("TIMESTAMP"),
|
|
128
129
|
* // LastModifiedOn: new Date("TIMESTAMP"),
|
|
129
130
|
* // CompletedOn: new Date("TIMESTAMP"),
|
|
@@ -237,6 +238,7 @@ declare const GetWorkflowCommand_base: {
|
|
|
237
238
|
* // PreviousRunId: "STRING_VALUE",
|
|
238
239
|
* // TriggerName: "STRING_VALUE",
|
|
239
240
|
* // JobName: "STRING_VALUE",
|
|
241
|
+
* // JobMode: "SCRIPT" || "VISUAL" || "NOTEBOOK",
|
|
240
242
|
* // StartedOn: new Date("TIMESTAMP"),
|
|
241
243
|
* // LastModifiedOn: new Date("TIMESTAMP"),
|
|
242
244
|
* // CompletedOn: new Date("TIMESTAMP"),
|
|
@@ -117,6 +117,7 @@ declare const GetWorkflowRunCommand_base: {
|
|
|
117
117
|
* // PreviousRunId: "STRING_VALUE",
|
|
118
118
|
* // TriggerName: "STRING_VALUE",
|
|
119
119
|
* // JobName: "STRING_VALUE",
|
|
120
|
+
* // JobMode: "SCRIPT" || "VISUAL" || "NOTEBOOK",
|
|
120
121
|
* // StartedOn: new Date("TIMESTAMP"),
|
|
121
122
|
* // LastModifiedOn: new Date("TIMESTAMP"),
|
|
122
123
|
* // CompletedOn: new Date("TIMESTAMP"),
|
|
@@ -119,6 +119,7 @@ declare const GetWorkflowRunsCommand_base: {
|
|
|
119
119
|
* // PreviousRunId: "STRING_VALUE",
|
|
120
120
|
* // TriggerName: "STRING_VALUE",
|
|
121
121
|
* // JobName: "STRING_VALUE",
|
|
122
|
+
* // JobMode: "SCRIPT" || "VISUAL" || "NOTEBOOK",
|
|
122
123
|
* // StartedOn: new Date("TIMESTAMP"),
|
|
123
124
|
* // LastModifiedOn: new Date("TIMESTAMP"),
|
|
124
125
|
* // CompletedOn: new Date("TIMESTAMP"),
|
|
@@ -36,6 +36,7 @@ declare const UpdateJobCommand_base: {
|
|
|
36
36
|
* const input = { // UpdateJobRequest
|
|
37
37
|
* JobName: "STRING_VALUE", // required
|
|
38
38
|
* JobUpdate: { // JobUpdate
|
|
39
|
+
* JobMode: "SCRIPT" || "VISUAL" || "NOTEBOOK",
|
|
39
40
|
* Description: "STRING_VALUE",
|
|
40
41
|
* LogUri: "STRING_VALUE",
|
|
41
42
|
* Role: "STRING_VALUE",
|
|
@@ -5848,6 +5848,19 @@ export interface ExecutionProperty {
|
|
|
5848
5848
|
*/
|
|
5849
5849
|
MaxConcurrentRuns?: number;
|
|
5850
5850
|
}
|
|
5851
|
+
/**
|
|
5852
|
+
* @public
|
|
5853
|
+
* @enum
|
|
5854
|
+
*/
|
|
5855
|
+
export declare const JobMode: {
|
|
5856
|
+
readonly NOTEBOOK: "NOTEBOOK";
|
|
5857
|
+
readonly SCRIPT: "SCRIPT";
|
|
5858
|
+
readonly VISUAL: "VISUAL";
|
|
5859
|
+
};
|
|
5860
|
+
/**
|
|
5861
|
+
* @public
|
|
5862
|
+
*/
|
|
5863
|
+
export type JobMode = (typeof JobMode)[keyof typeof JobMode];
|
|
5851
5864
|
/**
|
|
5852
5865
|
* @public
|
|
5853
5866
|
* @enum
|
|
@@ -6698,6 +6711,26 @@ export interface JobRun {
|
|
|
6698
6711
|
* @public
|
|
6699
6712
|
*/
|
|
6700
6713
|
JobName?: string;
|
|
6714
|
+
/**
|
|
6715
|
+
* <p>A mode that describes how a job was created. Valid values are:</p>
|
|
6716
|
+
* <ul>
|
|
6717
|
+
* <li>
|
|
6718
|
+
* <p>
|
|
6719
|
+
* <code>SCRIPT</code> - The job was created using the Glue Studio script editor.</p>
|
|
6720
|
+
* </li>
|
|
6721
|
+
* <li>
|
|
6722
|
+
* <p>
|
|
6723
|
+
* <code>VISUAL</code> - The job was created using the Glue Studio visual editor.</p>
|
|
6724
|
+
* </li>
|
|
6725
|
+
* <li>
|
|
6726
|
+
* <p>
|
|
6727
|
+
* <code>NOTEBOOK</code> - The job was created using an interactive sessions notebook.</p>
|
|
6728
|
+
* </li>
|
|
6729
|
+
* </ul>
|
|
6730
|
+
* <p>When the <code>JobMode</code> field is missing or null, <code>SCRIPT</code> is assigned as the default value.</p>
|
|
6731
|
+
* @public
|
|
6732
|
+
*/
|
|
6733
|
+
JobMode?: JobMode;
|
|
6701
6734
|
/**
|
|
6702
6735
|
* <p>The date and time at which this job run was started.</p>
|
|
6703
6736
|
* @public
|
|
@@ -8050,29 +8083,3 @@ export interface CreateCrawlerRequest {
|
|
|
8050
8083
|
*/
|
|
8051
8084
|
export interface CreateCrawlerResponse {
|
|
8052
8085
|
}
|
|
8053
|
-
/**
|
|
8054
|
-
* @public
|
|
8055
|
-
*/
|
|
8056
|
-
export interface CreateCustomEntityTypeRequest {
|
|
8057
|
-
/**
|
|
8058
|
-
* <p>A name for the custom pattern that allows it to be retrieved or deleted later. This name must be unique per Amazon Web Services account.</p>
|
|
8059
|
-
* @public
|
|
8060
|
-
*/
|
|
8061
|
-
Name: string | undefined;
|
|
8062
|
-
/**
|
|
8063
|
-
* <p>A regular expression string that is used for detecting sensitive data in a custom pattern.</p>
|
|
8064
|
-
* @public
|
|
8065
|
-
*/
|
|
8066
|
-
RegexString: string | undefined;
|
|
8067
|
-
/**
|
|
8068
|
-
* <p>A list of context words. If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data.</p>
|
|
8069
|
-
* <p>If no context words are passed only a regular expression is checked.</p>
|
|
8070
|
-
* @public
|
|
8071
|
-
*/
|
|
8072
|
-
ContextWords?: string[];
|
|
8073
|
-
/**
|
|
8074
|
-
* <p>A list of tags applied to the custom entity type.</p>
|
|
8075
|
-
* @public
|
|
8076
|
-
*/
|
|
8077
|
-
Tags?: Record<string, string>;
|
|
8078
|
-
}
|
|
@@ -1,6 +1,32 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
3
|
import { Action, Blueprint, Column, ConnectionPropertyKey, ConnectionsList, ConnectionType, Crawler, CsvHeaderOption, CsvSerdeOption, DataFormat, DataQualityAnalyzerResult, DataQualityObservation, DataQualityRuleResult, DataSource, DevEndpoint, ErrorDetail, EventBatchingCondition, GlueTable, JobRun, Partition, PartitionInput, PartitionValueList, PhysicalConnectionRequirements, Predicate, SchemaId, StorageDescriptor, TableOptimizerConfiguration, TableOptimizerType, TaskStatusType, TriggerType, WorkerType } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface CreateCustomEntityTypeRequest {
|
|
8
|
+
/**
|
|
9
|
+
* <p>A name for the custom pattern that allows it to be retrieved or deleted later. This name must be unique per Amazon Web Services account.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
Name: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>A regular expression string that is used for detecting sensitive data in a custom pattern.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
RegexString: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>A list of context words. If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data.</p>
|
|
20
|
+
* <p>If no context words are passed only a regular expression is checked.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
ContextWords?: string[];
|
|
24
|
+
/**
|
|
25
|
+
* <p>A list of tags applied to the custom entity type.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
Tags?: Record<string, string>;
|
|
29
|
+
}
|
|
4
30
|
/**
|
|
5
31
|
* @public
|
|
6
32
|
*/
|
|
@@ -7105,18 +7131,3 @@ export interface GetSecurityConfigurationResponse {
|
|
|
7105
7131
|
*/
|
|
7106
7132
|
SecurityConfiguration?: SecurityConfiguration;
|
|
7107
7133
|
}
|
|
7108
|
-
/**
|
|
7109
|
-
* @public
|
|
7110
|
-
*/
|
|
7111
|
-
export interface GetSecurityConfigurationsRequest {
|
|
7112
|
-
/**
|
|
7113
|
-
* <p>The maximum number of results to return.</p>
|
|
7114
|
-
* @public
|
|
7115
|
-
*/
|
|
7116
|
-
MaxResults?: number;
|
|
7117
|
-
/**
|
|
7118
|
-
* <p>A continuation token, if this is a continuation call.</p>
|
|
7119
|
-
* @public
|
|
7120
|
-
*/
|
|
7121
|
-
NextToken?: string;
|
|
7122
|
-
}
|
|
@@ -1,7 +1,22 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
|
-
import { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, AuditContext, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column, ConnectionInput, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CrawlerTargets, CsvHeaderOption, CsvSerdeOption, CustomCode, CustomEntityType, DataSource, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionClass, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, Partition, 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, TableOptimizer, TableOptimizerConfiguration, TableOptimizerRun, TableOptimizerType, TaskStatusType, Trigger, Union, WorkerType, Workflow, WorkflowRun } from "./models_0";
|
|
3
|
+
import { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, AuditContext, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column, ConnectionInput, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CrawlerTargets, CsvHeaderOption, CsvSerdeOption, CustomCode, CustomEntityType, 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, Partition, 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, TableOptimizer, TableOptimizerConfiguration, TableOptimizerRun, TableOptimizerType, TaskStatusType, Trigger, Union, WorkerType, Workflow, WorkflowRun } from "./models_0";
|
|
4
4
|
import { ColumnStatistics, Compatibility, DatabaseInput, DataCatalogEncryptionSettings, DataQualityEvaluationRunAdditionalRunOptions, DataQualityTargetTable, JobBookmarkEntry, Permission, PrincipalType, RegistryId, RegistryStatus, ResourceShareType, ResourceUri, SchemaStatus, SchemaVersionNumber, SchemaVersionStatus, SecurityConfiguration, Segment, Session, TableIdentifier, TableInput, TransformFilterCriteria, TransformParameters, TransformSortCriteria, UserDefinedFunctionInput } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface GetSecurityConfigurationsRequest {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The maximum number of results to return.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
MaxResults?: number;
|
|
14
|
+
/**
|
|
15
|
+
* <p>A continuation token, if this is a continuation call.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
NextToken?: string;
|
|
19
|
+
}
|
|
5
20
|
/**
|
|
6
21
|
* @public
|
|
7
22
|
*/
|
|
@@ -5899,6 +5914,26 @@ export interface CreateJobRequest {
|
|
|
5899
5914
|
* @public
|
|
5900
5915
|
*/
|
|
5901
5916
|
Name: string | undefined;
|
|
5917
|
+
/**
|
|
5918
|
+
* <p>A mode that describes how a job was created. Valid values are:</p>
|
|
5919
|
+
* <ul>
|
|
5920
|
+
* <li>
|
|
5921
|
+
* <p>
|
|
5922
|
+
* <code>SCRIPT</code> - The job was created using the Glue Studio script editor.</p>
|
|
5923
|
+
* </li>
|
|
5924
|
+
* <li>
|
|
5925
|
+
* <p>
|
|
5926
|
+
* <code>VISUAL</code> - The job was created using the Glue Studio visual editor.</p>
|
|
5927
|
+
* </li>
|
|
5928
|
+
* <li>
|
|
5929
|
+
* <p>
|
|
5930
|
+
* <code>NOTEBOOK</code> - The job was created using an interactive sessions notebook.</p>
|
|
5931
|
+
* </li>
|
|
5932
|
+
* </ul>
|
|
5933
|
+
* <p>When the <code>JobMode</code> field is missing or null, <code>SCRIPT</code> is assigned as the default value.</p>
|
|
5934
|
+
* @public
|
|
5935
|
+
*/
|
|
5936
|
+
JobMode?: JobMode;
|
|
5902
5937
|
/**
|
|
5903
5938
|
* <p>Description of the job being defined.</p>
|
|
5904
5939
|
* @public
|
|
@@ -6097,6 +6132,26 @@ export interface Job {
|
|
|
6097
6132
|
* @public
|
|
6098
6133
|
*/
|
|
6099
6134
|
Name?: string;
|
|
6135
|
+
/**
|
|
6136
|
+
* <p>A mode that describes how a job was created. Valid values are:</p>
|
|
6137
|
+
* <ul>
|
|
6138
|
+
* <li>
|
|
6139
|
+
* <p>
|
|
6140
|
+
* <code>SCRIPT</code> - The job was created using the Glue Studio script editor.</p>
|
|
6141
|
+
* </li>
|
|
6142
|
+
* <li>
|
|
6143
|
+
* <p>
|
|
6144
|
+
* <code>VISUAL</code> - The job was created using the Glue Studio visual editor.</p>
|
|
6145
|
+
* </li>
|
|
6146
|
+
* <li>
|
|
6147
|
+
* <p>
|
|
6148
|
+
* <code>NOTEBOOK</code> - The job was created using an interactive sessions notebook.</p>
|
|
6149
|
+
* </li>
|
|
6150
|
+
* </ul>
|
|
6151
|
+
* <p>When the <code>JobMode</code> field is missing or null, <code>SCRIPT</code> is assigned as the default value.</p>
|
|
6152
|
+
* @public
|
|
6153
|
+
*/
|
|
6154
|
+
JobMode?: JobMode;
|
|
6100
6155
|
/**
|
|
6101
6156
|
* <p>A description of the job.</p>
|
|
6102
6157
|
* @public
|
|
@@ -6297,6 +6352,26 @@ export interface Job {
|
|
|
6297
6352
|
* @public
|
|
6298
6353
|
*/
|
|
6299
6354
|
export interface JobUpdate {
|
|
6355
|
+
/**
|
|
6356
|
+
* <p>A mode that describes how a job was created. Valid values are:</p>
|
|
6357
|
+
* <ul>
|
|
6358
|
+
* <li>
|
|
6359
|
+
* <p>
|
|
6360
|
+
* <code>SCRIPT</code> - The job was created using the Glue Studio script editor.</p>
|
|
6361
|
+
* </li>
|
|
6362
|
+
* <li>
|
|
6363
|
+
* <p>
|
|
6364
|
+
* <code>VISUAL</code> - The job was created using the Glue Studio visual editor.</p>
|
|
6365
|
+
* </li>
|
|
6366
|
+
* <li>
|
|
6367
|
+
* <p>
|
|
6368
|
+
* <code>NOTEBOOK</code> - The job was created using an interactive sessions notebook.</p>
|
|
6369
|
+
* </li>
|
|
6370
|
+
* </ul>
|
|
6371
|
+
* <p>When the <code>JobMode</code> field is missing or null, <code>SCRIPT</code> is assigned as the default value.</p>
|
|
6372
|
+
* @public
|
|
6373
|
+
*/
|
|
6374
|
+
JobMode?: JobMode;
|
|
6300
6375
|
/**
|
|
6301
6376
|
* <p>Description of the job being defined.</p>
|
|
6302
6377
|
* @public
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GlueClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
CreateCustomEntityTypeRequest,
|
|
10
|
+
CreateCustomEntityTypeResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer, $Command };
|
|
11
13
|
export interface CreateCustomEntityTypeCommandInput
|
|
12
14
|
extends CreateCustomEntityTypeRequest {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../GlueClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
GetSecurityConfigurationsRequest,
|
|
10
|
+
GetSecurityConfigurationsResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
10
12
|
export { __MetadataBearer, $Command };
|
|
11
13
|
export interface GetSecurityConfigurationsCommandInput
|
|
12
14
|
extends GetSecurityConfigurationsRequest {}
|
|
@@ -1493,6 +1493,12 @@ export type ExecutionClass =
|
|
|
1493
1493
|
export interface ExecutionProperty {
|
|
1494
1494
|
MaxConcurrentRuns?: number;
|
|
1495
1495
|
}
|
|
1496
|
+
export declare const JobMode: {
|
|
1497
|
+
readonly NOTEBOOK: "NOTEBOOK";
|
|
1498
|
+
readonly SCRIPT: "SCRIPT";
|
|
1499
|
+
readonly VISUAL: "VISUAL";
|
|
1500
|
+
};
|
|
1501
|
+
export type JobMode = (typeof JobMode)[keyof typeof JobMode];
|
|
1496
1502
|
export declare const SourceControlAuthStrategy: {
|
|
1497
1503
|
readonly AWS_SECRETS_MANAGER: "AWS_SECRETS_MANAGER";
|
|
1498
1504
|
readonly PERSONAL_ACCESS_TOKEN: "PERSONAL_ACCESS_TOKEN";
|
|
@@ -1753,6 +1759,7 @@ export interface JobRun {
|
|
|
1753
1759
|
PreviousRunId?: string;
|
|
1754
1760
|
TriggerName?: string;
|
|
1755
1761
|
JobName?: string;
|
|
1762
|
+
JobMode?: JobMode;
|
|
1756
1763
|
StartedOn?: Date;
|
|
1757
1764
|
LastModifiedOn?: Date;
|
|
1758
1765
|
CompletedOn?: Date;
|
|
@@ -2092,9 +2099,3 @@ export interface CreateCrawlerRequest {
|
|
|
2092
2099
|
Tags?: Record<string, string>;
|
|
2093
2100
|
}
|
|
2094
2101
|
export interface CreateCrawlerResponse {}
|
|
2095
|
-
export interface CreateCustomEntityTypeRequest {
|
|
2096
|
-
Name: string | undefined;
|
|
2097
|
-
RegexString: string | undefined;
|
|
2098
|
-
ContextWords?: string[];
|
|
2099
|
-
Tags?: Record<string, string>;
|
|
2100
|
-
}
|
|
@@ -33,6 +33,12 @@ import {
|
|
|
33
33
|
TriggerType,
|
|
34
34
|
WorkerType,
|
|
35
35
|
} from "./models_0";
|
|
36
|
+
export interface CreateCustomEntityTypeRequest {
|
|
37
|
+
Name: string | undefined;
|
|
38
|
+
RegexString: string | undefined;
|
|
39
|
+
ContextWords?: string[];
|
|
40
|
+
Tags?: Record<string, string>;
|
|
41
|
+
}
|
|
36
42
|
export interface CreateCustomEntityTypeResponse {
|
|
37
43
|
Name?: string;
|
|
38
44
|
}
|
|
@@ -1684,7 +1690,3 @@ export interface SecurityConfiguration {
|
|
|
1684
1690
|
export interface GetSecurityConfigurationResponse {
|
|
1685
1691
|
SecurityConfiguration?: SecurityConfiguration;
|
|
1686
1692
|
}
|
|
1687
|
-
export interface GetSecurityConfigurationsRequest {
|
|
1688
|
-
MaxResults?: number;
|
|
1689
|
-
NextToken?: string;
|
|
1690
|
-
}
|
|
@@ -45,6 +45,7 @@ import {
|
|
|
45
45
|
JDBCConnectorSource,
|
|
46
46
|
JDBCConnectorTarget,
|
|
47
47
|
JobCommand,
|
|
48
|
+
JobMode,
|
|
48
49
|
Join,
|
|
49
50
|
LakeFormationConfiguration,
|
|
50
51
|
LineageConfiguration,
|
|
@@ -136,6 +137,10 @@ import {
|
|
|
136
137
|
TransformSortCriteria,
|
|
137
138
|
UserDefinedFunctionInput,
|
|
138
139
|
} from "./models_1";
|
|
140
|
+
export interface GetSecurityConfigurationsRequest {
|
|
141
|
+
MaxResults?: number;
|
|
142
|
+
NextToken?: string;
|
|
143
|
+
}
|
|
139
144
|
export interface GetSecurityConfigurationsResponse {
|
|
140
145
|
SecurityConfigurations?: SecurityConfiguration[];
|
|
141
146
|
NextToken?: string;
|
|
@@ -1546,6 +1551,7 @@ export interface CodeGenConfigurationNode {
|
|
|
1546
1551
|
}
|
|
1547
1552
|
export interface CreateJobRequest {
|
|
1548
1553
|
Name: string | undefined;
|
|
1554
|
+
JobMode?: JobMode;
|
|
1549
1555
|
Description?: string;
|
|
1550
1556
|
LogUri?: string;
|
|
1551
1557
|
Role: string | undefined;
|
|
@@ -1571,6 +1577,7 @@ export interface CreateJobRequest {
|
|
|
1571
1577
|
}
|
|
1572
1578
|
export interface Job {
|
|
1573
1579
|
Name?: string;
|
|
1580
|
+
JobMode?: JobMode;
|
|
1574
1581
|
Description?: string;
|
|
1575
1582
|
LogUri?: string;
|
|
1576
1583
|
Role?: string;
|
|
@@ -1596,6 +1603,7 @@ export interface Job {
|
|
|
1596
1603
|
MaintenanceWindow?: string;
|
|
1597
1604
|
}
|
|
1598
1605
|
export interface JobUpdate {
|
|
1606
|
+
JobMode?: JobMode;
|
|
1599
1607
|
Description?: string;
|
|
1600
1608
|
LogUri?: string;
|
|
1601
1609
|
Role?: string;
|
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.587.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,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.587.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.587.0",
|
|
25
|
+
"@aws-sdk/core": "3.587.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.587.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.587.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.587.0",
|
|
32
32
|
"@aws-sdk/types": "3.577.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.587.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.587.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.1",
|
|
37
|
+
"@smithy/core": "^2.1.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.0.1",
|
|
39
39
|
"@smithy/hash-node": "^3.0.0",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.0",
|
|
41
41
|
"@smithy/middleware-content-length": "^3.0.0",
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.0.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.0.1",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.3",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.0",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.0",
|
|
46
|
-
"@smithy/node-config-provider": "^3.
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.0",
|
|
47
47
|
"@smithy/node-http-handler": "^3.0.0",
|
|
48
48
|
"@smithy/protocol-http": "^4.0.0",
|
|
49
|
-
"@smithy/smithy-client": "^3.
|
|
49
|
+
"@smithy/smithy-client": "^3.1.1",
|
|
50
50
|
"@smithy/types": "^3.0.0",
|
|
51
51
|
"@smithy/url-parser": "^3.0.0",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.3",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.3",
|
|
57
|
+
"@smithy/util-endpoints": "^2.0.1",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.0",
|
|
59
59
|
"@smithy/util-retry": "^3.0.0",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|