aws-sdk-glue 1.205.0 → 1.207.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: 8403c73a012d94f8f62e45c60701bc0f8d37bd7bd3cce18f39dc08809fbe7e2d
4
+ data.tar.gz: 1dd0ec59477428e1e04f4cdcf5cb52ffc41c5d1d7925e379f03764c900b90d6a
5
5
  SHA512:
6
- metadata.gz: 60123886b807ab1ff17e253b0d0ac57804a8bef9902c43cd3a4a1d78983942619b5493f4ec76c7ab6f3d85d276c0bb67c20812d5140bb50bdd8224242bb943c0
7
- data.tar.gz: 537a6f1e5b0a5507979cf661192a98370311e6af7fb4c4e455f5ddfcc4df3df4d9984809f8cd00b489ff8e1f028e393148ab41b97af368e38410f3143fcf8631
6
+ metadata.gz: 04d3d8c79e4321c973345acb6f00bc395e901f6622edfd25b6e4b9018af0105949437a45f9454d40fc9f29d797d38d297214d955feba5655ba269dd62179d5d8
7
+ data.tar.gz: 8a3bceaa533daeef0e5260ffab55b2144865b64a7c69f5289ed1205b62fb8751ec23fe040006f371daee6142a0cfb097e836485d0a83d4542d40924ee833206a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.207.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.206.0 (2024-12-23)
10
+ ------------------
11
+
12
+ * Feature - Add IncludeRoot parameters to GetCatalogs API to return root catalog.
13
+
4
14
  1.205.0 (2024-12-12)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.205.0
1
+ 1.207.0
@@ -257,11 +257,34 @@ module Aws::Glue
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -7182,8 +7205,19 @@ module Aws::Glue
7182
7205
  # The maximum number of catalogs to return in one response.
7183
7206
  #
7184
7207
  # @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)
7208
+ # Whether to list all catalogs across the catalog hierarchy, starting
7209
+ # from the `ParentCatalogId`. Defaults to `false` . When `true`, all
7210
+ # catalog objects in the `ParentCatalogID` hierarchy are enumerated in
7211
+ # the response.
7212
+ #
7213
+ # @option params [Boolean] :include_root
7214
+ # Whether to list the default catalog in the account and region in the
7215
+ # response. Defaults to `false`. When `true` and `ParentCatalogId = NULL
7216
+ # | Amazon Web Services Account ID`, all catalogs and the default
7217
+ # catalog are enumerated in the response.
7218
+ #
7219
+ # When the `ParentCatalogId` is not equal to null, and this attribute is
7220
+ # passed as `false` or `true`, an `InvalidInputException` is thrown.
7187
7221
  #
7188
7222
  # @return [Types::GetCatalogsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7189
7223
  #
@@ -7197,6 +7231,7 @@ module Aws::Glue
7197
7231
  # next_token: "Token",
7198
7232
  # max_results: 1,
7199
7233
  # recursive: false,
7234
+ # include_root: false,
7200
7235
  # })
7201
7236
  #
7202
7237
  # @example Response structure
@@ -17366,11 +17401,15 @@ module Aws::Glue
17366
17401
  # run can consume resources before it is terminated and enters `TIMEOUT`
17367
17402
  # status. This value overrides the timeout value set in the parent job.
17368
17403
  #
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.
17404
+ # Jobs must have timeout values less than 7 days or 10080 minutes.
17405
+ # Otherwise, the jobs will throw an exception.
17406
+ #
17407
+ # When the value is left blank, the timeout is defaulted to 2880
17408
+ # minutes.
17409
+ #
17410
+ # Any existing Glue jobs that had a timeout value greater than 7 days
17411
+ # will be defaulted to 7 days. For instance if you have specified a
17412
+ # timeout of 20 days for a batch job, it will be stopped on the 7th day.
17374
17413
  #
17375
17414
  # @option params [Float] :max_capacity
17376
17415
  # For Glue version 1.0 or earlier jobs, using the standard worker type,
@@ -20032,7 +20071,7 @@ module Aws::Glue
20032
20071
  tracer: tracer
20033
20072
  )
20034
20073
  context[:gem_name] = 'aws-sdk-glue'
20035
- context[:gem_version] = '1.205.0'
20074
+ context[:gem_version] = '1.207.0'
20036
20075
  Seahorse::Client::Request.new(handlers, context)
20037
20076
  end
20038
20077
 
@@ -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.207.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -3165,7 +3167,8 @@ module Aws
3165
3167
  ?parent_catalog_id: ::String,
3166
3168
  ?next_token: ::String,
3167
3169
  ?max_results: ::Integer,
3168
- ?recursive: bool
3170
+ ?recursive: bool,
3171
+ ?include_root: bool
3169
3172
  ) -> _GetCatalogsResponseSuccess
3170
3173
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCatalogsResponseSuccess
3171
3174
 
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
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.207.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: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement