aws-sdk-glue 1.256.0 → 1.258.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: ebc120c470649d3db3315adfde47d034b2de9e08311c0621056c208859ef077e
4
+ data.tar.gz: 54adaebc7526cfe6d0e9ef56b28e06178d71f7ff0965bdfc1fff25e76e653270
5
5
  SHA512:
6
- metadata.gz: 1ce2bf319a4c095db94466fff51d859b7b8c054af9a6486c68dc276db6dc340dd97c7f2c6bb58f74ccbd38b6a74a51777e4aa63aeff4a8ebee0fd457a9d47488
7
- data.tar.gz: eba95c506eedcf0f5606ae80d4eedcce192c50163d3cfcdfc587927657b1d0a06aefa5e42a4b3e5024ab91aa104f078f3173ee6c4407b63dc62850125b19436b
6
+ metadata.gz: 54eeeb6e4e712a0b0f098f0e27c30735f34d3e2ea0cbf88ed21fe6a190ec718734b6706ed74e5f3e84023c8b3e8a8e611e1952b1a74fad3fc604edb5d7269376
7
+ data.tar.gz: 224bc5f51e13447bfd6cdaf1bd0694b852a3b1c2c848c127ace45c327dad20bda53b63f44f6ce25d154f622235ac5910bf11e1d32600a2644a8b6b39d4d8650a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.258.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.257.0 (2026-05-14)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.256.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.256.0
1
+ 1.258.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.258.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.258.0'
58
58
 
59
59
  end
60
60