aws-sdk-glue 1.188.0 → 1.189.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: fbb2ccc14e3378280c6a72aaf7b6c59e3bea12036abca9a73c1d9b10ffba1305
4
- data.tar.gz: 10b9b3182df200dc401af7a6f2bd53df2d20936d088bea47c5c767ab553ecd80
3
+ metadata.gz: 00a0acbb9dd997eabc7954b868a9e6083132abb0101679807fc407cd3377dbdc
4
+ data.tar.gz: ecd9280466a5d0cef4b9a81c5ad2c5acd7880855d3fb5153779d23399465acd6
5
5
  SHA512:
6
- metadata.gz: f6892252ee6e90ca3abda353010f75c6319fbc04fb7cbd21b6a80dc35c7063de246c3e180303b066ccac264a71c2a9d7657462a7b0cb5b70a5f5409762cbbcde
7
- data.tar.gz: d47edb9325224b5798a2c65c4206da280dd7549efec024d25723c74e8f9630272964b3cfc19209d6b2089a8d48ab17602a8d511a4ca26a06061dd61a8722f82e
6
+ metadata.gz: 949ce7706bc7e18bb77d0c045312c3716df798959578b05fa0d5f984eec830bef3cb9b8a99a0d4080bea48d98f4c43597d2addbe823e41442b149df7f8b6b396
7
+ data.tar.gz: ddd6173950c41cc08df2572bf4a355f0b3a1a9336d4df5b077b236480df9b36aef7f82b7ff845d52386cf4d91765cd2a68f51e6b0700b3da7232af4115f19254
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.189.0 (2024-08-13)
5
+ ------------------
6
+
7
+ * Feature - Add AttributesToGet parameter support for Glue GetTables
8
+
4
9
  1.188.0 (2024-08-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.188.0
1
+ 1.189.0
@@ -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&lt;Types::Table&gt;
@@ -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.188.0'
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
@@ -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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-glue/customizations'
52
52
  # @!group service
53
53
  module Aws::Glue
54
54
 
55
- GEM_VERSION = '1.188.0'
55
+ GEM_VERSION = '1.189.0'
56
56
 
57
57
  end
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.188.0
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-08 00:00:00.000000000 Z
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