@aws-sdk/client-glue 3.245.0 → 3.252.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.
@@ -11899,7 +11899,7 @@ const serializeAws_json1_1ColumnList = (input, context) => {
11899
11899
  };
11900
11900
  const serializeAws_json1_1ColumnStatistics = (input, context) => {
11901
11901
  return {
11902
- ...(input.AnalyzedTime != null && { AnalyzedTime: Math.round(input.AnalyzedTime.getTime() / 1000) }),
11902
+ ...(input.AnalyzedTime != null && { AnalyzedTime: Math.round(input.AnalyzedTime.getTime() / 1000).toString() }),
11903
11903
  ...(input.ColumnName != null && { ColumnName: input.ColumnName }),
11904
11904
  ...(input.ColumnType != null && { ColumnType: input.ColumnType }),
11905
11905
  ...(input.StatisticsData != null && {
@@ -12465,8 +12465,8 @@ const serializeAws_json1_1DataQualityResultFilterCriteria = (input, context) =>
12465
12465
  ...(input.DataSource != null && { DataSource: serializeAws_json1_1DataSource(input.DataSource, context) }),
12466
12466
  ...(input.JobName != null && { JobName: input.JobName }),
12467
12467
  ...(input.JobRunId != null && { JobRunId: input.JobRunId }),
12468
- ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000) }),
12469
- ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000) }),
12468
+ ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000).toString() }),
12469
+ ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000).toString() }),
12470
12470
  };
12471
12471
  };
12472
12472
  const serializeAws_json1_1DataQualityResultIds = (input, context) => {
@@ -12479,25 +12479,27 @@ const serializeAws_json1_1DataQualityResultIds = (input, context) => {
12479
12479
  const serializeAws_json1_1DataQualityRuleRecommendationRunFilter = (input, context) => {
12480
12480
  return {
12481
12481
  ...(input.DataSource != null && { DataSource: serializeAws_json1_1DataSource(input.DataSource, context) }),
12482
- ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000) }),
12483
- ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000) }),
12482
+ ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000).toString() }),
12483
+ ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000).toString() }),
12484
12484
  };
12485
12485
  };
12486
12486
  const serializeAws_json1_1DataQualityRulesetEvaluationRunFilter = (input, context) => {
12487
12487
  return {
12488
12488
  ...(input.DataSource != null && { DataSource: serializeAws_json1_1DataSource(input.DataSource, context) }),
12489
- ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000) }),
12490
- ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000) }),
12489
+ ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000).toString() }),
12490
+ ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000).toString() }),
12491
12491
  };
12492
12492
  };
