aws-sdk-glue 1.273.0 → 1.274.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 +18 -2
- data/lib/aws-sdk-glue/client_api.rb +4 -0
- data/lib/aws-sdk-glue/types.rb +33 -5
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +3 -1
- 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: e32fa2b9c080775de0e07993a8d8d81862c485862817b8d876a5b517838671cc
|
|
4
|
+
data.tar.gz: 797615532f0440de2f0db3214bc86745304d2b722b73cda066e9fe48d7b27345
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bda530a31aa8eb9492a6ced146e88f92eda65af8ea45359d7f4992d32cc1753aa62e1f6f50ed9f983b8c7241ae3634226c92ca97c80d086584548e686cfc6fe2
|
|
7
|
+
data.tar.gz: 7e80e5fdfbf4879735e0d7f94bf09ccdaf7641b6b0073edd690e6e1b8e40ad6db23038960d246380e3bd7a1c8ac82ea6166ed08f08682723e1e1a63a44591c5d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.274.0 (2026-09-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Introducing AWS Glue Data Quality advanced rule recommendations for faster recommendations. This capability uses Amazon Athena to analyze a sample of table data and Amazon Bedrock to recommend DQDL rules.
|
|
8
|
+
|
|
4
9
|
1.273.0 (2026-09-14)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.274.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -8765,6 +8765,7 @@ module Aws::Glue
|
|
|
8765
8765
|
# * {Types::GetDataQualityRuleRecommendationRunResponse#created_ruleset_name #created_ruleset_name} => String
|
|
8766
8766
|
# * {Types::GetDataQualityRuleRecommendationRunResponse#data_quality_security_configuration #data_quality_security_configuration} => String
|
|
8767
8767
|
# * {Types::GetDataQualityRuleRecommendationRunResponse#additional_run_options #additional_run_options} => Types::DataQualityRuleRecommendationRunAdditionalRunOptions
|
|
8768
|
+
# * {Types::GetDataQualityRuleRecommendationRunResponse#recommendation_mode #recommendation_mode} => String
|
|
8768
8769
|
#
|
|
8769
8770
|
# @example Request syntax with placeholder values
|
|
8770
8771
|
#
|
|
@@ -8801,6 +8802,7 @@ module Aws::Glue
|
|
|
8801
8802
|
# resp.created_ruleset_name #=> String
|
|
8802
8803
|
# resp.data_quality_security_configuration #=> String
|
|
8803
8804
|
# resp.additional_run_options.custom_log_group_prefix #=> String
|
|
8805
|
+
# resp.recommendation_mode #=> String, one of "BASIC", "ADVANCED"
|
|
8804
8806
|
#
|
|
8805
8807
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityRuleRecommendationRun AWS API Documentation
|
|
8806
8808
|
#
|
|
@@ -14285,6 +14287,7 @@ module Aws::Glue
|
|
|
14285
14287
|
# resp.runs[0].data_source.data_quality_glue_table.additional_options["NameString"] #=> String
|
|
14286
14288
|
# resp.runs[0].data_source.data_quality_glue_table.pre_processing_query #=> String
|
|
14287
14289
|
# resp.runs[0].created_ruleset_name #=> String
|
|
14290
|
+
# resp.runs[0].recommendation_mode #=> String, one of "BASIC", "ADVANCED"
|
|
14288
14291
|
# resp.next_token #=> String
|
|
14289
14292
|
#
|
|
14290
14293
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListDataQualityRuleRecommendationRuns AWS API Documentation
|
|
@@ -17707,7 +17710,14 @@ module Aws::Glue
|
|
|
17707
17710
|
# The data source (Glue table) associated with this run.
|
|
17708
17711
|
#
|
|
17709
17712
|
# @option params [required, String] :role
|
|
17710
|
-
#
|
|
17713
|
+
# The IAM role that Glue assumes to access resources for the run.
|
|
17714
|
+
#
|
|
17715
|
+
# For more information, see [Configure IAM permissions for Glue Data
|
|
17716
|
+
# Quality][1].
|
|
17717
|
+
#
|
|
17718
|
+
#
|
|
17719
|
+
#
|
|
17720
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/data-quality-authorization.html
|
|
17711
17721
|
#
|
|
17712
17722
|
# @option params [Integer] :number_of_workers
|
|
17713
17723
|
# The number of `G.1X` workers to be used in the run. The default is 5.
|
|
@@ -17732,6 +17742,11 @@ module Aws::Glue
|
|
|
17732
17742
|
# @option params [Types::DataQualityRuleRecommendationRunAdditionalRunOptions] :additional_run_options
|
|
17733
17743
|
# Additional run options you can specify for a recommendation run.
|
|
17734
17744
|
#
|
|
17745
|
+
# @option params [String] :recommendation_mode
|
|
17746
|
+
# The mode that Glue Data Quality uses to recommend rules.
|
|
17747
|
+
#
|
|
17748
|
+
# The default is `BASIC`.
|
|
17749
|
+
#
|
|
17735
17750
|
# @return [Types::StartDataQualityRuleRecommendationRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
17736
17751
|
#
|
|
17737
17752
|
# * {Types::StartDataQualityRuleRecommendationRunResponse#run_id #run_id} => String
|
|
@@ -17769,6 +17784,7 @@ module Aws::Glue
|
|
|
17769
17784
|
# additional_run_options: {
|
|
17770
17785
|
# custom_log_group_prefix: "GenericString",
|
|
17771
17786
|
# },
|
|
17787
|
+
# recommendation_mode: "BASIC", # accepts BASIC, ADVANCED
|
|
17772
17788
|
# })
|
|
17773
17789
|
#
|
|
17774
17790
|
# @example Response structure
|
|
@@ -21166,7 +21182,7 @@ module Aws::Glue
|
|
|
21166
21182
|
tracer: tracer
|
|
21167
21183
|
)
|
|
21168
21184
|
context[:gem_name] = 'aws-sdk-glue'
|
|
21169
|
-
context[:gem_version] = '1.
|
|
21185
|
+
context[:gem_version] = '1.274.0'
|
|
21170
21186
|
Seahorse::Client::Request.new(handlers, context)
|
|
21171
21187
|
end
|
|
21172
21188
|
|
|
@@ -1399,6 +1399,7 @@ module Aws::Glue
|
|
|
1399
1399
|
RecipeStep = Shapes::StructureShape.new(name: 'RecipeStep')
|
|
1400
1400
|
RecipeSteps = Shapes::ListShape.new(name: 'RecipeSteps')
|
|
1401
1401
|
RecipeVersion = Shapes::StringShape.new(name: 'RecipeVersion')
|
|
1402
|
+
RecommendationMode = Shapes::StringShape.new(name: 'RecommendationMode')
|
|
1402
1403
|
Record = Shapes::DocumentShape.new(name: 'Record', document: true)
|
|
1403
1404
|
Records = Shapes::ListShape.new(name: 'Records')
|
|
1404
1405
|
RecordsCount = Shapes::IntegerShape.new(name: 'RecordsCount')
|
|
@@ -3681,6 +3682,7 @@ module Aws::Glue
|
|
|
3681
3682
|
DataQualityRuleRecommendationRunDescription.add_member(:started_on, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartedOn"))
|
|
3682
3683
|
DataQualityRuleRecommendationRunDescription.add_member(:data_source, Shapes::ShapeRef.new(shape: DataSource, location_name: "DataSource"))
|
|
3683
3684
|
DataQualityRuleRecommendationRunDescription.add_member(:created_ruleset_name, Shapes::ShapeRef.new(shape: NameString, location_name: "CreatedRulesetName"))
|
|
3685
|
+
DataQualityRuleRecommendationRunDescription.add_member(:recommendation_mode, Shapes::ShapeRef.new(shape: RecommendationMode, location_name: "RecommendationMode"))
|
|
3684
3686
|
DataQualityRuleRecommendationRunDescription.struct_class = Types::DataQualityRuleRecommendationRunDescription
|
|
3685
3687
|
|
|
3686
3688
|
DataQualityRuleRecommendationRunFilter.add_member(:data_source, Shapes::ShapeRef.new(shape: DataSource, required: true, location_name: "DataSource"))
|
|
@@ -4797,6 +4799,7 @@ module Aws::Glue
|
|
|
4797
4799
|
GetDataQualityRuleRecommendationRunResponse.add_member(:created_ruleset_name, Shapes::ShapeRef.new(shape: NameString, location_name: "CreatedRulesetName"))
|
|
4798
4800
|
GetDataQualityRuleRecommendationRunResponse.add_member(:data_quality_security_configuration, Shapes::ShapeRef.new(shape: NameString, location_name: "DataQualitySecurityConfiguration"))
|
|
4799
4801
|
GetDataQualityRuleRecommendationRunResponse.add_member(:additional_run_options, Shapes::ShapeRef.new(shape: DataQualityRuleRecommendationRunAdditionalRunOptions, location_name: "AdditionalRunOptions"))
|
|
4802
|
+
GetDataQualityRuleRecommendationRunResponse.add_member(:recommendation_mode, Shapes::ShapeRef.new(shape: RecommendationMode, location_name: "RecommendationMode"))
|
|
4800
4803
|
GetDataQualityRuleRecommendationRunResponse.struct_class = Types::GetDataQualityRuleRecommendationRunResponse
|
|
4801
4804
|
|
|
4802
4805
|
GetDataQualityRulesetEvaluationRunRequest.add_member(:run_id, Shapes::ShapeRef.new(shape: HashString, required: true, location_name: "RunId"))
|
|
@@ -7788,6 +7791,7 @@ module Aws::Glue
|
|
|
7788
7791
|
StartDataQualityRuleRecommendationRunRequest.add_member(:data_quality_security_configuration, Shapes::ShapeRef.new(shape: NameString, location_name: "DataQualitySecurityConfiguration"))
|
|
7789
7792
|
StartDataQualityRuleRecommendationRunRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: HashString, location_name: "ClientToken"))
|
|
7790
7793
|
StartDataQualityRuleRecommendationRunRequest.add_member(:additional_run_options, Shapes::ShapeRef.new(shape: DataQualityRuleRecommendationRunAdditionalRunOptions, location_name: "AdditionalRunOptions"))
|
|
7794
|
+
StartDataQualityRuleRecommendationRunRequest.add_member(:recommendation_mode, Shapes::ShapeRef.new(shape: RecommendationMode, location_name: "RecommendationMode"))
|
|
7791
7795
|
StartDataQualityRuleRecommendationRunRequest.struct_class = Types::StartDataQualityRuleRecommendationRunRequest
|
|
7792
7796
|
|
|
7793
7797
|
StartDataQualityRuleRecommendationRunResponse.add_member(:run_id, Shapes::ShapeRef.new(shape: HashString, location_name: "RunId"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -9116,6 +9116,12 @@ module Aws::Glue
|
|
|
9116
9116
|
# The name of the ruleset that was created by the recommendation run.
|
|
9117
9117
|
# @return [String]
|
|
9118
9118
|
#
|
|
9119
|
+
# @!attribute [rw] recommendation_mode
|
|
9120
|
+
# The mode that Glue Data Quality uses to recommend rules.
|
|
9121
|
+
#
|
|
9122
|
+
# The default is `BASIC`.
|
|
9123
|
+
# @return [String]
|
|
9124
|
+
#
|
|
9119
9125
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DataQualityRuleRecommendationRunDescription AWS API Documentation
|
|
9120
9126
|
#
|
|
9121
9127
|
class DataQualityRuleRecommendationRunDescription < Struct.new(
|
|
@@ -9123,7 +9129,8 @@ module Aws::Glue
|
|
|
9123
9129
|
:status,
|
|
9124
9130
|
:started_on,
|
|
9125
9131
|
:data_source,
|
|
9126
|
-
:created_ruleset_name
|
|
9132
|
+
:created_ruleset_name,
|
|
9133
|
+
:recommendation_mode)
|
|
9127
9134
|
SENSITIVE = []
|
|
9128
9135
|
include Aws::Structure
|
|
9129
9136
|
end
|
|
@@ -14202,7 +14209,7 @@ module Aws::Glue
|
|
|
14202
14209
|
# @return [Types::DataSource]
|
|
14203
14210
|
#
|
|
14204
14211
|
# @!attribute [rw] role
|
|
14205
|
-
#
|
|
14212
|
+
# The IAM role that Glue assumes to access resources for the run.
|
|
14206
14213
|
# @return [String]
|
|
14207
14214
|
#
|
|
14208
14215
|
# @!attribute [rw] number_of_workers
|
|
@@ -14260,6 +14267,12 @@ module Aws::Glue
|
|
|
14260
14267
|
# Additional run options you can specify for a recommendation run.
|
|
14261
14268
|
# @return [Types::DataQualityRuleRecommendationRunAdditionalRunOptions]
|
|
14262
14269
|
#
|
|
14270
|
+
# @!attribute [rw] recommendation_mode
|
|
14271
|
+
# The mode that Glue Data Quality uses to recommend rules.
|
|
14272
|
+
#
|
|
14273
|
+
# The default is `BASIC`.
|
|
14274
|
+
# @return [String]
|
|
14275
|
+
#
|
|
14263
14276
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityRuleRecommendationRunResponse AWS API Documentation
|
|
14264
14277
|
#
|
|
14265
14278
|
class GetDataQualityRuleRecommendationRunResponse < Struct.new(
|
|
@@ -14277,7 +14290,8 @@ module Aws::Glue
|
|
|
14277
14290
|
:recommended_ruleset,
|
|
14278
14291
|
:created_ruleset_name,
|
|
14279
14292
|
:data_quality_security_configuration,
|
|
14280
|
-
:additional_run_options
|
|
14293
|
+
:additional_run_options,
|
|
14294
|
+
:recommendation_mode)
|
|
14281
14295
|
SENSITIVE = []
|
|
14282
14296
|
include Aws::Structure
|
|
14283
14297
|
end
|
|
@@ -29169,7 +29183,14 @@ module Aws::Glue
|
|
|
29169
29183
|
# @return [Types::DataSource]
|
|
29170
29184
|
#
|
|
29171
29185
|
# @!attribute [rw] role
|
|
29172
|
-
#
|
|
29186
|
+
# The IAM role that Glue assumes to access resources for the run.
|
|
29187
|
+
#
|
|
29188
|
+
# For more information, see [Configure IAM permissions for Glue Data
|
|
29189
|
+
# Quality][1].
|
|
29190
|
+
#
|
|
29191
|
+
#
|
|
29192
|
+
#
|
|
29193
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/data-quality-authorization.html
|
|
29173
29194
|
# @return [String]
|
|
29174
29195
|
#
|
|
29175
29196
|
# @!attribute [rw] number_of_workers
|
|
@@ -29202,6 +29223,12 @@ module Aws::Glue
|
|
|
29202
29223
|
# Additional run options you can specify for a recommendation run.
|
|
29203
29224
|
# @return [Types::DataQualityRuleRecommendationRunAdditionalRunOptions]
|
|
29204
29225
|
#
|
|
29226
|
+
# @!attribute [rw] recommendation_mode
|
|
29227
|
+
# The mode that Glue Data Quality uses to recommend rules.
|
|
29228
|
+
#
|
|
29229
|
+
# The default is `BASIC`.
|
|
29230
|
+
# @return [String]
|
|
29231
|
+
#
|
|
29205
29232
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StartDataQualityRuleRecommendationRunRequest AWS API Documentation
|
|
29206
29233
|
#
|
|
29207
29234
|
class StartDataQualityRuleRecommendationRunRequest < Struct.new(
|
|
@@ -29212,7 +29239,8 @@ module Aws::Glue
|
|
|
29212
29239
|
:created_ruleset_name,
|
|
29213
29240
|
:data_quality_security_configuration,
|
|
29214
29241
|
:client_token,
|
|
29215
|
-
:additional_run_options
|
|
29242
|
+
:additional_run_options,
|
|
29243
|
+
:recommendation_mode)
|
|
29216
29244
|
SENSITIVE = []
|
|
29217
29245
|
include Aws::Structure
|
|
29218
29246
|
end
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -2009,6 +2009,7 @@ module Aws
|
|
|
2009
2009
|
def created_ruleset_name: () -> ::String
|
|
2010
2010
|
def data_quality_security_configuration: () -> ::String
|
|
2011
2011
|
def additional_run_options: () -> Types::DataQualityRuleRecommendationRunAdditionalRunOptions
|
|
2012
|
+
def recommendation_mode: () -> ("BASIC" | "ADVANCED")
|
|
2012
2013
|
end
|
|
2013
2014
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_data_quality_rule_recommendation_run-instance_method
|
|
2014
2015
|
def get_data_quality_rule_recommendation_run: (
|
|
@@ -4042,7 +4043,8 @@ module Aws
|
|
|
4042
4043
|
?client_token: ::String,
|
|
4043
4044
|
?additional_run_options: {
|
|
4044
4045
|
custom_log_group_prefix: ::String?
|
|
4045
|
-
}
|
|
4046
|
+
},
|
|
4047
|
+
?recommendation_mode: ("BASIC" | "ADVANCED")
|
|
4046
4048
|
) -> _StartDataQualityRuleRecommendationRunResponseSuccess
|
|
4047
4049
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDataQualityRuleRecommendationRunResponseSuccess
|
|
4048
4050
|
|
data/sig/types.rbs
CHANGED
|
@@ -2095,6 +2095,7 @@ module Aws::Glue
|
|
|
2095
2095
|
attr_accessor started_on: ::Time
|
|
2096
2096
|
attr_accessor data_source: Types::DataSource
|
|
2097
2097
|
attr_accessor created_ruleset_name: ::String
|
|
2098
|
+
attr_accessor recommendation_mode: ("BASIC" | "ADVANCED")
|
|
2098
2099
|
SENSITIVE: []
|
|
2099
2100
|
end
|
|
2100
2101
|
|
|
@@ -3546,6 +3547,7 @@ module Aws::Glue
|
|
|
3546
3547
|
attr_accessor created_ruleset_name: ::String
|
|
3547
3548
|
attr_accessor data_quality_security_configuration: ::String
|
|
3548
3549
|
attr_accessor additional_run_options: Types::DataQualityRuleRecommendationRunAdditionalRunOptions
|
|
3550
|
+
attr_accessor recommendation_mode: ("BASIC" | "ADVANCED")
|
|
3549
3551
|
SENSITIVE: []
|
|
3550
3552
|
end
|
|
3551
3553
|
|
|
@@ -7232,6 +7234,7 @@ module Aws::Glue
|
|
|
7232
7234
|
attr_accessor data_quality_security_configuration: ::String
|
|
7233
7235
|
attr_accessor client_token: ::String
|
|
7234
7236
|
attr_accessor additional_run_options: Types::DataQualityRuleRecommendationRunAdditionalRunOptions
|
|
7237
|
+
attr_accessor recommendation_mode: ("BASIC" | "ADVANCED")
|
|
7235
7238
|
SENSITIVE: []
|
|
7236
7239
|
end
|
|
7237
7240
|
|