aws-sdk-glue 1.186.0 → 1.187.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.
data/sig/client.rbs CHANGED
@@ -320,6 +320,23 @@ module Aws
320
320
  ) -> _BatchGetWorkflowsResponseSuccess
321
321
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetWorkflowsResponseSuccess
322
322
 
323
+ interface _BatchPutDataQualityStatisticAnnotationResponseSuccess
324
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchPutDataQualityStatisticAnnotationResponse]
325
+ def failed_inclusion_annotations: () -> ::Array[Types::AnnotationError]
326
+ end
327
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#batch_put_data_quality_statistic_annotation-instance_method
328
+ def batch_put_data_quality_statistic_annotation: (
329
+ inclusion_annotations: Array[
330
+ {
331
+ profile_id: ::String?,
332
+ statistic_id: ::String?,
333
+ inclusion_annotation: ("INCLUDE" | "EXCLUDE")?
334
+ },
335
+ ],
336
+ ?client_token: ::String
337
+ ) -> _BatchPutDataQualityStatisticAnnotationResponseSuccess
338
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchPutDataQualityStatisticAnnotationResponseSuccess
339
+
323
340
  interface _BatchStopJobRunResponseSuccess
324
341
  include ::Seahorse::Client::_ResponseSuccess[Types::BatchStopJobRunResponse]
325
342
  def successful_submissions: () -> ::Array[Types::BatchStopJobRunSuccessfulSubmission]
@@ -668,6 +685,7 @@ module Aws
668
685
  database_name: ::String,
669
686
  catalog_id: ::String?
670
687
  },
688
+ ?data_quality_security_configuration: ::String,
671
689
  ?client_token: ::String
672
690
  ) -> _CreateDataQualityRulesetResponseSuccess
673
691
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataQualityRulesetResponseSuccess
@@ -2986,9 +3004,36 @@ module Aws
2986
3004
  ) -> _GetDataCatalogEncryptionSettingsResponseSuccess
2987
3005
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataCatalogEncryptionSettingsResponseSuccess
2988
3006
 
3007
+ interface _GetDataQualityModelResponseSuccess
3008
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDataQualityModelResponse]
3009
+ def status: () -> ("RUNNING" | "SUCCEEDED" | "FAILED")
3010
+ def started_on: () -> ::Time
3011
+ def completed_on: () -> ::Time
3012
+ def failure_reason: () -> ::String
3013
+ end
3014
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_data_quality_model-instance_method
3015
+ def get_data_quality_model: (
3016
+ ?statistic_id: ::String,
3017
+ profile_id: ::String
3018
+ ) -> _GetDataQualityModelResponseSuccess
3019
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataQualityModelResponseSuccess
3020
+
3021
+ interface _GetDataQualityModelResultResponseSuccess
3022
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDataQualityModelResultResponse]
3023
+ def completed_on: () -> ::Time
3024
+ def model: () -> ::Array[Types::StatisticModelResult]
3025
+ end
3026
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_data_quality_model_result-instance_method
3027
+ def get_data_quality_model_result: (
3028
+ statistic_id: ::String,
3029
+ profile_id: ::String
3030
+ ) -> _GetDataQualityModelResultResponseSuccess
3031
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataQualityModelResultResponseSuccess
3032
+
2989
3033
  interface _GetDataQualityResultResponseSuccess
2990
3034
  include ::Seahorse::Client::_ResponseSuccess[Types::GetDataQualityResultResponse]
2991
3035
  def result_id: () -> ::String
3036
+ def profile_id: () -> ::String
2992
3037
  def score: () -> ::Float
2993
3038
  def data_source: () -> Types::DataSource
2994
3039
  def ruleset_name: () -> ::String
@@ -3023,6 +3068,7 @@ module Aws
3023
3068
  def execution_time: () -> ::Integer
3024
3069
  def recommended_ruleset: () -> ::String
3025
3070
  def created_ruleset_name: () -> ::String
3071
+ def data_quality_security_configuration: () -> ::String
3026
3072
  end