12493
12493
  const serializeAws_json1_1DataQualityRulesetFilterCriteria = (input, context) => {
12494
12494
  return {
12495
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
12496
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
12495
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
12496
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
12497
12497
  ...(input.Description != null && { Description: input.Description }),
12498
- ...(input.LastModifiedAfter != null && { LastModifiedAfter: Math.round(input.LastModifiedAfter.getTime() / 1000) }),
12498
+ ...(input.LastModifiedAfter != null && {
12499
+ LastModifiedAfter: Math.round(input.LastModifiedAfter.getTime() / 1000).toString(),
12500
+ }),
12499
12501
  ...(input.LastModifiedBefore != null && {
12500
- LastModifiedBefore: Math.round(input.LastModifiedBefore.getTime() / 1000),
12502
+ LastModifiedBefore: Math.round(input.LastModifiedBefore.getTime() / 1000).toString(),
12501
12503
  }),
12502
12504
  ...(input.Name != null && { Name: input.Name }),
12503
12505
  ...(input.TargetTable != null && {
@@ -12524,8 +12526,8 @@ const serializeAws_json1_1Datatype = (input, context) => {
12524
12526
  };
12525
12527
  const serializeAws_json1_1DateColumnStatisticsData = (input, context) => {
12526
12528
  return {
12527
- ...(input.MaximumValue != null && { MaximumValue: Math.round(input.MaximumValue.getTime() / 1000) }),
12528
- ...(input.MinimumValue != null && { MinimumValue: Math.round(input.MinimumValue.getTime() / 1000) }),
12529
+ ...(input.MaximumValue != null && { MaximumValue: Math.round(input.MaximumValue.getTime() / 1000).toString() }),
12530
+ ...(input.MinimumValue != null && { MinimumValue: Math.round(input.MinimumValue.getTime() / 1000).toString() }),
12529
12531
  ...(input.NumberOfDistinctValues != null && { NumberOfDistinctValues: input.NumberOfDistinctValues }),
12530
12532
  ...(input.NumberOfNulls != null && { NumberOfNulls: input.NumberOfNulls }),
12531
12533
  };
@@ -13238,7 +13240,7 @@ const serializeAws_json1_1GetPartitionsRequest = (input, context) => {
13238
13240
  ...(input.Expression != null && { Expression: input.Expression }),
13239
13241
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
13240
13242
  ...(input.NextToken != null && { NextToken: input.NextToken }),
13241
- ...(input.QueryAsOfTime != null && { QueryAsOfTime: Math.round(input.QueryAsOfTime.getTime() / 1000) }),
13243
+ ...(input.QueryAsOfTime != null && { QueryAsOfTime: Math.round(input.QueryAsOfTime.getTime() / 1000).toString() }),
13242
13244
  ...(input.Segment != null && { Segment: serializeAws_json1_1Segment(input.Segment, context) }),
13243
13245
  ...(input.TableName != null && { TableName: input.TableName }),
13244
13246
  ...(input.TransactionId != null && { TransactionId: input.TransactionId }),
@@ -13333,7 +13335,7 @@ const serializeAws_json1_1GetTableRequest = (input, context) => {
13333
13335
  ...(input.CatalogId != null && { CatalogId: input.CatalogId }),
13334
13336
  ...(input.DatabaseName != null && { DatabaseName: input.DatabaseName }),
13335
13337
  ...(input.Name != null && { Name: input.Name }),
13336
- ...(input.QueryAsOfTime != null && { QueryAsOfTime: Math.round(input.QueryAsOfTime.getTime() / 1000) }),
13338
+ ...(input.QueryAsOfTime != null && { QueryAsOfTime: Math.round(input.QueryAsOfTime.getTime() / 1000).toString() }),
13337
13339
  ...(input.TransactionId != null && { TransactionId: input.TransactionId }),
13338
13340
  };
13339
13341
  };
@@ -13344,7 +13346,7 @@ const serializeAws_json1_1GetTablesRequest = (input, context) => {
13344
13346
  ...(input.Expression != null && { Expression: input.Expression }),
13345
13347
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
13346
13348
  ...(input.NextToken != null && { NextToken: input.NextToken }),
13347
- ...(input.QueryAsOfTime != null && { QueryAsOfTime: Math.round(input.QueryAsOfTime.getTime() / 1000) }),
13349
+ ...(input.QueryAsOfTime != null && { QueryAsOfTime: Math.round(input.QueryAsOfTime.getTime() / 1000).toString() }),
13348
13350
  ...(input.TransactionId != null && { TransactionId: input.TransactionId }),
13349
13351
  };
13350
13352
  };
@@ -14192,8 +14194,12 @@ const serializeAws_json1_1PartitionIndexList = (input, context) => {
14192
14194
  };
14193
14195
  const serializeAws_json1_1PartitionInput = (input, context) => {
14194
14196
  return {
14195
- ...(input.LastAccessTime != null && { LastAccessTime: Math.round(input.LastAccessTime.getTime() / 1000) }),
14196
- ...(input.LastAnalyzedTime != null && { LastAnalyzedTime: Math.round(input.LastAnalyzedTime.getTime() / 1000) }),
14197
+ ...(input.LastAccessTime != null && {
14198
+ LastAccessTime: Math.round(input.LastAccessTime.getTime() / 1000).toString(),
14199
+ }),
14200
+ ...(input.LastAnalyzedTime != null && {
14201
+ LastAnalyzedTime: Math.round(input.LastAnalyzedTime.getTime() / 1000).toString(),
14202
+ }),
14197
14203
  ...(input.Parameters != null && { Parameters: serializeAws_json1_1ParametersMap(input.Parameters, context) }),
14198
14204
  ...(input.StorageDescriptor != null && {
14199
14205
  StorageDescriptor: serializeAws_json1_1StorageDescriptor(input.StorageDescriptor, context),
@@ -15009,8 +15015,12 @@ const serializeAws_json1_1TableIdentifier = (input, context) => {
15009
15015
  const serializeAws_json1_1TableInput = (input, context) => {
15010
15016
  return {
15011
15017
  ...(input.Description != null && { Description: input.Description }),
15012
- ...(input.LastAccessTime != null && { LastAccessTime: Math.round(input.LastAccessTime.getTime() / 1000) }),
15013
- ...(input.LastAnalyzedTime != null && { LastAnalyzedTime: Math.round(input.LastAnalyzedTime.getTime() / 1000) }),
15018
+ ...(input.LastAccessTime != null && {
15019
+ LastAccessTime: Math.round(input.LastAccessTime.getTime() / 1000).toString(),
15020
+ }),
15021
+ ...(input.LastAnalyzedTime != null && {
15022
+ LastAnalyzedTime: Math.round(input.LastAnalyzedTime.getTime() / 1000).toString(),
15023
+ }),
15014
15024
  ...(input.Name != null && { Name: input.Name }),
15015
15025
  ...(input.Owner != null && { Owner: input.Owner }),
15016
15026
  ...(input.Parameters != null && { Parameters: serializeAws_json1_1ParametersMap(input.Parameters, context) }),
@@ -15049,8 +15059,8 @@ const serializeAws_json1_1TagsMap = (input, context) => {
15049
15059
  };
15050
15060
  const serializeAws_json1_1TaskRunFilterCriteria = (input, context) => {
15051
15061
  return {
15052
- ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000) }),
15053
- ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000) }),
15062
+ ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000).toString() }),
15063
+ ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000).toString() }),
15054
15064
  ...(input.Status != null && { Status: input.Status }),
15055
15065
  ...(input.TaskRunType != null && { TaskRunType: input.TaskRunType }),
15056
15066
  };
