aws-sdk-glue 1.231.0 → 1.233.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: 042ac73baf164cd990ec4899064ba1939ddf2f317014f53c07e34f0c314794bb
4
- data.tar.gz: b5ba433785168a07313b24bc4392ed3b268bb7797fd8cc9a69a3e966ac2882a4
3
+ metadata.gz: ebf83ccc3e93cf6da196bd373d30fecb0d58425edcba7ee81dfe2fd83f999d03
4
+ data.tar.gz: c3784a8204eda9f8651b6a2151b0856694a5a32cb50e003ffb870d6dc91e7007
5
5
  SHA512:
6
- metadata.gz: f1b704949a182ff9d077fff5ad9153baa6c31927646cfde1df5fbc4829c7d90b925cfc0249ca80f4ad57c25ccb2c6b611c7c43d2a5ef974d3b1169709f89b8d5
7
- data.tar.gz: cdc7568a215710b1c2dd3c138b5d6599b00ea3a5503c97d85e31d76ee930b749e5648582761e81cf3894bd83ed363abca5a659e87e357a59283ad9c757164e28
6
+ metadata.gz: 691b75bd3e406dccda84af06ddb9a79f33b7df87fe822f46ec2b73da0aa02ad4267e762b9dd2f6427c266b170c39806706e7bc99626518e32a5df66382d0c3f2
7
+ data.tar.gz: b61de7f5ffb0010270a6b94ca65ec1fad3c93a81e102b546dda766e821ba7d9e457b9f30d5b8cfacdc2f9011dd9c26e45dfa16c51be650d3b8b426a6acadd9f9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.233.0 (2025-08-21)
5
+ ------------------
6
+
7
+ * Feature - Added support for preprocessing queries in Data Quality operations through new DataQualityGlueTable structure.
8
+
9
+ 1.232.0 (2025-08-15)
10
+ ------------------
11
+
12
+ * Feature - AWS Glue Zero ETL now supports On-demand snapshot load
13
+
4
14
  1.231.0 (2025-08-14)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.231.0
1
+ 1.233.0
@@ -1020,6 +1020,13 @@ module Aws::Glue
1020
1020
  # resp.results[0].data_source.glue_table.connection_name #=> String
1021
1021
  # resp.results[0].data_source.glue_table.additional_options #=> Hash
1022
1022
  # resp.results[0].data_source.glue_table.additional_options["NameString"] #=> String
1023
+ # resp.results[0].data_source.data_quality_glue_table.database_name #=> String
1024
+ # resp.results[0].data_source.data_quality_glue_table.table_name #=> String
1025
+ # resp.results[0].data_source.data_quality_glue_table.catalog_id #=> String
1026
+ # resp.results[0].data_source.data_quality_glue_table.connection_name #=> String
1027
+ # resp.results[0].data_source.data_quality_glue_table.additional_options #=> Hash
1028
+ # resp.results[0].data_source.data_quality_glue_table.additional_options["NameString"] #=> String
1029
+ # resp.results[0].data_source.data_quality_glue_table.pre_processing_query #=> String
1023
1030
  # resp.results[0].ruleset_name #=> String
1024
1031
  # resp.results[0].evaluation_context #=> String
1025
1032
  # resp.results[0].started_on #=> Time
@@ -1621,9 +1628,15 @@ module Aws::Glue
1621
1628
  end
1622
1629
 
1623
1630
  # Annotate datapoints over time for a specific data quality statistic.
1631
+ # The API requires both profileID and statisticID as part of the
1632
+ # InclusionAnnotation input. The API only works for a single statisticId
1633
+ # across multiple profiles.
1624
1634
  #
1625
1635
  # @option params [required, Array<Types::DatapointInclusionAnnotation>] :inclusion_annotations
1626
- # A list of `DatapointInclusionAnnotation`'s.
1636
+ # A list of `DatapointInclusionAnnotation`'s. The InclusionAnnotations
1637
+ # must contain a profileId and statisticId. If there are multiple
1638
+ # InclusionAnnotations, the list must refer to a single statisticId
1639
+ # across multiple profileIds.
1627
1640
  #
1628
1641
  # @option params [String] :client_token
1629
1642
  # Client Token.
@@ -2984,6 +2997,7 @@ module Aws::Glue
2984
2997
  # source_properties: {
2985
2998
  # "IntegrationString" => "IntegrationString",
2986
2999
  # },
3000
+ # continuous_sync: false,
2987
3001
  # },
2988
3002
  # })
2989
3003
  #
@@ -3009,6 +3023,7 @@ module Aws::Glue
3009
3023
  # resp.integration_config.refresh_interval #=> String
3010
3024
  # resp.integration_config.source_properties #=> Hash
3011
3025
  # resp.integration_config.source_properties["IntegrationString"] #=> String
3026
+ # resp.integration_config.continuous_sync #=> Boolean
3012
3027
  #
3013
3028
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateIntegration AWS API Documentation
3014
3029
  #
@@ -6159,6 +6174,7 @@ module Aws::Glue
6159
6174
  # resp.inbound_integrations[0].integration_config.refresh_interval #=> String
6160
6175
  # resp.inbound_integrations[0].integration_config.source_properties #=> Hash
6161
6176
  # resp.inbound_integrations[0].integration_config.source_properties["IntegrationString"] #=> String
6177
+ # resp.inbound_integrations[0].integration_config.continuous_sync #=> Boolean
6162
6178
  # resp.inbound_integrations[0].errors #=> Array
6163
6179
  # resp.inbound_integrations[0].errors[0].error_code #=> String
6164
6180
  # resp.inbound_integrations[0].errors[0].error_message #=> String
@@ -6228,6 +6244,7 @@ module Aws::Glue
6228
6244
  # resp.integrations[0].integration_config.refresh_interval #=> String
6229
6245
  # resp.integrations[0].integration_config.source_properties #=> Hash
6230
6246
  # resp.integrations[0].integration_config.source_properties["IntegrationString"] #=> String
6247
+ # resp.integrations[0].integration_config.continuous_sync #=> Boolean
6231
6248
  # resp.integrations[0].errors #=> Array
6232
6249
  # resp.integrations[0].errors[0].error_code #=> String
6233
6250
  # resp.integrations[0].errors[0].error_message #=> String
@@ -7661,6 +7678,13 @@ module Aws::Glue
7661
7678
  # resp.data_source.glue_table.connection_name #=> String
7662
7679
  # resp.data_source.glue_table.additional_options #=> Hash
7663
7680
  # resp.data_source.glue_table.additional_options["NameString"] #=> String
7681
+ # resp.data_source.data_quality_glue_table.database_name #=> String
7682
+ # resp.data_source.data_quality_glue_table.table_name #=> String
7683
+ # resp.data_source.data_quality_glue_table.catalog_id #=> String
7684
+ # resp.data_source.data_quality_glue_table.connection_name #=> String
7685
+ # resp.data_source.data_quality_glue_table.additional_options #=> Hash
7686
+ # resp.data_source.data_quality_glue_table.additional_options["NameString"] #=> String
7687
+ # resp.data_source.data_quality_glue_table.pre_processing_query #=> String
7664
7688
  # resp.ruleset_name #=> String
7665
7689
  # resp.evaluation_context #=> String
7666
7690
  # resp.started_on #=> Time
@@ -7747,6 +7771,13 @@ module Aws::Glue
7747
7771
  # resp.data_source.glue_table.connection_name #=> String
7748
7772
  # resp.data_source.glue_table.additional_options #=> Hash
7749
7773
  # resp.data_source.glue_table.additional_options["NameString"] #=> String
7774
+ # resp.data_source.data_quality_glue_table.database_name #=> String
7775
+ # resp.data_source.data_quality_glue_table.table_name #=> String
7776
+ # resp.data_source.data_quality_glue_table.catalog_id #=> String
7777
+ # resp.data_source.data_quality_glue_table.connection_name #=> String
7778
+ # resp.data_source.data_quality_glue_table.additional_options #=> Hash
7779
+ # resp.data_source.data_quality_glue_table.additional_options["NameString"] #=> String
7780
+ # resp.data_source.data_quality_glue_table.pre_processing_query #=> String
7750
7781
  # resp.role #=> String
7751
7782
  # resp.number_of_workers #=> Integer
7752
7783
  # resp.timeout #=> Integer
@@ -7852,6 +7883,13 @@ module Aws::Glue
7852
7883
  # resp.data_source.glue_table.connection_name #=> String
7853
7884
  # resp.data_source.glue_table.additional_options #=> Hash
7854
7885
  # resp.data_source.glue_table.additional_options["NameString"] #=> String
7886
+ # resp.data_source.data_quality_glue_table.database_name #=> String
7887
+ # resp.data_source.data_quality_glue_table.table_name #=> String
7888
+ # resp.data_source.data_quality_glue_table.catalog_id #=> String
7889
+ # resp.data_source.data_quality_glue_table.connection_name #=> String
7890
+ # resp.data_source.data_quality_glue_table.additional_options #=> Hash
7891
+ # resp.data_source.data_quality_glue_table.additional_options["NameString"] #=> String
7892
+ # resp.data_source.data_quality_glue_table.pre_processing_query #=> String
7855
7893
  # resp.role #=> String
7856
7894
  # resp.number_of_workers #=> Integer
7857
7895
  # resp.timeout #=> Integer
@@ -7875,6 +7913,13 @@ module Aws::Glue
7875
7913
  # resp.additional_data_sources["NameString"].glue_table.connection_name #=> String
7876
7914
  # resp.additional_data_sources["NameString"].glue_table.additional_options #=> Hash
7877
7915
  # resp.additional_data_sources["NameString"].glue_table.additional_options["NameString"] #=> String
7916
+ # resp.additional_data_sources["NameString"].data_quality_glue_table.database_name #=> String
7917
+ # resp.additional_data_sources["NameString"].data_quality_glue_table.table_name #=> String
7918
+ # resp.additional_data_sources["NameString"].data_quality_glue_table.catalog_id #=> String
7919
+ # resp.additional_data_sources["NameString"].data_quality_glue_table.connection_name #=> String
7920
+ # resp.additional_data_sources["NameString"].data_quality_glue_table.additional_options #=> Hash
7921
+ # resp.additional_data_sources["NameString"].data_quality_glue_table.additional_options["NameString"] #=> String
7922
+ # resp.additional_data_sources["NameString"].data_quality_glue_table.pre_processing_query #=> String
7878
7923
  #
7879
7924
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityRulesetEvaluationRun AWS API Documentation
7880
7925
  #
@@ -12546,7 +12591,7 @@ module Aws::Glue
12546
12591
  # resp = client.list_data_quality_results({
12547
12592
  # filter: {
12548
12593
  # data_source: {
12549
- # glue_table: { # required
12594
+ # glue_table: {
12550
12595
  # database_name: "NameString", # required
12551
12596
  # table_name: "NameString", # required
12552
12597
  # catalog_id: "NameString",
@@ -12555,6 +12600,16 @@ module Aws::Glue
12555
12600
  # "NameString" => "DescriptionString",
12556
12601
  # },
12557
12602
  # },
12603
+ # data_quality_glue_table: {
12604
+ # database_name: "NameString", # required
12605
+ # table_name: "NameString", # required
12606
+ # catalog_id: "NameString",
12607
+ # connection_name: "NameString",
12608
+ # additional_options: {
12609
+ # "NameString" => "DescriptionString",
12610
+ # },
12611
+ # pre_processing_query: "PreProcessingQueryString",
12612
+ # },
12558
12613
  # },
