aws-sdk-glue 1.256.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +9 -1
- data/lib/aws-sdk-glue/client_api.rb +1 -0
- data/lib/aws-sdk-glue/types.rb +11 -1
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
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,11 @@
|
|
|
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
|
+
|
|
4
9
|
1.256.0 (2026-05-13)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.257.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -6767,6 +6767,13 @@ module Aws::Glue
|
|
|
6767
6767
|
# When the `ParentCatalogId` is not equal to null, and this attribute is
|
|
6768
6768
|
# passed as `false` or `true`, an `InvalidInputException` is thrown.
|
|
6769
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
|
+
#
|
|
6770
6777
|
# @return [Types::GetCatalogsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6771
6778
|
#
|
|
6772
6779
|
# * {Types::GetCatalogsResponse#catalog_list #catalog_list} => Array<Types::Catalog>
|
|
@@ -6780,6 +6787,7 @@ module Aws::Glue
|
|
|
6780
6787
|
# max_results: 1,
|
|
6781
6788
|
# recursive: false,
|
|
6782
6789
|
# include_root: false,
|
|
6790
|
+
# has_databases: false,
|
|
6783
6791
|
# })
|
|
6784
6792
|
#
|
|
6785
6793
|
# @example Response structure
|
|
@@ -19055,7 +19063,7 @@ module Aws::Glue
|
|
|
19055
19063
|
tracer: tracer
|
|
19056
19064
|
)
|
|
19057
19065
|
context[:gem_name] = 'aws-sdk-glue'
|
|
19058
|
-
context[:gem_version] = '1.
|
|
19066
|
+
context[:gem_version] = '1.257.0'
|
|
19059
19067
|
Seahorse::Client::Request.new(handlers, context)
|
|
19060
19068
|
end
|
|
19061
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
|
@@ -12224,6 +12224,15 @@ module Aws::Glue
|
|
|
12224
12224
|
# thrown.
|
|
12225
12225
|
# @return [Boolean]
|
|
12226
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
|
+
#
|
|
12227
12236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetCatalogsRequest AWS API Documentation
|
|
12228
12237
|
#
|
|
12229
12238
|
class GetCatalogsRequest < Struct.new(
|
|
@@ -12231,7 +12240,8 @@ module Aws::Glue
|
|
|
12231
12240
|
:next_token,
|
|
12232
12241
|
:max_results,
|
|
12233
12242
|
:recursive,
|
|
12234
|
-
:include_root
|
|
12243
|
+
:include_root,
|
|
12244
|
+
:has_databases)
|
|
12235
12245
|
SENSITIVE = []
|
|
12236
12246
|
include Aws::Structure
|
|
12237
12247
|
end
|
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