3027
3073
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_data_quality_rule_recommendation_run-instance_method
3028
3074
  def get_data_quality_rule_recommendation_run: (
@@ -3039,6 +3085,7 @@ module Aws
3039
3085
  def created_on: () -> ::Time
3040
3086
  def last_modified_on: () -> ::Time
3041
3087
  def recommendation_run_id: () -> ::String
3088
+ def data_quality_security_configuration: () -> ::String
3042
3089
  end
3043
3090
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_data_quality_ruleset-instance_method
3044
3091
  def get_data_quality_ruleset: (
@@ -4103,6 +4150,42 @@ module Aws
4103
4150
  ) -> _ListDataQualityRulesetsResponseSuccess
4104
4151
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataQualityRulesetsResponseSuccess
4105
4152
 
4153
+ interface _ListDataQualityStatisticAnnotationsResponseSuccess
4154
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDataQualityStatisticAnnotationsResponse]
4155
+ def annotations: () -> ::Array[Types::StatisticAnnotation]
4156
+ def next_token: () -> ::String
4157
+ end
4158
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#list_data_quality_statistic_annotations-instance_method
4159
+ def list_data_quality_statistic_annotations: (
4160
+ ?statistic_id: ::String,
4161
+ ?profile_id: ::String,
4162
+ ?timestamp_filter: {
4163
+ recorded_before: ::Time?,
4164
+ recorded_after: ::Time?
4165
+ },
4166
+ ?max_results: ::Integer,
4167
+ ?next_token: ::String
4168
+ ) -> _ListDataQualityStatisticAnnotationsResponseSuccess
4169
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataQualityStatisticAnnotationsResponseSuccess
4170
+
4171
+ interface _ListDataQualityStatisticsResponseSuccess
4172
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDataQualityStatisticsResponse]
4173
+ def statistics: () -> ::Array[Types::StatisticSummary]
4174
+ def next_token: () -> ::String
4175
+ end
4176
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#list_data_quality_statistics-instance_method
4177
+ def list_data_quality_statistics: (
4178
+ ?statistic_id: ::String,
4179
+ ?profile_id: ::String,
4180
+ ?timestamp_filter: {
4181
+ recorded_before: ::Time?,
4182
+ recorded_after: ::Time?
4183
+ },
4184
+ ?max_results: ::Integer,
4185
+ ?next_token: ::String
4186
+ ) -> _ListDataQualityStatisticsResponseSuccess
4187
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataQualityStatisticsResponseSuccess
4188
+
4106
4189
  interface _ListDevEndpointsResponseSuccess
4107
4190
  include ::Seahorse::Client::_ResponseSuccess[Types::ListDevEndpointsResponse]
4108
4191
  def dev_endpoint_names: () -> ::Array[::String]
@@ -4312,6 +4395,16 @@ module Aws
4312
4395
  ) -> _PutDataCatalogEncryptionSettingsResponseSuccess
4313
4396
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDataCatalogEncryptionSettingsResponseSuccess
4314
4397
 
4398
+ interface _PutDataQualityProfileAnnotationResponseSuccess
4399
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutDataQualityProfileAnnotationResponse]
4400
+ end
4401
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#put_data_quality_profile_annotation-instance_method
4402
+ def put_data_quality_profile_annotation: (
4403
+ profile_id: ::String,
4404
+ inclusion_annotation: ("INCLUDE" | "EXCLUDE")
4405
+ ) -> _PutDataQualityProfileAnnotationResponseSuccess
4406
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDataQualityProfileAnnotationResponseSuccess
4407
+
4315
4408
  interface _PutResourcePolicyResponseSuccess
4316
4409
  include ::Seahorse::Client::_ResponseSuccess[Types::PutResourcePolicyResponse]
4317
4410
  def policy_hash: () -> ::String
@@ -4572,6 +4665,7 @@ module Aws
4572
4665
  ?number_of_workers: ::Integer,
4573
4666
  ?timeout: ::Integer,
4574
4667
  ?created_ruleset_name: ::String,
4668
+ ?data_quality_security_configuration: ::String,
4575
4669
  ?client_token: ::String
4576
4670
  ) -> _StartDataQualityRuleRecommendationRunResponseSuccess
4577
4671
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDataQualityRuleRecommendationRunResponseSuccess
data/sig/types.rbs CHANGED
@@ -91,6 +91,13 @@ module Aws::Glue
91
91
  SENSITIVE: []
92
92
  end
93
93
 
94
+ class AnnotationError
95
+ attr_accessor profile_id: ::String
96
+ attr_accessor statistic_id: ::String
97
+ attr_accessor failure_reason: ::String
98
+ SENSITIVE: []
99
+ end
100
+
94
101
  class ApplyMapping
95
102
  attr_accessor name: ::String
96
103
  attr_accessor inputs: ::Array[::String]
@@ -347,6 +354,17 @@ module Aws::Glue
347
354
  SENSITIVE: []
348
355
  end
349
356
 
357
+ class BatchPutDataQualityStatisticAnnotationRequest
358
+ attr_accessor inclusion_annotations: ::Array[Types::DatapointInclusionAnnotation]
359
+ attr_accessor client_token: ::String
360
+ SENSITIVE: []
361
+ end
362
+
363
+ class BatchPutDataQualityStatisticAnnotationResponse
364
+ attr_accessor failed_inclusion_annotations: ::Array[Types::AnnotationError]
365
+ SENSITIVE: []
366
+ end
367
+
350
368
  class BatchStopJobRunError
351
369
  attr_accessor job_name: ::String
352
370
  attr_accessor job_run_id: ::String
@@ -1077,6 +1095,7 @@ module Aws::Glue
1077
1095
  attr_accessor ruleset: ::String
1078
1096
  attr_accessor tags: ::Hash[::String, ::String]
1079
1097
  attr_accessor target_table: Types::DataQualityTargetTable
1098
+ attr_accessor data_quality_security_configuration: ::String
1080
1099
  attr_accessor client_token: ::String
1081
1100
  SENSITIVE: []
1082
1101
  end
@@ -1472,7 +1491,7 @@ module Aws::Glue
1472
1491
  attr_accessor description: ::String
1473
1492
  attr_accessor evaluation_message: ::String
1474
1493
  attr_accessor evaluated_metrics: ::Hash[::String, ::Float]
1475
- SENSITIVE: []
1494
+ SENSITIVE: [:description, :evaluation_message, :evaluated_metrics]
1476
1495
  end
1477
1496
 
1478
1497
  class DataQualityEvaluationRunAdditionalRunOptions
@@ -1493,11 +1512,12 @@ module Aws::Glue
1493
1512
  class DataQualityObservation
1494
1513
  attr_accessor description: ::String
1495
1514
  attr_accessor metric_based_observation: Types::MetricBasedObservation
1496
- SENSITIVE: []
1515
+ SENSITIVE: [:description]
1497
1516
  end
1498
1517
 
1499
1518
  class DataQualityResult
1500
1519
  attr_accessor result_id: ::String
1520
+ attr_accessor profile_id: ::String
1501
1521
  attr_accessor score: ::Float
1502
1522
  attr_accessor data_source: Types::DataSource
1503
1523
  attr_accessor ruleset_name: ::String
@@ -1552,7 +1572,8 @@ module Aws::Glue
1552
1572
  attr_accessor evaluation_message: ::String
1553
1573
  attr_accessor result: ("PASS" | "FAIL" | "ERROR")
1554
1574
  attr_accessor evaluated_metrics: ::Hash[::String, ::Float]
1555
- SENSITIVE: []
1575
+ attr_accessor evaluated_rule: ::String
1576
+ SENSITIVE: [:description, :evaluation_message, :evaluated_metrics, :evaluated_rule]
1556
1577
  end
1557
1578
 
1558
1579
  class DataQualityRulesetEvaluationRunDescription
@@ -1635,6 +1656,13 @@ module Aws::Glue
1635
1656
  SENSITIVE: []
1636
1657
  end
1637
1658
 
1659
+ class DatapointInclusionAnnotation
1660
+ attr_accessor profile_id: ::String
1661
+ attr_accessor statistic_id: ::String
1662
+ attr_accessor inclusion_annotation: ("INCLUDE" | "EXCLUDE")
1663
+ SENSITIVE: []
1664
+ end
1665
+
1638
1666
  class Datatype
1639
1667
  attr_accessor id: ::String
1640
1668
  attr_accessor label: ::String
@@ -2443,6 +2471,32 @@ module Aws::Glue
2443
2471
  SENSITIVE: []
2444
2472
  end
2445
2473
 
