aws-sdk-glue 1.255.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df41d020456d9c0270a29388d0c025d9f419ede50e7b3b70247dfbb4b4c80c7b
4
- data.tar.gz: 3eb8e3ce924618fe3971a7a7b4feb02108944be11b5acc4f61022e55c210882d
3
+ metadata.gz: 581ebba0ed4563f9561e4e73f25dd72b59f02dac19f6bad8146371906030d75b
4
+ data.tar.gz: fcf0617b7443964df1a51e903e8e84545d16f97d5b713eaf728b8314c59ff090
5
5
  SHA512:
6
- metadata.gz: d1f1c76b1744ccdc951c8afa3b07860fbfa9368c95bcece448b5e1a03413f0c02966fe9d70327d2117fd742fb6d2351d26ce6ad796eb052f278cdf527c20078a
7
- data.tar.gz: 78af06119b4ce96b76863f0940985ccf3b846482fe02d799ae2c402c09fe5732d130d198528e1a784e26c9810901a233b66bbdd47b82ec2a37b88477d83b7bd7
6
+ metadata.gz: 1ce2bf319a4c095db94466fff51d859b7b8c054af9a6486c68dc276db6dc340dd97c7f2c6bb58f74ccbd38b6a74a51777e4aa63aeff4a8ebee0fd457a9d47488
7
+ data.tar.gz: eba95c506eedcf0f5606ae80d4eedcce192c50163d3cfcdfc587927657b1d0a06aefa5e42a4b3e5024ab91aa104f078f3173ee6c4407b63dc62850125b19436b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.255.0 (2026-05-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.255.0
1
+ 1.256.0
@@ -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 2880
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
@@ -16159,8 +16160,9 @@ module Aws::Glue
16159
16160
  # Jobs must have timeout values less than 7 days or 10080 minutes.
16160
16161
  # Otherwise, the jobs will throw an exception.
16161
16162
  #
16162
- # When the value is left blank, the timeout is defaulted to 2880
16163
- # 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.
16164
16166
  #
16165
16167
  # Any existing Glue jobs that had a timeout value greater than 7 days
16166
16168
  # will be defaulted to 7 days. For instance if you have specified a
@@ -19053,7 +19055,7 @@ module Aws::Glue
19053
19055
  tracer: tracer
19054
19056
  )
19055
19057
  context[:gem_name] = 'aws-sdk-glue'
19056
- context[:gem_version] = '1.255.0'
19058
+ context[:gem_version] = '1.256.0'
19057
19059
  Seahorse::Client::Request.new(handlers, context)
19058
19060
  end
19059
19061
 
@@ -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 2880
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 2880
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
@@ -18139,8 +18141,9 @@ module Aws::Glue
18139
18141
  # Jobs must have timeout values less than 7 days or 10080 minutes.
18140
18142
  # Otherwise, the jobs will throw an exception.
18141
18143
  #
18142
- # When the value is left blank, the timeout is defaulted to 2880
18143
- # 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.
18144
18147
  #
18145
18148
  # Any existing Glue jobs that had a timeout value greater than 7 days
18146
18149
  # will be defaulted to 7 days. For instance if you have specified a
@@ -18581,8 +18584,9 @@ module Aws::Glue
18581
18584
  # Jobs must have timeout values less than 7 days or 10080 minutes.
18582
18585
  # Otherwise, the jobs will throw an exception.
18583
18586
  #
18584
- # When the value is left blank, the timeout is defaulted to 2880
18585
- # 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.
18586
18590
  #
18587
18591
  # Any existing Glue jobs that had a timeout value greater than 7 days
18588
18592
  # will be defaulted to 7 days. For instance if you have specified a
@@ -18934,8 +18938,9 @@ module Aws::Glue
18934
18938
  # Jobs must have timeout values less than 7 days or 10080 minutes.
18935
18939
  # Otherwise, the jobs will throw an exception.
18936
18940
  #
18937
- # When the value is left blank, the timeout is defaulted to 2880
18938
- # 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.
18939
18944
  #
18940
18945
  # Any existing Glue jobs that had a timeout value greater than 7 days
18941
18946
  # will be defaulted to 7 days. For instance if you have specified a
@@ -26863,8 +26868,9 @@ module Aws::Glue
26863
26868
  # Jobs must have timeout values less than 7 days or 10080 minutes.
26864
26869
  # Otherwise, the jobs will throw an exception.
26865
26870
  #
26866
- # When the value is left blank, the timeout is defaulted to 2880
26867
- # 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.
26868
26874
  #
26869
26875
  # Any existing Glue jobs that had a timeout value greater than 7 days
26870
26876
  # will be defaulted to 7 days. For instance if you have specified a
data/lib/aws-sdk-glue.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Glue
54
54
  autoload :EndpointProvider, 'aws-sdk-glue/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-glue/endpoints'
56
56
 
57
- GEM_VERSION = '1.255.0'
57
+ GEM_VERSION = '1.256.0'
58
58
 
59
59
  end
60
60
 
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.255.0
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.244.0
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.244.0
31
+ version: 3.247.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement