aws-sdk-glue 1.188.0 → 1.189.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +13 -1
- data/lib/aws-sdk-glue/client_api.rb +5 -0
- data/lib/aws-sdk-glue/types.rb +14 -1
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 00a0acbb9dd997eabc7954b868a9e6083132abb0101679807fc407cd3377dbdc
|
|
4
|
+
data.tar.gz: ecd9280466a5d0cef4b9a81c5ad2c5acd7880855d3fb5153779d23399465acd6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 949ce7706bc7e18bb77d0c045312c3716df798959578b05fa0d5f984eec830bef3cb9b8a99a0d4080bea48d98f4c43597d2addbe823e41442b149df7f8b6b396
|
|
7
|
+
data.tar.gz: ddd6173950c41cc08df2572bf4a355f0b3a1a9336d4df5b077b236480df9b36aef7f82b7ff845d52386cf4d91765cd2a68f51e6b0700b3da7232af4115f19254
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.189.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -11657,6 +11657,17 @@ module Aws::Glue
|
|
|
11657
11657
|
# Specifies whether to include status details related to a request to
|
|
11658
11658
|
# create or update an Glue Data Catalog view.
|
|
11659
11659
|
#
|
|
11660
|
+
# @option params [Array<String>] :attributes_to_get
|
|
11661
|
+
# Specifies the table fields returned by the `GetTables` call. This
|
|
11662
|
+
# parameter doesn’t accept an empty list. The request must include
|
|
11663
|
+
# `NAME`.
|
|
11664
|
+
#
|
|
11665
|
+
# The following are the valid combinations of values:
|
|
11666
|
+
#
|
|
11667
|
+
# * `NAME` - Names of all tables in the database.
|
|
11668
|
+
#
|
|
11669
|
+
# * `NAME`, `TABLE_TYPE` - Names of all tables and the table types.
|
|
11670
|
+
#
|
|
11660
11671
|
# @return [Types::GetTablesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
11661
11672
|
#
|
|
11662
11673
|
# * {Types::GetTablesResponse#table_list #table_list} => Array<Types::Table>
|
|
@@ -11675,6 +11686,7 @@ module Aws::Glue
|
|
|
11675
11686
|
# transaction_id: "TransactionIdString",
|
|
11676
11687
|
# query_as_of_time: Time.now,
|
|
11677
11688
|
# include_status_details: false,
|
|
11689
|
+
# attributes_to_get: ["NAME"], # accepts NAME, TABLE_TYPE
|
|
11678
11690
|
# })
|
|
11679
11691
|
#
|
|
11680
11692
|
# @example Response structure
|
|
@@ -18004,7 +18016,7 @@ module Aws::Glue
|
|
|
18004
18016
|
params: params,
|
|
18005
18017
|
config: config)
|
|
18006
18018
|
context[:gem_name] = 'aws-sdk-glue'
|
|
18007
|
-
context[:gem_version] = '1.
|
|
18019
|
+
context[:gem_version] = '1.189.0'
|
|
18008
18020
|
Seahorse::Client::Request.new(handlers, context)
|
|
18009
18021
|
end
|
|
18010
18022
|
|
|
@@ -1164,6 +1164,8 @@ module Aws::Glue
|
|
|
1164
1164
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
|
1165
1165
|
SupportedDialect = Shapes::StructureShape.new(name: 'SupportedDialect')
|
|
1166
1166
|
Table = Shapes::StructureShape.new(name: 'Table')
|
|
1167
|
+
TableAttributes = Shapes::StringShape.new(name: 'TableAttributes')
|
|
1168
|
+
TableAttributesList = Shapes::ListShape.new(name: 'TableAttributesList')
|
|
1167
1169
|
TableError = Shapes::StructureShape.new(name: 'TableError')
|
|
1168
1170
|
TableErrors = Shapes::ListShape.new(name: 'TableErrors')
|
|
1169
1171
|
TableIdentifier = Shapes::StructureShape.new(name: 'TableIdentifier')
|
|
@@ -3813,6 +3815,7 @@ module Aws::Glue
|
|
|
3813
3815
|
GetTablesRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: TransactionIdString, location_name: "TransactionId"))
|
|
3814
3816
|
GetTablesRequest.add_member(:query_as_of_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "QueryAsOfTime"))
|
|
3815
3817
|
GetTablesRequest.add_member(:include_status_details, Shapes::ShapeRef.new(shape: BooleanNullable, location_name: "IncludeStatusDetails"))
|
|
3818
|
+
GetTablesRequest.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: TableAttributesList, location_name: "AttributesToGet"))
|
|
3816
3819
|
GetTablesRequest.struct_class = Types::GetTablesRequest
|
|
3817
3820
|
|
|
3818
3821
|
GetTablesResponse.add_member(:table_list, Shapes::ShapeRef.new(shape: TableList, location_name: "TableList"))
|
|
@@ -5751,6 +5754,8 @@ module Aws::Glue
|
|
|
5751
5754
|
Table.add_member(:status, Shapes::ShapeRef.new(shape: TableStatus, location_name: "Status"))
|
|
5752
5755
|
Table.struct_class = Types::Table
|
|
5753
5756
|
|
|
5757
|
+
TableAttributesList.member = Shapes::ShapeRef.new(shape: TableAttributes)
|
|
5758
|
+
|
|
5754
5759
|
TableError.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, location_name: "TableName"))
|
|
5755
5760
|
TableError.add_member(:error_detail, Shapes::ShapeRef.new(shape: ErrorDetail, location_name: "ErrorDetail"))
|
|
5756
5761
|
TableError.struct_class = Types::TableError
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -12223,6 +12223,18 @@ module Aws::Glue
|
|
|
12223
12223
|
# create or update an Glue Data Catalog view.
|
|
12224
12224
|
# @return [Boolean]
|
|
12225
12225
|
#
|
|
12226
|
+
# @!attribute [rw] attributes_to_get
|
|
12227
|
+
# Specifies the table fields returned by the `GetTables` call. This
|
|
12228
|
+
# parameter doesn’t accept an empty list. The request must include
|
|
12229
|
+
# `NAME`.
|
|
12230
|
+
#
|
|
12231
|
+
# The following are the valid combinations of values:
|
|
12232
|
+
#
|
|
12233
|
+
# * `NAME` - Names of all tables in the database.
|
|
12234
|
+
#
|
|
12235
|
+
# * `NAME`, `TABLE_TYPE` - Names of all tables and the table types.
|
|
12236
|
+
# @return [Array<String>]
|
|
12237
|
+
#
|
|
12226
12238
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTablesRequest AWS API Documentation
|
|
12227
12239
|
#
|
|
12228
12240
|
class GetTablesRequest < Struct.new(
|
|
@@ -12233,7 +12245,8 @@ module Aws::Glue
|
|
|
12233
12245
|
:max_results,
|
|
12234
12246
|
:transaction_id,
|
|
12235
12247
|
:query_as_of_time,
|
|
12236
|
-
:include_status_details
|
|
12248
|
+
:include_status_details,
|
|
12249
|
+
:attributes_to_get)
|
|
12237
12250
|
SENSITIVE = []
|
|
12238
12251
|
include Aws::Structure
|
|
12239
12252
|
end
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -3741,7 +3741,8 @@ module Aws
|
|
|
3741
3741
|
?max_results: ::Integer,
|
|
3742
3742
|
?transaction_id: ::String,
|
|
3743
3743
|
?query_as_of_time: ::Time,
|
|
3744
|
-
?include_status_details: bool
|
|
3744
|
+
?include_status_details: bool,
|
|
3745
|
+
?attributes_to_get: Array[("NAME" | "TABLE_TYPE")]
|
|
3745
3746
|
) -> _GetTablesResponseSuccess
|
|
3746
3747
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTablesResponseSuccess
|
|
3747
3748
|
|
data/sig/types.rbs
CHANGED
|
@@ -3075,6 +3075,7 @@ module Aws::Glue
|
|
|
3075
3075
|
attr_accessor transaction_id: ::String
|
|
3076
3076
|
attr_accessor query_as_of_time: ::Time
|
|
3077
3077
|
attr_accessor include_status_details: bool
|
|
3078
|
+
attr_accessor attributes_to_get: ::Array[("NAME" | "TABLE_TYPE")]
|
|
3078
3079
|
SENSITIVE: []
|
|
3079
3080
|
end
|
|
3080
3081
|
|
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.189.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-08-
|
|
11
|
+
date: 2024-08-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|