aws-sdk-glue 1.205.0 → 1.206.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a79ccf20689c72fc8eee7128c0016c40e772235d8364efda282f5b3efcb50b8
4
- data.tar.gz: 05af768408fc91b1999c8ae5fb15206243b684c21341faa247627be58ff2605f
3
+ metadata.gz: 6cdaa08ce3d4bf42fbe09f63c1835e7928d760c18351a7fc301ba3e463de0ca1
4
+ data.tar.gz: f40bb8a599d9a023f93f6b70e24009856a393800e191c3353095a7f633a2b372
5
5
  SHA512:
6
- metadata.gz: 60123886b807ab1ff17e253b0d0ac57804a8bef9902c43cd3a4a1d78983942619b5493f4ec76c7ab6f3d85d276c0bb67c20812d5140bb50bdd8224242bb943c0
7
- data.tar.gz: 537a6f1e5b0a5507979cf661192a98370311e6af7fb4c4e455f5ddfcc4df3df4d9984809f8cd00b489ff8e1f028e393148ab41b97af368e38410f3143fcf8631
6
+ metadata.gz: 908c759b733de211f38287596a8af04e9e5ca83340b8e90c6d4acd71b7bcabfed08991ab9fd4f5f63dbbe2ea2a7f06cd25a292ee422cdfbdad615f19dc196140
7
+ data.tar.gz: 89ed5fa5e0188c80cb1b6fac5309bd4ff7ed71d1e33f27c8286560a00199d8b60ed360856b09f0ccad5c6827a5e51c744b6deb9dabcd9faae579e2b9ff6f6aac
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.206.0 (2024-12-23)
5
+ ------------------
6
+
7
+ * Feature - Add IncludeRoot parameters to GetCatalogs API to return root catalog.
8
+
4
9
  1.205.0 (2024-12-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.205.0
1
+ 1.206.0
@@ -7182,8 +7182,19 @@ module Aws::Glue
7182
7182
  # The maximum number of catalogs to return in one response.
7183
7183
  #
7184
7184
  # @option params [Boolean] :recursive
7185
- # When specified as true, iterates through the account and returns all
7186
- # catalog resources (including top-level resources and child resources)
7185
+ # Whether to list all catalogs across the catalog hierarchy, starting
7186
+ # from the `ParentCatalogId`. Defaults to `false` . When `true`, all
7187
+ # catalog objects in the `ParentCatalogID` hierarchy are enumerated in
7188
+ # the response.
7189
+ #
7190
+ # @option params [Boolean] :include_root
7191
+ # Whether to list the default catalog in the account and region in the
7192
+ # response. Defaults to `false`. When `true` and `ParentCatalogId = NULL
7193
+ # | Amazon Web Services Account ID`, all catalogs and the default
7194
+ # catalog are enumerated in the response.
7195
+ #
7196
+ # When the `ParentCatalogId` is not equal to null, and this attribute is
7197
+ # passed as `false` or `true`, an `InvalidInputException` is thrown.
7187
7198
  #
7188
7199
  # @return [Types::GetCatalogsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7189
7200
  #
@@ -7197,6 +7208,7 @@ module Aws::Glue
7197
7208
  # next_token: "Token",
7198
7209
  # max_results: 1,
7199
7210
  # recursive: false,
7211
+ # include_root: false,
7200
7212
  # })
7201
7213
  #
7202
7214
  # @example Response structure
@@ -17366,11 +17378,15 @@ module Aws::Glue
17366
17378
  # run can consume resources before it is terminated and enters `TIMEOUT`
17367
17379
  # status. This value overrides the timeout value set in the parent job.
17368
17380
  #
17369
- # Streaming jobs must have timeout values less than 7 days or 10080
17370
- # minutes. When the value is left blank, the job will be restarted after
17371
- # 7 days based if you have not setup a maintenance window. If you have
17372
- # setup maintenance window, it will be restarted during the maintenance
17373
- # window after 7 days.
17381
+ # Jobs must have timeout values less than 7 days or 10080 minutes.
17382
+ # Otherwise, the jobs will throw an exception.
17383
+ #
17384
+ # When the value is left blank, the timeout is defaulted to 2880
17385
+ # minutes.
17386
+ #
17387
+ # Any existing Glue jobs that had a timeout value greater than 7 days
17388
+ # will be defaulted to 7 days. For instance if you have specified a
17389
+ # timeout of 20 days for a batch job, it will be stopped on the 7th day.
17374
17390
  #
17375
17391
  # @option params [Float] :max_capacity
17376
17392
  # For Glue version 1.0 or earlier jobs, using the standard worker type,
@@ -20032,7 +20048,7 @@ module Aws::Glue
20032
20048
  tracer: tracer
20033
20049
  )
20034
20050
  context[:gem_name] = 'aws-sdk-glue'
20035
- context[:gem_version] = '1.205.0'
20051
+ context[:gem_version] = '1.206.0'
20036
20052
  Seahorse::Client::Request.new(handlers, context)
20037
20053
  end
20038
20054
 
@@ -3801,6 +3801,7 @@ module Aws::Glue
3801
3801
  GetCatalogsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
3802
3802
  GetCatalogsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
3803
3803
  GetCatalogsRequest.add_member(:recursive, Shapes::ShapeRef.new(shape: Boolean, location_name: "Recursive"))
