aws-sdk-glue 1.236.0 → 1.237.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: bd9fd20b1d5050ecaf97b5e9f0a1a4e2153066ba983f95d9d3159f522f9d8c82
4
- data.tar.gz: f56f55e20bdf3b899d1a7c16f2775964661e5264bd147f35c9338c20d358e4dd
3
+ metadata.gz: '0797d1bab00fbc312926f27d9987773eb7e9ddb72fe548551f7874aa7f68f19b'
4
+ data.tar.gz: e57c962c23fde0fd0de72e04aa8f35a66556d5ad2178927b547403e9e79b0fec
5
5
  SHA512:
6
- metadata.gz: b46488ab8eaae49633f0aafa4a7e1cc59e0f66f32b1458836461d7eafdb8f0fb6ba43abcffd5764354f3d2b60c0214db420d0d8dcde84b09baf2f57762b50068
7
- data.tar.gz: 11546c5f9508c302b71827230ad2ad231b055ad4a7053a56d9fde7a6269e1294d32b863ba95555b3f52c27ef03f22bdc692a892b8edcc27edbb8728bb817a50f
6
+ metadata.gz: 052ef41f6bcf6c8594f7d4362e906fb9e6e0870e39d4cef7a44022cae2237f66ab9788a47c8eb0af9273cd5278087570a9323ec515151991468f2091ff7585bf
7
+ data.tar.gz: f7e9fe7d68626d5207f839ea6e90a66756832d9a98ebf2012e4c17ff1cbdca6f84b61f0af174cfdbaf3cfc815cd2555d5c46fffe7bcc089c3ef1a8dbf4c57535
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.237.0 (2025-10-06)
5
+ ------------------
6
+
7
+ * Feature - Adds labeling for DataQualityRuleResult for GetDataQualityResult and PublishDataQualityResult APIs
8
+
4
9
  1.236.0 (2025-09-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.236.0
1
+ 1.237.0
@@ -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
@@ -17920,7 +17924,7 @@ module Aws::Glue
17920
17924
  tracer: tracer
17921
17925
  )
17922
17926
  context[:gem_name] = 'aws-sdk-glue'
17923
- context[:gem_version] = '1.236.0'
17927
+ context[:gem_version] = '1.237.0'
17924
17928
  Seahorse::Client::Request.new(handlers, context)
17925
17929
  end
17926
17930
 
@@ -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)
@@ -5279,6 +5281,9 @@ module Aws::Glue
5279
5281
  LabelingSetGenerationTaskRunProperties.add_member(:output_s3_path, Shapes::ShapeRef.new(shape: UriString, location_name: "OutputS3Path"))
5280
5282
  LabelingSetGenerationTaskRunProperties.struct_class = Types::LabelingSetGenerationTaskRunProperties
5281
5283
 
5284
+ Labels.key = Shapes::ShapeRef.new(shape: NameString)
5285
+ Labels.value = Shapes::ShapeRef.new(shape: NameString)
5286
+
5282
5287
  LakeFormationConfiguration.add_member(:use_lake_formation_credentials, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "UseLakeFormationCredentials"))
5283
5288
  LakeFormationConfiguration.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
5284
5289
  LakeFormationConfiguration.struct_class = Types::LakeFormationConfiguration
@@ -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
data/lib/aws-sdk-glue.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Glue
54
54
  autoload :EndpointProvider, 'aws-sdk-glue/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-glue/endpoints'
56
56
 
57
- GEM_VERSION = '1.236.0'
57
+ GEM_VERSION = '1.237.0'
58
58
 
59
59
  end
60
60
 
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.236.0
4
+ version: 1.237.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services