12559
12614
  # job_name: "NameString",
12560
12615
  # job_run_id: "HashString",
@@ -12575,6 +12630,13 @@ module Aws::Glue
12575
12630
  # resp.results[0].data_source.glue_table.connection_name #=> String
12576
12631
  # resp.results[0].data_source.glue_table.additional_options #=> Hash
12577
12632
  # resp.results[0].data_source.glue_table.additional_options["NameString"] #=> String
12633
+ # resp.results[0].data_source.data_quality_glue_table.database_name #=> String
12634
+ # resp.results[0].data_source.data_quality_glue_table.table_name #=> String
12635
+ # resp.results[0].data_source.data_quality_glue_table.catalog_id #=> String
12636
+ # resp.results[0].data_source.data_quality_glue_table.connection_name #=> String
12637
+ # resp.results[0].data_source.data_quality_glue_table.additional_options #=> Hash
12638
+ # resp.results[0].data_source.data_quality_glue_table.additional_options["NameString"] #=> String
12639
+ # resp.results[0].data_source.data_quality_glue_table.pre_processing_query #=> String
12578
12640
  # resp.results[0].job_name #=> String
12579
12641
  # resp.results[0].job_run_id #=> String
12580
12642
  # resp.results[0].started_on #=> Time
@@ -12612,7 +12674,16 @@ module Aws::Glue
12612
12674
  # resp = client.list_data_quality_rule_recommendation_runs({
12613
12675
  # filter: {
12614
12676
  # data_source: { # required
12615
- # glue_table: { # required
12677
+ # glue_table: {
12678
+ # database_name: "NameString", # required
12679
+ # table_name: "NameString", # required
12680
+ # catalog_id: "NameString",
12681
+ # connection_name: "NameString",
12682
+ # additional_options: {
12683
+ # "NameString" => "DescriptionString",
12684
+ # },
12685
+ # },
12686
+ # data_quality_glue_table: {
12616
12687
  # database_name: "NameString", # required
12617
12688
  # table_name: "NameString", # required
12618
12689
  # catalog_id: "NameString",
@@ -12620,6 +12691,7 @@ module Aws::Glue
12620
12691
  # additional_options: {
12621
12692
  # "NameString" => "DescriptionString",
12622
12693
  # },
12694
+ # pre_processing_query: "PreProcessingQueryString",
12623
12695
  # },
12624
12696
  # },
12625
12697
  # started_before: Time.now,
@@ -12641,6 +12713,13 @@ module Aws::Glue
12641
12713
  # resp.runs[0].data_source.glue_table.connection_name #=> String
12642
12714
  # resp.runs[0].data_source.glue_table.additional_options #=> Hash
12643
12715
  # resp.runs[0].data_source.glue_table.additional_options["NameString"] #=> String
12716
+ # resp.runs[0].data_source.data_quality_glue_table.database_name #=> String
12717
+ # resp.runs[0].data_source.data_quality_glue_table.table_name #=> String
12718
+ # resp.runs[0].data_source.data_quality_glue_table.catalog_id #=> String
12719
+ # resp.runs[0].data_source.data_quality_glue_table.connection_name #=> String
12720
+ # resp.runs[0].data_source.data_quality_glue_table.additional_options #=> Hash
12721
+ # resp.runs[0].data_source.data_quality_glue_table.additional_options["NameString"] #=> String
12722
+ # resp.runs[0].data_source.data_quality_glue_table.pre_processing_query #=> String
12644
12723
  # resp.next_token #=> String
12645
12724
  #
12646
12725
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListDataQualityRuleRecommendationRuns AWS API Documentation
@@ -12676,7 +12755,7 @@ module Aws::Glue
12676
12755
  # resp = client.list_data_quality_ruleset_evaluation_runs({
12677
12756
  # filter: {
12678
12757
  # data_source: { # required
12679
- # glue_table: { # required
12758
+ # glue_table: {
12680
12759
  # database_name: "NameString", # required
12681
12760
  # table_name: "NameString", # required
12682
12761
  # catalog_id: "NameString",
@@ -12685,6 +12764,16 @@ module Aws::Glue
12685
12764
  # "NameString" => "DescriptionString",
12686
12765
  # },
12687
12766
  # },
12767
+ # data_quality_glue_table: {
12768
+ # database_name: "NameString", # required
12769
+ # table_name: "NameString", # required
12770
+ # catalog_id: "NameString",
12771
+ # connection_name: "NameString",
12772
+ # additional_options: {
12773
+ # "NameString" => "DescriptionString",
12774
+ # },
12775
+ # pre_processing_query: "PreProcessingQueryString",
12776
+ # },
12688
12777
  # },
12689
12778
  # started_before: Time.now,
12690
12779
  # started_after: Time.now,
@@ -12705,6 +12794,13 @@ module Aws::Glue
12705
12794
  # resp.runs[0].data_source.glue_table.connection_name #=> String
12706
12795
  # resp.runs[0].data_source.glue_table.additional_options #=> Hash
12707
12796
  # resp.runs[0].data_source.glue_table.additional_options["NameString"] #=> String
12797
+ # resp.runs[0].data_source.data_quality_glue_table.database_name #=> String
12798
+ # resp.runs[0].data_source.data_quality_glue_table.table_name #=> String
12799
+ # resp.runs[0].data_source.data_quality_glue_table.catalog_id #=> String
12800
+ # resp.runs[0].data_source.data_quality_glue_table.connection_name #=> String
12801
+ # resp.runs[0].data_source.data_quality_glue_table.additional_options #=> Hash
12802
+ # resp.runs[0].data_source.data_quality_glue_table.additional_options["NameString"] #=> String
12803
+ # resp.runs[0].data_source.data_quality_glue_table.pre_processing_query #=> String
12708
12804
  # resp.next_token #=> String
