aws-sdk-glue 1.255.0 → 1.257.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 +15 -5
- data/lib/aws-sdk-glue/client_api.rb +1 -0
- data/lib/aws-sdk-glue/types.rb +29 -13
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -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: 2842dda9cae8d81c653205c03a011e3e6bae3036a972babdc4407456626a34dc
|
|
4
|
+
data.tar.gz: e46093a181a21f4f1e67cc739ec8bd3d2896e82fb45a4bf4003413eb785020dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01ea4bfc465cf902201bd83b6c2a9a04520830f154bfac1ebcc88a4c759b6ade90e5856bab8eec6b6f2cb37407894e60ad68f15f44f3a3f06b745e799e130c8a
|
|
7
|
+
data.tar.gz: a411277bf62fbb6b2298414452af12836a172db22f4edd975d6134438cd40c2d91fa5e0eebbb30850c884f41f2402600663cc951215c6af9d9419d5eaca0cee1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.257.0 (2026-05-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Release --has-databases parameter for AWS Glue get-catalogs API, which filters catalog responses to include only those capable of containing databases, excluding parent catalogs that hold only other catalogs. Remove model-level validation on partition index list size for AWS Glue tables.
|
|
8
|
+
|
|
9
|
+
1.256.0 (2026-05-13)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* 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.
|
|
13
|
+
|
|
4
14
|
1.255.0 (2026-05-06)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.257.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
|
|
@@ -6766,6 +6767,13 @@ module Aws::Glue
|
|
|
6766
6767
|
# When the `ParentCatalogId` is not equal to null, and this attribute is
|
|
6767
6768
|
# passed as `false` or `true`, an `InvalidInputException` is thrown.
|
|
6768
6769
|
#
|
|
6770
|
+
# @option params [Boolean] :has_databases
|
|
6771
|
+
# When `true`, the response only includes catalogs that can contain
|
|
6772
|
+
# databases. Some catalogs are organizational containers that hold only
|
|
6773
|
+
# other catalogs, not databases. When this parameter is set to `true`,
|
|
6774
|
+
# those container-only catalogs are excluded, and only catalogs capable
|
|
6775
|
+
# of containing databases are returned. Defaults to `false`.
|
|
6776
|
+
#
|
|
6769
6777
|
# @return [Types::GetCatalogsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6770
6778
|
#
|
|
6771
6779
|
# * {Types::GetCatalogsResponse#catalog_list #catalog_list} => Array<Types::Catalog>
|
|
@@ -6779,6 +6787,7 @@ module Aws::Glue
|
|
|
6779
6787
|
# max_results: 1,
|
|
6780
6788
|
# recursive: false,
|
|
6781
6789
|
# include_root: false,
|
|
6790
|
+
# has_databases: false,
|
|
6782
6791
|
# })
|
|
6783
6792
|
#
|
|
6784
6793
|
# @example Response structure
|
|
@@ -16159,8 +16168,9 @@ module Aws::Glue
|
|
|
16159
16168
|
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
|
16160
16169
|
# Otherwise, the jobs will throw an exception.
|
|
16161
16170
|
#
|
|
16162
|
-
# When the value is left blank, the timeout is defaulted to
|
|
16163
|
-
# minutes.
|
|
16171
|
+
# When the value is left blank, the timeout is defaulted to 2,880
|
|
16172
|
+
# minutes for Glue version 4.0 and earlier, or 480 minutes for Glue
|
|
16173
|
+
# version 5.0 and later.
|
|
16164
16174
|
#
|
|
16165
16175
|
# Any existing Glue jobs that had a timeout value greater than 7 days
|
|
16166
16176
|
# will be defaulted to 7 days. For instance if you have specified a
|
|
@@ -19053,7 +19063,7 @@ module Aws::Glue
|
|
|
19053
19063
|
tracer: tracer
|
|
19054
19064
|
)
|
|
19055
19065
|
context[:gem_name] = 'aws-sdk-glue'
|
|
19056
|
-
context[:gem_version] = '1.
|
|
19066
|
+
context[:gem_version] = '1.257.0'
|
|
19057
19067
|
Seahorse::Client::Request.new(handlers, context)
|
|
19058
19068
|
end
|
|
19059
19069
|
|
|
@@ -4161,6 +4161,7 @@ module Aws::Glue
|
|
|
4161
4161
|
GetCatalogsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
|
|
4162
4162
|
GetCatalogsRequest.add_member(:recursive, Shapes::ShapeRef.new(shape: Boolean, location_name: "Recursive"))
|
|
4163
4163
|
GetCatalogsRequest.add_member(:include_root, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IncludeRoot"))
|
|
4164
|
+
GetCatalogsRequest.add_member(:has_databases, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "HasDatabases"))
|
|
4164
4165
|
GetCatalogsRequest.struct_class = Types::GetCatalogsRequest
|
|
4165
4166
|
|
|
4166
4167
|
GetCatalogsResponse.add_member(:catalog_list, Shapes::ShapeRef.new(shape: CatalogList, required: true, location_name: "CatalogList"))
|
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
|
|
@@ -12222,6 +12224,15 @@ module Aws::Glue
|
|
|
12222
12224
|
# thrown.
|
|
12223
12225
|
# @return [Boolean]
|
|
12224
12226
|
#
|
|
12227
|
+
# @!attribute [rw] has_databases
|
|
12228
|
+
# When `true`, the response only includes catalogs that can contain
|
|
12229
|
+
# databases. Some catalogs are organizational containers that hold
|
|
12230
|
+
# only other catalogs, not databases. When this parameter is set to
|
|
12231
|
+
# `true`, those container-only catalogs are excluded, and only
|
|
12232
|
+
# catalogs capable of containing databases are returned. Defaults to
|
|
12233
|
+
# `false`.
|
|
12234
|
+
# @return [Boolean]
|
|
12235
|
+
#
|
|
12225
12236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetCatalogsRequest AWS API Documentation
|
|
12226
12237
|
#
|
|
12227
12238
|
class GetCatalogsRequest < Struct.new(
|
|
@@ -12229,7 +12240,8 @@ module Aws::Glue
|
|
|
12229
12240
|
:next_token,
|
|
12230
12241
|
:max_results,
|
|
12231
12242
|
:recursive,
|
|
12232
|
-
:include_root
|
|
12243
|
+
:include_root,
|
|
12244
|
+
:has_databases)
|
|
12233
12245
|
SENSITIVE = []
|
|
12234
12246
|
include Aws::Structure
|
|
12235
12247
|
end
|
|
@@ -18139,8 +18151,9 @@ module Aws::Glue
|
|
|
18139
18151
|
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
|
18140
18152
|
# Otherwise, the jobs will throw an exception.
|
|
18141
18153
|
#
|
|
18142
|
-
# When the value is left blank, the timeout is defaulted to
|
|
18143
|
-
# minutes.
|
|
18154
|
+
# When the value is left blank, the timeout is defaulted to 2,880
|
|
18155
|
+
# minutes for Glue version 4.0 and earlier, or 480 minutes for Glue
|
|
18156
|
+
# version 5.0 and later.
|
|
18144
18157
|
#
|
|
18145
18158
|
# Any existing Glue jobs that had a timeout value greater than 7 days
|
|
18146
18159
|
# will be defaulted to 7 days. For instance if you have specified a
|
|
@@ -18581,8 +18594,9 @@ module Aws::Glue
|
|
|
18581
18594
|
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
|
18582
18595
|
# Otherwise, the jobs will throw an exception.
|
|
18583
18596
|
#
|
|
18584
|
-
# When the value is left blank, the timeout is defaulted to
|
|
18585
|
-
# minutes.
|
|
18597
|
+
# When the value is left blank, the timeout is defaulted to 2,880
|
|
18598
|
+
# minutes for Glue version 4.0 and earlier, or 480 minutes for Glue
|
|
18599
|
+
# version 5.0 and later.
|
|
18586
18600
|
#
|
|
18587
18601
|
# Any existing Glue jobs that had a timeout value greater than 7 days
|
|
18588
18602
|
# will be defaulted to 7 days. For instance if you have specified a
|
|
@@ -18934,8 +18948,9 @@ module Aws::Glue
|
|
|
18934
18948
|
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
|
18935
18949
|
# Otherwise, the jobs will throw an exception.
|
|
18936
18950
|
#
|
|
18937
|
-
# When the value is left blank, the timeout is defaulted to
|
|
18938
|
-
# minutes.
|
|
18951
|
+
# When the value is left blank, the timeout is defaulted to 2,880
|
|
18952
|
+
# minutes for Glue version 4.0 and earlier, or 480 minutes for Glue
|
|
18953
|
+
# version 5.0 and later.
|
|
18939
18954
|
#
|
|
18940
18955
|
# Any existing Glue jobs that had a timeout value greater than 7 days
|
|
18941
18956
|
# will be defaulted to 7 days. For instance if you have specified a
|
|
@@ -26863,8 +26878,9 @@ module Aws::Glue
|
|
|
26863
26878
|
# Jobs must have timeout values less than 7 days or 10080 minutes.
|
|
26864
26879
|
# Otherwise, the jobs will throw an exception.
|
|
26865
26880
|
#
|
|
26866
|
-
# When the value is left blank, the timeout is defaulted to
|
|
26867
|
-
# minutes.
|
|
26881
|
+
# When the value is left blank, the timeout is defaulted to 2,880
|
|
26882
|
+
# minutes for Glue version 4.0 and earlier, or 480 minutes for Glue
|
|
26883
|
+
# version 5.0 and later.
|
|
26868
26884
|
#
|
|
26869
26885
|
# Any existing Glue jobs that had a timeout value greater than 7 days
|
|
26870
26886
|
# 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
|
@@ -3617,7 +3617,8 @@ module Aws
|
|
|
3617
3617
|
?next_token: ::String,
|
|
3618
3618
|
?max_results: ::Integer,
|
|
3619
3619
|
?recursive: bool,
|
|
3620
|
-
?include_root: bool
|
|
3620
|
+
?include_root: bool,
|
|
3621
|
+
?has_databases: bool
|
|
3621
3622
|
) -> _GetCatalogsResponseSuccess
|
|
3622
3623
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCatalogsResponseSuccess
|
|
3623
3624
|
|
data/sig/types.rbs
CHANGED
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.257.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
|