aws-sdk-glue 1.207.0 → 1.208.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +19 -9
- data/lib/aws-sdk-glue/types.rb +66 -22
- data/lib/aws-sdk-glue.rb +1 -1
- metadata +2 -2
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
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.208.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -4044,13 +4044,20 @@ module Aws::Glue
|
|
4044
4044
|
# @option params [Integer] :timeout
|
4045
4045
|
# The job timeout in minutes. This is the maximum time that a job run
|
4046
4046
|
# can consume resources before it is terminated and enters `TIMEOUT`
|
4047
|
-
# status.
|
4047
|
+
# status.
|
4048
4048
|
#
|
4049
|
-
#
|
4050
|
-
#
|
4051
|
-
#
|
4052
|
-
#
|
4053
|
-
#
|
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.
|
4054
|
+
#
|
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.
|
4054
4061
|
#
|
4055
4062
|
# @option params [Float] :max_capacity
|
4056
4063
|
# For Glue version 1.0 or earlier jobs, using the standard worker type,
|
@@ -4897,8 +4904,8 @@ module Aws::Glue
|
|
4897
4904
|
#
|
4898
4905
|
# @option params [Integer] :timeout
|
4899
4906
|
# The number of minutes before session times out. Default for Spark ETL
|
4900
|
-
# jobs is 48 hours (2880 minutes)
|
4901
|
-
# job
|
4907
|
+
# jobs is 48 hours (2880 minutes). Consult the documentation for other
|
4908
|
+
# job types.
|
4902
4909
|
#
|
4903
4910
|
# @option params [Integer] :idle_timeout
|
4904
4911
|
# The number of minutes when idle before session times out. Default for
|
@@ -17411,6 +17418,9 @@ module Aws::Glue
|
|
17411
17418
|
# will be defaulted to 7 days. For instance if you have specified a
|
17412
17419
|
# timeout of 20 days for a batch job, it will be stopped on the 7th day.
|
17413
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
|
+
#
|
17414
17424
|
# @option params [Float] :max_capacity
|
17415
17425
|
# For Glue version 1.0 or earlier jobs, using the standard worker type,
|
17416
17426
|
# the number of Glue data processing units (DPUs) that can be allocated
|
@@ -20071,7 +20081,7 @@ module Aws::Glue
|
|
20071
20081
|
tracer: tracer
|
20072
20082
|
)
|
20073
20083
|
context[:gem_name] = 'aws-sdk-glue'
|
20074
|
-
context[:gem_version] = '1.
|
20084
|
+
context[:gem_version] = '1.208.0'
|
20075
20085
|
Seahorse::Client::Request.new(handlers, context)
|
20076
20086
|
end
|
20077
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
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: 2025-01-
|
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
|