12709
12805
  #
12710
12806
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListDataQualityRulesetEvaluationRuns AWS API Documentation
@@ -13656,6 +13752,9 @@ module Aws::Glue
13656
13752
  # @option params [String] :data_filter
13657
13753
  # Selects source tables for the integration using Maxwell filter syntax.
13658
13754
  #
13755
+ # @option params [Types::IntegrationConfig] :integration_config
13756
+ # Properties associated with the integration.
13757
+ #
13659
13758
  # @option params [String] :integration_name
13660
13759
  # A unique name for an integration in Glue.
13661
13760
  #
@@ -13673,6 +13772,7 @@ module Aws::Glue
13673
13772
  # * {Types::ModifyIntegrationResponse#create_time #create_time} => Time
13674
13773
  # * {Types::ModifyIntegrationResponse#errors #errors} => Array&lt;Types::IntegrationError&gt;
13675
13774
  # * {Types::ModifyIntegrationResponse#data_filter #data_filter} => String
13775
+ # * {Types::ModifyIntegrationResponse#integration_config #integration_config} => Types::IntegrationConfig
13676
13776
  #
13677
13777
  # @example Request syntax with placeholder values
13678
13778
  #
@@ -13680,6 +13780,13 @@ module Aws::Glue
13680
13780
  # integration_identifier: "String128", # required
13681
13781
  # description: "IntegrationDescription",
13682
13782
  # data_filter: "String2048",
13783
+ # integration_config: {
13784
+ # refresh_interval: "String128",
13785
+ # source_properties: {
13786
+ # "IntegrationString" => "IntegrationString",
13787
+ # },
13788
+ # continuous_sync: false,
13789
+ # },
13683
13790
  # integration_name: "String128",
13684
13791
  # })
13685
13792
  #
@@ -13702,6 +13809,10 @@ module Aws::Glue
13702
13809
  # resp.errors[0].error_code #=> String
13703
13810
  # resp.errors[0].error_message #=> String
13704
13811
  # resp.data_filter #=> String
13812
+ # resp.integration_config.refresh_interval #=> String
13813
+ # resp.integration_config.source_properties #=> Hash
13814
+ # resp.integration_config.source_properties["IntegrationString"] #=> String
13815
+ # resp.integration_config.continuous_sync #=> Boolean
13705
13816
  #
13706
13817
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ModifyIntegration AWS API Documentation
13707
13818
  #
@@ -14692,7 +14803,7 @@ module Aws::Glue
14692
14803
  #
14693
14804
  # resp = client.start_data_quality_rule_recommendation_run({
14694
14805
  # data_source: { # required
14695
- # glue_table: { # required
14806
+ # glue_table: {
14696
14807
  # database_name: "NameString", # required
14697
14808
  # table_name: "NameString", # required
14698
14809
  # catalog_id: "NameString",
@@ -14701,6 +14812,16 @@ module Aws::Glue
14701
14812
  # "NameString" => "DescriptionString",
14702
14813
  # },
14703
14814
  # },
14815
+ # data_quality_glue_table: {
14816
+ # database_name: "NameString", # required
14817
+ # table_name: "NameString", # required
14818
+ # catalog_id: "NameString",
14819
+ # connection_name: "NameString",
14820
+ # additional_options: {
14821
+ # "NameString" => "DescriptionString",
14822
+ # },
14823
+ # pre_processing_query: "PreProcessingQueryString",
14824
+ # },
14704
14825
  # },
14705
14826
  # role: "RoleString", # required
14706
14827
  # number_of_workers: 1,
@@ -14765,7 +14886,7 @@ module Aws::Glue
14765
14886
  #
14766
14887
  # resp = client.start_data_quality_ruleset_evaluation_run({
14767
14888
  # data_source: { # required
14768
- # glue_table: { # required
14889
+ # glue_table: {
14769
14890
  # database_name: "NameString", # required
14770
14891
  # table_name: "NameString", # required
14771
14892
  # catalog_id: "NameString",
@@ -14774,6 +14895,16 @@ module Aws::Glue
14774
14895
  # "NameString" => "DescriptionString",
14775
14896
  # },
14776
14897
  # },
14898
+ # data_quality_glue_table: {
14899
+ # database_name: "NameString", # required
14900
+ # table_name: "NameString", # required
14901
+ # catalog_id: "NameString",
14902
+ # connection_name: "NameString",
14903
+ # additional_options: {
14904
+ # "NameString" => "DescriptionString",
14905
+ # },
14906
+ # pre_processing_query: "PreProcessingQueryString",
14907
+ # },
14777
14908
  # },
14778
14909
  # role: "RoleString", # required
14779
14910
  # number_of_workers: 1,
@@ -14787,7 +14918,16 @@ module Aws::Glue
14787
14918
  # ruleset_names: ["NameString"], # required
14788
14919
  # additional_data_sources: {
14789
14920
  # "NameString" => {
14790
- # glue_table: { # required
14921
+ # glue_table: {
14922
+ # database_name: "NameString", # required
14923
+ # table_name: "NameString", # required
14924
+ # catalog_id: "NameString",
14925
+ # connection_name: "NameString",
14926
+ # additional_options: {
14927
+ # "NameString" => "DescriptionString",
14928
+ # },
14929
+ # },
14930
+ # data_quality_glue_table: {
14791
14931
  # database_name: "NameString", # required
14792
14932
  # table_name: "NameString", # required
14793
14933
  # catalog_id: "NameString",
@@ -14795,6 +14935,7 @@ module Aws::Glue
14795
14935
  # additional_options: {
14796
14936
  # "NameString" => "DescriptionString",
14797
14937
  # },
14938
+ # pre_processing_query: "PreProcessingQueryString",
14798
14939
  # },
14799
14940
  # },
14800
14941
  # },
