aws-sdk-glue 1.249.0 → 1.250.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: c390642123f14ca452cd20a4793a546d47927078e7dec8b5f044c52705928261
4
- data.tar.gz: c7ee4af88fba4aa83ca490c2aa565d0c04cda94de107ee4b91b8306ffbf58681
3
+ metadata.gz: bb90ede36a6788770bd4a5c7789a3258384c4bbf03505ff99f8c2b8b18507d01
4
+ data.tar.gz: aed100643120fc4bb2854ee5ffa63a777f4a5162b6224ceb7d338dae0f93cc63
5
5
  SHA512:
6
- metadata.gz: 5167ca3f1ba6ca0f2fbffe990538489b476776f4fe32d7b456a3b066f2f2e8c22baea90826542bc791d5f377048eda0fb0c01a0e8c28b29002d784bc69db2c90
7
- data.tar.gz: b5e8a0e5df5e39c73bd2bc85910933901937d51d92881ff0f565a04f23e94b7c27603a496d3f4e1a6190d9e9888aff3990b6cd11a65f89e12e968a4b0aa16af4
6
+ metadata.gz: a79808534e0601004af0f6c6e7cedd2e3bfc5d7f90ca48ac2839c1991dd1e8b55001dcc7d66ea6134697ee55a5dfbd5ce624ea1959dbb29d1d233af5c4bc4f38
7
+ data.tar.gz: 7144b99628efe03bdb88ddcefe1251a669606504144f4be21c822408bcc81437bb3df071fc28a917664b7768e6976e79e424b74015651adfa4c5d7312132329d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.250.0 (2026-03-13)
5
+ ------------------
6
+
7
+ * Feature - Add QuerySessionContext to BatchGetPartitionRequest
8
+
4
9
  1.249.0 (2026-02-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.249.0
1
+ 1.250.0
@@ -1190,6 +1190,15 @@ module Aws::Glue
1190
1190
  # @option params [required, Array<Types::PartitionValueList>] :partitions_to_get
1191
1191
  # A list of partition values identifying the partitions to retrieve.
1192
1192
  #
1193
+ # @option params [Types::AuditContext] :audit_context
1194
+ # A structure containing the Lake Formation audit context.
1195
+ #
1196
+ # @option params [Types::QuerySessionContext] :query_session_context
1197
+ # A structure used as a protocol between query engines and Lake
1198
+ # Formation or Glue. Contains both a Lake Formation generated
1199
+ # authorization identifier and information from the request's
1200
+ # authorization context.
1201
+ #
1193
1202
  # @return [Types::BatchGetPartitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1194
1203
  #
1195
1204
  # * {Types::BatchGetPartitionResponse#partitions #partitions} => Array&lt;Types::Partition&gt;
@@ -1206,6 +1215,20 @@ module Aws::Glue
1206
1215
  # values: ["ValueString"], # required
1207
1216
  # },
1208
1217
  # ],
1218
+ # audit_context: {
1219
+ # additional_audit_context: "AuditContextString",
1220
+ # requested_columns: ["ColumnNameString"],
1221
+ # all_columns_requested: false,
1222
+ # },
1223
+ # query_session_context: {
1224
+ # query_id: "HashString",
1225
+ # query_start_time: Time.now,
1226
+ # cluster_id: "NullableString",
1227
+ # query_authorization_id: "HashString",
1228
+ # additional_context: {
1229
+ # "ContextKey" => "ContextValue",
1230
+ # },
1231
+ # },
1209
1232
  # })
1210
1233
  #
1211
1234
  # @example Response structure
@@ -18993,7 +19016,7 @@ module Aws::Glue
18993
19016
  tracer: tracer
18994
19017
  )
18995
19018
  context[:gem_name] = 'aws-sdk-glue'
18996
- context[:gem_version] = '1.249.0'
19019
+ context[:gem_version] = '1.250.0'
18997
19020
  Seahorse::Client::Request.new(handlers, context)
