aws-sdk-glue 1.182.0 → 1.184.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +16 -1
- data/lib/aws-sdk-glue/client_api.rb +5 -0
- data/lib/aws-sdk-glue/types.rb +8 -1
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +3 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +1 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a06b277dceedc1f91726efa911956ed34cc26d7ddcb87e1edf46f8ab714c9d80
|
4
|
+
data.tar.gz: d0aa990e09ad248564d98730f1f653563ec6af78f34a5b5f94e83c44771163f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 79ed6413d811b3541622a5fcfc2648f4a96aa20207e75f03fec857439d5060e24024887f20f0adb5b49b66b2705c3e922cbf42b3bb7a22ba25f62288cf9facfe
|
7
|
+
data.tar.gz: 5fc1c64e9ce7eaaa24bf6024136da3cb07d0b1e794fb44c6411339835a62caa1cc40a0b902859987e6583031c1529ce44ac58429b2f7586f7702e709b608c8c5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.184.0 (2024-07-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.183.0 (2024-06-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added AttributesToGet parameter to Glue GetDatabases, allowing caller to limit output to include only the database name.
|
13
|
+
|
4
14
|
1.182.0 (2024-06-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.184.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -312,6 +312,15 @@ module Aws::Glue
|
|
312
312
|
#
|
313
313
|
# @option options [String] :session_token
|
314
314
|
#
|
315
|
+
# @option options [Array] :sigv4a_signing_region_set
|
316
|
+
# A list of regions that should be signed with SigV4a signing. When
|
317
|
+
# not passed, a default `:sigv4a_signing_region_set` is searched for
|
318
|
+
# in the following locations:
|
319
|
+
#
|
320
|
+
# * `Aws.config[:sigv4a_signing_region_set]`
|
321
|
+
# * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
|
322
|
+
# * `~/.aws/config`
|
323
|
+
#
|
315
324
|
# @option options [Boolean] :simple_json (false)
|
316
325
|
# Disables request parameter conversion, validation, and formatting.
|
317
326
|
# Also disables response data type conversions. The request parameters
|
@@ -7267,6 +7276,11 @@ module Aws::Glue
|
|
7267
7276
|
# * If set to `ALL`, will list the databases shared with your account,
|
7268
7277
|
# as well as the databases in yor local account.
|
7269
7278
|
#
|
7279
|
+
# @option params [Array<String>] :attributes_to_get
|
7280
|
+
# Specifies the database fields returned by the `GetDatabases` call.
|
7281
|
+
# This parameter doesn’t accept an empty list. The request must include
|
7282
|
+
# the `NAME`.
|
7283
|
+
#
|
7270
7284
|
# @return [Types::GetDatabasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7271
7285
|
#
|
7272
7286
|
# * {Types::GetDatabasesResponse#database_list #database_list} => Array<Types::Database>
|
@@ -7281,6 +7295,7 @@ module Aws::Glue
|
|
7281
7295
|
# next_token: "Token",
|
7282
7296
|
# max_results: 1,
|
7283
7297
|
# resource_share_type: "FOREIGN", # accepts FOREIGN, ALL, FEDERATED
|
7298
|
+
# attributes_to_get: ["NAME"], # accepts NAME
|
7284
7299
|
# })
|
7285
7300
|
#
|
7286
7301
|
# @example Response structure
|
@@ -17553,7 +17568,7 @@ module Aws::Glue
|
|
17553
17568
|
params: params,
|
17554
17569
|
config: config)
|
17555
17570
|
context[:gem_name] = 'aws-sdk-glue'
|
17556
|
-
context[:gem_version] = '1.
|
17571
|
+
context[:gem_version] = '1.184.0'
|
17557
17572
|
Seahorse::Client::Request.new(handlers, context)
|
17558
17573
|
end
|
17559
17574
|
|
@@ -361,6 +361,8 @@ module Aws::Glue
|
|
361
361
|
DataSource = Shapes::StructureShape.new(name: 'DataSource')
|
362
362
|
DataSourceMap = Shapes::MapShape.new(name: 'DataSourceMap')
|
363
363
|
Database = Shapes::StructureShape.new(name: 'Database')
|
364
|
+
DatabaseAttributes = Shapes::StringShape.new(name: 'DatabaseAttributes')
|
365
|
+
DatabaseAttributesList = Shapes::ListShape.new(name: 'DatabaseAttributesList')
|
364
366
|
DatabaseIdentifier = Shapes::StructureShape.new(name: 'DatabaseIdentifier')
|
365
367
|
DatabaseInput = Shapes::StructureShape.new(name: 'DatabaseInput')
|
366
368
|
DatabaseList = Shapes::ListShape.new(name: 'DatabaseList')
|
@@ -2667,6 +2669,8 @@ module Aws::Glue
|
|
2667
2669
|
Database.add_member(:federated_database, Shapes::ShapeRef.new(shape: FederatedDatabase, location_name: "FederatedDatabase"))
|
2668
2670
|
Database.struct_class = Types::Database
|
2669
2671
|
|
2672
|
+
DatabaseAttributesList.member = Shapes::ShapeRef.new(shape: DatabaseAttributes)
|
2673
|
+
|
2670
2674
|
DatabaseIdentifier.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
|
2671
2675
|
DatabaseIdentifier.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, location_name: "DatabaseName"))
|
2672
2676
|
DatabaseIdentifier.add_member(:region, Shapes::ShapeRef.new(shape: NameString, location_name: "Region"))
|
@@ -3360,6 +3364,7 @@ module Aws::Glue
|
|
3360
3364
|
GetDatabasesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
|
3361
3365
|
GetDatabasesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CatalogGetterPageSize, location_name: "MaxResults"))
|
3362
3366
|
GetDatabasesRequest.add_member(:resource_share_type, Shapes::ShapeRef.new(shape: ResourceShareType, location_name: "ResourceShareType"))
|
3367
|
+
GetDatabasesRequest.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: DatabaseAttributesList, location_name: "AttributesToGet"))
|
3363
3368
|
GetDatabasesRequest.struct_class = Types::GetDatabasesRequest
|
3364
3369
|
|
3365
3370
|
GetDatabasesResponse.add_member(:database_list, Shapes::ShapeRef.new(shape: DatabaseList, required: true, location_name: "DatabaseList"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -10237,13 +10237,20 @@ module Aws::Glue
|
|
10237
10237
|
# as well as the databases in yor local account.
|
10238
10238
|
# @return [String]
|
10239
10239
|
#
|
10240
|
+
# @!attribute [rw] attributes_to_get
|
10241
|
+
# Specifies the database fields returned by the `GetDatabases` call.
|
10242
|
+
# This parameter doesn’t accept an empty list. The request must
|
10243
|
+
# include the `NAME`.
|
10244
|
+
# @return [Array<String>]
|
10245
|
+
#
|
10240
10246
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDatabasesRequest AWS API Documentation
|
10241
10247
|
#
|
10242
10248
|
class GetDatabasesRequest < Struct.new(
|
10243
10249
|
:catalog_id,
|
10244
10250
|
:next_token,
|
10245
10251
|
:max_results,
|
10246
|
-
:resource_share_type
|
10252
|
+
:resource_share_type,
|
10253
|
+
:attributes_to_get)
|
10247
10254
|
SENSITIVE = []
|
10248
10255
|
include Aws::Structure
|
10249
10256
|
end
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -48,6 +48,7 @@ module Aws
|
|
48
48
|
?sdk_ua_app_id: String,
|
49
49
|
?secret_access_key: String,
|
50
50
|
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
51
52
|
?simple_json: bool,
|
52
53
|
?stub_responses: untyped,
|
53
54
|
?token_provider: untyped,
|
@@ -3075,7 +3076,8 @@ module Aws
|
|
3075
3076
|
?catalog_id: ::String,
|
3076
3077
|
?next_token: ::String,
|
3077
3078
|
?max_results: ::Integer,
|
3078
|
-
?resource_share_type: ("FOREIGN" | "ALL" | "FEDERATED")
|
3079
|
+
?resource_share_type: ("FOREIGN" | "ALL" | "FEDERATED"),
|
3080
|
+
?attributes_to_get: Array[("NAME")]
|
3079
3081
|
) -> _GetDatabasesResponseSuccess
|
3080
3082
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDatabasesResponseSuccess
|
3081
3083
|
|
data/sig/resource.rbs
CHANGED
data/sig/types.rbs
CHANGED
@@ -2536,6 +2536,7 @@ module Aws::Glue
|
|
2536
2536
|
attr_accessor next_token: ::String
|
2537
2537
|
attr_accessor max_results: ::Integer
|
2538
2538
|
attr_accessor resource_share_type: ("FOREIGN" | "ALL" | "FEDERATED")
|
2539
|
+
attr_accessor attributes_to_get: ::Array[("NAME")]
|
2539
2540
|
SENSITIVE: []
|
2540
2541
|
end
|
2541
2542
|
|
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.184.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-
|
11
|
+
date: 2024-07-02 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.201.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.201.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for AWS Glue. This gem is part of the AWS SDK for
|
48
48
|
Ruby.
|
49
49
|
email:
|