aws-sdk-glue 1.177.0 → 1.178.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: 5632615edc16ed8dfe518374b578d644671b5807d60a6575cb0bcba00a9953b1
4
- data.tar.gz: 7cb47cb0e191b02f1fbaafb144bf1f660e90da124eaf21b21160dd3c6f79a82b
3
+ metadata.gz: 292432521ca18ed4bdcf7e8ac43235c16dc408afb9a161f96d1743802749b243
4
+ data.tar.gz: 49291f5da066aad5275357e2e969ab57023cedbedb832fc11101e0c7240c6ce7
5
5
  SHA512:
6
- metadata.gz: 20917ca8e62c5668a41f9707936cdc5105128535f8ba3a9bc5afc65600f3f7cbe6171a6930d03814bf0eda2b4946d91cae0e5e8b9cf9eedf18576ea65049d05b
7
- data.tar.gz: b9faaeda2bfa1ed1a5ce598409aea402f342c1e2407630d957d0607666440bc2e37722ae8cdaa37e966733574a2a11847b61a60768353bf496edc57d382333c3
6
+ metadata.gz: 3c9699231d525bb117efc042fd309b620c64aa74ae4fe211f374397377398fd03d6336201fa0881d1302b153f5ad702dee751aabdd938a709ceb1a34e1925ada
7
+ data.tar.gz: 504fced69766bbbf92890f10dfde26ac448709d3690da36c70cb7497fa580368ac838463b158ebc551daef6aef11c5051c4ccbb6dc76df11520b0b8186351622
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.178.0 (2024-06-13)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for configuration of evaluation method for composite rules in Glue Data Quality rulesets.
8
+
4
9
  1.177.0 (2024-06-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.177.0
1
+ 1.178.0
@@ -7078,6 +7078,7 @@ module Aws::Glue
7078
7078
  # resp.timeout #=> Integer
7079
7079
  # resp.additional_run_options.cloud_watch_metrics_enabled #=> Boolean
7080
7080
  # resp.additional_run_options.results_s3_prefix #=> String
7081
+ # resp.additional_run_options.composite_rule_evaluation_method #=> String, one of "COLUMN", "ROW"
7081
7082
  # resp.status #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
7082
7083
  # resp.error_string #=> String
7083
7084
  # resp.started_on #=> Time
@@ -14902,6 +14903,7 @@ module Aws::Glue
14902
14903
  # additional_run_options: {
14903
14904
  # cloud_watch_metrics_enabled: false,
14904
14905
  # results_s3_prefix: "UriString",
14906
+ # composite_rule_evaluation_method: "COLUMN", # accepts COLUMN, ROW
14905
14907
  # },
14906
14908
  # ruleset_names: ["NameString"], # required
14907
14909
  # additional_data_sources: {
@@ -17312,7 +17314,7 @@ module Aws::Glue
17312
17314
  params: params,
17313
17315
  config: config)
17314
17316
  context[:gem_name] = 'aws-sdk-glue'
17315
- context[:gem_version] = '1.177.0'
17317
+ context[:gem_version] = '1.178.0'
17316
17318
  Seahorse::Client::Request.new(handlers, context)
17317
17319
  end
17318
17320
 
@@ -310,6 +310,7 @@ module Aws::Glue
310
310
  CustomEntityTypes = Shapes::ListShape.new(name: 'CustomEntityTypes')
311
311
  CustomPatterns = Shapes::StringShape.new(name: 'CustomPatterns')
312
312
  DQAdditionalOptions = Shapes::MapShape.new(name: 'DQAdditionalOptions')
313
+ DQCompositeRuleEvaluationMethod = Shapes::StringShape.new(name: 'DQCompositeRuleEvaluationMethod')
313
314
  DQDLAliases = Shapes::MapShape.new(name: 'DQDLAliases')
314
315
  DQDLString = Shapes::StringShape.new(name: 'DQDLString')
315
316
  DQResultsPublishingOptions = Shapes::StructureShape.new(name: 'DQResultsPublishingOptions')
@@ -2499,6 +2500,7 @@ module Aws::Glue
2499
2500
 
2500
2501
  DataQualityEvaluationRunAdditionalRunOptions.add_member(:cloud_watch_metrics_enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "CloudWatchMetricsEnabled"))
2501
2502
  DataQualityEvaluationRunAdditionalRunOptions.add_member(:results_s3_prefix, Shapes::ShapeRef.new(shape: UriString, location_name: "ResultsS3Prefix"))
2503
+ DataQualityEvaluationRunAdditionalRunOptions.add_member(:composite_rule_evaluation_method, Shapes::ShapeRef.new(shape: DQCompositeRuleEvaluationMethod, location_name: "CompositeRuleEvaluationMethod"))
2502
2504
  DataQualityEvaluationRunAdditionalRunOptions.struct_class = Types::DataQualityEvaluationRunAdditionalRunOptions
2503
2505
 
2504
2506
  DataQualityMetricValues.add_member(:actual_value, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "ActualValue"))
@@ -6375,11 +6375,17 @@ module Aws::Glue
6375
6375
  # Prefix for Amazon S3 to store results.
6376
6376
  # @return [String]
6377
6377
  #
6378
+ # @!attribute [rw] composite_rule_evaluation_method
6379
+ # Set the evaluation method for composite rules in the ruleset to
6380
+ # ROW/COLUMN
6381
+ # @return [String]
6382
+ #
6378
6383
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DataQualityEvaluationRunAdditionalRunOptions AWS API Documentation
6379
6384
  #
6380
6385
  class DataQualityEvaluationRunAdditionalRunOptions < Struct.new(
6381
6386
  :cloud_watch_metrics_enabled,
6382
- :results_s3_prefix)
6387
+ :results_s3_prefix,
6388
+ :composite_rule_evaluation_method)
6383
6389
  SENSITIVE = []
6384
6390
  include Aws::Structure
6385
6391
  end
@@ -9992,7 +9998,8 @@ module Aws::Glue
9992
9998
  # @return [Integer]
9993
9999
  #
9994
10000
  # @!attribute [rw] ruleset_names
9995
- # A list of ruleset names for the run.
10001
+ # A list of ruleset names for the run. Currently, this parameter takes
10002
+ # only one Ruleset name.
9996
10003
  # @return [Array<String>]
9997
10004
  #
9998
10005
  # @!attribute [rw] result_ids
data/lib/aws-sdk-glue.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-glue/customizations'
52
52
  # @!group service
53
53
  module Aws::Glue
54
54
 
55
- GEM_VERSION = '1.177.0'
55
+ GEM_VERSION = '1.178.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -4519,7 +4519,8 @@ module Aws
4519
4519
  ?client_token: ::String,
4520
4520
  ?additional_run_options: {
4521
4521
  cloud_watch_metrics_enabled: bool?,
4522
- results_s3_prefix: ::String?
4522
+ results_s3_prefix: ::String?,
4523
+ composite_rule_evaluation_method: ("COLUMN" | "ROW")?
4523
4524
  },
4524
4525
  ruleset_names: Array[::String],
4525
4526
  ?additional_data_sources: Hash[::String, {
data/sig/types.rbs CHANGED
@@ -1450,6 +1450,7 @@ module Aws::Glue
1450
1450
  class DataQualityEvaluationRunAdditionalRunOptions
1451
1451
  attr_accessor cloud_watch_metrics_enabled: bool
1452
1452
  attr_accessor results_s3_prefix: ::String
1453
+ attr_accessor composite_rule_evaluation_method: ("COLUMN" | "ROW")
1453
1454
  SENSITIVE: []
1454
1455
  end
1455
1456
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.177.0
4
+ version: 1.178.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-06 00:00:00.000000000 Z
11
+ date: 2024-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core