aws-sdk-glue 1.83.0 → 1.84.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bed1ee9177382c8ef45d7b73155976561399ba23c2d672f1a3d06280b01f6e93
4
- data.tar.gz: 8e223b8d00e0fcdbb1b59198638005d7555e277fa526f587d79a6edd0650dbc7
3
+ metadata.gz: ad9d4baa3b317ac6c763374ec0f768dd596a23102370e0471fd78a668eb15a0a
4
+ data.tar.gz: f4f271911f872f447d555e2ca5a7f5d4a70fa189e6bbe760865393d965e88072
5
5
  SHA512:
6
- metadata.gz: 8274f42f45465ca26c9a9c79e11703a1c521c29446555292091f7eaedb874175a0615f570471d7438157cbc2b307761d09a736d34d0adab2e28d1330c1759ac7
7
- data.tar.gz: fa4a4c5761abe938bd5d201c212af56e59a12008a87dfcf7a0c6cc9793f2599c8b0b8a2135d59d21dd457b49cad1b5ee08713fc4af5e6a5a53773c476f249d15
6
+ metadata.gz: 3a6f8597e74426007bc3f8eaa9731cda97082d7462a2217684e487e13e440e0d5937d8d20b02ddfae79c319e5f2232c6778d87f52bcfe3290aeb2c54fb0ab774
7
+ data.tar.gz: de96876b6aab82474e6f26adff34e4affcf03f063452a58910990a3ae43490ec26feb275f8b7fdfc8a1fda756cf320883a4f07ce66f554e0e169a3162ae8f046
data/lib/aws-sdk-glue.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-glue/customizations'
48
48
  # @!group service
49
49
  module Aws::Glue
50
50
 
51
- GEM_VERSION = '1.83.0'
51
+ GEM_VERSION = '1.84.0'
52
52
 
53
53
  end
@@ -5717,6 +5717,8 @@ module Aws::Glue
5717
5717
  # @option params [Integer] :max_results
5718
5718
  # The maximum number of partitions to return in a single response.
5719
5719
  #
5720
+ # @option params [Boolean] :exclude_column_schema
5721
+ #
5720
5722
  # @return [Types::GetPartitionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5721
5723
  #
5722
5724
  # * {Types::GetPartitionsResponse#partitions #partitions} => Array<Types::Partition>
@@ -5737,6 +5739,7 @@ module Aws::Glue
5737
5739
  # total_segments: 1, # required
5738
5740
  # },
5739
5741
  # max_results: 1,
5742
+ # exclude_column_schema: false,
5740
5743
  # })
5741
5744
  #
5742
5745
  # @example Response structure
@@ -10596,7 +10599,7 @@ module Aws::Glue
10596
10599
  params: params,
10597
10600
  config: config)
10598
10601
  context[:gem_name] = 'aws-sdk-glue'
10599
- context[:gem_version] = '1.83.0'
10602
+ context[:gem_version] = '1.84.0'
10600
10603
  Seahorse::Client::Request.new(handlers, context)
10601
10604
  end
10602
10605
 
@@ -74,6 +74,7 @@ module Aws::Glue
74
74
  CatalogEncryptionMode = Shapes::StringShape.new(name: 'CatalogEncryptionMode')
75
75
  CatalogEntries = Shapes::ListShape.new(name: 'CatalogEntries')
76
76
  CatalogEntry = Shapes::StructureShape.new(name: 'CatalogEntry')
77
+ CatalogGetterPageSize = Shapes::IntegerShape.new(name: 'CatalogGetterPageSize')
77
78
  CatalogIdString = Shapes::StringShape.new(name: 'CatalogIdString')
78
79
  CatalogImportStatus = Shapes::StructureShape.new(name: 'CatalogImportStatus')
79
80
  CatalogTablesList = Shapes::ListShape.new(name: 'CatalogTablesList')
@@ -1869,7 +1870,7 @@ module Aws::Glue
1869
1870
 
1870
1871
  GetDatabasesRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
1871
1872
  GetDatabasesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
1872
- GetDatabasesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
1873
+ GetDatabasesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CatalogGetterPageSize, location_name: "MaxResults"))
1873
1874
  GetDatabasesRequest.add_member(:resource_share_type, Shapes::ShapeRef.new(shape: ResourceShareType, location_name: "ResourceShareType"))
