aws-sdk-glue 1.205.0 → 1.207.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +47 -8
- data/lib/aws-sdk-glue/client_api.rb +1 -0
- data/lib/aws-sdk-glue/types.rb +37 -14
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +4 -1
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8403c73a012d94f8f62e45c60701bc0f8d37bd7bd3cce18f39dc08809fbe7e2d
|
4
|
+
data.tar.gz: 1dd0ec59477428e1e04f4cdcf5cb52ffc41c5d1d7925e379f03764c900b90d6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
1
|
+
1.207.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -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
|
-
#
|
7186
|
-
#
|
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
|
-
#
|
17370
|
-
#
|
17371
|
-
#
|
17372
|
-
#
|
17373
|
-
#
|
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.
|
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"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -11111,9 +11111,21 @@ module Aws::Glue
|
|
11111
11111
|
# @return [Integer]
|
11112
11112
|
#
|
11113
11113
|
# @!attribute [rw] recursive
|
11114
|
-
#
|
11115
|
-
#
|
11116
|
-
#
|
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
|
-
#
|
16620
|
-
#
|
16621
|
-
#
|
16622
|
-
#
|
16623
|
-
#
|
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
|
-
#
|
23981
|
-
#
|
23982
|
-
#
|
23983
|
-
#
|
23984
|
-
#
|
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
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
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.
|
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:
|
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.
|
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.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|