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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 581ebba0ed4563f9561e4e73f25dd72b59f02dac19f6bad8146371906030d75b
4
- data.tar.gz: fcf0617b7443964df1a51e903e8e84545d16f97d5b713eaf728b8314c59ff090
3
+ metadata.gz: 2842dda9cae8d81c653205c03a011e3e6bae3036a972babdc4407456626a34dc
4
+ data.tar.gz: e46093a181a21f4f1e67cc739ec8bd3d2896e82fb45a4bf4003413eb785020dc
5
5
  SHA512:
6
- metadata.gz: 1ce2bf319a4c095db94466fff51d859b7b8c054af9a6486c68dc276db6dc340dd97c7f2c6bb58f74ccbd38b6a74a51777e4aa63aeff4a8ebee0fd457a9d47488
7
- data.tar.gz: eba95c506eedcf0f5606ae80d4eedcce192c50163d3cfcdfc587927657b1d0a06aefa5e42a4b3e5024ab91aa104f078f3173ee6c4407b63dc62850125b19436b
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.256.0
1
+ 1.257.0
@@ -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.256.0'
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"))
@@ -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
@@ -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.256.0'
57
+ GEM_VERSION = '1.257.0'
58
58
 
59
59
  end
60
60
 
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
@@ -2958,6 +2958,7 @@ module Aws::Glue
2958
2958
  attr_accessor max_results: ::Integer
2959
2959
  attr_accessor recursive: bool
2960
2960
  attr_accessor include_root: bool
2961
+ attr_accessor has_databases: bool
2961
2962
  SENSITIVE: []
2962
2963
  end
2963
2964
 
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.256.0
4
+ version: 1.257.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services