@@ -17777,7 +17918,7 @@ module Aws::Glue
17777
17918
  tracer: tracer
17778
17919
  )
17779
17920
  context[:gem_name] = 'aws-sdk-glue'
17780
- context[:gem_version] = '1.231.0'
17921
+ context[:gem_version] = '1.233.0'
17781
17922
  Seahorse::Client::Request.new(handlers, context)
17782
17923
  end
17783
17924
 
@@ -279,6 +279,7 @@ module Aws::Glue
279
279
  ContextKey = Shapes::StringShape.new(name: 'ContextKey')
280
280
  ContextValue = Shapes::StringShape.new(name: 'ContextValue')
281
281
  ContextWords = Shapes::ListShape.new(name: 'ContextWords')
282
+ ContinuousSync = Shapes::BooleanShape.new(name: 'ContinuousSync')
282
283
  Crawl = Shapes::StructureShape.new(name: 'Crawl')
283
284
  CrawlId = Shapes::StringShape.new(name: 'CrawlId')
284
285
  CrawlList = Shapes::ListShape.new(name: 'CrawlList')
@@ -409,6 +410,7 @@ module Aws::Glue
409
410
  DataQualityEncryption = Shapes::StructureShape.new(name: 'DataQualityEncryption')
410
411
  DataQualityEncryptionMode = Shapes::StringShape.new(name: 'DataQualityEncryptionMode')
411
412
  DataQualityEvaluationRunAdditionalRunOptions = Shapes::StructureShape.new(name: 'DataQualityEvaluationRunAdditionalRunOptions')
413
+ DataQualityGlueTable = Shapes::StructureShape.new(name: 'DataQualityGlueTable')
412
414
  DataQualityMetricValues = Shapes::StructureShape.new(name: 'DataQualityMetricValues')
413
415
  DataQualityModelStatus = Shapes::StringShape.new(name: 'DataQualityModelStatus')
414
416
  DataQualityObservation = Shapes::StructureShape.new(name: 'DataQualityObservation')
@@ -1144,6 +1146,7 @@ module Aws::Glue
1144
1146
  PositiveLong = Shapes::IntegerShape.new(name: 'PositiveLong')
1145
1147
  PostgreSQLCatalogSource = Shapes::StructureShape.new(name: 'PostgreSQLCatalogSource')
1146
1148
  PostgreSQLCatalogTarget = Shapes::StructureShape.new(name: 'PostgreSQLCatalogTarget')
1149
+ PreProcessingQueryString = Shapes::StringShape.new(name: 'PreProcessingQueryString')
1147
1150
  Predecessor = Shapes::StructureShape.new(name: 'Predecessor')
1148
1151
  PredecessorList = Shapes::ListShape.new(name: 'PredecessorList')
1149
1152
  Predicate = Shapes::StructureShape.new(name: 'Predicate')
@@ -3182,6 +3185,14 @@ module Aws::Glue
3182
3185
  DataQualityEvaluationRunAdditionalRunOptions.add_member(:composite_rule_evaluation_method, Shapes::ShapeRef.new(shape: DQCompositeRuleEvaluationMethod, location_name: "CompositeRuleEvaluationMethod"))
3183
3186
  DataQualityEvaluationRunAdditionalRunOptions.struct_class = Types::DataQualityEvaluationRunAdditionalRunOptions
3184
3187
 
3188
+ DataQualityGlueTable.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
3189
+ DataQualityGlueTable.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
3190
+ DataQualityGlueTable.add_member(:catalog_id, Shapes::ShapeRef.new(shape: NameString, location_name: "CatalogId"))
3191
+ DataQualityGlueTable.add_member(:connection_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ConnectionName"))
3192
+ DataQualityGlueTable.add_member(:additional_options, Shapes::ShapeRef.new(shape: GlueTableAdditionalOptions, location_name: "AdditionalOptions"))
3193
+ DataQualityGlueTable.add_member(:pre_processing_query, Shapes::ShapeRef.new(shape: PreProcessingQueryString, location_name: "PreProcessingQuery"))
3194
+ DataQualityGlueTable.struct_class = Types::DataQualityGlueTable
3195
+
3185
3196
  DataQualityMetricValues.add_member(:actual_value, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "ActualValue"))
3186
3197
  DataQualityMetricValues.add_member(:expected_value, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "ExpectedValue"))
3187
3198
  DataQualityMetricValues.add_member(:lower_limit, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "LowerLimit"))
@@ -3295,7 +3306,8 @@ module Aws::Glue
3295
3306
  DataQualityTargetTable.add_member(:catalog_id, Shapes::ShapeRef.new(shape: NameString, location_name: "CatalogId"))
3296
3307
  DataQualityTargetTable.struct_class = Types::DataQualityTargetTable
3297
3308
 
3298
- DataSource.add_member(:glue_table, Shapes::ShapeRef.new(shape: GlueTable, required: true, location_name: "GlueTable"))
3309
+ DataSource.add_member(:glue_table, Shapes::ShapeRef.new(shape: GlueTable, location_name: "GlueTable"))
3310
+ DataSource.add_member(:data_quality_glue_table, Shapes::ShapeRef.new(shape: DataQualityGlueTable, location_name: "DataQualityGlueTable"))
3299
3311
  DataSource.struct_class = Types::DataSource
3300
3312
 
3301
3313
  DataSourceMap.key = Shapes::ShapeRef.new(shape: NameString)
@@ -4977,6 +4989,7 @@ module Aws::Glue
4977
4989
 
4978
4990
  IntegrationConfig.add_member(:refresh_interval, Shapes::ShapeRef.new(shape: String128, location_name: "RefreshInterval"))
4979
4991
  IntegrationConfig.add_member(:source_properties, Shapes::ShapeRef.new(shape: IntegrationSourcePropertiesMap, location_name: "SourceProperties"))