@@ -15091,12 +15101,14 @@ const serializeAws_json1_1TransformEncryption = (input, context) => {
15091
15101
  };
15092
15102
  const serializeAws_json1_1TransformFilterCriteria = (input, context) => {
15093
15103
  return {
15094
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
15095
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
15104
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
15105
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
15096
15106
  ...(input.GlueVersion != null && { GlueVersion: input.GlueVersion }),
15097
- ...(input.LastModifiedAfter != null && { LastModifiedAfter: Math.round(input.LastModifiedAfter.getTime() / 1000) }),
15107
+ ...(input.LastModifiedAfter != null && {
15108
+ LastModifiedAfter: Math.round(input.LastModifiedAfter.getTime() / 1000).toString(),
15109
+ }),
15098
15110
  ...(input.LastModifiedBefore != null && {
15099
- LastModifiedBefore: Math.round(input.LastModifiedBefore.getTime() / 1000),
15111
+ LastModifiedBefore: Math.round(input.LastModifiedBefore.getTime() / 1000).toString(),
15100
15112
  }),
15101
15113
  ...(input.Name != null && { Name: input.Name }),
15102
15114
  ...(input.Schema != null && { Schema: serializeAws_json1_1TransformSchema(input.Schema, context) }),
@@ -11484,7 +11484,7 @@ const serializeAws_json1_1ColumnList = (input, context) => {
11484
11484
  };
11485
11485
  const serializeAws_json1_1ColumnStatistics = (input, context) => {
11486
11486
  return {
11487
- ...(input.AnalyzedTime != null && { AnalyzedTime: Math.round(input.AnalyzedTime.getTime() / 1000) }),
11487
+ ...(input.AnalyzedTime != null && { AnalyzedTime: Math.round(input.AnalyzedTime.getTime() / 1000).toString() }),
11488
11488
  ...(input.ColumnName != null && { ColumnName: input.ColumnName }),
11489
11489
  ...(input.ColumnType != null && { ColumnType: input.ColumnType }),
11490
11490
  ...(input.StatisticsData != null && {
@@ -12050,8 +12050,8 @@ const serializeAws_json1_1DataQualityResultFilterCriteria = (input, context) =>
12050
12050
  ...(input.DataSource != null && { DataSource: serializeAws_json1_1DataSource(input.DataSource, context) }),
12051
12051
  ...(input.JobName != null && { JobName: input.JobName }),
12052
12052
  ...(input.JobRunId != null && { JobRunId: input.JobRunId }),
12053
- ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000) }),
12054
- ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000) }),
12053
+ ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000).toString() }),
12054
+ ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000).toString() }),
12055
12055
  };