2474
+ class GetDataQualityModelRequest
2475
+ attr_accessor statistic_id: ::String
2476
+ attr_accessor profile_id: ::String
2477
+ SENSITIVE: []
2478
+ end
2479
+
2480
+ class GetDataQualityModelResponse
2481
+ attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED")
2482
+ attr_accessor started_on: ::Time
2483
+ attr_accessor completed_on: ::Time
2484
+ attr_accessor failure_reason: ::String
2485
+ SENSITIVE: []
2486
+ end
2487
+
2488
+ class GetDataQualityModelResultRequest
2489
+ attr_accessor statistic_id: ::String
2490
+ attr_accessor profile_id: ::String
2491
+ SENSITIVE: []
2492
+ end
2493
+
2494
+ class GetDataQualityModelResultResponse
2495
+ attr_accessor completed_on: ::Time
2496
+ attr_accessor model: ::Array[Types::StatisticModelResult]
2497
+ SENSITIVE: []
2498
+ end
2499
+
2446
2500
  class GetDataQualityResultRequest
2447
2501
  attr_accessor result_id: ::String
2448
2502
  SENSITIVE: []
@@ -2450,6 +2504,7 @@ module Aws::Glue
2450
2504
 
2451
2505
  class GetDataQualityResultResponse
2452
2506
  attr_accessor result_id: ::String
2507
+ attr_accessor profile_id: ::String
2453
2508
  attr_accessor score: ::Float
2454
2509
  attr_accessor data_source: Types::DataSource
2455
2510
  attr_accessor ruleset_name: ::String
@@ -2484,6 +2539,7 @@ module Aws::Glue
2484
2539
  attr_accessor execution_time: ::Integer
2485
2540
  attr_accessor recommended_ruleset: ::String
2486
2541
  attr_accessor created_ruleset_name: ::String
2542
+ attr_accessor data_quality_security_configuration: ::String
2487
2543
  SENSITIVE: []
2488
2544
  end
2489
2545
 
@@ -2524,6 +2580,7 @@ module Aws::Glue
2524
2580
  attr_accessor created_on: ::Time
2525
2581
  attr_accessor last_modified_on: ::Time
2526
2582
  attr_accessor recommendation_run_id: ::String
2583
+ attr_accessor data_quality_security_configuration: ::String
2527
2584
  SENSITIVE: []
2528
2585
  end
2529
2586
 
@@ -3741,6 +3798,36 @@ module Aws::Glue
3741
3798
  SENSITIVE: []
3742
3799
  end
3743
3800
 
3801
+ class ListDataQualityStatisticAnnotationsRequest
3802
+ attr_accessor statistic_id: ::String
3803
+ attr_accessor profile_id: ::String
3804
+ attr_accessor timestamp_filter: Types::TimestampFilter
3805
+ attr_accessor max_results: ::Integer
3806
+ attr_accessor next_token: ::String
3807
+ SENSITIVE: []
3808
+ end
3809
+
3810
+ class ListDataQualityStatisticAnnotationsResponse
3811
+ attr_accessor annotations: ::Array[Types::StatisticAnnotation]
3812
+ attr_accessor next_token: ::String
3813
+ SENSITIVE: []
3814
+ end
3815
+
3816
+ class ListDataQualityStatisticsRequest
3817
+ attr_accessor statistic_id: ::String
3818
+ attr_accessor profile_id: ::String
3819
+ attr_accessor timestamp_filter: Types::TimestampFilter
3820
+ attr_accessor max_results: ::Integer
3821
+ attr_accessor next_token: ::String
3822
+ SENSITIVE: []
3823
+ end
3824
+
3825
+ class ListDataQualityStatisticsResponse
3826
+ attr_accessor statistics: ::Array[Types::StatisticSummary]
3827
+ attr_accessor next_token: ::String
3828
+ SENSITIVE: []
3829
+ end
3830
+
3744
3831
  class ListDevEndpointsRequest
3745
3832
  attr_accessor next_token: ::String
3746
3833
  attr_accessor max_results: ::Integer
@@ -3997,6 +4084,7 @@ module Aws::Glue
3997
4084
 
3998
4085
  class MetricBasedObservation
3999
4086
  attr_accessor metric_name: ::String
4087
+ attr_accessor statistic_id: ::String
4000
4088
  attr_accessor metric_values: Types::DataQualityMetricValues
4001
4089
  attr_accessor new_rules: ::Array[::String]
4002
4090
  SENSITIVE: []
@@ -4270,6 +4358,15 @@ module Aws::Glue
4270
4358
  class PutDataCatalogEncryptionSettingsResponse < Aws::EmptyStructure
4271
4359
  end
4272
4360
 