4992
+ IntegrationConfig.add_member(:continuous_sync, Shapes::ShapeRef.new(shape: ContinuousSync, location_name: "ContinuousSync"))
4980
4993
  IntegrationConfig.struct_class = Types::IntegrationConfig
4981
4994
 
4982
4995
  IntegrationConflictOperationFault.add_member(:message, Shapes::ShapeRef.new(shape: IntegrationErrorMessage, location_name: "Message"))
@@ -5643,6 +5656,7 @@ module Aws::Glue
5643
5656
  ModifyIntegrationRequest.add_member(:integration_identifier, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationIdentifier"))
5644
5657
  ModifyIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
5645
5658
  ModifyIntegrationRequest.add_member(:data_filter, Shapes::ShapeRef.new(shape: String2048, location_name: "DataFilter"))
5659
+ ModifyIntegrationRequest.add_member(:integration_config, Shapes::ShapeRef.new(shape: IntegrationConfig, location_name: "IntegrationConfig"))
5646
5660
  ModifyIntegrationRequest.add_member(:integration_name, Shapes::ShapeRef.new(shape: String128, location_name: "IntegrationName"))
5647
5661
  ModifyIntegrationRequest.struct_class = Types::ModifyIntegrationRequest
5648
5662
 
@@ -5658,6 +5672,7 @@ module Aws::Glue
5658
5672
  ModifyIntegrationResponse.add_member(:create_time, Shapes::ShapeRef.new(shape: IntegrationTimestamp, required: true, location_name: "CreateTime"))
5659
5673
  ModifyIntegrationResponse.add_member(:errors, Shapes::ShapeRef.new(shape: IntegrationErrorList, location_name: "Errors"))
5660
5674
  ModifyIntegrationResponse.add_member(:data_filter, Shapes::ShapeRef.new(shape: String2048, location_name: "DataFilter"))
5675
+ ModifyIntegrationResponse.add_member(:integration_config, Shapes::ShapeRef.new(shape: IntegrationConfig, location_name: "IntegrationConfig"))
5661
5676
  ModifyIntegrationResponse.struct_class = Types::ModifyIntegrationResponse
5662
5677
 
5663
5678
  MongoDBTarget.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, location_name: "ConnectionName"))
@@ -1389,7 +1389,10 @@ module Aws::Glue
1389
1389
  end
1390
1390
 
1391
1391
  # @!attribute [rw] inclusion_annotations
1392
- # A list of `DatapointInclusionAnnotation`'s.
1392
+ # A list of `DatapointInclusionAnnotation`'s. The
1393
+ # InclusionAnnotations must contain a profileId and statisticId. If
1394
+ # there are multiple InclusionAnnotations, the list must refer to a
1395
+ # single statisticId across multiple profileIds.
1393
1396
  # @return [Array<Types::DatapointInclusionAnnotation>]
1394
1397
  #
1395
1398
  # @!attribute [rw] client_token
@@ -8053,6 +8056,55 @@ module Aws::Glue
8053
8056
  include Aws::Structure
8054
8057
  end
8055
8058
 
8059
+ # The database and table in the Glue Data Catalog that is used for input
8060
+ # or output data for Data Quality Operations.
8061
+ #
8062
+ # @!attribute [rw] database_name
8063
+ # A database name in the Glue Data Catalog.
8064
+ # @return [String]
8065
+ #
8066
+ # @!attribute [rw] table_name
8067
+ # A table name in the Glue Data Catalog.
8068
+ # @return [String]
8069
+ #
8070
+ # @!attribute [rw] catalog_id
8071
+ # A unique identifier for the Glue Data Catalog.
8072
+ # @return [String]
8073
+ #
8074
+ # @!attribute [rw] connection_name
8075
+ # The name of the connection to the Glue Data Catalog.
8076
+ # @return [String]
8077
+ #
8078
+ # @!attribute [rw] additional_options
8079
+ # Additional options for the table. Currently there are two keys
8080
+ # supported:
8081
+ #
8082
+ # * `pushDownPredicate`: to filter on partitions without having to
8083
+ # list and read all the files in your dataset.
8084
+ #
8085
+ # * `catalogPartitionPredicate`: to use server-side partition pruning
8086
+ # using partition indexes in the Glue Data Catalog.
8087
+ # @return [Hash<String,String>]
8088
+ #
8089
+ # @!attribute [rw] pre_processing_query
8090
+ # SQL Query of SparkSQL format that can be used to pre-process the
8091
+ # data for the table in Glue Data Catalog, before running the Data
8092
+ # Quality Operation.
8093
+ # @return [String]
8094
+ #
8095
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DataQualityGlueTable AWS API Documentation
8096
+ #
8097
+ class DataQualityGlueTable < Struct.new(
8098
+ :database_name,
8099
+ :table_name,
8100
+ :catalog_id,
8101
+ :connection_name,
8102
+ :additional_options,
8103
+ :pre_processing_query)
8104
+ SENSITIVE = []
8105
+ include Aws::Structure
8106
+ end
8107
+
8056
8108
  # Describes the data quality metric value according to the analysis of
8057
8109
  # historical data.
8058
8110
  #
@@ -8541,10 +8593,15 @@ module Aws::Glue
8541
8593
  # An Glue table.
8542
8594
  # @return [Types::GlueTable]
8543
8595
  #
8596
+ # @!attribute [rw] data_quality_glue_table
8597
+ # An Glue table for Data Quality Operations.
8598
+ # @return [Types::DataQualityGlueTable]
8599
+ #
8544
8600
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DataSource AWS API Documentation
8545
8601
  #
8546
8602
  class DataSource < Struct.new(
8547
- :glue_table)
8603
+ :glue_table,
8604
+ :data_quality_glue_table)
8548
8605
  SENSITIVE = []
8549
8606
  include Aws::Structure
8550
8607
  end
