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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +24 -1
- data/lib/aws-sdk-glue/client_api.rb +2 -0
- data/lib/aws-sdk-glue/types.rb +14 -1
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +13 -1
- data/sig/types.rbs +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bb90ede36a6788770bd4a5c7789a3258384c4bbf03505ff99f8c2b8b18507d01
|
|
4
|
+
data.tar.gz: aed100643120fc4bb2854ee5ffa63a777f4a5162b6224ceb7d338dae0f93cc63
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a79808534e0601004af0f6c6e7cedd2e3bfc5d7f90ca48ac2839c1991dd1e8b55001dcc7d66ea6134697ee55a5dfbd5ce624ea1959dbb29d1d233af5c4bc4f38
|
|
7
|
+
data.tar.gz: 7144b99628efe03bdb88ddcefe1251a669606504144f4be21c822408bcc81437bb3df071fc28a917664b7768e6976e79e424b74015651adfa4c5d7312132329d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.250.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -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<Types::Partition>
|
|
@@ -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.
|
|
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"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -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
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
|
|