aws-sdk-glue 1.253.0 → 1.254.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 +33 -1
- data/lib/aws-sdk-glue/client_api.rb +4 -0
- data/lib/aws-sdk-glue/types.rb +24 -4
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +24 -4
- data/sig/types.rbs +4 -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: 6c81f0cc27b523b219cd8247131b3e5e3441a7635021fe6e302b2299e4765b5b
|
|
4
|
+
data.tar.gz: 841766df0be5c7ff82b0e7fd6d64f9326afa4fa7eeeed0039d52f68f0660a956
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9b5176ac5b1a1b11792fe4333bd1d610665bdada81becf24d49f12c313ae880af5e7257b0c8cc43ee420d16ace97dfdef7902647ce3ff563eb341a1fba1cbda
|
|
7
|
+
data.tar.gz: f61b683a6d500ba2b8d0cc6b79e35ccd21bd8605c30cb4f753a46c4c26911e695ff91166f6d2f4e8a3cf6ea9ce48db8157d63186b630347e41a500d68d2fe314
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.254.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -9415,6 +9415,9 @@ module Aws::Glue
|
|
|
9415
9415
|
# @option params [required, Array<String>] :partition_values
|
|
9416
9416
|
# The values that define the partition.
|
|
9417
9417
|
#
|
|
9418
|
+
# @option params [Types::AuditContext] :audit_context
|
|
9419
|
+
# A structure containing the Lake Formation audit context.
|
|
9420
|
+
#
|
|
9418
9421
|
# @return [Types::GetPartitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
9419
9422
|
#
|
|
9420
9423
|
# * {Types::GetPartitionResponse#partition #data.partition} => Types::Partition (This method conflicts with a method on Response, call it through the data member)
|
|
@@ -9426,6 +9429,11 @@ module Aws::Glue
|
|
|
9426
9429
|
# database_name: "NameString", # required
|
|
9427
9430
|
# table_name: "NameString", # required
|
|
9428
9431
|
# partition_values: ["ValueString"], # required
|
|
9432
|
+
# audit_context: {
|
|
9433
|
+
# additional_audit_context: "AuditContextString",
|
|
9434
|
+
# requested_columns: ["ColumnNameString"],
|
|
9435
|
+
# all_columns_requested: false,
|
|
9436
|
+
# },
|
|
9429
9437
|
# })
|
|
9430
9438
|
#
|
|
9431
9439
|
# @example Response structure
|
|
@@ -9672,6 +9680,9 @@ module Aws::Glue
|
|
|
9672
9680
|
# most recent transaction commit time will be used. Cannot be specified
|
|
9673
9681
|
# along with `TransactionId`.
|
|
9674
9682
|
#
|
|
9683
|
+
# @option params [Types::AuditContext] :audit_context
|
|
9684
|
+
# A structure containing the Lake Formation audit context.
|
|
9685
|
+
#
|
|
9675
9686
|
# @return [Types::GetPartitionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
9676
9687
|
#
|
|
9677
9688
|
# * {Types::GetPartitionsResponse#partitions #partitions} => Array<Types::Partition>
|
|
@@ -9695,6 +9706,11 @@ module Aws::Glue
|
|
|
9695
9706
|
# exclude_column_schema: false,
|
|
9696
9707
|
# transaction_id: "TransactionIdString",
|
|
9697
9708
|
# query_as_of_time: Time.now,
|
|
9709
|
+
# audit_context: {
|
|
9710
|
+
# additional_audit_context: "AuditContextString",
|
|
9711
|
+
# requested_columns: ["ColumnNameString"],
|
|
9712
|
+
# all_columns_requested: false,
|
|
9713
|
+
# },
|
|
9698
9714
|
# })
|
|
9699
9715
|
#
|
|
9700
9716
|
# @example Response structure
|
|
@@ -10693,6 +10709,9 @@ module Aws::Glue
|
|
|
10693
10709
|
# The ID value of the table version to be retrieved. A `VersionID` is a
|
|
10694
10710
|
# string representation of an integer. Each version is incremented by 1.
|
|
10695
10711
|
#
|
|
10712
|
+
# @option params [Types::AuditContext] :audit_context
|
|
10713
|
+
# A structure containing the Lake Formation audit context.
|
|
10714
|
+
#
|
|
10696
10715
|
# @return [Types::GetTableVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10697
10716
|
#
|
|
10698
10717
|
# * {Types::GetTableVersionResponse#table_version #table_version} => Types::TableVersion
|
|
@@ -10704,6 +10723,11 @@ module Aws::Glue
|
|
|
10704
10723
|
# database_name: "NameString", # required
|
|
10705
10724
|
# table_name: "NameString", # required
|
|
10706
10725
|
# version_id: "VersionString",
|
|
10726
|
+
# audit_context: {
|
|
10727
|
+
# additional_audit_context: "AuditContextString",
|
|
10728
|
+
# requested_columns: ["ColumnNameString"],
|
|
10729
|
+
# all_columns_requested: false,
|
|
10730
|
+
# },
|
|
10707
10731
|
# })
|
|
10708
10732
|
#
|
|
10709
10733
|
# @example Response structure
|
|
@@ -10844,6 +10868,9 @@ module Aws::Glue
|
|
|
10844
10868
|
# @option params [Integer] :max_results
|
|
10845
10869
|
# The maximum number of table versions to return in one response.
|
|
10846
10870
|
#
|
|
10871
|
+
# @option params [Types::AuditContext] :audit_context
|
|
10872
|
+
# A structure containing the Lake Formation audit context.
|
|
10873
|
+
#
|
|
10847
10874
|
# @return [Types::GetTableVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10848
10875
|
#
|
|
10849
10876
|
# * {Types::GetTableVersionsResponse#table_versions #table_versions} => Array<Types::TableVersion>
|
|
@@ -10859,6 +10886,11 @@ module Aws::Glue
|
|
|
10859
10886
|
# table_name: "NameString", # required
|
|
10860
10887
|
# next_token: "Token",
|
|
10861
10888
|
# max_results: 1,
|
|
10889
|
+
# audit_context: {
|
|
10890
|
+
# additional_audit_context: "AuditContextString",
|
|
10891
|
+
# requested_columns: ["ColumnNameString"],
|
|
10892
|
+
# all_columns_requested: false,
|
|
10893
|
+
# },
|
|
10862
10894
|
# })
|
|
10863
10895
|
#
|
|
10864
10896
|
# @example Response structure
|
|
@@ -19018,7 +19050,7 @@ module Aws::Glue
|
|
|
19018
19050
|
tracer: tracer
|
|
19019
19051
|
)
|
|
19020
19052
|
context[:gem_name] = 'aws-sdk-glue'
|
|
19021
|
-
context[:gem_version] = '1.
|
|
19053
|
+
context[:gem_version] = '1.254.0'
|
|
19022
19054
|
Seahorse::Client::Request.new(handlers, context)
|
|
19023
19055
|
end
|
|
19024
19056
|
|
|
@@ -4587,6 +4587,7 @@ module Aws::Glue
|
|
|
4587
4587
|
GetPartitionRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
|
|
4588
4588
|
GetPartitionRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
|
|
4589
4589
|
GetPartitionRequest.add_member(:partition_values, Shapes::ShapeRef.new(shape: ValueStringList, required: true, location_name: "PartitionValues"))
|
|
4590
|
+
GetPartitionRequest.add_member(:audit_context, Shapes::ShapeRef.new(shape: AuditContext, location_name: "AuditContext"))
|
|
4590
4591
|
GetPartitionRequest.struct_class = Types::GetPartitionRequest
|
|
4591
4592
|
|
|
4592
4593
|
GetPartitionResponse.add_member(:partition, Shapes::ShapeRef.new(shape: Partition, location_name: "Partition"))
|
|
@@ -4602,6 +4603,7 @@ module Aws::Glue
|
|
|
4602
4603
|
GetPartitionsRequest.add_member(:exclude_column_schema, Shapes::ShapeRef.new(shape: BooleanNullable, location_name: "ExcludeColumnSchema"))
|
|
4603
4604
|
GetPartitionsRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: TransactionIdString, location_name: "TransactionId"))
|
|
4604
4605
|
GetPartitionsRequest.add_member(:query_as_of_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "QueryAsOfTime"))
|
|
4606
|
+
GetPartitionsRequest.add_member(:audit_context, Shapes::ShapeRef.new(shape: AuditContext, location_name: "AuditContext"))
|
|
4605
4607
|
GetPartitionsRequest.struct_class = Types::GetPartitionsRequest
|
|
4606
4608
|
|
|
4607
4609
|
GetPartitionsResponse.add_member(:partitions, Shapes::ShapeRef.new(shape: PartitionList, location_name: "Partitions"))
|
|
@@ -4759,6 +4761,7 @@ module Aws::Glue
|
|
|
4759
4761
|
GetTableVersionRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
|
|
4760
4762
|
GetTableVersionRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
|
|
4761
4763
|
GetTableVersionRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: VersionString, location_name: "VersionId"))
|
|
4764
|
+
GetTableVersionRequest.add_member(:audit_context, Shapes::ShapeRef.new(shape: AuditContext, location_name: "AuditContext"))
|
|
4762
4765
|
GetTableVersionRequest.struct_class = Types::GetTableVersionRequest
|
|
4763
4766
|
|
|
4764
4767
|
GetTableVersionResponse.add_member(:table_version, Shapes::ShapeRef.new(shape: TableVersion, location_name: "TableVersion"))
|
|
@@ -4771,6 +4774,7 @@ module Aws::Glue
|
|
|
4771
4774
|
GetTableVersionsRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
|
|
4772
4775
|
GetTableVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
|
|
4773
4776
|
GetTableVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CatalogGetterPageSize, location_name: "MaxResults"))
|
|
4777
|
+
GetTableVersionsRequest.add_member(:audit_context, Shapes::ShapeRef.new(shape: AuditContext, location_name: "AuditContext"))
|
|
4774
4778
|
GetTableVersionsRequest.struct_class = Types::GetTableVersionsRequest
|
|
4775
4779
|
|
|
4776
4780
|
GetTableVersionsResponse.add_member(:table_versions, Shapes::ShapeRef.new(shape: GetTableVersionsList, location_name: "TableVersions"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -14252,13 +14252,18 @@ module Aws::Glue
|
|
|
14252
14252
|
# The values that define the partition.
|
|
14253
14253
|
# @return [Array<String>]
|
|
14254
14254
|
#
|
|
14255
|
+
# @!attribute [rw] audit_context
|
|
14256
|
+
# A structure containing the Lake Formation audit context.
|
|
14257
|
+
# @return [Types::AuditContext]
|
|
14258
|
+
#
|
|
14255
14259
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetPartitionRequest AWS API Documentation
|
|
14256
14260
|
#
|
|
14257
14261
|
class GetPartitionRequest < Struct.new(
|
|
14258
14262
|
:catalog_id,
|
|
14259
14263
|
:database_name,
|
|
14260
14264
|
:table_name,
|
|
14261
|
-
:partition_values
|
|
14265
|
+
:partition_values,
|
|
14266
|
+
:audit_context)
|
|
14262
14267
|
SENSITIVE = []
|
|
14263
14268
|
include Aws::Structure
|
|
14264
14269
|
end
|
|
@@ -14416,6 +14421,10 @@ module Aws::Glue
|
|
|
14416
14421
|
# specified along with `TransactionId`.
|
|
14417
14422
|
# @return [Time]
|
|
14418
14423
|
#
|
|
14424
|
+
# @!attribute [rw] audit_context
|
|
14425
|
+
# A structure containing the Lake Formation audit context.
|
|
14426
|
+
# @return [Types::AuditContext]
|
|
14427
|
+
#
|
|
14419
14428
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetPartitionsRequest AWS API Documentation
|
|
14420
14429
|
#
|
|
14421
14430
|
class GetPartitionsRequest < Struct.new(
|
|
@@ -14428,7 +14437,8 @@ module Aws::Glue
|
|
|
14428
14437
|
:max_results,
|
|
14429
14438
|
:exclude_column_schema,
|
|
14430
14439
|
:transaction_id,
|
|
14431
|
-
:query_as_of_time
|
|
14440
|
+
:query_as_of_time,
|
|
14441
|
+
:audit_context)
|
|
14432
14442
|
SENSITIVE = []
|
|
14433
14443
|
include Aws::Structure
|
|
14434
14444
|
end
|
|
@@ -15182,13 +15192,18 @@ module Aws::Glue
|
|
|
15182
15192
|
# by 1.
|
|
15183
15193
|
# @return [String]
|
|
15184
15194
|
#
|
|
15195
|
+
# @!attribute [rw] audit_context
|
|
15196
|
+
# A structure containing the Lake Formation audit context.
|
|
15197
|
+
# @return [Types::AuditContext]
|
|
15198
|
+
#
|
|
15185
15199
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTableVersionRequest AWS API Documentation
|
|
15186
15200
|
#
|
|
15187
15201
|
class GetTableVersionRequest < Struct.new(
|
|
15188
15202
|
:catalog_id,
|
|
15189
15203
|
:database_name,
|
|
15190
15204
|
:table_name,
|
|
15191
|
-
:version_id
|
|
15205
|
+
:version_id,
|
|
15206
|
+
:audit_context)
|
|
15192
15207
|
SENSITIVE = []
|
|
15193
15208
|
include Aws::Structure
|
|
15194
15209
|
end
|
|
@@ -15228,6 +15243,10 @@ module Aws::Glue
|
|
|
15228
15243
|
# The maximum number of table versions to return in one response.
|
|
15229
15244
|
# @return [Integer]
|
|
15230
15245
|
#
|
|
15246
|
+
# @!attribute [rw] audit_context
|
|
15247
|
+
# A structure containing the Lake Formation audit context.
|
|
15248
|
+
# @return [Types::AuditContext]
|
|
15249
|
+
#
|
|
15231
15250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTableVersionsRequest AWS API Documentation
|
|
15232
15251
|
#
|
|
15233
15252
|
class GetTableVersionsRequest < Struct.new(
|
|
@@ -15235,7 +15254,8 @@ module Aws::Glue
|
|
|
15235
15254
|
:database_name,
|
|
15236
15255
|
:table_name,
|
|
15237
15256
|
:next_token,
|
|
15238
|
-
:max_results
|
|
15257
|
+
:max_results,
|
|
15258
|
+
:audit_context)
|
|
15239
15259
|
SENSITIVE = []
|
|
15240
15260
|
include Aws::Structure
|
|
15241
15261
|
end
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -4251,7 +4251,12 @@ module Aws
|
|
|
4251
4251
|
?catalog_id: ::String,
|
|
4252
4252
|
database_name: ::String,
|
|
4253
4253
|
table_name: ::String,
|
|
4254
|
-
partition_values: Array[::String]
|
|
4254
|
+
partition_values: Array[::String],
|
|
4255
|
+
?audit_context: {
|
|
4256
|
+
additional_audit_context: ::String?,
|
|
4257
|
+
requested_columns: Array[::String]?,
|
|
4258
|
+
all_columns_requested: bool?
|
|
4259
|
+
}
|
|
4255
4260
|
) -> _GetPartitionResponseSuccess
|
|
4256
4261
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPartitionResponseSuccess
|
|
4257
4262
|
|
|
@@ -4288,7 +4293,12 @@ module Aws
|
|
|
4288
4293
|
?max_results: ::Integer,
|
|
4289
4294
|
?exclude_column_schema: bool,
|
|
4290
4295
|
?transaction_id: ::String,
|
|
4291
|
-
?query_as_of_time: ::Time
|
|
4296
|
+
?query_as_of_time: ::Time,
|
|
4297
|
+
?audit_context: {
|
|
4298
|
+
additional_audit_context: ::String?,
|
|
4299
|
+
requested_columns: Array[::String]?,
|
|
4300
|
+
all_columns_requested: bool?
|
|
4301
|
+
}
|
|
4292
4302
|
) -> _GetPartitionsResponseSuccess
|
|
4293
4303
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPartitionsResponseSuccess
|
|
4294
4304
|
|
|
@@ -4573,7 +4583,12 @@ module Aws
|
|
|
4573
4583
|
?catalog_id: ::String,
|
|
4574
4584
|
database_name: ::String,
|
|
4575
4585
|
table_name: ::String,
|
|
4576
|
-
?version_id: ::String
|
|
4586
|
+
?version_id: ::String,
|
|
4587
|
+
?audit_context: {
|
|
4588
|
+
additional_audit_context: ::String?,
|
|
4589
|
+
requested_columns: Array[::String]?,
|
|
4590
|
+
all_columns_requested: bool?
|
|
4591
|
+
}
|
|
4577
4592
|
) -> _GetTableVersionResponseSuccess
|
|
4578
4593
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableVersionResponseSuccess
|
|
4579
4594
|
|
|
@@ -4588,7 +4603,12 @@ module Aws
|
|
|
4588
4603
|
database_name: ::String,
|
|
4589
4604
|
table_name: ::String,
|
|
4590
4605
|
?next_token: ::String,
|
|
4591
|
-
?max_results: ::Integer
|
|
4606
|
+
?max_results: ::Integer,
|
|
4607
|
+
?audit_context: {
|
|
4608
|
+
additional_audit_context: ::String?,
|
|
4609
|
+
requested_columns: Array[::String]?,
|
|
4610
|
+
all_columns_requested: bool?
|
|
4611
|
+
}
|
|
4592
4612
|
) -> _GetTableVersionsResponseSuccess
|
|
4593
4613
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableVersionsResponseSuccess
|
|
4594
4614
|
|
data/sig/types.rbs
CHANGED
|
@@ -3551,6 +3551,7 @@ module Aws::Glue
|
|
|
3551
3551
|
attr_accessor database_name: ::String
|
|
3552
3552
|
attr_accessor table_name: ::String
|
|
3553
3553
|
attr_accessor partition_values: ::Array[::String]
|
|
3554
|
+
attr_accessor audit_context: Types::AuditContext
|
|
3554
3555
|
SENSITIVE: []
|
|
3555
3556
|
end
|
|
3556
3557
|
|
|
@@ -3570,6 +3571,7 @@ module Aws::Glue
|
|
|
3570
3571
|
attr_accessor exclude_column_schema: bool
|
|
3571
3572
|
attr_accessor transaction_id: ::String
|
|
3572
3573
|
attr_accessor query_as_of_time: ::Time
|
|
3574
|
+
attr_accessor audit_context: Types::AuditContext
|
|
3573
3575
|
SENSITIVE: []
|
|
3574
3576
|
end
|
|
3575
3577
|
|
|
@@ -3785,6 +3787,7 @@ module Aws::Glue
|
|
|
3785
3787
|
attr_accessor database_name: ::String
|
|
3786
3788
|
attr_accessor table_name: ::String
|
|
3787
3789
|
attr_accessor version_id: ::String
|
|
3790
|
+
attr_accessor audit_context: Types::AuditContext
|
|
3788
3791
|
SENSITIVE: []
|
|
3789
3792
|
end
|
|
3790
3793
|
|
|
@@ -3799,6 +3802,7 @@ module Aws::Glue
|
|
|
3799
3802
|
attr_accessor table_name: ::String
|
|
3800
3803
|
attr_accessor next_token: ::String
|
|
3801
3804
|
attr_accessor max_results: ::Integer
|
|
3805
|
+
attr_accessor audit_context: Types::AuditContext
|
|
3802
3806
|
SENSITIVE: []
|
|
3803
3807
|
end
|
|
3804
3808
|
|