@@ -16772,11 +16829,18 @@ module Aws::Glue
16772
16829
  # during data integration operations.
16773
16830
  # @return [Hash<String,String>]
16774
16831
  #
16832
+ # @!attribute [rw] continuous_sync
16833
+ # Enables continuous synchronization for on-demand data extractions
16834
+ # from SaaS applications to Amazon Web Services data services like
16835
+ # Amazon Redshift and Amazon S3.
16836
+ # @return [Boolean]
16837
+ #
16775
16838
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IntegrationConfig AWS API Documentation
16776
16839
  #
16777
16840
  class IntegrationConfig < Struct.new(
16778
16841
  :refresh_interval,
16779
- :source_properties)
16842
+ :source_properties,
16843
+ :continuous_sync)
16780
16844
  SENSITIVE = []
16781
16845
  include Aws::Structure
16782
16846
  end
@@ -16861,11 +16925,18 @@ module Aws::Glue
16861
16925
  #
16862
16926
  # @!attribute [rw] function_spec
16863
16927
  # Specifies the function used to partition data on the target. The
16864
- # only accepted value for this parameter is `'identity'` (string).
16865
- # The `'identity'` function ensures that the data partitioning on
16866
- # the target follows the same scheme as the source. In other words,
16867
- # the partitioning structure of the source data is preserved in the
16868
- # target destination.
16928
+ # accepted values for this parameter are:
16929
+ #
16930
+ # * `identity` - Uses source values directly without transformation
16931
+ #
16932
+ # * `year` - Extracts the year from timestamp values (e.g., 2023)
16933
+ #
16934
+ # * `month` - Extracts the month from timestamp values (e.g., 2023-01)
16935
+ #
16936
+ # * `day` - Extracts the day from timestamp values (e.g., 2023-01-15)
16937
+ #
16938
+ # * `hour` - Extracts the hour from timestamp values (e.g.,
16939
+ # 2023-01-15-14)
16869
16940
  # @return [String]
16870
16941
  #
16871
16942
  # @!attribute [rw] conversion_spec
@@ -20520,6 +20591,10 @@ module Aws::Glue
20520
20591
  # syntax.
20521
20592
  # @return [String]
20522
20593
  #
20594
+ # @!attribute [rw] integration_config
20595
+ # Properties associated with the integration.
20596
+ # @return [Types::IntegrationConfig]
20597
+ #
20523
20598
  # @!attribute [rw] integration_name
20524
20599
  # A unique name for an integration in Glue.
20525
20600
  # @return [String]
@@ -20530,6 +20605,7 @@ module Aws::Glue
20530
20605
  :integration_identifier,
20531
20606
  :description,
20532
20607
  :data_filter,
20608
+ :integration_config,
20533
20609
  :integration_name)
20534
20610
  SENSITIVE = []
20535
20611
  include Aws::Structure
@@ -20603,6 +20679,10 @@ module Aws::Glue
20603
20679
  # syntax.
20604
20680
  # @return [String]
20605
20681
  #
20682
+ # @!attribute [rw] integration_config
20683
+ # Properties associated with the integration.
20684
+ # @return [Types::IntegrationConfig]
20685
+ #
20606
20686
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ModifyIntegrationResponse AWS API Documentation
20607
20687
  #
20608
20688
  class ModifyIntegrationResponse < Struct.new(
@@ -20617,7 +20697,8 @@ module Aws::Glue
20617
20697
  :status,
20618
20698
  :create_time,
20619
20699
  :errors,
20620
- :data_filter)
20700
+ :data_filter,
20701
+ :integration_config)
20621
20702
  SENSITIVE = []
20622
20703
  include Aws::Structure
20623
20704
  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.231.0'
57
+ GEM_VERSION = '1.233.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -902,7 +902,8 @@ module Aws
902
902
  ],
903
903
  ?integration_config: {
904
904
  refresh_interval: ::String?,
905
- source_properties: Hash[::String, ::String]?
905
+ source_properties: Hash[::String, ::String]?,
906
+ continuous_sync: bool?
906
907
  }
907
908
  ) -> _CreateIntegrationResponseSuccess
908
909
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntegrationResponseSuccess
@@ -4876,7 +4877,15 @@ module Aws
4876
4877
  catalog_id: ::String?,
4877
4878
  connection_name: ::String?,
4878
4879
  additional_options: Hash[::String, ::String]?
4879
- }
4880
+ }?,
4881
+ data_quality_glue_table: {
4882
+ database_name: ::String,
4883
+ table_name: ::String,
4884
+ catalog_id: ::String?,
4885
+ connection_name: ::String?,
4886
+ additional_options: Hash[::String, ::String]?,
4887
+ pre_processing_query: ::String?
4888
+ }?
4880
4889
  }?,
4881
4890
  job_name: ::String?,
4882
4891
  job_run_id: ::String?,
@@ -4903,7 +4912,15 @@ module Aws
4903
4912
  catalog_id: ::String?,
4904
4913
  connection_name: ::String?,
4905
4914
  additional_options: Hash[::String, ::String]?
4906
- }
4915
+ }?,
4916
+ data_quality_glue_table: {
4917
+ database_name: ::String,
4918
+ table_name: ::String,
4919
+ catalog_id: ::String?,
4920
+ connection_name: ::String?,
4921
+ additional_options: Hash[::String, ::String]?,
4922
+ pre_processing_query: ::String?
4923
+ }?
4907
4924
  },
4908
4925
  started_before: ::Time?,
4909
4926
  started_after: ::Time?
@@ -4928,7 +4945,15 @@ module Aws
4928
4945
  catalog_id: ::String?,
4929
4946
  connection_name: ::String?,
4930
4947
  additional_options: Hash[::String, ::String]?