4361
+ class PutDataQualityProfileAnnotationRequest
4362
+ attr_accessor profile_id: ::String
4363
+ attr_accessor inclusion_annotation: ("INCLUDE" | "EXCLUDE")
4364
+ SENSITIVE: []
4365
+ end
4366
+
4367
+ class PutDataQualityProfileAnnotationResponse < Aws::EmptyStructure
4368
+ end
4369
+
4273
4370
  class PutResourcePolicyRequest
4274
4371
  attr_accessor policy_in_json: ::String
4275
4372
  attr_accessor resource_arn: ::String
@@ -4495,6 +4592,12 @@ module Aws::Glue
4495
4592
  SENSITIVE: []
4496
4593
  end
4497
4594
 
4595
+ class RunIdentifier
4596
+ attr_accessor run_id: ::String
4597
+ attr_accessor job_run_id: ::String
4598
+ SENSITIVE: []
4599
+ end
4600
+
4498
4601
  class RunMetrics
4499
4602
  attr_accessor number_of_bytes_compacted: ::String
4500
4603
  attr_accessor number_of_files_compacted: ::String
@@ -5048,6 +5151,7 @@ module Aws::Glue
5048
5151
  attr_accessor number_of_workers: ::Integer
5049
5152
  attr_accessor timeout: ::Integer
5050
5153
  attr_accessor created_ruleset_name: ::String
5154
+ attr_accessor data_quality_security_configuration: ::String
5051
5155
  attr_accessor client_token: ::String
5052
5156
  SENSITIVE: []
5053
5157
  end
@@ -5191,6 +5295,39 @@ module Aws::Glue
5191
5295
  SENSITIVE: []
5192
5296
  end
5193
5297
 
5298
+ class StatisticAnnotation
5299
+ attr_accessor profile_id: ::String
5300
+ attr_accessor statistic_id: ::String
5301
+ attr_accessor statistic_recorded_on: ::Time
5302
+ attr_accessor inclusion_annotation: Types::TimestampedInclusionAnnotation
5303
+ SENSITIVE: []
5304
+ end
5305
+
5306
+ class StatisticModelResult
5307
+ attr_accessor lower_bound: ::Float
5308
+ attr_accessor upper_bound: ::Float
5309
+ attr_accessor predicted_value: ::Float
5310
+ attr_accessor actual_value: ::Float
5311
+ attr_accessor date: ::Time
5312
+ attr_accessor inclusion_annotation: ("INCLUDE" | "EXCLUDE")
5313
+ SENSITIVE: []
5314
+ end
5315
+
5316
+ class StatisticSummary
5317
+ attr_accessor statistic_id: ::String
5318
+ attr_accessor profile_id: ::String
5319
+ attr_accessor run_identifier: Types::RunIdentifier
5320
+ attr_accessor statistic_name: ::String
5321
+ attr_accessor double_value: ::Float
5322
+ attr_accessor evaluation_level: ("Dataset" | "Column" | "Multicolumn")
5323
+ attr_accessor columns_referenced: ::Array[::String]
5324
+ attr_accessor referenced_datasets: ::Array[::String]
5325
+ attr_accessor statistic_properties: ::Hash[::String, ::String]
5326
+ attr_accessor recorded_on: ::Time
5327
+ attr_accessor inclusion_annotation: Types::TimestampedInclusionAnnotation
5328
+ SENSITIVE: [:statistic_properties]
5329
+ end
5330
+
5194
5331
  class StopColumnStatisticsTaskRunRequest
5195
5332
  attr_accessor database_name: ::String
5196
5333
  attr_accessor table_name: ::String
@@ -5424,6 +5561,18 @@ module Aws::Glue
5424
5561
  SENSITIVE: []
5425
5562
  end
5426
5563
 
5564
+ class TimestampFilter
5565
+ attr_accessor recorded_before: ::Time
5566
+ attr_accessor recorded_after: ::Time
5567
+ SENSITIVE: []
5568
+ end
5569
+
5570
+ class TimestampedInclusionAnnotation
5571
+ attr_accessor value: ("INCLUDE" | "EXCLUDE")
5572
+ attr_accessor last_modified_on: ::Time
5573
+ SENSITIVE: []
5574
+ end
5575
+
5427
5576
  class TransformConfigParameter
5428
5577
  attr_accessor name: ::String
5429
5578
  attr_accessor type: ("str" | "int" | "float" | "complex" | "bool" | "list" | "null")
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.186.0
4
+ version: 1.187.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-08-02 00:00:00.000000000 Z
11
+ date: 2024-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core