18998
19021
  end
18999
19022
 
@@ -1966,6 +1966,8 @@ module Aws::Glue
1966
1966
  BatchGetPartitionRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
1967
1967
  BatchGetPartitionRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
1968
1968
  BatchGetPartitionRequest.add_member(:partitions_to_get, Shapes::ShapeRef.new(shape: BatchGetPartitionValueList, required: true, location_name: "PartitionsToGet"))
1969
+ BatchGetPartitionRequest.add_member(:audit_context, Shapes::ShapeRef.new(shape: AuditContext, location_name: "AuditContext"))
1970
+ BatchGetPartitionRequest.add_member(:query_session_context, Shapes::ShapeRef.new(shape: QuerySessionContext, location_name: "QuerySessionContext"))
1969
1971
  BatchGetPartitionRequest.struct_class = Types::BatchGetPartitionRequest
1970
1972
 
1971
1973
  BatchGetPartitionResponse.add_member(:partitions, Shapes::ShapeRef.new(shape: PartitionList, location_name: "Partitions"))
@@ -1227,13 +1227,26 @@ module Aws::Glue
1227
1227
  # A list of partition values identifying the partitions to retrieve.
1228
1228
  # @return [Array<Types::PartitionValueList>]
1229
1229
  #
1230
+ # @!attribute [rw] audit_context
1231
+ # A structure containing the Lake Formation audit context.
1232
+ # @return [Types::AuditContext]
1233
+ #
1234
+ # @!attribute [rw] query_session_context
1235
+ # A structure used as a protocol between query engines and Lake
1236
+ # Formation or Glue. Contains both a Lake Formation generated
1237
+ # authorization identifier and information from the request's
1238
+ # authorization context.
1239
+ # @return [Types::QuerySessionContext]
1240
+ #
1230
1241
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BatchGetPartitionRequest AWS API Documentation
1231
1242
  #
1232
1243
  class BatchGetPartitionRequest < Struct.new(
1233
1244
  :catalog_id,
1234
1245
  :database_name,
1235
1246
  :table_name,
1236
- :partitions_to_get)
1247
+ :partitions_to_get,
1248
+ :audit_context,
1249
+ :query_session_context)
1237
1250
  SENSITIVE = []
1238
1251
  include Aws::Structure
1239
1252
  end
data/lib/aws-sdk-glue.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Glue
54
54
  autoload :EndpointProvider, 'aws-sdk-glue/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-glue/endpoints'
56
56
 
57
- GEM_VERSION = '1.249.0'
57
+ GEM_VERSION = '1.250.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -280,7 +280,19 @@ module Aws
280
280
  {
281
281
  values: Array[::String]
282
282
  },
283
- ]
283
+ ],
284
+ ?audit_context: {
285
+ additional_audit_context: ::String?,
286
+ requested_columns: Array[::String]?,
287
+ all_columns_requested: bool?
288
+ },
289
+ ?query_session_context: {
290
+ query_id: ::String?,
291
+ query_start_time: ::Time?,
292
+ cluster_id: ::String?,
293
+ query_authorization_id: ::String?,
294
+ additional_context: Hash[::String, ::String]?
295
+ }
284
296
  ) -> _BatchGetPartitionResponseSuccess
285
297
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetPartitionResponseSuccess
286
298
 
data/sig/types.rbs CHANGED
@@ -332,6 +332,8 @@ module Aws::Glue
332
332
  attr_accessor database_name: ::String
333
333
  attr_accessor table_name: ::String
334
334
  attr_accessor partitions_to_get: ::Array[Types::PartitionValueList]
335
+ attr_accessor audit_context: Types::AuditContext
336
+ attr_accessor query_session_context: Types::QuerySessionContext
335
337
  SENSITIVE: []
336
338
  end
337
339
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.249.0
4
+ version: 1.250.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services