aws-sdk-glue 1.236.0 → 1.238.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +29 -1
- data/lib/aws-sdk-glue/client_api.rb +7 -0
- data/lib/aws-sdk-glue/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-glue/types.rb +24 -1
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +10 -0
- data/sig/types.rbs +3 -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: e9629878e34caf7d0a073efac867a825f5b7a882731e984df6a1323e9a13895b
|
4
|
+
data.tar.gz: 7bc3e5add15bbcf6be3baa69988bc22d1d6f0bc8077b89e6e6f23ac303a1109e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f64934fd4220b7572da5ef25a0b45038c00a551d03c2db7bea68c31398072439e5ef35bee43fa318ffc41c39cc8228cc49eb82a758907ca4db4f2f3a4bb3958d
|
7
|
+
data.tar.gz: 075f9a193d205d72124b21dddd40e01c98e32ff5e8a9b5ec1c408f9e146f71b09331daae90db7e42074148dfb178a3465522e326aa352a203ce2c5b2f199b7c3
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.238.0 (2025-10-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Addition of AuditContext in GetTable/GetTables Request
|
8
|
+
|
9
|
+
1.237.0 (2025-10-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds labeling for DataQualityRuleResult for GetDataQualityResult and PublishDataQualityResult APIs
|
13
|
+
|
4
14
|
1.236.0 (2025-09-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.238.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -1044,6 +1044,8 @@ module Aws::Glue
|
|
1044
1044
|
# resp.results[0].rule_results[0].evaluated_rule #=> String
|
1045
1045
|
# resp.results[0].rule_results[0].rule_metrics #=> Hash
|
1046
1046
|
# resp.results[0].rule_results[0].rule_metrics["NameString"] #=> Float
|
1047
|
+
# resp.results[0].rule_results[0].labels #=> Hash
|
1048
|
+
# resp.results[0].rule_results[0].labels["NameString"] #=> String
|
1047
1049
|
# resp.results[0].analyzer_results #=> Array
|
1048
1050
|
# resp.results[0].analyzer_results[0].name #=> String
|
1049
1051
|
# resp.results[0].analyzer_results[0].description #=> String
|
@@ -7704,6 +7706,8 @@ module Aws::Glue
|
|
7704
7706
|
# resp.rule_results[0].evaluated_rule #=> String
|
7705
7707
|
# resp.rule_results[0].rule_metrics #=> Hash
|
7706
7708
|
# resp.rule_results[0].rule_metrics["NameString"] #=> Float
|
7709
|
+
# resp.rule_results[0].labels #=> Hash
|
7710
|
+
# resp.rule_results[0].labels["NameString"] #=> String
|
7707
7711
|
# resp.analyzer_results #=> Array
|
7708
7712
|
# resp.analyzer_results[0].name #=> String
|
7709
7713
|
# resp.analyzer_results[0].description #=> String
|
@@ -10151,6 +10155,13 @@ module Aws::Glue
|
|
10151
10155
|
# recent transaction commit time will be used. Cannot be specified along
|
10152
10156
|
# with `TransactionId`.
|
10153
10157
|
#
|
10158
|
+
# @option params [Types::AuditContext] :audit_context
|
10159
|
+
# A structure containing the Lake Formation [audit context][1].
|
10160
|
+
#
|
10161
|
+
#
|
10162
|
+
#
|
10163
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/webapi/API_AuditContext.html
|
10164
|
+
#
|
10154
10165
|
# @option params [Boolean] :include_status_details
|
10155
10166
|
# Specifies whether to include status details related to a request to
|
10156
10167
|
# create or update an Glue Data Catalog view.
|
@@ -10167,6 +10178,11 @@ module Aws::Glue
|
|
10167
10178
|
# name: "NameString", # required
|
10168
10179
|
# transaction_id: "TransactionIdString",
|
10169
10180
|
# query_as_of_time: Time.now,
|
10181
|
+
# audit_context: {
|
10182
|
+
# additional_audit_context: "AuditContextString",
|
10183
|
+
# requested_columns: ["ColumnNameString"],
|
10184
|
+
# all_columns_requested: false,
|
10185
|
+
# },
|
10170
10186
|
# include_status_details: false,
|
10171
10187
|
# })
|
10172
10188
|
#
|
@@ -10684,6 +10700,13 @@ module Aws::Glue
|
|
10684
10700
|
# recent transaction commit time will be used. Cannot be specified along
|
10685
10701
|
# with `TransactionId`.
|
10686
10702
|
#
|
10703
|
+
# @option params [Types::AuditContext] :audit_context
|
10704
|
+
# A structure containing the Lake Formation [audit context][1].
|
10705
|
+
#
|
10706
|
+
#
|
10707
|
+
#
|
10708
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/webapi/API_AuditContext.html
|
10709
|
+
#
|
10687
10710
|
# @option params [Boolean] :include_status_details
|
10688
10711
|
# Specifies whether to include status details related to a request to
|
10689
10712
|
# create or update an Glue Data Catalog view.
|
@@ -10716,6 +10739,11 @@ module Aws::Glue
|
|
10716
10739
|
# max_results: 1,
|
10717
10740
|
# transaction_id: "TransactionIdString",
|
10718
10741
|
# query_as_of_time: Time.now,
|
10742
|
+
# audit_context: {
|
10743
|
+
# additional_audit_context: "AuditContextString",
|
10744
|
+
# requested_columns: ["ColumnNameString"],
|
10745
|
+
# all_columns_requested: false,
|
10746
|
+
# },
|
10719
10747
|
# include_status_details: false,
|
10720
10748
|
# attributes_to_get: ["NAME"], # accepts NAME, TABLE_TYPE
|
10721
10749
|
# })
|
@@ -17920,7 +17948,7 @@ module Aws::Glue
|
|
17920
17948
|
tracer: tracer
|
17921
17949
|
)
|
17922
17950
|
context[:gem_name] = 'aws-sdk-glue'
|
17923
|
-
context[:gem_version] = '1.
|
17951
|
+
context[:gem_version] = '1.238.0'
|
17924
17952
|
Seahorse::Client::Request.new(handlers, context)
|
17925
17953
|
end
|
17926
17954
|
|
@@ -936,6 +936,7 @@ module Aws::Glue
|
|
936
936
|
KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
|
937
937
|
LabelCount = Shapes::IntegerShape.new(name: 'LabelCount')
|
938
938
|
LabelingSetGenerationTaskRunProperties = Shapes::StructureShape.new(name: 'LabelingSetGenerationTaskRunProperties')
|
939
|
+
Labels = Shapes::MapShape.new(name: 'Labels')
|
939
940
|
LakeFormationConfiguration = Shapes::StructureShape.new(name: 'LakeFormationConfiguration')
|
940
941
|
Language = Shapes::StringShape.new(name: 'Language')
|
941
942
|
LastActiveDefinition = Shapes::StructureShape.new(name: 'LastActiveDefinition')
|
@@ -3265,6 +3266,7 @@ module Aws::Glue
|
|
3265
3266
|
DataQualityRuleResult.add_member(:evaluated_metrics, Shapes::ShapeRef.new(shape: EvaluatedMetricsMap, location_name: "EvaluatedMetrics"))
|
3266
3267
|
DataQualityRuleResult.add_member(:evaluated_rule, Shapes::ShapeRef.new(shape: DataQualityRuleResultDescription, location_name: "EvaluatedRule"))
|
3267
3268
|
DataQualityRuleResult.add_member(:rule_metrics, Shapes::ShapeRef.new(shape: RuleMetricsMap, location_name: "RuleMetrics"))
|
3269
|
+
DataQualityRuleResult.add_member(:labels, Shapes::ShapeRef.new(shape: Labels, location_name: "Labels"))
|
3268
3270
|
DataQualityRuleResult.struct_class = Types::DataQualityRuleResult
|
3269
3271
|
|
3270
3272
|
DataQualityRuleResults.member = Shapes::ShapeRef.new(shape: DataQualityRuleResult)
|
@@ -4565,6 +4567,7 @@ module Aws::Glue
|
|
4565
4567
|
GetTableRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
4566
4568
|
GetTableRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: TransactionIdString, location_name: "TransactionId"))
|
4567
4569
|
GetTableRequest.add_member(:query_as_of_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "QueryAsOfTime"))
|
4570
|
+
GetTableRequest.add_member(:audit_context, Shapes::ShapeRef.new(shape: AuditContext, location_name: "AuditContext"))
|
4568
4571
|
GetTableRequest.add_member(:include_status_details, Shapes::ShapeRef.new(shape: BooleanNullable, location_name: "IncludeStatusDetails"))
|
4569
4572
|
GetTableRequest.struct_class = Types::GetTableRequest
|
4570
4573
|
|
@@ -4600,6 +4603,7 @@ module Aws::Glue
|
|
4600
4603
|
GetTablesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CatalogGetterPageSize, location_name: "MaxResults"))
|
4601
4604
|
GetTablesRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: TransactionIdString, location_name: "TransactionId"))
|
4602
4605
|
GetTablesRequest.add_member(:query_as_of_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "QueryAsOfTime"))
|
4606
|
+
GetTablesRequest.add_member(:audit_context, Shapes::ShapeRef.new(shape: AuditContext, location_name: "AuditContext"))
|
4603
4607
|
GetTablesRequest.add_member(:include_status_details, Shapes::ShapeRef.new(shape: BooleanNullable, location_name: "IncludeStatusDetails"))
|
4604
4608
|
GetTablesRequest.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: TableAttributesList, location_name: "AttributesToGet"))
|
4605
4609
|
GetTablesRequest.struct_class = Types::GetTablesRequest
|
@@ -5279,6 +5283,9 @@ module Aws::Glue
|
|
5279
5283
|
LabelingSetGenerationTaskRunProperties.add_member(:output_s3_path, Shapes::ShapeRef.new(shape: UriString, location_name: "OutputS3Path"))
|
5280
5284
|
LabelingSetGenerationTaskRunProperties.struct_class = Types::LabelingSetGenerationTaskRunProperties
|
5281
5285
|
|
5286
|
+
Labels.key = Shapes::ShapeRef.new(shape: NameString)
|
5287
|
+
Labels.value = Shapes::ShapeRef.new(shape: NameString)
|
5288
|
+
|
5282
5289
|
LakeFormationConfiguration.add_member(:use_lake_formation_credentials, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "UseLakeFormationCredentials"))
|
5283
5290
|
LakeFormationConfiguration.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
|
5284
5291
|
LakeFormationConfiguration.struct_class = Types::LakeFormationConfiguration
|
@@ -13,22 +13,22 @@ module Aws::Glue
|
|
13
13
|
# @!attribute region
|
14
14
|
# The AWS region used to dispatch the request.
|
15
15
|
#
|
16
|
-
# @return [
|
16
|
+
# @return [string]
|
17
17
|
#
|
18
18
|
# @!attribute use_dual_stack
|
19
19
|
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
20
20
|
#
|
21
|
-
# @return [
|
21
|
+
# @return [boolean]
|
22
22
|
#
|
23
23
|
# @!attribute use_fips
|
24
24
|
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
25
25
|
#
|
26
|
-
# @return [
|
26
|
+
# @return [boolean]
|
27
27
|
#
|
28
28
|
# @!attribute endpoint
|
29
29
|
# Override the endpoint used to send this request
|
30
30
|
#
|
31
|
-
# @return [
|
31
|
+
# @return [string]
|
32
32
|
#
|
33
33
|
EndpointParameters = Struct.new(
|
34
34
|
:region,
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -8414,6 +8414,10 @@ module Aws::Glue
|
|
8414
8414
|
# based on row-level results.
|
8415
8415
|
# @return [Hash<String,Float>]
|
8416
8416
|
#
|
8417
|
+
# @!attribute [rw] labels
|
8418
|
+
# A map containing labels assigned to the data quality rule.
|
8419
|
+
# @return [Hash<String,String>]
|
8420
|
+
#
|
8417
8421
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DataQualityRuleResult AWS API Documentation
|
8418
8422
|
#
|
8419
8423
|
class DataQualityRuleResult < Struct.new(
|
@@ -8423,7 +8427,8 @@ module Aws::Glue
|
|
8423
8427
|
:result,
|
8424
8428
|
:evaluated_metrics,
|
8425
8429
|
:evaluated_rule,
|
8426
|
-
:rule_metrics
|
8430
|
+
:rule_metrics,
|
8431
|
+
:labels)
|
8427
8432
|
SENSITIVE = [:description, :evaluation_message, :evaluated_metrics, :evaluated_rule, :rule_metrics]
|
8428
8433
|
include Aws::Structure
|
8429
8434
|
end
|
@@ -14639,6 +14644,14 @@ module Aws::Glue
|
|
14639
14644
|
# along with `TransactionId`.
|
14640
14645
|
# @return [Time]
|
14641
14646
|
#
|
14647
|
+
# @!attribute [rw] audit_context
|
14648
|
+
# A structure containing the Lake Formation [audit context][1].
|
14649
|
+
#
|
14650
|
+
#
|
14651
|
+
#
|
14652
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/webapi/API_AuditContext.html
|
14653
|
+
# @return [Types::AuditContext]
|
14654
|
+
#
|
14642
14655
|
# @!attribute [rw] include_status_details
|
14643
14656
|
# Specifies whether to include status details related to a request to
|
14644
14657
|
# create or update an Glue Data Catalog view.
|
@@ -14652,6 +14665,7 @@ module Aws::Glue
|
|
14652
14665
|
:name,
|
14653
14666
|
:transaction_id,
|
14654
14667
|
:query_as_of_time,
|
14668
|
+
:audit_context,
|
14655
14669
|
:include_status_details)
|
14656
14670
|
SENSITIVE = []
|
14657
14671
|
include Aws::Structure
|
@@ -14800,6 +14814,14 @@ module Aws::Glue
|
|
14800
14814
|
# along with `TransactionId`.
|
14801
14815
|
# @return [Time]
|
14802
14816
|
#
|
14817
|
+
# @!attribute [rw] audit_context
|
14818
|
+
# A structure containing the Lake Formation [audit context][1].
|
14819
|
+
#
|
14820
|
+
#
|
14821
|
+
#
|
14822
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/webapi/API_AuditContext.html
|
14823
|
+
# @return [Types::AuditContext]
|
14824
|
+
#
|
14803
14825
|
# @!attribute [rw] include_status_details
|
14804
14826
|
# Specifies whether to include status details related to a request to
|
14805
14827
|
# create or update an Glue Data Catalog view.
|
@@ -14827,6 +14849,7 @@ module Aws::Glue
|
|
14827
14849
|
:max_results,
|
14828
14850
|
:transaction_id,
|
14829
14851
|
:query_as_of_time,
|
14852
|
+
:audit_context,
|
14830
14853
|
:include_status_details,
|
14831
14854
|
:attributes_to_get)
|
14832
14855
|
SENSITIVE = []
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -4476,6 +4476,11 @@ module Aws
|
|
4476
4476
|
name: ::String,
|
4477
4477
|
?transaction_id: ::String,
|
4478
4478
|
?query_as_of_time: ::Time,
|
4479
|
+
?audit_context: {
|
4480
|
+
additional_audit_context: ::String?,
|
4481
|
+
requested_columns: Array[::String]?,
|
4482
|
+
all_columns_requested: bool?
|
4483
|
+
},
|
4479
4484
|
?include_status_details: bool
|
4480
4485
|
) -> _GetTableResponseSuccess
|
4481
4486
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableResponseSuccess
|
@@ -4538,6 +4543,11 @@ module Aws
|
|
4538
4543
|
?max_results: ::Integer,
|
4539
4544
|
?transaction_id: ::String,
|
4540
4545
|
?query_as_of_time: ::Time,
|
4546
|
+
?audit_context: {
|
4547
|
+
additional_audit_context: ::String?,
|
4548
|
+
requested_columns: Array[::String]?,
|
4549
|
+
all_columns_requested: bool?
|
4550
|
+
},
|
4541
4551
|
?include_status_details: bool,
|
4542
4552
|
?attributes_to_get: Array[("NAME" | "TABLE_TYPE")]
|
4543
4553
|
) -> _GetTablesResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -1910,6 +1910,7 @@ module Aws::Glue
|
|
1910
1910
|
attr_accessor evaluated_metrics: ::Hash[::String, ::Float]
|
1911
1911
|
attr_accessor evaluated_rule: ::String
|
1912
1912
|
attr_accessor rule_metrics: ::Hash[::String, ::Float]
|
1913
|
+
attr_accessor labels: ::Hash[::String, ::String]
|
1913
1914
|
SENSITIVE: [:description, :evaluation_message, :evaluated_metrics, :evaluated_rule, :rule_metrics]
|
1914
1915
|
end
|
1915
1916
|
|
@@ -3637,6 +3638,7 @@ module Aws::Glue
|
|
3637
3638
|
attr_accessor name: ::String
|
3638
3639
|
attr_accessor transaction_id: ::String
|
3639
3640
|
attr_accessor query_as_of_time: ::Time
|
3641
|
+
attr_accessor audit_context: Types::AuditContext
|
3640
3642
|
attr_accessor include_status_details: bool
|
3641
3643
|
SENSITIVE: []
|
3642
3644
|
end
|
@@ -3682,6 +3684,7 @@ module Aws::Glue
|
|
3682
3684
|
attr_accessor max_results: ::Integer
|
3683
3685
|
attr_accessor transaction_id: ::String
|
3684
3686
|
attr_accessor query_as_of_time: ::Time
|
3687
|
+
attr_accessor audit_context: Types::AuditContext
|
3685
3688
|
attr_accessor include_status_details: bool
|
3686
3689
|
attr_accessor attributes_to_get: ::Array[("NAME" | "TABLE_TYPE")]
|
3687
3690
|
SENSITIVE: []
|