aws-sdk-glue 1.254.0 → 1.256.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +10 -5
- data/lib/aws-sdk-glue/client_api.rb +2 -0
- data/lib/aws-sdk-glue/types.rb +34 -14
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 581ebba0ed4563f9561e4e73f25dd72b59f02dac19f6bad8146371906030d75b
|
|
4
|
+
data.tar.gz: fcf0617b7443964df1a51e903e8e84545d16f97d5b713eaf728b8314c59ff090
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1ce2bf319a4c095db94466fff51d859b7b8c054af9a6486c68dc276db6dc340dd97c7f2c6bb58f74ccbd38b6a74a51777e4aa63aeff4a8ebee0fd457a9d47488
|
|
7
|
+
data.tar.gz: eba95c506eedcf0f5606ae80d4eedcce192c50163d3cfcdfc587927657b1d0a06aefa5e42a4b3e5024ab91aa104f078f3173ee6c4407b63dc62850125b19436b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.256.0 (2026-05-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Glue now defaults the job timeout to 480 minutes for Glue version 5.0 and later when no timeout value is specified. The default remains 2,880 minutes for Glue version 4.0 and earlier.
|
|
8
|
+
|
|
9
|
+
1.255.0 (2026-05-06)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for a CustomLogGroupPrefix parameter in StartDataQualityRulesetEvaluationRun to specify custom CloudWatch log group paths, and a RulesetName filter in ListDataQualityRulesetEvaluationRuns to filter evaluation runs by ruleset name.
|
|
13
|
+
|
|
4
14
|
1.254.0 (2026-04-27)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.256.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -3304,8 +3304,9 @@ module Aws::Glue
|
|
|
3304
3304
|
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
|
3305
3305
|
# Otherwise, the jobs will throw an exception.
|
|
3306
3306
|
#
|
|
3307
|
-
# When the value is left blank, the timeout is defaulted to
|
|
3308
|
-
# minutes.
|
|
3307
|
+
# When the value is left blank, the timeout is defaulted to 2,880
|
|
3308
|
+
# minutes for Glue version 4.0 and earlier, or 480 minutes for Glue
|
|
3309
|
+
# version 5.0 and later.
|
|
3309
3310
|
#
|
|
3310
3311
|
# Any existing Glue jobs that had a timeout value greater than 7 days
|
|
3311
3312
|
# will be defaulted to 7 days. For instance if you have specified a
|
|
@@ -8138,6 +8139,7 @@ module Aws::Glue
|
|
|
8138
8139
|
# resp.additional_run_options.cloud_watch_metrics_enabled #=> Boolean
|
|
8139
8140
|
# resp.additional_run_options.results_s3_prefix #=> String
|
|
8140
8141
|
# resp.additional_run_options.composite_rule_evaluation_method #=> String, one of "COLUMN", "ROW"
|
|
8142
|
+
# resp.additional_run_options.custom_log_group_prefix #=> String
|
|
8141
8143
|
# resp.status #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
|
|
8142
8144
|
# resp.error_string #=> String
|
|
8143
8145
|
# resp.started_on #=> Time
|
|
@@ -13181,6 +13183,7 @@ module Aws::Glue
|
|
|
13181
13183
|
# },
|
|
13182
13184
|
# started_before: Time.now,
|
|
13183
13185
|
# started_after: Time.now,
|
|
13186
|
+
# ruleset_name: "NameString",
|
|
13184
13187
|
# },
|
|
13185
13188
|
# next_token: "PaginationToken",
|
|
13186
13189
|
# max_results: 1,
|
|
@@ -15943,6 +15946,7 @@ module Aws::Glue
|
|
|
15943
15946
|
# cloud_watch_metrics_enabled: false,
|
|
15944
15947
|
# results_s3_prefix: "UriString",
|
|
15945
15948
|
# composite_rule_evaluation_method: "COLUMN", # accepts COLUMN, ROW
|
|
15949
|
+
# custom_log_group_prefix: "GenericString",
|
|
15946
15950
|
# },
|
|
15947
15951
|
# ruleset_names: ["NameString"], # required
|
|
15948
15952
|
# additional_data_sources: {
|
|
@@ -16156,8 +16160,9 @@ module Aws::Glue
|
|
|
16156
16160
|
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
|
16157
16161
|
# Otherwise, the jobs will throw an exception.
|
|
16158
16162
|
#
|
|
16159
|
-
# When the value is left blank, the timeout is defaulted to
|
|
16160
|
-
# minutes.
|
|
16163
|
+
# When the value is left blank, the timeout is defaulted to 2,880
|
|
16164
|
+
# minutes for Glue version 4.0 and earlier, or 480 minutes for Glue
|
|
16165
|
+
# version 5.0 and later.
|
|
16161
16166
|
#
|
|
16162
16167
|
# Any existing Glue jobs that had a timeout value greater than 7 days
|
|
16163
16168
|
# will be defaulted to 7 days. For instance if you have specified a
|
|
@@ -19050,7 +19055,7 @@ module Aws::Glue
|
|
|
19050
19055
|
tracer: tracer
|
|
19051
19056
|
)
|
|
19052
19057
|
context[:gem_name] = 'aws-sdk-glue'
|
|
19053
|
-
context[:gem_version] = '1.
|
|
19058
|
+
context[:gem_version] = '1.256.0'
|
|
19054
19059
|
Seahorse::Client::Request.new(handlers, context)
|
|
19055
19060
|
end
|
|
19056
19061
|
|
|
@@ -3326,6 +3326,7 @@ module Aws::Glue
|
|
|
3326
3326
|
DataQualityEvaluationRunAdditionalRunOptions.add_member(:cloud_watch_metrics_enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "CloudWatchMetricsEnabled"))
|
|
3327
3327
|
DataQualityEvaluationRunAdditionalRunOptions.add_member(:results_s3_prefix, Shapes::ShapeRef.new(shape: UriString, location_name: "ResultsS3Prefix"))
|
|
3328
3328
|
DataQualityEvaluationRunAdditionalRunOptions.add_member(:composite_rule_evaluation_method, Shapes::ShapeRef.new(shape: DQCompositeRuleEvaluationMethod, location_name: "CompositeRuleEvaluationMethod"))
|
|
3329
|
+
DataQualityEvaluationRunAdditionalRunOptions.add_member(:custom_log_group_prefix, Shapes::ShapeRef.new(shape: GenericString, location_name: "CustomLogGroupPrefix"))
|
|
3329
3330
|
DataQualityEvaluationRunAdditionalRunOptions.struct_class = Types::DataQualityEvaluationRunAdditionalRunOptions
|
|
3330
3331
|
|
|
3331
3332
|
DataQualityGlueTable.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
|
|
@@ -3421,6 +3422,7 @@ module Aws::Glue
|
|
|
3421
3422
|
DataQualityRulesetEvaluationRunFilter.add_member(:data_source, Shapes::ShapeRef.new(shape: DataSource, required: true, location_name: "DataSource"))
|
|
3422
3423
|
DataQualityRulesetEvaluationRunFilter.add_member(:started_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartedBefore"))
|
|
3423
3424
|
DataQualityRulesetEvaluationRunFilter.add_member(:started_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartedAfter"))
|
|
3425
|
+
DataQualityRulesetEvaluationRunFilter.add_member(:ruleset_name, Shapes::ShapeRef.new(shape: NameString, location_name: "RulesetName"))
|
|
3424
3426
|
DataQualityRulesetEvaluationRunFilter.struct_class = Types::DataQualityRulesetEvaluationRunFilter
|
|
3425
3427
|
|
|
3426
3428
|
DataQualityRulesetEvaluationRunList.member = Shapes::ShapeRef.new(shape: DataQualityRulesetEvaluationRunDescription)
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -60,8 +60,9 @@ module Aws::Glue
|
|
|
60
60
|
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
|
61
61
|
# Otherwise, the jobs will throw an exception.
|
|
62
62
|
#
|
|
63
|
-
# When the value is left blank, the timeout is defaulted to
|
|
64
|
-
# minutes.
|
|
63
|
+
# When the value is left blank, the timeout is defaulted to 2,880
|
|
64
|
+
# minutes for Glue version 4.0 and earlier, or 480 minutes for Glue
|
|
65
|
+
# version 5.0 and later.
|
|
65
66
|
#
|
|
66
67
|
# Any existing Glue jobs that had a timeout value greater than 7 days
|
|
67
68
|
# will be defaulted to 7 days. For instance if you have specified a
|
|
@@ -6541,8 +6542,9 @@ module Aws::Glue
|
|
|
6541
6542
|
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
|
6542
6543
|
# Otherwise, the jobs will throw an exception.
|
|
6543
6544
|
#
|
|
6544
|
-
# When the value is left blank, the timeout is defaulted to
|
|
6545
|
-
# minutes.
|
|
6545
|
+
# When the value is left blank, the timeout is defaulted to 2,880
|
|
6546
|
+
# minutes for Glue version 4.0 and earlier, or 480 minutes for Glue
|
|
6547
|
+
# version 5.0 and later.
|
|
6546
6548
|
#
|
|
6547
6549
|
# Any existing Glue jobs that had a timeout value greater than 7 days
|
|
6548
6550
|
# will be defaulted to 7 days. For instance if you have specified a
|
|
@@ -8371,12 +8373,21 @@ module Aws::Glue
|
|
|
8371
8373
|
# ROW/COLUMN
|
|
8372
8374
|
# @return [String]
|
|
8373
8375
|
#
|
|
8376
|
+
# @!attribute [rw] custom_log_group_prefix
|
|
8377
|
+
# A custom prefix for the CloudWatch log group names. When specified,
|
|
8378
|
+
# evaluation run logs are written to `<CustomLogGroupPrefix>/error`
|
|
8379
|
+
# and `<CustomLogGroupPrefix>/output` instead of the default
|
|
8380
|
+
# `/aws-glue/data-quality/error` and `/aws-glue/data-quality/output`
|
|
8381
|
+
# log groups.
|
|
8382
|
+
# @return [String]
|
|
8383
|
+
#
|
|
8374
8384
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DataQualityEvaluationRunAdditionalRunOptions AWS API Documentation
|
|
8375
8385
|
#
|
|
8376
8386
|
class DataQualityEvaluationRunAdditionalRunOptions < Struct.new(
|
|
8377
8387
|
:cloud_watch_metrics_enabled,
|
|
8378
8388
|
:results_s3_prefix,
|
|
8379
|
-
:composite_rule_evaluation_method
|
|
8389
|
+
:composite_rule_evaluation_method,
|
|
8390
|
+
:custom_log_group_prefix)
|
|
8380
8391
|
SENSITIVE = []
|
|
8381
8392
|
include Aws::Structure
|
|
8382
8393
|
end
|
|
@@ -8794,12 +8805,17 @@ module Aws::Glue
|
|
|
8794
8805
|
# Filter results by runs that started after this time.
|
|
8795
8806
|
# @return [Time]
|
|
8796
8807
|
#
|
|
8808
|
+
# @!attribute [rw] ruleset_name
|
|
8809
|
+
# Filter results by the name of the ruleset.
|
|
8810
|
+
# @return [String]
|
|
8811
|
+
#
|
|
8797
8812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DataQualityRulesetEvaluationRunFilter AWS API Documentation
|
|
8798
8813
|
#
|
|
8799
8814
|
class DataQualityRulesetEvaluationRunFilter < Struct.new(
|
|
8800
8815
|
:data_source,
|
|
8801
8816
|
:started_before,
|
|
8802
|
-
:started_after
|
|
8817
|
+
:started_after,
|
|
8818
|
+
:ruleset_name)
|
|
8803
8819
|
SENSITIVE = []
|
|
8804
8820
|
include Aws::Structure
|
|
8805
8821
|
end
|
|
@@ -18125,8 +18141,9 @@ module Aws::Glue
|
|
|
18125
18141
|
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
|
18126
18142
|
# Otherwise, the jobs will throw an exception.
|
|
18127
18143
|
#
|
|
18128
|
-
# When the value is left blank, the timeout is defaulted to
|
|
18129
|
-
# minutes.
|
|
18144
|
+
# When the value is left blank, the timeout is defaulted to 2,880
|
|
18145
|
+
# minutes for Glue version 4.0 and earlier, or 480 minutes for Glue
|
|
18146
|
+
# version 5.0 and later.
|
|
18130
18147
|
#
|
|
18131
18148
|
# Any existing Glue jobs that had a timeout value greater than 7 days
|
|
18132
18149
|
# will be defaulted to 7 days. For instance if you have specified a
|
|
@@ -18567,8 +18584,9 @@ module Aws::Glue
|
|
|
18567
18584
|
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
|
18568
18585
|
# Otherwise, the jobs will throw an exception.
|
|
18569
18586
|
#
|
|
18570
|
-
# When the value is left blank, the timeout is defaulted to
|
|
18571
|
-
# minutes.
|
|
18587
|
+
# When the value is left blank, the timeout is defaulted to 2,880
|
|
18588
|
+
# minutes for Glue version 4.0 and earlier, or 480 minutes for Glue
|
|
18589
|
+
# version 5.0 and later.
|
|
18572
18590
|
#
|
|
18573
18591
|
# Any existing Glue jobs that had a timeout value greater than 7 days
|
|
18574
18592
|
# will be defaulted to 7 days. For instance if you have specified a
|
|
@@ -18920,8 +18938,9 @@ module Aws::Glue
|
|
|
18920
18938
|
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
|
18921
18939
|
# Otherwise, the jobs will throw an exception.
|
|
18922
18940
|
#
|
|
18923
|
-
# When the value is left blank, the timeout is defaulted to
|
|
18924
|
-
# minutes.
|
|
18941
|
+
# When the value is left blank, the timeout is defaulted to 2,880
|
|
18942
|
+
# minutes for Glue version 4.0 and earlier, or 480 minutes for Glue
|
|
18943
|
+
# version 5.0 and later.
|
|
18925
18944
|
#
|
|
18926
18945
|
# Any existing Glue jobs that had a timeout value greater than 7 days
|
|
18927
18946
|
# will be defaulted to 7 days. For instance if you have specified a
|
|
@@ -26849,8 +26868,9 @@ module Aws::Glue
|
|
|
26849
26868
|
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
|
26850
26869
|
# Otherwise, the jobs will throw an exception.
|
|
26851
26870
|
#
|
|
26852
|
-
# When the value is left blank, the timeout is defaulted to
|
|
26853
|
-
# minutes.
|
|
26871
|
+
# When the value is left blank, the timeout is defaulted to 2,880
|
|
26872
|
+
# minutes for Glue version 4.0 and earlier, or 480 minutes for Glue
|
|
26873
|
+
# version 5.0 and later.
|
|
26854
26874
|
#
|
|
26855
26875
|
# Any existing Glue jobs that had a timeout value greater than 7 days
|
|
26856
26876
|
# will be defaulted to 7 days. For instance if you have specified a
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -5051,7 +5051,8 @@ module Aws
|
|
|
5051
5051
|
}?
|
|
5052
5052
|
},
|
|
5053
5053
|
started_before: ::Time?,
|
|
5054
|
-
started_after: ::Time
|
|
5054
|
+
started_after: ::Time?,
|
|
5055
|
+
ruleset_name: ::String?
|
|
5055
5056
|
},
|
|
5056
5057
|
?next_token: ::String,
|
|
5057
5058
|
?max_results: ::Integer
|
|
@@ -6167,7 +6168,8 @@ module Aws
|
|
|
6167
6168
|
?additional_run_options: {
|
|
6168
6169
|
cloud_watch_metrics_enabled: bool?,
|
|
6169
6170
|
results_s3_prefix: ::String?,
|
|
6170
|
-
composite_rule_evaluation_method: ("COLUMN" | "ROW")
|
|
6171
|
+
composite_rule_evaluation_method: ("COLUMN" | "ROW")?,
|
|
6172
|
+
custom_log_group_prefix: ::String?
|
|
6171
6173
|
},
|
|
6172
6174
|
ruleset_names: Array[::String],
|
|
6173
6175
|
?additional_data_sources: Hash[::String, {
|
data/sig/types.rbs
CHANGED
|
@@ -1905,6 +1905,7 @@ module Aws::Glue
|
|
|
1905
1905
|
attr_accessor cloud_watch_metrics_enabled: bool
|
|
1906
1906
|
attr_accessor results_s3_prefix: ::String
|
|
1907
1907
|
attr_accessor composite_rule_evaluation_method: ("COLUMN" | "ROW")
|
|
1908
|
+
attr_accessor custom_log_group_prefix: ::String
|
|
1908
1909
|
SENSITIVE: []
|
|
1909
1910
|
end
|
|
1910
1911
|
|
|
@@ -2008,6 +2009,7 @@ module Aws::Glue
|
|
|
2008
2009
|
attr_accessor data_source: Types::DataSource
|
|
2009
2010
|
attr_accessor started_before: ::Time
|
|
2010
2011
|
attr_accessor started_after: ::Time
|
|
2012
|
+
attr_accessor ruleset_name: ::String
|
|
2011
2013
|
SENSITIVE: []
|
|
2012
2014
|
end
|
|
2013
2015
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-glue
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.256.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.247.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.247.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|