aws-sdk-glue 1.273.0 → 1.275.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 +90 -2
- data/lib/aws-sdk-glue/client_api.rb +27 -0
- data/lib/aws-sdk-glue/types.rb +105 -7
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +3 -1
- data/sig/params.rbs +11 -1
- data/sig/types.rbs +16 -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: 63e5c932a88ac65d8ddd30320fe58bdf68fb0b6a7a14ec24d8d9c53fde66e9b2
|
|
4
|
+
data.tar.gz: 36b8b4ec012d9c8de8faa4b8e825fccd68eee2ea36fd1333e66a94cc71310f20
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b7e4f68874718675497ce742253f8d140046717927d58edb58a0bb5c05d58a0b78ed6bfeb857107d653018ca952fd0887d42e25dfe9c9bbc43f5e02adabb5ef
|
|
7
|
+
data.tar.gz: c79a6c70fe100c90d5b9fe8800af9ea5965f0267e22549cb7fc2c5afd5bcee52fab8b5b901034a8917eb80415ad4b92ce7f90e9b55662db8b5958c342909405a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.275.0 (2026-09-22)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adding two new fields for Glue Materialized Views feature - (1) SubObjectsStatistics and (2) SparkPipelineInfo.
|
|
8
|
+
|
|
9
|
+
1.274.0 (2026-09-18)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* 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.
|
|
13
|
+
|
|
4
14
|
1.273.0 (2026-09-14)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.275.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -4770,6 +4770,18 @@ module Aws::Glue
|
|
|
4770
4770
|
# last_refresh_type: "FULL", # accepts FULL, INCREMENTAL
|
|
4771
4771
|
# sub_objects: ["ArnString"],
|
|
4772
4772
|
# sub_object_version_ids: [1],
|
|
4773
|
+
# sub_objects_statistics: [
|
|
4774
|
+
# {
|
|
4775
|
+
# source_type: "HIVE_PARQUET", # accepts HIVE_PARQUET, HIVE_ORC, HIVE_CSV, HIVE_JSON, PLAIN_PARQUET, ICEBERG
|
|
4776
|
+
# glue_version_id: "NullableString",
|
|
4777
|
+
# partition_count: 1,
|
|
4778
|
+
# file_count: 1,
|
|
4779
|
+
# total_file_bytes: 1,
|
|
4780
|
+
# },
|
|
4781
|
+
# ],
|
|
4782
|
+
# spark_pipeline_info: {
|
|
4783
|
+
# "SparkPipelineInfoKey" => "SparkPipelineInfoValue",
|
|
4784
|
+
# },
|
|
4773
4785
|
# },
|
|
4774
4786
|
# },
|
|
4775
4787
|
# partition_indexes: [
|
|
@@ -8765,6 +8777,7 @@ module Aws::Glue
|
|
|
8765
8777
|
# * {Types::GetDataQualityRuleRecommendationRunResponse#created_ruleset_name #created_ruleset_name} => String
|
|
8766
8778
|
# * {Types::GetDataQualityRuleRecommendationRunResponse#data_quality_security_configuration #data_quality_security_configuration} => String
|
|
8767
8779
|
# * {Types::GetDataQualityRuleRecommendationRunResponse#additional_run_options #additional_run_options} => Types::DataQualityRuleRecommendationRunAdditionalRunOptions
|
|
8780
|
+
# * {Types::GetDataQualityRuleRecommendationRunResponse#recommendation_mode #recommendation_mode} => String
|
|
8768
8781
|
#
|
|
8769
8782
|
# @example Request syntax with placeholder values
|
|
8770
8783
|
#
|
|
@@ -8801,6 +8814,7 @@ module Aws::Glue
|
|
|
8801
8814
|
# resp.created_ruleset_name #=> String
|
|
8802
8815
|
# resp.data_quality_security_configuration #=> String
|
|
8803
8816
|
# resp.additional_run_options.custom_log_group_prefix #=> String
|
|
8817
|
+
# resp.recommendation_mode #=> String, one of "BASIC", "ADVANCED"
|
|
8804
8818
|
#
|
|
8805
8819
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityRuleRecommendationRun AWS API Documentation
|
|
8806
8820
|
#
|
|
@@ -11516,6 +11530,12 @@ module Aws::Glue
|
|
|
11516
11530
|
# resp.table.view_definition.sub_objects[0] #=> String
|
|
11517
11531
|
# resp.table.view_definition.sub_object_version_ids #=> Array
|
|
11518
11532
|
# resp.table.view_definition.sub_object_version_ids[0] #=> Integer
|
|
11533
|
+
# resp.table.view_definition.sub_objects_statistics #=> Array
|
|
11534
|
+
# resp.table.view_definition.sub_objects_statistics[0].source_type #=> String, one of "HIVE_PARQUET", "HIVE_ORC", "HIVE_CSV", "HIVE_JSON", "PLAIN_PARQUET", "ICEBERG"
|
|
11535
|
+
# resp.table.view_definition.sub_objects_statistics[0].glue_version_id #=> String
|
|
11536
|
+
# resp.table.view_definition.sub_objects_statistics[0].partition_count #=> Integer
|
|
11537
|
+
# resp.table.view_definition.sub_objects_statistics[0].file_count #=> Integer
|
|
11538
|
+
# resp.table.view_definition.sub_objects_statistics[0].total_file_bytes #=> Integer
|
|
11519
11539
|
# resp.table.view_definition.representations #=> Array
|
|
11520
11540
|
# resp.table.view_definition.representations[0].dialect #=> String, one of "REDSHIFT", "ATHENA", "SPARK"
|
|
11521
11541
|
# resp.table.view_definition.representations[0].dialect_version #=> String
|
|
@@ -11523,6 +11543,8 @@ module Aws::Glue
|
|
|
11523
11543
|
# resp.table.view_definition.representations[0].view_expanded_text #=> String
|
|
11524
11544
|
# resp.table.view_definition.representations[0].validation_connection #=> String
|
|
11525
11545
|
# resp.table.view_definition.representations[0].is_stale #=> Boolean
|
|
11546
|
+
# resp.table.view_definition.spark_pipeline_info #=> Hash
|
|
11547
|
+
# resp.table.view_definition.spark_pipeline_info["SparkPipelineInfoKey"] #=> String
|
|
11526
11548
|
# resp.table.is_multi_dialect_view #=> Boolean
|
|
11527
11549
|
# resp.table.is_materialized_view #=> Boolean
|
|
11528
11550
|
# resp.table.iceberg_table_metadata.format_version #=> String
|
|
@@ -11790,6 +11812,12 @@ module Aws::Glue
|
|
|
11790
11812
|
# resp.table_version.table.view_definition.sub_objects[0] #=> String
|
|
11791
11813
|
# resp.table_version.table.view_definition.sub_object_version_ids #=> Array
|
|
11792
11814
|
# resp.table_version.table.view_definition.sub_object_version_ids[0] #=> Integer
|
|
11815
|
+
# resp.table_version.table.view_definition.sub_objects_statistics #=> Array
|
|
11816
|
+
# resp.table_version.table.view_definition.sub_objects_statistics[0].source_type #=> String, one of "HIVE_PARQUET", "HIVE_ORC", "HIVE_CSV", "HIVE_JSON", "PLAIN_PARQUET", "ICEBERG"
|
|
11817
|
+
# resp.table_version.table.view_definition.sub_objects_statistics[0].glue_version_id #=> String
|
|
11818
|
+
# resp.table_version.table.view_definition.sub_objects_statistics[0].partition_count #=> Integer
|
|
11819
|
+
# resp.table_version.table.view_definition.sub_objects_statistics[0].file_count #=> Integer
|
|
11820
|
+
# resp.table_version.table.view_definition.sub_objects_statistics[0].total_file_bytes #=> Integer
|
|
11793
11821
|
# resp.table_version.table.view_definition.representations #=> Array
|
|
11794
11822
|
# resp.table_version.table.view_definition.representations[0].dialect #=> String, one of "REDSHIFT", "ATHENA", "SPARK"
|
|
11795
11823
|
# resp.table_version.table.view_definition.representations[0].dialect_version #=> String
|
|
@@ -11797,6 +11825,8 @@ module Aws::Glue
|
|
|
11797
11825
|
# resp.table_version.table.view_definition.representations[0].view_expanded_text #=> String
|
|
11798
11826
|
# resp.table_version.table.view_definition.representations[0].validation_connection #=> String
|
|
11799
11827
|
# resp.table_version.table.view_definition.representations[0].is_stale #=> Boolean
|
|
11828
|
+
# resp.table_version.table.view_definition.spark_pipeline_info #=> Hash
|
|
11829
|
+
# resp.table_version.table.view_definition.spark_pipeline_info["SparkPipelineInfoKey"] #=> String
|
|
11800
11830
|
# resp.table_version.table.is_multi_dialect_view #=> Boolean
|
|
11801
11831
|
# resp.table_version.table.is_materialized_view #=> Boolean
|
|
11802
11832
|
# resp.table_version.table.iceberg_table_metadata.format_version #=> String
|
|
@@ -11988,6 +12018,12 @@ module Aws::Glue
|
|
|
11988
12018
|
# resp.table_versions[0].table.view_definition.sub_objects[0] #=> String
|
|
11989
12019
|
# resp.table_versions[0].table.view_definition.sub_object_version_ids #=> Array
|
|
11990
12020
|
# resp.table_versions[0].table.view_definition.sub_object_version_ids[0] #=> Integer
|
|
12021
|
+
# resp.table_versions[0].table.view_definition.sub_objects_statistics #=> Array
|
|
12022
|
+
# resp.table_versions[0].table.view_definition.sub_objects_statistics[0].source_type #=> String, one of "HIVE_PARQUET", "HIVE_ORC", "HIVE_CSV", "HIVE_JSON", "PLAIN_PARQUET", "ICEBERG"
|
|
12023
|
+
# resp.table_versions[0].table.view_definition.sub_objects_statistics[0].glue_version_id #=> String
|
|
12024
|
+
# resp.table_versions[0].table.view_definition.sub_objects_statistics[0].partition_count #=> Integer
|
|
12025
|
+
# resp.table_versions[0].table.view_definition.sub_objects_statistics[0].file_count #=> Integer
|
|
12026
|
+
# resp.table_versions[0].table.view_definition.sub_objects_statistics[0].total_file_bytes #=> Integer
|
|
11991
12027
|
# resp.table_versions[0].table.view_definition.representations #=> Array
|
|
11992
12028
|
# resp.table_versions[0].table.view_definition.representations[0].dialect #=> String, one of "REDSHIFT", "ATHENA", "SPARK"
|
|
11993
12029
|
# resp.table_versions[0].table.view_definition.representations[0].dialect_version #=> String
|
|
@@ -11995,6 +12031,8 @@ module Aws::Glue
|
|
|
11995
12031
|
# resp.table_versions[0].table.view_definition.representations[0].view_expanded_text #=> String
|
|
11996
12032
|
# resp.table_versions[0].table.view_definition.representations[0].validation_connection #=> String
|
|
11997
12033
|
# resp.table_versions[0].table.view_definition.representations[0].is_stale #=> Boolean
|
|
12034
|
+
# resp.table_versions[0].table.view_definition.spark_pipeline_info #=> Hash
|
|
12035
|
+
# resp.table_versions[0].table.view_definition.spark_pipeline_info["SparkPipelineInfoKey"] #=> String
|
|
11998
12036
|
# resp.table_versions[0].table.is_multi_dialect_view #=> Boolean
|
|
11999
12037
|
# resp.table_versions[0].table.is_materialized_view #=> Boolean
|
|
12000
12038
|
# resp.table_versions[0].table.iceberg_table_metadata.format_version #=> String
|
|
@@ -12218,6 +12256,12 @@ module Aws::Glue
|
|
|
12218
12256
|
# resp.table_list[0].view_definition.sub_objects[0] #=> String
|
|
12219
12257
|
# resp.table_list[0].view_definition.sub_object_version_ids #=> Array
|
|
12220
12258
|
# resp.table_list[0].view_definition.sub_object_version_ids[0] #=> Integer
|
|
12259
|
+
# resp.table_list[0].view_definition.sub_objects_statistics #=> Array
|
|
12260
|
+
# resp.table_list[0].view_definition.sub_objects_statistics[0].source_type #=> String, one of "HIVE_PARQUET", "HIVE_ORC", "HIVE_CSV", "HIVE_JSON", "PLAIN_PARQUET", "ICEBERG"
|
|
12261
|
+
# resp.table_list[0].view_definition.sub_objects_statistics[0].glue_version_id #=> String
|
|
12262
|
+
# resp.table_list[0].view_definition.sub_objects_statistics[0].partition_count #=> Integer
|
|
12263
|
+
# resp.table_list[0].view_definition.sub_objects_statistics[0].file_count #=> Integer
|
|
12264
|
+
# resp.table_list[0].view_definition.sub_objects_statistics[0].total_file_bytes #=> Integer
|
|
12221
12265
|
# resp.table_list[0].view_definition.representations #=> Array
|
|
12222
12266
|
# resp.table_list[0].view_definition.representations[0].dialect #=> String, one of "REDSHIFT", "ATHENA", "SPARK"
|
|
12223
12267
|
# resp.table_list[0].view_definition.representations[0].dialect_version #=> String
|
|
@@ -12225,6 +12269,8 @@ module Aws::Glue
|
|
|
12225
12269
|
# resp.table_list[0].view_definition.representations[0].view_expanded_text #=> String
|
|
12226
12270
|
# resp.table_list[0].view_definition.representations[0].validation_connection #=> String
|
|
12227
12271
|
# resp.table_list[0].view_definition.representations[0].is_stale #=> Boolean
|
|
12272
|
+
# resp.table_list[0].view_definition.spark_pipeline_info #=> Hash
|
|
12273
|
+
# resp.table_list[0].view_definition.spark_pipeline_info["SparkPipelineInfoKey"] #=> String
|
|
12228
12274
|
# resp.table_list[0].is_multi_dialect_view #=> Boolean
|
|
12229
12275
|
# resp.table_list[0].is_materialized_view #=> Boolean
|
|
12230
12276
|
# resp.table_list[0].iceberg_table_metadata.format_version #=> String
|
|
@@ -12997,6 +13043,12 @@ module Aws::Glue
|
|
|
12997
13043
|
# resp.table.view_definition.sub_objects[0] #=> String
|
|
12998
13044
|
# resp.table.view_definition.sub_object_version_ids #=> Array
|
|
12999
13045
|
# resp.table.view_definition.sub_object_version_ids[0] #=> Integer
|
|
13046
|
+
# resp.table.view_definition.sub_objects_statistics #=> Array
|
|
13047
|
+
# resp.table.view_definition.sub_objects_statistics[0].source_type #=> String, one of "HIVE_PARQUET", "HIVE_ORC", "HIVE_CSV", "HIVE_JSON", "PLAIN_PARQUET", "ICEBERG"
|
|
13048
|
+
# resp.table.view_definition.sub_objects_statistics[0].glue_version_id #=> String
|
|
13049
|
+
# resp.table.view_definition.sub_objects_statistics[0].partition_count #=> Integer
|
|
13050
|
+
# resp.table.view_definition.sub_objects_statistics[0].file_count #=> Integer
|
|
13051
|
+
# resp.table.view_definition.sub_objects_statistics[0].total_file_bytes #=> Integer
|
|
13000
13052
|
# resp.table.view_definition.representations #=> Array
|
|
13001
13053
|
# resp.table.view_definition.representations[0].dialect #=> String, one of "REDSHIFT", "ATHENA", "SPARK"
|
|
13002
13054
|
# resp.table.view_definition.representations[0].dialect_version #=> String
|
|
@@ -13004,6 +13056,8 @@ module Aws::Glue
|
|
|
13004
13056
|
# resp.table.view_definition.representations[0].view_expanded_text #=> String
|
|
13005
13057
|
# resp.table.view_definition.representations[0].validation_connection #=> String
|
|
13006
13058
|
# resp.table.view_definition.representations[0].is_stale #=> Boolean
|
|
13059
|
+
# resp.table.view_definition.spark_pipeline_info #=> Hash
|
|
13060
|
+
# resp.table.view_definition.spark_pipeline_info["SparkPipelineInfoKey"] #=> String
|
|
13007
13061
|
# resp.table.is_multi_dialect_view #=> Boolean
|
|
13008
13062
|
# resp.table.is_materialized_view #=> Boolean
|
|
13009
13063
|
# resp.table.iceberg_table_metadata.format_version #=> String
|
|
@@ -14285,6 +14339,7 @@ module Aws::Glue
|
|
|
14285
14339
|
# resp.runs[0].data_source.data_quality_glue_table.additional_options["NameString"] #=> String
|
|
14286
14340
|
# resp.runs[0].data_source.data_quality_glue_table.pre_processing_query #=> String
|
|
14287
14341
|
# resp.runs[0].created_ruleset_name #=> String
|
|
14342
|
+
# resp.runs[0].recommendation_mode #=> String, one of "BASIC", "ADVANCED"
|
|
14288
14343
|
# resp.next_token #=> String
|
|
14289
14344
|
#
|
|
14290
14345
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListDataQualityRuleRecommendationRuns AWS API Documentation
|
|
@@ -17453,6 +17508,12 @@ module Aws::Glue
|
|
|
17453
17508
|
# resp.table_list[0].view_definition.sub_objects[0] #=> String
|
|
17454
17509
|
# resp.table_list[0].view_definition.sub_object_version_ids #=> Array
|
|
17455
17510
|
# resp.table_list[0].view_definition.sub_object_version_ids[0] #=> Integer
|
|
17511
|
+
# resp.table_list[0].view_definition.sub_objects_statistics #=> Array
|
|
17512
|
+
# resp.table_list[0].view_definition.sub_objects_statistics[0].source_type #=> String, one of "HIVE_PARQUET", "HIVE_ORC", "HIVE_CSV", "HIVE_JSON", "PLAIN_PARQUET", "ICEBERG"
|
|
17513
|
+
# resp.table_list[0].view_definition.sub_objects_statistics[0].glue_version_id #=> String
|
|
17514
|
+
# resp.table_list[0].view_definition.sub_objects_statistics[0].partition_count #=> Integer
|
|
17515
|
+
# resp.table_list[0].view_definition.sub_objects_statistics[0].file_count #=> Integer
|
|
17516
|
+
# resp.table_list[0].view_definition.sub_objects_statistics[0].total_file_bytes #=> Integer
|
|
17456
17517
|
# resp.table_list[0].view_definition.representations #=> Array
|
|
17457
17518
|
# resp.table_list[0].view_definition.representations[0].dialect #=> String, one of "REDSHIFT", "ATHENA", "SPARK"
|
|
17458
17519
|
# resp.table_list[0].view_definition.representations[0].dialect_version #=> String
|
|
@@ -17460,6 +17521,8 @@ module Aws::Glue
|
|
|
17460
17521
|
# resp.table_list[0].view_definition.representations[0].view_expanded_text #=> String
|
|
17461
17522
|
# resp.table_list[0].view_definition.representations[0].validation_connection #=> String
|
|
17462
17523
|
# resp.table_list[0].view_definition.representations[0].is_stale #=> Boolean
|
|
17524
|
+
# resp.table_list[0].view_definition.spark_pipeline_info #=> Hash
|
|
17525
|
+
# resp.table_list[0].view_definition.spark_pipeline_info["SparkPipelineInfoKey"] #=> String
|
|
17463
17526
|
# resp.table_list[0].is_multi_dialect_view #=> Boolean
|
|
17464
17527
|
# resp.table_list[0].is_materialized_view #=> Boolean
|
|
17465
17528
|
# resp.table_list[0].iceberg_table_metadata.format_version #=> String
|
|
@@ -17707,7 +17770,14 @@ module Aws::Glue
|
|
|
17707
17770
|
# The data source (Glue table) associated with this run.
|
|
17708
17771
|
#
|
|
17709
17772
|
# @option params [required, String] :role
|
|
17710
|
-
#
|
|
17773
|
+
# The IAM role that Glue assumes to access resources for the run.
|
|
17774
|
+
#
|
|
17775
|
+
# For more information, see [Configure IAM permissions for Glue Data
|
|
17776
|
+
# Quality][1].
|
|
17777
|
+
#
|
|
17778
|
+
#
|
|
17779
|
+
#
|
|
17780
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/data-quality-authorization.html
|
|
17711
17781
|
#
|
|
17712
17782
|
# @option params [Integer] :number_of_workers
|
|
17713
17783
|
# The number of `G.1X` workers to be used in the run. The default is 5.
|
|
@@ -17732,6 +17802,11 @@ module Aws::Glue
|
|
|
17732
17802
|
# @option params [Types::DataQualityRuleRecommendationRunAdditionalRunOptions] :additional_run_options
|
|
17733
17803
|
# Additional run options you can specify for a recommendation run.
|
|
17734
17804
|
#
|
|
17805
|
+
# @option params [String] :recommendation_mode
|
|
17806
|
+
# The mode that Glue Data Quality uses to recommend rules.
|
|
17807
|
+
#
|
|
17808
|
+
# The default is `BASIC`.
|
|
17809
|
+
#
|
|
17735
17810
|
# @return [Types::StartDataQualityRuleRecommendationRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
17736
17811
|
#
|
|
17737
17812
|
# * {Types::StartDataQualityRuleRecommendationRunResponse#run_id #run_id} => String
|
|
@@ -17769,6 +17844,7 @@ module Aws::Glue
|
|
|
17769
17844
|
# additional_run_options: {
|
|
17770
17845
|
# custom_log_group_prefix: "GenericString",
|
|
17771
17846
|
# },
|
|
17847
|
+
# recommendation_mode: "BASIC", # accepts BASIC, ADVANCED
|
|
17772
17848
|
# })
|
|
17773
17849
|
#
|
|
17774
17850
|
# @example Response structure
|
|
@@ -20748,6 +20824,18 @@ module Aws::Glue
|
|
|
20748
20824
|
# last_refresh_type: "FULL", # accepts FULL, INCREMENTAL
|
|
20749
20825
|
# sub_objects: ["ArnString"],
|
|
20750
20826
|
# sub_object_version_ids: [1],
|
|
20827
|
+
# sub_objects_statistics: [
|
|
20828
|
+
# {
|
|
20829
|
+
# source_type: "HIVE_PARQUET", # accepts HIVE_PARQUET, HIVE_ORC, HIVE_CSV, HIVE_JSON, PLAIN_PARQUET, ICEBERG
|
|
20830
|
+
# glue_version_id: "NullableString",
|
|
20831
|
+
# partition_count: 1,
|
|
20832
|
+
# file_count: 1,
|
|
20833
|
+
# total_file_bytes: 1,
|
|
20834
|
+
# },
|
|
20835
|
+
# ],
|
|
20836
|
+
# spark_pipeline_info: {
|
|
20837
|
+
# "SparkPipelineInfoKey" => "SparkPipelineInfoValue",
|
|
20838
|
+
# },
|
|
20751
20839
|
# },
|
|
20752
20840
|
# },
|
|
20753
20841
|
# skip_archive: false,
|
|
@@ -21166,7 +21254,7 @@ module Aws::Glue
|
|
|
21166
21254
|
tracer: tracer
|
|
21167
21255
|
)
|
|
21168
21256
|
context[:gem_name] = 'aws-sdk-glue'
|
|
21169
|
-
context[:gem_version] = '1.
|
|
21257
|
+
context[:gem_version] = '1.275.0'
|
|
21170
21258
|
Seahorse::Client::Request.new(handlers, context)
|
|
21171
21259
|
end
|
|
21172
21260
|
|
|
@@ -1259,6 +1259,7 @@ module Aws::Glue
|
|
|
1259
1259
|
NullableBoolean = Shapes::BooleanShape.new(name: 'NullableBoolean')
|
|
1260
1260
|
NullableDouble = Shapes::FloatShape.new(name: 'NullableDouble')
|
|
1261
1261
|
NullableInteger = Shapes::IntegerShape.new(name: 'NullableInteger')
|
|
1262
|
+
NullableLong = Shapes::IntegerShape.new(name: 'NullableLong')
|
|
1262
1263
|
NullableString = Shapes::StringShape.new(name: 'NullableString')
|
|
1263
1264
|
NumberTargetPartitionsString = Shapes::StringShape.new(name: 'NumberTargetPartitionsString')
|
|
1264
1265
|
OAuth2ClientApplication = Shapes::StructureShape.new(name: 'OAuth2ClientApplication')
|
|
@@ -1399,6 +1400,7 @@ module Aws::Glue
|
|
|
1399
1400
|
RecipeStep = Shapes::StructureShape.new(name: 'RecipeStep')
|
|
1400
1401
|
RecipeSteps = Shapes::ListShape.new(name: 'RecipeSteps')
|
|
1401
1402
|
RecipeVersion = Shapes::StringShape.new(name: 'RecipeVersion')
|
|
1403
|
+
RecommendationMode = Shapes::StringShape.new(name: 'RecommendationMode')
|
|
1402
1404
|
Record = Shapes::DocumentShape.new(name: 'Record', document: true)
|
|
1403
1405
|
Records = Shapes::ListShape.new(name: 'Records')
|
|
1404
1406
|
RecordsCount = Shapes::IntegerShape.new(name: 'RecordsCount')
|
|
@@ -1579,6 +1581,9 @@ module Aws::Glue
|
|
|
1579
1581
|
SparkConnectEndpointUrl = Shapes::StringShape.new(name: 'SparkConnectEndpointUrl')
|
|
1580
1582
|
SparkConnectorSource = Shapes::StructureShape.new(name: 'SparkConnectorSource')
|
|
1581
1583
|
SparkConnectorTarget = Shapes::StructureShape.new(name: 'SparkConnectorTarget')
|
|
1584
|
+
SparkPipelineInfoKey = Shapes::StringShape.new(name: 'SparkPipelineInfoKey')
|
|
1585
|
+
SparkPipelineInfoMap = Shapes::MapShape.new(name: 'SparkPipelineInfoMap')
|
|
1586
|
+
SparkPipelineInfoValue = Shapes::StringShape.new(name: 'SparkPipelineInfoValue')
|
|
1582
1587
|
SparkSQL = Shapes::StructureShape.new(name: 'SparkSQL')
|
|
1583
1588
|
Spigot = Shapes::StructureShape.new(name: 'Spigot')
|
|
1584
1589
|
SplitFields = Shapes::StructureShape.new(name: 'SplitFields')
|
|
@@ -1658,6 +1663,9 @@ module Aws::Glue
|
|
|
1658
1663
|
StringColumnStatisticsData = Shapes::StructureShape.new(name: 'StringColumnStatisticsData')
|
|
1659
1664
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
|
1660
1665
|
StringToStringMap = Shapes::MapShape.new(name: 'StringToStringMap')
|
|
1666
|
+
SubObjectSourceType = Shapes::StringShape.new(name: 'SubObjectSourceType')
|
|
1667
|
+
SubObjectStatistics = Shapes::StructureShape.new(name: 'SubObjectStatistics')
|
|
1668
|
+
SubObjectsStatisticsList = Shapes::ListShape.new(name: 'SubObjectsStatisticsList')
|
|
1661
1669
|
SupportedDialect = Shapes::StructureShape.new(name: 'SupportedDialect')
|
|
1662
1670
|
Table = Shapes::StructureShape.new(name: 'Table')
|
|
1663
1671
|
TableAttributes = Shapes::StringShape.new(name: 'TableAttributes')
|
|
@@ -3681,6 +3689,7 @@ module Aws::Glue
|
|
|
3681
3689
|
DataQualityRuleRecommendationRunDescription.add_member(:started_on, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartedOn"))
|
|
3682
3690
|
DataQualityRuleRecommendationRunDescription.add_member(:data_source, Shapes::ShapeRef.new(shape: DataSource, location_name: "DataSource"))
|
|
3683
3691
|
DataQualityRuleRecommendationRunDescription.add_member(:created_ruleset_name, Shapes::ShapeRef.new(shape: NameString, location_name: "CreatedRulesetName"))
|
|
3692
|
+
DataQualityRuleRecommendationRunDescription.add_member(:recommendation_mode, Shapes::ShapeRef.new(shape: RecommendationMode, location_name: "RecommendationMode"))
|
|
3684
3693
|
DataQualityRuleRecommendationRunDescription.struct_class = Types::DataQualityRuleRecommendationRunDescription
|
|
3685
3694
|
|
|
3686
3695
|
DataQualityRuleRecommendationRunFilter.add_member(:data_source, Shapes::ShapeRef.new(shape: DataSource, required: true, location_name: "DataSource"))
|
|
@@ -4797,6 +4806,7 @@ module Aws::Glue
|
|
|
4797
4806
|
GetDataQualityRuleRecommendationRunResponse.add_member(:created_ruleset_name, Shapes::ShapeRef.new(shape: NameString, location_name: "CreatedRulesetName"))
|
|
4798
4807
|
GetDataQualityRuleRecommendationRunResponse.add_member(:data_quality_security_configuration, Shapes::ShapeRef.new(shape: NameString, location_name: "DataQualitySecurityConfiguration"))
|
|
4799
4808
|
GetDataQualityRuleRecommendationRunResponse.add_member(:additional_run_options, Shapes::ShapeRef.new(shape: DataQualityRuleRecommendationRunAdditionalRunOptions, location_name: "AdditionalRunOptions"))
|
|
4809
|
+
GetDataQualityRuleRecommendationRunResponse.add_member(:recommendation_mode, Shapes::ShapeRef.new(shape: RecommendationMode, location_name: "RecommendationMode"))
|
|
4800
4810
|
GetDataQualityRuleRecommendationRunResponse.struct_class = Types::GetDataQualityRuleRecommendationRunResponse
|
|
4801
4811
|
|
|
4802
4812
|
GetDataQualityRulesetEvaluationRunRequest.add_member(:run_id, Shapes::ShapeRef.new(shape: HashString, required: true, location_name: "RunId"))
|
|
@@ -7719,6 +7729,9 @@ module Aws::Glue
|
|
|
7719
7729
|
SparkConnectorTarget.add_member(:output_schemas, Shapes::ShapeRef.new(shape: GlueSchemas, location_name: "OutputSchemas"))
|
|
7720
7730
|
SparkConnectorTarget.struct_class = Types::SparkConnectorTarget
|
|
7721
7731
|
|
|
7732
|
+
SparkPipelineInfoMap.key = Shapes::ShapeRef.new(shape: SparkPipelineInfoKey)
|
|
7733
|
+
SparkPipelineInfoMap.value = Shapes::ShapeRef.new(shape: SparkPipelineInfoValue)
|
|
7734
|
+
|
|
7722
7735
|
SparkSQL.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
|
7723
7736
|
SparkSQL.add_member(:inputs, Shapes::ShapeRef.new(shape: ManyInputs, required: true, location_name: "Inputs"))
|
|
7724
7737
|
SparkSQL.add_member(:sql_query, Shapes::ShapeRef.new(shape: SqlQuery, required: true, location_name: "SqlQuery"))
|
|
@@ -7788,6 +7801,7 @@ module Aws::Glue
|
|
|
7788
7801
|
StartDataQualityRuleRecommendationRunRequest.add_member(:data_quality_security_configuration, Shapes::ShapeRef.new(shape: NameString, location_name: "DataQualitySecurityConfiguration"))
|
|
7789
7802
|
StartDataQualityRuleRecommendationRunRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: HashString, location_name: "ClientToken"))
|
|
7790
7803
|
StartDataQualityRuleRecommendationRunRequest.add_member(:additional_run_options, Shapes::ShapeRef.new(shape: DataQualityRuleRecommendationRunAdditionalRunOptions, location_name: "AdditionalRunOptions"))
|
|
7804
|
+
StartDataQualityRuleRecommendationRunRequest.add_member(:recommendation_mode, Shapes::ShapeRef.new(shape: RecommendationMode, location_name: "RecommendationMode"))
|
|
7791
7805
|
StartDataQualityRuleRecommendationRunRequest.struct_class = Types::StartDataQualityRuleRecommendationRunRequest
|
|
7792
7806
|
|
|
7793
7807
|
StartDataQualityRuleRecommendationRunResponse.add_member(:run_id, Shapes::ShapeRef.new(shape: HashString, location_name: "RunId"))
|
|
@@ -8018,6 +8032,15 @@ module Aws::Glue
|
|
|
8018
8032
|
StringToStringMap.key = Shapes::ShapeRef.new(shape: NullableString)
|
|
8019
8033
|
StringToStringMap.value = Shapes::ShapeRef.new(shape: NullableString)
|
|
8020
8034
|
|
|
8035
|
+
SubObjectStatistics.add_member(:source_type, Shapes::ShapeRef.new(shape: SubObjectSourceType, location_name: "SourceType"))
|
|
8036
|
+
SubObjectStatistics.add_member(:glue_version_id, Shapes::ShapeRef.new(shape: NullableString, location_name: "GlueVersionId"))
|
|
8037
|
+
SubObjectStatistics.add_member(:partition_count, Shapes::ShapeRef.new(shape: NullableLong, location_name: "PartitionCount"))
|
|
8038
|
+
SubObjectStatistics.add_member(:file_count, Shapes::ShapeRef.new(shape: NullableLong, location_name: "FileCount"))
|
|
8039
|
+
SubObjectStatistics.add_member(:total_file_bytes, Shapes::ShapeRef.new(shape: NullableLong, location_name: "TotalFileBytes"))
|
|
8040
|
+
SubObjectStatistics.struct_class = Types::SubObjectStatistics
|
|
8041
|
+
|
|
8042
|
+
SubObjectsStatisticsList.member = Shapes::ShapeRef.new(shape: SubObjectStatistics)
|
|
8043
|
+
|
|
8021
8044
|
SupportedDialect.add_member(:dialect, Shapes::ShapeRef.new(shape: ViewDialect, location_name: "Dialect"))
|
|
8022
8045
|
SupportedDialect.add_member(:dialect_version, Shapes::ShapeRef.new(shape: ViewDialectVersionString, location_name: "DialectVersion"))
|
|
8023
8046
|
SupportedDialect.struct_class = Types::SupportedDialect
|
|
@@ -8710,7 +8733,9 @@ module Aws::Glue
|
|
|
8710
8733
|
ViewDefinition.add_member(:last_refresh_type, Shapes::ShapeRef.new(shape: LastRefreshType, location_name: "LastRefreshType"))
|
|
8711
8734
|
ViewDefinition.add_member(:sub_objects, Shapes::ShapeRef.new(shape: ViewSubObjectsList, location_name: "SubObjects"))
|
|
8712
8735
|
ViewDefinition.add_member(:sub_object_version_ids, Shapes::ShapeRef.new(shape: ViewSubObjectVersionIdsList, location_name: "SubObjectVersionIds"))
|
|
8736
|
+
ViewDefinition.add_member(:sub_objects_statistics, Shapes::ShapeRef.new(shape: SubObjectsStatisticsList, location_name: "SubObjectsStatistics"))
|
|
8713
8737
|
ViewDefinition.add_member(:representations, Shapes::ShapeRef.new(shape: ViewRepresentationList, location_name: "Representations"))
|
|
8738
|
+
ViewDefinition.add_member(:spark_pipeline_info, Shapes::ShapeRef.new(shape: SparkPipelineInfoMap, location_name: "SparkPipelineInfo"))
|
|
8714
8739
|
ViewDefinition.struct_class = Types::ViewDefinition
|
|
8715
8740
|
|
|
8716
8741
|
ViewDefinitionInput.add_member(:is_protected, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IsProtected"))
|
|
@@ -8722,6 +8747,8 @@ module Aws::Glue
|
|
|
8722
8747
|
ViewDefinitionInput.add_member(:last_refresh_type, Shapes::ShapeRef.new(shape: LastRefreshType, location_name: "LastRefreshType"))
|
|
8723
8748
|
ViewDefinitionInput.add_member(:sub_objects, Shapes::ShapeRef.new(shape: ViewSubObjectsList, location_name: "SubObjects"))
|
|
8724
8749
|
ViewDefinitionInput.add_member(:sub_object_version_ids, Shapes::ShapeRef.new(shape: ViewSubObjectVersionIdsList, location_name: "SubObjectVersionIds"))
|
|
8750
|
+
ViewDefinitionInput.add_member(:sub_objects_statistics, Shapes::ShapeRef.new(shape: SubObjectsStatisticsList, location_name: "SubObjectsStatistics"))
|
|
8751
|
+
ViewDefinitionInput.add_member(:spark_pipeline_info, Shapes::ShapeRef.new(shape: SparkPipelineInfoMap, location_name: "SparkPipelineInfo"))
|
|
8725
8752
|
ViewDefinitionInput.struct_class = Types::ViewDefinitionInput
|
|
8726
8753
|
|
|
8727
8754
|
ViewRepresentation.add_member(:dialect, Shapes::ShapeRef.new(shape: ViewDialect, location_name: "Dialect"))
|
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
|
|
@@ -30337,6 +30365,48 @@ module Aws::Glue
|
|
|
30337
30365
|
include Aws::Structure
|
|
30338
30366
|
end
|
|
30339
30367
|
|
|
30368
|
+
# Statistics for one sub-object referenced by a materialized view,
|
|
30369
|
+
# recorded when the materialized view was created or last fully
|
|
30370
|
+
# refreshed. These values describe what that refresh selected from the
|
|
30371
|
+
# sub-object, which can be a subset of the table when the materialized
|
|
30372
|
+
# view's definition limits the data it reads. The fields present depend
|
|
30373
|
+
# on the sub-object's format.
|
|
30374
|
+
#
|
|
30375
|
+
# @!attribute [rw] source_type
|
|
30376
|
+
# The source type of the sub-object (for example, its table format),
|
|
30377
|
+
# which identifies the sub-object.
|
|
30378
|
+
# @return [String]
|
|
30379
|
+
#
|
|
30380
|
+
# @!attribute [rw] glue_version_id
|
|
30381
|
+
# The Glue version ID of the sub-object that the statistics were
|
|
30382
|
+
# captured for.
|
|
30383
|
+
# @return [String]
|
|
30384
|
+
#
|
|
30385
|
+
# @!attribute [rw] partition_count
|
|
30386
|
+
# The number of sub-object partitions selected for that refresh. Not
|
|
30387
|
+
# present for unpartitioned sub-objects.
|
|
30388
|
+
# @return [Integer]
|
|
30389
|
+
#
|
|
30390
|
+
# @!attribute [rw] file_count
|
|
30391
|
+
# The number of sub-object data files selected for that refresh.
|
|
30392
|
+
# @return [Integer]
|
|
30393
|
+
#
|
|
30394
|
+
# @!attribute [rw] total_file_bytes
|
|
30395
|
+
# The total size, in bytes, of the data files counted by `FileCount`.
|
|
30396
|
+
# @return [Integer]
|
|
30397
|
+
#
|
|
30398
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SubObjectStatistics AWS API Documentation
|
|
30399
|
+
#
|
|
30400
|
+
class SubObjectStatistics < Struct.new(
|
|
30401
|
+
:source_type,
|
|
30402
|
+
:glue_version_id,
|
|
30403
|
+
:partition_count,
|
|
30404
|
+
:file_count,
|
|
30405
|
+
:total_file_bytes)
|
|
30406
|
+
SENSITIVE = []
|
|
30407
|
+
include Aws::Structure
|
|
30408
|
+
end
|
|
30409
|
+
|
|
30340
30410
|
# A structure specifying the dialect and dialect version used by the
|
|
30341
30411
|
# query engine.
|
|
30342
30412
|
#
|
|
@@ -33719,10 +33789,22 @@ module Aws::Glue
|
|
|
33719
33789
|
# materialized view.
|
|
33720
33790
|
# @return [Array<Integer>]
|
|
33721
33791
|
#
|
|
33792
|
+
# @!attribute [rw] sub_objects_statistics
|
|
33793
|
+
# Statistics captured for each sub-object referenced by the
|
|
33794
|
+
# materialized view as of its most recent refresh, such as the source
|
|
33795
|
+
# type, Glue version ID, and the partition, file, and byte counts.
|
|
33796
|
+
# Each entry describes one sub-object, identified by its source type.
|
|
33797
|
+
# @return [Array<Types::SubObjectStatistics>]
|
|
33798
|
+
#
|
|
33722
33799
|
# @!attribute [rw] representations
|
|
33723
33800
|
# A list of representations.
|
|
33724
33801
|
# @return [Array<Types::ViewRepresentation>]
|
|
33725
33802
|
#
|
|
33803
|
+
# @!attribute [rw] spark_pipeline_info
|
|
33804
|
+
# A map of key-value pairs containing Spark Declarative Pipelines
|
|
33805
|
+
# (SDP) information for the materialized view.
|
|
33806
|
+
# @return [Hash<String,String>]
|
|
33807
|
+
#
|
|
33726
33808
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ViewDefinition AWS API Documentation
|
|
33727
33809
|
#
|
|
33728
33810
|
class ViewDefinition < Struct.new(
|
|
@@ -33734,7 +33816,9 @@ module Aws::Glue
|
|
|
33734
33816
|
:last_refresh_type,
|
|
33735
33817
|
:sub_objects,
|
|
33736
33818
|
:sub_object_version_ids,
|
|
33737
|
-
:
|
|
33819
|
+
:sub_objects_statistics,
|
|
33820
|
+
:representations,
|
|
33821
|
+
:spark_pipeline_info)
|
|
33738
33822
|
SENSITIVE = []
|
|
33739
33823
|
include Aws::Structure
|
|
33740
33824
|
end
|
|
@@ -33786,6 +33870,18 @@ module Aws::Glue
|
|
|
33786
33870
|
# materialized view.
|
|
33787
33871
|
# @return [Array<Integer>]
|
|
33788
33872
|
#
|
|
33873
|
+
# @!attribute [rw] sub_objects_statistics
|
|
33874
|
+
# Statistics for each sub-object referenced by the materialized view,
|
|
33875
|
+
# such as the source type, Glue version ID, and the partition, file,
|
|
33876
|
+
# and byte counts. Each entry describes one sub-object, identified by
|
|
33877
|
+
# its source type.
|
|
33878
|
+
# @return [Array<Types::SubObjectStatistics>]
|
|
33879
|
+
#
|
|
33880
|
+
# @!attribute [rw] spark_pipeline_info
|
|
33881
|
+
# A map of key-value pairs containing Spark Declarative Pipelines
|
|
33882
|
+
# (SDP) information for the materialized view.
|
|
33883
|
+
# @return [Hash<String,String>]
|
|
33884
|
+
#
|
|
33789
33885
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ViewDefinitionInput AWS API Documentation
|
|
33790
33886
|
#
|
|
33791
33887
|
class ViewDefinitionInput < Struct.new(
|
|
@@ -33797,7 +33893,9 @@ module Aws::Glue
|
|
|
33797
33893
|
:refresh_seconds,
|
|
33798
33894
|
:last_refresh_type,
|
|
33799
33895
|
:sub_objects,
|
|
33800
|
-
:sub_object_version_ids
|
|
33896
|
+
:sub_object_version_ids,
|
|
33897
|
+
:sub_objects_statistics,
|
|
33898
|
+
:spark_pipeline_info)
|
|
33801
33899
|
SENSITIVE = []
|
|
33802
33900
|
include Aws::Structure
|
|
33803
33901
|
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/params.rbs
CHANGED
|
@@ -1805,7 +1805,17 @@ module Aws
|
|
|
1805
1805
|
refresh_seconds: ::Integer?,
|
|
1806
1806
|
last_refresh_type: ("FULL" | "INCREMENTAL")?,
|
|
1807
1807
|
sub_objects: Array[::String]?,
|
|
1808
|
-
sub_object_version_ids: Array[::Integer]
|
|
1808
|
+
sub_object_version_ids: Array[::Integer]?,
|
|
1809
|
+
sub_objects_statistics: Array[
|
|
1810
|
+
{
|
|
1811
|
+
source_type: ("HIVE_PARQUET" | "HIVE_ORC" | "HIVE_CSV" | "HIVE_JSON" | "PLAIN_PARQUET" | "ICEBERG")?,
|
|
1812
|
+
glue_version_id: ::String?,
|
|
1813
|
+
partition_count: ::Integer?,
|
|
1814
|
+
file_count: ::Integer?,
|
|
1815
|
+
total_file_bytes: ::Integer?
|
|
1816
|
+
}
|
|
1817
|
+
]?,
|
|
1818
|
+
spark_pipeline_info: Hash[::String, ::String]?
|
|
1809
1819
|
}
|
|
1810
1820
|
|
|
1811
1821
|
type table_input = {
|
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
|
|
|
@@ -7535,6 +7538,15 @@ module Aws::Glue
|
|
|
7535
7538
|
SENSITIVE: []
|
|
7536
7539
|
end
|
|
7537
7540
|
|
|
7541
|
+
class SubObjectStatistics
|
|
7542
|
+
attr_accessor source_type: ("HIVE_PARQUET" | "HIVE_ORC" | "HIVE_CSV" | "HIVE_JSON" | "PLAIN_PARQUET" | "ICEBERG")
|
|
7543
|
+
attr_accessor glue_version_id: ::String
|
|
7544
|
+
attr_accessor partition_count: ::Integer
|
|
7545
|
+
attr_accessor file_count: ::Integer
|
|
7546
|
+
attr_accessor total_file_bytes: ::Integer
|
|
7547
|
+
SENSITIVE: []
|
|
7548
|
+
end
|
|
7549
|
+
|
|
7538
7550
|
class SupportedDialect
|
|
7539
7551
|
attr_accessor dialect: ("REDSHIFT" | "ATHENA" | "SPARK")
|
|
7540
7552
|
attr_accessor dialect_version: ::String
|
|
@@ -8402,7 +8414,9 @@ module Aws::Glue
|
|
|
8402
8414
|
attr_accessor last_refresh_type: ("FULL" | "INCREMENTAL")
|
|
8403
8415
|
attr_accessor sub_objects: ::Array[::String]
|
|
8404
8416
|
attr_accessor sub_object_version_ids: ::Array[::Integer]
|
|
8417
|
+
attr_accessor sub_objects_statistics: ::Array[Types::SubObjectStatistics]
|
|
8405
8418
|
attr_accessor representations: ::Array[Types::ViewRepresentation]
|
|
8419
|
+
attr_accessor spark_pipeline_info: ::Hash[::String, ::String]
|
|
8406
8420
|
SENSITIVE: []
|
|
8407
8421
|
end
|
|
8408
8422
|
|
|
@@ -8416,6 +8430,8 @@ module Aws::Glue
|
|
|
8416
8430
|
attr_accessor last_refresh_type: ("FULL" | "INCREMENTAL")
|
|
8417
8431
|
attr_accessor sub_objects: ::Array[::String]
|
|
8418
8432
|
attr_accessor sub_object_version_ids: ::Array[::Integer]
|
|
8433
|
+
attr_accessor sub_objects_statistics: ::Array[Types::SubObjectStatistics]
|
|
8434
|
+
attr_accessor spark_pipeline_info: ::Hash[::String, ::String]
|
|
8419
8435
|
SENSITIVE: []
|
|
8420
8436
|
end
|
|
8421
8437
|
|