4931
- }
4948
+ }?,
4949
+ data_quality_glue_table: {
4950
+ database_name: ::String,
4951
+ table_name: ::String,
4952
+ catalog_id: ::String?,
4953
+ connection_name: ::String?,
4954
+ additional_options: Hash[::String, ::String]?,
4955
+ pre_processing_query: ::String?
4956
+ }?
4932
4957
  },
4933
4958
  started_before: ::Time?,
4934
4959
  started_after: ::Time?
@@ -5218,12 +5243,18 @@ module Aws
5218
5243
  def create_time: () -> ::Time
5219
5244
  def errors: () -> ::Array[Types::IntegrationError]
5220
5245
  def data_filter: () -> ::String
5246
+ def integration_config: () -> Types::IntegrationConfig
5221
5247
  end
5222
5248
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#modify_integration-instance_method
5223
5249
  def modify_integration: (
5224
5250
  integration_identifier: ::String,
5225
5251
  ?description: ::String,
5226
5252
  ?data_filter: ::String,
5253
+ ?integration_config: {
5254
+ refresh_interval: ::String?,
5255
+ source_properties: Hash[::String, ::String]?,
5256
+ continuous_sync: bool?
5257
+ },
5227
5258
  ?integration_name: ::String
5228
5259
  ) -> _ModifyIntegrationResponseSuccess
5229
5260
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIntegrationResponseSuccess
@@ -5523,7 +5554,15 @@ module Aws
5523
5554
  catalog_id: ::String?,
5524
5555
  connection_name: ::String?,
5525
5556
  additional_options: Hash[::String, ::String]?
5526
- }
5557
+ }?,
5558
+ data_quality_glue_table: {
5559
+ database_name: ::String,
5560
+ table_name: ::String,
5561
+ catalog_id: ::String?,
5562
+ connection_name: ::String?,
5563
+ additional_options: Hash[::String, ::String]?,
5564
+ pre_processing_query: ::String?
5565
+ }?
5527
5566
  },
5528
5567
  role: ::String,
5529
5568
  ?number_of_workers: ::Integer,
@@ -5547,7 +5586,15 @@ module Aws
5547
5586
  catalog_id: ::String?,
5548
5587
  connection_name: ::String?,
5549
5588
  additional_options: Hash[::String, ::String]?
5550
- }
5589
+ }?,
5590
+ data_quality_glue_table: {
5591
+ database_name: ::String,
5592
+ table_name: ::String,
5593
+ catalog_id: ::String?,
5594
+ connection_name: ::String?,
5595
+ additional_options: Hash[::String, ::String]?,
5596
+ pre_processing_query: ::String?
5597
+ }?
5551
5598
  },
5552
5599
  role: ::String,
5553
5600
  ?number_of_workers: ::Integer,
@@ -5566,7 +5613,15 @@ module Aws
5566
5613
  catalog_id: ::String?,
5567
5614
  connection_name: ::String?,
5568
5615
  additional_options: Hash[::String, ::String]?
5569
- }
5616
+ }?,
5617
+ data_quality_glue_table: {
5618
+ database_name: ::String,
5619
+ table_name: ::String,
5620
+ catalog_id: ::String?,
5621
+ connection_name: ::String?,
5622
+ additional_options: Hash[::String, ::String]?,
5623
+ pre_processing_query: ::String?
5624
+ }?
5570
5625
  }]
5571
5626
  ) -> _StartDataQualityRulesetEvaluationRunResponseSuccess
5572
5627
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDataQualityRulesetEvaluationRunResponseSuccess
data/sig/types.rbs CHANGED
@@ -1825,6 +1825,16 @@ module Aws::Glue
1825
1825
  SENSITIVE: []
1826
1826
  end
1827
1827
 
1828
+ class DataQualityGlueTable
1829
+ attr_accessor database_name: ::String
1830
+ attr_accessor table_name: ::String
1831
+ attr_accessor catalog_id: ::String
1832
+ attr_accessor connection_name: ::String
1833
+ attr_accessor additional_options: ::Hash[::String, ::String]
1834
+ attr_accessor pre_processing_query: ::String
1835
+ SENSITIVE: []
1836
+ end
1837
+
1828
1838
  class DataQualityMetricValues
1829
1839
  attr_accessor actual_value: ::Float
1830
1840
  attr_accessor expected_value: ::Float
@@ -1948,6 +1958,7 @@ module Aws::Glue
1948
1958
 
1949
1959
  class DataSource
1950
1960
  attr_accessor glue_table: Types::GlueTable
1961
+ attr_accessor data_quality_glue_table: Types::DataQualityGlueTable
1951
1962
  SENSITIVE: []
1952
1963
  end
1953
1964
 
@@ -4151,6 +4162,7 @@ module Aws::Glue
4151
4162
  class IntegrationConfig
4152
4163
  attr_accessor refresh_interval: ::String
4153
4164
  attr_accessor source_properties: ::Hash[::String, ::String]
4165
+ attr_accessor continuous_sync: bool
4154
4166
  SENSITIVE: []
4155
4167
  end
4156
4168
 
@@ -4954,6 +4966,7 @@ module Aws::Glue
4954
4966
  attr_accessor integration_identifier: ::String
4955
4967
  attr_accessor description: ::String
4956
4968
  attr_accessor data_filter: ::String
4969
+ attr_accessor integration_config: Types::IntegrationConfig
4957
4970
  attr_accessor integration_name: ::String
4958
4971
  SENSITIVE: []
4959
4972
  end
@@ -4971,6 +4984,7 @@ module Aws::Glue
4971
4984
  attr_accessor create_time: ::Time
4972
4985
  attr_accessor errors: ::Array[Types::IntegrationError]
4973
4986
  attr_accessor data_filter: ::String
4987
+ attr_accessor integration_config: Types::IntegrationConfig
4974
4988
  SENSITIVE: []
4975
4989
  end
4976
4990
 
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.231.0
4
+ version: 1.233.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services