1874
1875
  GetDatabasesRequest.struct_class = Types::GetDatabasesRequest
1875
1876
 
@@ -2031,6 +2032,7 @@ module Aws::Glue
2031
2032
  GetPartitionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
2032
2033
  GetPartitionsRequest.add_member(:segment, Shapes::ShapeRef.new(shape: Segment, location_name: "Segment"))
2033
2034
  GetPartitionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
2035
+ GetPartitionsRequest.add_member(:exclude_column_schema, Shapes::ShapeRef.new(shape: BooleanNullable, location_name: "ExcludeColumnSchema"))
2034
2036
  GetPartitionsRequest.struct_class = Types::GetPartitionsRequest
2035
2037
 
2036
2038
  GetPartitionsResponse.add_member(:partitions, Shapes::ShapeRef.new(shape: PartitionList, location_name: "Partitions"))
@@ -2168,7 +2170,7 @@ module Aws::Glue
2168
2170
  GetTableVersionsRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
2169
2171
  GetTableVersionsRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
2170
2172
  GetTableVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
2171
- GetTableVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
2173
+ GetTableVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CatalogGetterPageSize, location_name: "MaxResults"))
2172
2174
  GetTableVersionsRequest.struct_class = Types::GetTableVersionsRequest
2173
2175
 
2174
2176
  GetTableVersionsResponse.add_member(:table_versions, Shapes::ShapeRef.new(shape: GetTableVersionsList, location_name: "TableVersions"))
@@ -2179,7 +2181,7 @@ module Aws::Glue
2179
2181
  GetTablesRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
2180
2182
  GetTablesRequest.add_member(:expression, Shapes::ShapeRef.new(shape: FilterString, location_name: "Expression"))
2181
2183
  GetTablesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
2182
- GetTablesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
2184
+ GetTablesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CatalogGetterPageSize, location_name: "MaxResults"))
2183
2185
  GetTablesRequest.struct_class = Types::GetTablesRequest
2184
2186
 
2185
2187
  GetTablesResponse.add_member(:table_list, Shapes::ShapeRef.new(shape: TableList, location_name: "TableList"))
@@ -2219,7 +2221,7 @@ module Aws::Glue
2219
2221
  GetUserDefinedFunctionsRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, location_name: "DatabaseName"))
2220
2222
  GetUserDefinedFunctionsRequest.add_member(:pattern, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Pattern"))
2221
2223
  GetUserDefinedFunctionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
2222
- GetUserDefinedFunctionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
2224
+ GetUserDefinedFunctionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CatalogGetterPageSize, location_name: "MaxResults"))
2223
2225
  GetUserDefinedFunctionsRequest.struct_class = Types::GetUserDefinedFunctionsRequest
2224
2226
 
2225
2227
  GetUserDefinedFunctionsResponse.add_member(:user_defined_functions, Shapes::ShapeRef.new(shape: UserDefinedFunctionList, location_name: "UserDefinedFunctions"))
@@ -8082,6 +8082,7 @@ module Aws::Glue
8082
8082
  # total_segments: 1, # required
8083
8083
  # },
8084
8084
  # max_results: 1,
8085
+ # exclude_column_schema: false,
8085
8086
  # }
8086
8087
  #
8087
8088
  # @!attribute [rw] catalog_id
@@ -8207,6 +8208,9 @@ module Aws::Glue
8207
8208
  # The maximum number of partitions to return in a single response.
8208
8209
  # @return [Integer]
8209
8210
  #
8211
+ # @!attribute [rw] exclude_column_schema
8212
+ # @return [Boolean]
8213
+ #
8210
8214
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetPartitionsRequest AWS API Documentation
8211
8215
  #
8212
8216
  class GetPartitionsRequest < Struct.new(
@@ -8216,7 +8220,8 @@ module Aws::Glue
8216
8220
  :expression,
8217
8221
  :next_token,
8218
8222
  :segment,
8219
- :max_results)
8223
+ :max_results,
8224
+ :exclude_column_schema)
8220
8225
  SENSITIVE = []
8221
8226
  include Aws::Structure
8222
8227
  end
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.83.0
4
+ version: 1.84.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: 2021-02-02 00:00:00.000000000 Z
11
+ date: 2021-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core