12056
12056
  };
12057
12057
  const serializeAws_json1_1DataQualityResultIds = (input, context) => {
@@ -12064,25 +12064,27 @@ const serializeAws_json1_1DataQualityResultIds = (input, context) => {
12064
12064
  const serializeAws_json1_1DataQualityRuleRecommendationRunFilter = (input, context) => {
12065
12065
  return {
12066
12066
  ...(input.DataSource != null && { DataSource: serializeAws_json1_1DataSource(input.DataSource, context) }),
12067
- ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000) }),
12068
- ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000) }),
12067
+ ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000).toString() }),
12068
+ ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000).toString() }),
12069
12069
  };
12070
12070
  };
12071
12071
  const serializeAws_json1_1DataQualityRulesetEvaluationRunFilter = (input, context) => {
12072
12072
  return {
12073
12073
  ...(input.DataSource != null && { DataSource: serializeAws_json1_1DataSource(input.DataSource, context) }),
12074
- ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000) }),
12075
- ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000) }),
12074
+ ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000).toString() }),
12075
+ ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000).toString() }),
12076
12076
  };
12077
12077
  };
12078
12078
  const serializeAws_json1_1DataQualityRulesetFilterCriteria = (input, context) => {
12079
12079
  return {
12080
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
12081
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
12080
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
12081
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
12082
12082
  ...(input.Description != null && { Description: input.Description }),
12083
- ...(input.LastModifiedAfter != null && { LastModifiedAfter: Math.round(input.LastModifiedAfter.getTime() / 1000) }),
12083
+ ...(input.LastModifiedAfter != null && {
12084
+ LastModifiedAfter: Math.round(input.LastModifiedAfter.getTime() / 1000).toString(),
12085
+ }),
12084
12086
  ...(input.LastModifiedBefore != null && {
12085
- LastModifiedBefore: Math.round(input.LastModifiedBefore.getTime() / 1000),
12087
+ LastModifiedBefore: Math.round(input.LastModifiedBefore.getTime() / 1000).toString(),
12086
12088
  }),
12087
12089
  ...(input.Name != null && { Name: input.Name }),
12088
12090
  ...(input.TargetTable != null && {
@@ -12109,8 +12111,8 @@ const serializeAws_json1_1Datatype = (input, context) => {
12109
12111
  };
12110
12112
  const serializeAws_json1_1DateColumnStatisticsData = (input, context) => {
12111
12113
  return {
12112
- ...(input.MaximumValue != null && { MaximumValue: Math.round(input.MaximumValue.getTime() / 1000) }),
12113
- ...(input.MinimumValue != null && { MinimumValue: Math.round(input.MinimumValue.getTime() / 1000) }),
12114
+ ...(input.MaximumValue != null && { MaximumValue: Math.round(input.MaximumValue.getTime() / 1000).toString() }),
12115
+ ...(input.MinimumValue != null && { MinimumValue: Math.round(input.MinimumValue.getTime() / 1000).toString() }),
12114
12116
  ...(input.NumberOfDistinctValues != null && { NumberOfDistinctValues: input.NumberOfDistinctValues }),
12115
12117
  ...(input.NumberOfNulls != null && { NumberOfNulls: input.NumberOfNulls }),
12116
12118
  };
@@ -12823,7 +12825,7 @@ const serializeAws_json1_1GetPartitionsRequest = (input, context) => {
12823
12825
  ...(input.Expression != null && { Expression: input.Expression }),
12824
12826
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
12825
12827
  ...(input.NextToken != null && { NextToken: input.NextToken }),
12826
- ...(input.QueryAsOfTime != null && { QueryAsOfTime: Math.round(input.QueryAsOfTime.getTime() / 1000) }),
12828
+ ...(input.QueryAsOfTime != null && { QueryAsOfTime: Math.round(input.QueryAsOfTime.getTime() / 1000).toString() }),
12827
12829
  ...(input.Segment != null && { Segment: serializeAws_json1_1Segment(input.Segment, context) }),
12828
12830
  ...(input.TableName != null && { TableName: input.TableName }),
12829
12831
  ...(input.TransactionId != null && { TransactionId: input.TransactionId }),
@@ -12918,7 +12920,7 @@ const serializeAws_json1_1GetTableRequest = (input, context) => {
12918
12920
  ...(input.CatalogId != null && { CatalogId: input.CatalogId }),
12919
12921
  ...(input.DatabaseName != null && { DatabaseName: input.DatabaseName }),
12920
12922
  ...(input.Name != null && { Name: input.Name }),
12921
- ...(input.QueryAsOfTime != null && { QueryAsOfTime: Math.round(input.QueryAsOfTime.getTime() / 1000) }),
12923
+ ...(input.QueryAsOfTime != null && { QueryAsOfTime: Math.round(input.QueryAsOfTime.getTime() / 1000).toString() }),
12922
12924
  ...(input.TransactionId != null && { TransactionId: input.TransactionId }),
12923
12925
  };
12924
12926
  };
@@ -12929,7 +12931,7 @@ const serializeAws_json1_1GetTablesRequest = (input, context) => {
12929
12931
  ...(input.Expression != null && { Expression: input.Expression }),
12930
12932
  ...(input.MaxResults != null && { MaxResults: input.MaxResults }),
12931
12933
  ...(input.NextToken != null && { NextToken: input.NextToken }),
12932
- ...(input.QueryAsOfTime != null && { QueryAsOfTime: Math.round(input.QueryAsOfTime.getTime() / 1000) }),
12934
+ ...(input.QueryAsOfTime != null && { QueryAsOfTime: Math.round(input.QueryAsOfTime.getTime() / 1000).toString() }),
12933
12935
  ...(input.TransactionId != null && { TransactionId: input.TransactionId }),
12934
12936
  };
12935
12937
  };
@@ -13777,8 +13779,12 @@ const serializeAws_json1_1PartitionIndexList = (input, context) => {
13777
13779
  };
13778
13780
  const serializeAws_json1_1PartitionInput = (input, context) => {
13779
13781
  return {
13780
- ...(input.LastAccessTime != null && { LastAccessTime: Math.round(input.LastAccessTime.getTime() / 1000) }),
13781
- ...(input.LastAnalyzedTime != null && { LastAnalyzedTime: Math.round(input.LastAnalyzedTime.getTime() / 1000) }),
13782
+ ...(input.LastAccessTime != null && {
13783
+ LastAccessTime: Math.round(input.LastAccessTime.getTime() / 1000).toString(),
13784
+ }),
13785
+ ...(input.LastAnalyzedTime != null && {
13786
+ LastAnalyzedTime: Math.round(input.LastAnalyzedTime.getTime() / 1000).toString(),
13787
+ }),
13782
13788
  ...(input.Parameters != null && { Parameters: serializeAws_json1_1ParametersMap(input.Parameters, context) }),
13783
13789
  ...(input.StorageDescriptor != null && {
13784
13790
  StorageDescriptor: serializeAws_json1_1StorageDescriptor(input.StorageDescriptor, context),
@@ -14594,8 +14600,12 @@ const serializeAws_json1_1TableIdentifier = (input, context) => {
14594
14600
  const serializeAws_json1_1TableInput = (input, context) => {
14595
14601
  return {
14596
14602
  ...(input.Description != null && { Description: input.Description }),
14597
- ...(input.LastAccessTime != null && { LastAccessTime: Math.round(input.LastAccessTime.getTime() / 1000) }),
14598
- ...(input.LastAnalyzedTime != null && { LastAnalyzedTime: Math.round(input.LastAnalyzedTime.getTime() / 1000) }),
14603
+ ...(input.LastAccessTime != null && {
14604
+ LastAccessTime: Math.round(input.LastAccessTime.getTime() / 1000).toString(),
14605
+ }),
14606
+ ...(input.LastAnalyzedTime != null && {
14607
+ LastAnalyzedTime: Math.round(input.LastAnalyzedTime.getTime() / 1000).toString(),
14608
+ }),
14599
14609
  ...(input.Name != null && { Name: input.Name }),
14600
14610
  ...(input.Owner != null && { Owner: input.Owner }),
14601
14611
  ...(input.Parameters != null && { Parameters: serializeAws_json1_1ParametersMap(input.Parameters, context) }),
@@ -14634,8 +14644,8 @@ const serializeAws_json1_1TagsMap = (input, context) => {
14634
14644
  };
14635
14645
  const serializeAws_json1_1TaskRunFilterCriteria = (input, context) => {
14636
14646
  return {
14637
- ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000) }),
14638
- ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000) }),
14647
+ ...(input.StartedAfter != null && { StartedAfter: Math.round(input.StartedAfter.getTime() / 1000).toString() }),
14648
+ ...(input.StartedBefore != null && { StartedBefore: Math.round(input.StartedBefore.getTime() / 1000).toString() }),
14639
14649
  ...(input.Status != null && { Status: input.Status }),
14640
14650
  ...(input.TaskRunType != null && { TaskRunType: input.TaskRunType }),
14641
14651
  };
@@ -14676,12 +14686,14 @@ const serializeAws_json1_1TransformEncryption = (input, context) => {
14676
14686
  };
14677
14687
  const serializeAws_json1_1TransformFilterCriteria = (input, context) => {
14678
14688
  return {
14679
- ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000) }),
14680
- ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000) }),
14689
+ ...(input.CreatedAfter != null && { CreatedAfter: Math.round(input.CreatedAfter.getTime() / 1000).toString() }),
14690
+ ...(input.CreatedBefore != null && { CreatedBefore: Math.round(input.CreatedBefore.getTime() / 1000).toString() }),
14681
14691
  ...(input.GlueVersion != null && { GlueVersion: input.GlueVersion }),
14682
- ...(input.LastModifiedAfter != null && { LastModifiedAfter: Math.round(input.LastModifiedAfter.getTime() / 1000) }),
14692
+ ...(input.LastModifiedAfter != null && {
14693
+ LastModifiedAfter: Math.round(input.LastModifiedAfter.getTime() / 1000).toString(),
14694
+ }),
14683
14695
  ...(input.LastModifiedBefore != null && {
14684
- LastModifiedBefore: Math.round(input.LastModifiedBefore.getTime() / 1000),
14696
+ LastModifiedBefore: Math.round(input.LastModifiedBefore.getTime() / 1000).toString(),
14685
14697
  }),
14686
14698
  ...(input.Name != null && { Name: input.Name }),
14687
14699
  ...(input.Schema != null && { Schema: serializeAws_json1_1TransformSchema(input.Schema, context) }),
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.245.0",
4
+ "version": "3.252.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -11,7 +11,7 @@
11
11
  "build:types": "tsc -p tsconfig.types.json",
12
12
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
13
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
- "generate:client": "(cd ../../ && yarn generate-clients -g ./codegen/sdk-codegen/aws-models/glue.json --keepFiles)"
14
+ "generate:client": "node ../../scripts/generate-clients/single-service --solo glue"
15
15
  },
16
16
  "main": "./dist-cjs/index.js",
17
17
  "types": "./dist-types/index.d.ts",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "2.0.0",
22
22
  "@aws-crypto/sha256-js": "2.0.0",
23
- "@aws-sdk/client-sts": "3.245.0",
23
+ "@aws-sdk/client-sts": "3.252.0",
24
24
  "@aws-sdk/config-resolver": "3.234.0",
25
- "@aws-sdk/credential-provider-node": "3.245.0",
25
+ "@aws-sdk/credential-provider-node": "3.252.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.226.0",
27
27
  "@aws-sdk/hash-node": "3.226.0",
28
28
  "@aws-sdk/invalid-dependency": "3.226.0",