3804
+ GetCatalogsRequest.add_member(:include_root, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IncludeRoot"))
3804
3805
  GetCatalogsRequest.struct_class = Types::GetCatalogsRequest
3805
3806
 
3806
3807
  GetCatalogsResponse.add_member(:catalog_list, Shapes::ShapeRef.new(shape: CatalogList, required: true, location_name: "CatalogList"))
@@ -11111,9 +11111,21 @@ module Aws::Glue
11111
11111
  # @return [Integer]
11112
11112
  #
11113
11113
  # @!attribute [rw] recursive
11114
- # When specified as true, iterates through the account and returns all
11115
- # catalog resources (including top-level resources and child
11116
- # resources)
11114
+ # Whether to list all catalogs across the catalog hierarchy, starting
11115
+ # from the `ParentCatalogId`. Defaults to `false` . When `true`, all
11116
+ # catalog objects in the `ParentCatalogID` hierarchy are enumerated in
11117
+ # the response.
11118
+ # @return [Boolean]
11119
+ #
11120
+ # @!attribute [rw] include_root
11121
+ # Whether to list the default catalog in the account and region in the
11122
+ # response. Defaults to `false`. When `true` and `ParentCatalogId =
11123
+ # NULL | Amazon Web Services Account ID`, all catalogs and the default
11124
+ # catalog are enumerated in the response.
11125
+ #
11126
+ # When the `ParentCatalogId` is not equal to null, and this attribute
11127
+ # is passed as `false` or `true`, an `InvalidInputException` is
11128
+ # thrown.
11117
11129
  # @return [Boolean]
11118
11130
  #
11119
11131
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetCatalogsRequest AWS API Documentation
@@ -11122,7 +11134,8 @@ module Aws::Glue
11122
11134
  :parent_catalog_id,
11123
11135
  :next_token,
11124
11136
  :max_results,
11125
- :recursive)
11137
+ :recursive,
11138
+ :include_root)
11126
11139
  SENSITIVE = []
11127
11140
  include Aws::Structure
11128
11141
  end
@@ -16616,11 +16629,16 @@ module Aws::Glue
16616
16629
  # `TIMEOUT` status. This value overrides the timeout value set in the
16617
16630
  # parent job.
16618
16631
  #
16619
- # Streaming jobs must have timeout values less than 7 days or 10080
16620
- # minutes. When the value is left blank, the job will be restarted
16621
- # after 7 days based if you have not setup a maintenance window. If
16622
- # you have setup maintenance window, it will be restarted during the
16623
- # maintenance window after 7 days.
16632
+ # Jobs must have timeout values less than 7 days or 10080 minutes.
16633
+ # Otherwise, the jobs will throw an exception.
16634
+ #
16635
+ # When the value is left blank, the timeout is defaulted to 2880
16636
+ # minutes.
16637
+ #
16638
+ # Any existing Glue jobs that had a timeout value greater than 7 days
16639
+ # will be defaulted to 7 days. For instance if you have specified a
16640
+ # timeout of 20 days for a batch job, it will be stopped on the 7th
16641
+ # day.
16624
16642
  # @return [Integer]
16625
16643
  #
16626
16644
  # @!attribute [rw] max_capacity
@@ -23977,11 +23995,16 @@ module Aws::Glue
23977
23995
  # `TIMEOUT` status. This value overrides the timeout value set in the
23978
23996
  # parent job.
23979
23997
  #
23980
- # Streaming jobs must have timeout values less than 7 days or 10080
23981
- # minutes. When the value is left blank, the job will be restarted
23982
- # after 7 days based if you have not setup a maintenance window. If
23983
- # you have setup maintenance window, it will be restarted during the
23984
- # maintenance window after 7 days.
23998
+ # Jobs must have timeout values less than 7 days or 10080 minutes.
23999
+ # Otherwise, the jobs will throw an exception.
24000
+ #
24001
+ # When the value is left blank, the timeout is defaulted to 2880
24002
+ # minutes.
24003
+ #
24004
+ # Any existing Glue jobs that had a timeout value greater than 7 days
24005
+ # will be defaulted to 7 days. For instance if you have specified a
24006
+ # timeout of 20 days for a batch job, it will be stopped on the 7th
24007
+ # day.
23985
24008
  # @return [Integer]
23986
24009
  #
23987
24010
  # @!attribute [rw] max_capacity
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.205.0'
57
+ GEM_VERSION = '1.206.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -3165,7 +3165,8 @@ module Aws
3165
3165
  ?parent_catalog_id: ::String,
3166
3166
  ?next_token: ::String,
3167
3167
  ?max_results: ::Integer,
3168
- ?recursive: bool
3168
+ ?recursive: bool,
3169
+ ?include_root: bool
3169
3170
  ) -> _GetCatalogsResponseSuccess
3170
3171
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCatalogsResponseSuccess
3171
3172
 
data/sig/types.rbs CHANGED
@@ -2705,6 +2705,7 @@ module Aws::Glue
2705
2705
  attr_accessor next_token: ::String
2706
2706
  attr_accessor max_results: ::Integer
2707
2707
  attr_accessor recursive: bool
2708
+ attr_accessor include_root: bool
2708
2709
  SENSITIVE: []
2709
2710
  end
2710
2711
 
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.205.0
4
+ version: 1.206.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: 2024-12-12 00:00:00.000000000 Z
11
+ date: 2024-12-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core