aws-sdk-glue 1.206.0 → 1.208.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 +42 -9
- data/lib/aws-sdk-glue/types.rb +66 -22
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97d5b3153e59d438baa9df86770a031fa114a1d240eb0efcffb0a8d65275236c
|
4
|
+
data.tar.gz: 10b1faa24a039ca0a52ae16b25d6cc409665a719448784c5947f649456626c88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d093af8b290c980d1f5d55d5bb9576659761d1dff9360bbcbcc8278dcf7f1415bbab821dfa598dac3c0c434b4cdf7b5eddce360e89bc098f2f3b2d3462cb1320
|
7
|
+
data.tar.gz: '09b5b8d221b793591be3c66297c470439a549d552bacf644ce73b62138574b296af9d3e787328c3ee6fb030b0d91f307099581b432e9493fd63d6d5522dd97f9'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.208.0 (2025-01-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Docs Update for timeout changes
|
8
|
+
|
9
|
+
1.207.0 (2025-01-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.206.0 (2024-12-23)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.208.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -257,11 +257,34 @@ module Aws::Glue
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -4021,13 +4044,20 @@ module Aws::Glue
|
|
4021
4044
|
# @option params [Integer] :timeout
|
4022
4045
|
# The job timeout in minutes. This is the maximum time that a job run
|
4023
4046
|
# can consume resources before it is terminated and enters `TIMEOUT`
|
4024
|
-
# status.
|
4047
|
+
# status.
|
4048
|
+
#
|
4049
|
+
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
4050
|
+
# Otherwise, the jobs will throw an exception.
|
4051
|
+
#
|
4052
|
+
# When the value is left blank, the timeout is defaulted to 2880
|
4053
|
+
# minutes.
|
4025
4054
|
#
|
4026
|
-
#
|
4027
|
-
#
|
4028
|
-
#
|
4029
|
-
#
|
4030
|
-
# window
|
4055
|
+
# Any existing Glue jobs that had a timeout value greater than 7 days
|
4056
|
+
# will be defaulted to 7 days. For instance if you have specified a
|
4057
|
+
# timeout of 20 days for a batch job, it will be stopped on the 7th day.
|
4058
|
+
#
|
4059
|
+
# For streaming jobs, if you have set up a maintenance window, it will
|
4060
|
+
# be restarted during the maintenance window after 7 days.
|
4031
4061
|
#
|
4032
4062
|
# @option params [Float] :max_capacity
|
4033
4063
|
# For Glue version 1.0 or earlier jobs, using the standard worker type,
|
@@ -4874,8 +4904,8 @@ module Aws::Glue
|
|
4874
4904
|
#
|
4875
4905
|
# @option params [Integer] :timeout
|
4876
4906
|
# The number of minutes before session times out. Default for Spark ETL
|
4877
|
-
# jobs is 48 hours (2880 minutes)
|
4878
|
-
# job
|
4907
|
+
# jobs is 48 hours (2880 minutes). Consult the documentation for other
|
4908
|
+
# job types.
|
4879
4909
|
#
|
4880
4910
|
# @option params [Integer] :idle_timeout
|
4881
4911
|
# The number of minutes when idle before session times out. Default for
|
@@ -17388,6 +17418,9 @@ module Aws::Glue
|
|
17388
17418
|
# will be defaulted to 7 days. For instance if you have specified a
|
17389
17419
|
# timeout of 20 days for a batch job, it will be stopped on the 7th day.
|
17390
17420
|
#
|
17421
|
+
# For streaming jobs, if you have set up a maintenance window, it will
|
17422
|
+
# be restarted during the maintenance window after 7 days.
|
17423
|
+
#
|
17391
17424
|
# @option params [Float] :max_capacity
|
17392
17425
|
# For Glue version 1.0 or earlier jobs, using the standard worker type,
|
17393
17426
|
# the number of Glue data processing units (DPUs) that can be allocated
|
@@ -20048,7 +20081,7 @@ module Aws::Glue
|
|
20048
20081
|
tracer: tracer
|
20049
20082
|
)
|
20050
20083
|
context[:gem_name] = 'aws-sdk-glue'
|
20051
|
-
context[:gem_version] = '1.
|
20084
|
+
context[:gem_version] = '1.208.0'
|
20052
20085
|
Seahorse::Client::Request.new(handlers, context)
|
20053
20086
|
end
|
20054
20087
|
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -54,8 +54,22 @@ module Aws::Glue
|
|
54
54
|
# @!attribute [rw] timeout
|
55
55
|
# The `JobRun` timeout in minutes. This is the maximum time that a job
|
56
56
|
# run can consume resources before it is terminated and enters
|
57
|
-
# `TIMEOUT` status.
|
58
|
-
#
|
57
|
+
# `TIMEOUT` status. This overrides the timeout value set in the parent
|
58
|
+
# job.
|
59
|
+
#
|
60
|
+
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
61
|
+
# Otherwise, the jobs will throw an exception.
|
62
|
+
#
|
63
|
+
# When the value is left blank, the timeout is defaulted to 2880
|
64
|
+
# minutes.
|
65
|
+
#
|
66
|
+
# Any existing Glue jobs that had a timeout value greater than 7 days
|
67
|
+
# will be defaulted to 7 days. For instance if you have specified a
|
68
|
+
# timeout of 20 days for a batch job, it will be stopped on the 7th
|
69
|
+
# day.
|
70
|
+
#
|
71
|
+
# For streaming jobs, if you have set up a maintenance window, it will
|
72
|
+
# be restarted during the maintenance window after 7 days.
|
59
73
|
# @return [Integer]
|
60
74
|
#
|
61
75
|
# @!attribute [rw] security_configuration
|
@@ -5906,13 +5920,21 @@ module Aws::Glue
|
|
5906
5920
|
# @!attribute [rw] timeout
|
5907
5921
|
# The job timeout in minutes. This is the maximum time that a job run
|
5908
5922
|
# can consume resources before it is terminated and enters `TIMEOUT`
|
5909
|
-
# status.
|
5923
|
+
# status.
|
5910
5924
|
#
|
5911
|
-
#
|
5912
|
-
#
|
5913
|
-
#
|
5914
|
-
#
|
5915
|
-
#
|
5925
|
+
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
5926
|
+
# Otherwise, the jobs will throw an exception.
|
5927
|
+
#
|
5928
|
+
# When the value is left blank, the timeout is defaulted to 2880
|
5929
|
+
# minutes.
|
5930
|
+
#
|
5931
|
+
# Any existing Glue jobs that had a timeout value greater than 7 days
|
5932
|
+
# will be defaulted to 7 days. For instance if you have specified a
|
5933
|
+
# timeout of 20 days for a batch job, it will be stopped on the 7th
|
5934
|
+
# day.
|
5935
|
+
#
|
5936
|
+
# For streaming jobs, if you have set up a maintenance window, it will
|
5937
|
+
# be restarted during the maintenance window after 7 days.
|
5916
5938
|
# @return [Integer]
|
5917
5939
|
#
|
5918
5940
|
# @!attribute [rw] max_capacity
|
@@ -6717,8 +6739,8 @@ module Aws::Glue
|
|
6717
6739
|
#
|
6718
6740
|
# @!attribute [rw] timeout
|
6719
6741
|
# The number of minutes before session times out. Default for Spark
|
6720
|
-
# ETL jobs is 48 hours (2880 minutes)
|
6721
|
-
#
|
6742
|
+
# ETL jobs is 48 hours (2880 minutes). Consult the documentation for
|
6743
|
+
# other job types.
|
6722
6744
|
# @return [Integer]
|
6723
6745
|
#
|
6724
6746
|
# @!attribute [rw] idle_timeout
|
@@ -16177,13 +16199,21 @@ module Aws::Glue
|
|
16177
16199
|
# @!attribute [rw] timeout
|
16178
16200
|
# The job timeout in minutes. This is the maximum time that a job run
|
16179
16201
|
# can consume resources before it is terminated and enters `TIMEOUT`
|
16180
|
-
# status.
|
16202
|
+
# status.
|
16181
16203
|
#
|
16182
|
-
#
|
16183
|
-
#
|
16184
|
-
#
|
16185
|
-
#
|
16186
|
-
#
|
16204
|
+
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
16205
|
+
# Otherwise, the jobs will throw an exception.
|
16206
|
+
#
|
16207
|
+
# When the value is left blank, the timeout is defaulted to 2880
|
16208
|
+
# minutes.
|
16209
|
+
#
|
16210
|
+
# Any existing Glue jobs that had a timeout value greater than 7 days
|
16211
|
+
# will be defaulted to 7 days. For instance if you have specified a
|
16212
|
+
# timeout of 20 days for a batch job, it will be stopped on the 7th
|
16213
|
+
# day.
|
16214
|
+
#
|
16215
|
+
# For streaming jobs, if you have set up a maintenance window, it will
|
16216
|
+
# be restarted during the maintenance window after 7 days.
|
16187
16217
|
# @return [Integer]
|
16188
16218
|
#
|
16189
16219
|
# @!attribute [rw] max_capacity
|
@@ -16639,6 +16669,9 @@ module Aws::Glue
|
|
16639
16669
|
# will be defaulted to 7 days. For instance if you have specified a
|
16640
16670
|
# timeout of 20 days for a batch job, it will be stopped on the 7th
|
16641
16671
|
# day.
|
16672
|
+
#
|
16673
|
+
# For streaming jobs, if you have set up a maintenance window, it will
|
16674
|
+
# be restarted during the maintenance window after 7 days.
|
16642
16675
|
# @return [Integer]
|
16643
16676
|
#
|
16644
16677
|
# @!attribute [rw] max_capacity
|
@@ -16969,13 +17002,21 @@ module Aws::Glue
|
|
16969
17002
|
# @!attribute [rw] timeout
|
16970
17003
|
# The job timeout in minutes. This is the maximum time that a job run
|
16971
17004
|
# can consume resources before it is terminated and enters `TIMEOUT`
|
16972
|
-
# status.
|
17005
|
+
# status.
|
16973
17006
|
#
|
16974
|
-
#
|
16975
|
-
#
|
16976
|
-
#
|
16977
|
-
#
|
16978
|
-
#
|
17007
|
+
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
17008
|
+
# Otherwise, the jobs will throw an exception.
|
17009
|
+
#
|
17010
|
+
# When the value is left blank, the timeout is defaulted to 2880
|
17011
|
+
# minutes.
|
17012
|
+
#
|
17013
|
+
# Any existing Glue jobs that had a timeout value greater than 7 days
|
17014
|
+
# will be defaulted to 7 days. For instance if you have specified a
|
17015
|
+
# timeout of 20 days for a batch job, it will be stopped on the 7th
|
17016
|
+
# day.
|
17017
|
+
#
|
17018
|
+
# For streaming jobs, if you have set up a maintenance window, it will
|
17019
|
+
# be restarted during the maintenance window after 7 days.
|
16979
17020
|
# @return [Integer]
|
16980
17021
|
#
|
16981
17022
|
# @!attribute [rw] max_capacity
|
@@ -24005,6 +24046,9 @@ module Aws::Glue
|
|
24005
24046
|
# will be defaulted to 7 days. For instance if you have specified a
|
24006
24047
|
# timeout of 20 days for a batch job, it will be stopped on the 7th
|
24007
24048
|
# day.
|
24049
|
+
#
|
24050
|
+
# For streaming jobs, if you have set up a maintenance window, it will
|
24051
|
+
# be restarted during the maintenance window after 7 days.
|
24008
24052
|
# @return [Integer]
|
24009
24053
|
#
|
24010
24054
|
# @!attribute [rw] max_capacity
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.208.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|