aws-sdk-glue 1.265.0 → 1.266.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: 94cf0ca2c0895f57da7dda2661128b993e3449bc70b9a1e484edda8b00cda788
4
- data.tar.gz: 1ab74d9e624165ad511b12b41c11959bef37b0aeffedc609d128ccf70109f0cb
3
+ metadata.gz: ce69ebd4ee1d9068c6bfcd8a40f74ff99631373fda81990eafccb02855bab12e
4
+ data.tar.gz: 7d53e807770cf6407eec531cd40cf39b19567ca765e74e975309893baceb8994
5
5
  SHA512:
6
- metadata.gz: 2236e6cdb8143d97296669ce0d8eb7eb281f35c0d2f9129a54b0ce1e62e89e3fa1b11b3f9760078ce0e219792a4ede615d24d39de5e17f147d1702cdf3fc85cd
7
- data.tar.gz: 26534389a4aa1b782757bdf80afbd7a6c22448fc527f609903ed35870b097dc8d7752ead6c96d12de5d8d4a92ec834e296159224eb72e6d248812de9540ab931
6
+ metadata.gz: fe8ba07475bd5b85f1ae13d94991857e557f721396bb6c93a8136f99d7e312a75448d59afc95f0135e623a451a335cf4996fb1d31bed46151f8ae528e2fb5e57
7
+ data.tar.gz: f296eb026aceab2ec8a8fcd2c167cff0a5460695678debf61d544a15dfb54cacae197ec6007c9a149d467d7ee7a494d3525e856c5e7fe4f3a516be6c3ccb7105
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.266.0 (2026-07-27)
5
+ ------------------
6
+
7
+ * Feature - Adds BatchGetDataQualityRulesetEvaluationRun API to retrieve multiple runs in one call, ObservationScope and ObservationMode parameters for anomaly detection, writing evaluation results to Data Catalog tables, and custom log group paths for recommendation runs.
8
+
4
9
  1.265.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.265.0
1
+ 1.266.0
@@ -1094,6 +1094,12 @@ module Aws::Glue
1094
1094
  # resp.results[0].analyzer_results[0].evaluation_message #=> String
1095
1095
  # resp.results[0].analyzer_results[0].evaluated_metrics #=> Hash
1096
1096
  # resp.results[0].analyzer_results[0].evaluated_metrics["NameString"] #=> Float
1097
+ # resp.results[0].analyzer_results[0].evaluated_distributions #=> Hash
1098
+ # resp.results[0].analyzer_results[0].evaluated_distributions["NameString"].bin_edges #=> Array
1099
+ # resp.results[0].analyzer_results[0].evaluated_distributions["NameString"].bin_edges[0] #=> String
1100
+ # resp.results[0].analyzer_results[0].evaluated_distributions["NameString"].count #=> Array
1101
+ # resp.results[0].analyzer_results[0].evaluated_distributions["NameString"].count[0] #=> Integer
1102
+ # resp.results[0].analyzer_results[0].evaluated_distributions["NameString"].data_type #=> String
1097
1103
  # resp.results[0].observations #=> Array
1098
1104
  # resp.results[0].observations[0].description #=> String
1099
1105
  # resp.results[0].observations[0].metric_based_observation.metric_name #=> String
@@ -1122,6 +1128,110 @@ module Aws::Glue
1122
1128
  req.send_request(options)
1123
1129
  end
1124
1130
 
1131
+ # Retrieves the details of multiple evaluation runs in a single request.
1132
+ #
1133
+ # @option params [required, Array<String>] :run_ids
1134
+ # A list of unique run identifiers for the evaluation runs to retrieve.
1135
+ #
1136
+ # @return [Types::BatchGetDataQualityRulesetEvaluationRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1137
+ #
1138
+ # * {Types::BatchGetDataQualityRulesetEvaluationRunResponse#runs #runs} => Array&lt;Types::DataQualityRulesetEvaluationRun&gt;
1139
+ # * {Types::BatchGetDataQualityRulesetEvaluationRunResponse#runs_not_found #runs_not_found} => Array&lt;String&gt;
1140
+ #
1141
+ # @example Request syntax with placeholder values
1142
+ #
1143
+ # resp = client.batch_get_data_quality_ruleset_evaluation_run({
1144
+ # run_ids: ["HashString"], # required
1145
+ # })
1146
+ #
1147
+ # @example Response structure
1148
+ #
1149
+ # resp.runs #=> Array
1150
+ # resp.runs[0].run_id #=> String
1151
+ # resp.runs[0].data_source.glue_table.database_name #=> String
1152
+ # resp.runs[0].data_source.glue_table.table_name #=> String
1153
+ # resp.runs[0].data_source.glue_table.catalog_id #=> String
1154
+ # resp.runs[0].data_source.glue_table.connection_name #=> String
1155
+ # resp.runs[0].data_source.glue_table.additional_options #=> Hash
1156
+ # resp.runs[0].data_source.glue_table.additional_options["NameString"] #=> String
1157
+ # resp.runs[0].data_source.data_quality_glue_table.database_name #=> String
1158
+ # resp.runs[0].data_source.data_quality_glue_table.table_name #=> String
1159
+ # resp.runs[0].data_source.data_quality_glue_table.catalog_id #=> String
1160
+ # resp.runs[0].data_source.data_quality_glue_table.connection_name #=> String
1161
+ # resp.runs[0].data_source.data_quality_glue_table.additional_options #=> Hash
1162
+ # resp.runs[0].data_source.data_quality_glue_table.additional_options["NameString"] #=> String
1163
+ # resp.runs[0].data_source.data_quality_glue_table.pre_processing_query #=> String
1164
+ # resp.runs[0].role #=> String
1165
+ # resp.runs[0].number_of_workers #=> Integer
1166
+ # resp.runs[0].timeout #=> Integer
1167
+ # resp.runs[0].additional_run_options.cloud_watch_metrics_enabled #=> Boolean
1168
+ # resp.runs[0].additional_run_options.results_s3_prefix #=> String
1169
+ # resp.runs[0].additional_run_options.composite_rule_evaluation_method #=> String, one of "COLUMN", "ROW"
1170
+ # resp.runs[0].additional_run_options.custom_log_group_prefix #=> String
1171
+ # resp.runs[0].additional_run_options.row_level_results.max_rows_to_write #=> Integer
1172
+ # resp.runs[0].additional_run_options.row_level_results.result_type #=> String, one of "ALL", "PASSED_ONLY", "FAILED_ONLY"
1173
+ # resp.runs[0].additional_run_options.row_level_results.catalog_table_config.database_name #=> String
1174
+ # resp.runs[0].additional_run_options.row_level_results.catalog_table_config.table_name #=> String
1175
+ # resp.runs[0].additional_run_options.row_level_results.catalog_table_config.s3_location #=> String
1176
+ # resp.runs[0].additional_run_options.row_level_results.catalog_table_config.catalog_id #=> String
1177
+ # resp.runs[0].additional_run_options.profiling_results.write_profiling_results_enabled #=> Boolean
1178
+ # resp.runs[0].additional_run_options.profiling_results.catalog_table_config.database_name #=> String
1179
+ # resp.runs[0].additional_run_options.profiling_results.catalog_table_config.table_name #=> String
1180
+ # resp.runs[0].additional_run_options.profiling_results.catalog_table_config.s3_location #=> String
1181
+ # resp.runs[0].additional_run_options.profiling_results.catalog_table_config.catalog_id #=> String
1182
+ # resp.runs[0].additional_run_options.profiling_results.distribution_results.write_distribution_results_enabled #=> Boolean
1183
+ # resp.runs[0].additional_run_options.profiling_results.distribution_results.catalog_table_config.database_name #=> String
1184
+ # resp.runs[0].additional_run_options.profiling_results.distribution_results.catalog_table_config.table_name #=> String
1185
+ # resp.runs[0].additional_run_options.profiling_results.distribution_results.catalog_table_config.s3_location #=> String
1186
+ # resp.runs[0].additional_run_options.profiling_results.distribution_results.catalog_table_config.catalog_id #=> String
1187
+ # resp.runs[0].additional_run_options.observation_scope #=> String, one of "ALL", "NONE"
1188
+ # resp.runs[0].additional_run_options.observation_mode #=> String, one of "SCHEDULED", "FIXED"
1189
+ # resp.runs[0].additional_run_options.data_quality_rule_results.write_data_quality_rule_results_enabled #=> Boolean
1190
+ # resp.runs[0].additional_run_options.data_quality_rule_results.catalog_table_config.database_name #=> String
1191
+ # resp.runs[0].additional_run_options.data_quality_rule_results.catalog_table_config.table_name #=> String
1192
+ # resp.runs[0].additional_run_options.data_quality_rule_results.catalog_table_config.s3_location #=> String
1193
+ # resp.runs[0].additional_run_options.data_quality_rule_results.catalog_table_config.catalog_id #=> String
1194
+ # resp.runs[0].additional_run_options.observation_results.write_observation_results_enabled #=> Boolean
1195
+ # resp.runs[0].additional_run_options.observation_results.catalog_table_config.database_name #=> String
1196
+ # resp.runs[0].additional_run_options.observation_results.catalog_table_config.table_name #=> String
1197
+ # resp.runs[0].additional_run_options.observation_results.catalog_table_config.s3_location #=> String
1198
+ # resp.runs[0].additional_run_options.observation_results.catalog_table_config.catalog_id #=> String
1199
+ # resp.runs[0].status #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
1200
+ # resp.runs[0].error_string #=> String
1201
+ # resp.runs[0].started_on #=> Time
1202
+ # resp.runs[0].last_modified_on #=> Time
1203
+ # resp.runs[0].completed_on #=> Time
1204
+ # resp.runs[0].execution_time #=> Integer
1205
+ # resp.runs[0].ruleset_names #=> Array
1206
+ # resp.runs[0].ruleset_names[0] #=> String
1207
+ # resp.runs[0].result_ids #=> Array
1208
+ # resp.runs[0].result_ids[0] #=> String
1209
+ # resp.runs[0].additional_data_sources #=> Hash
1210
+ # resp.runs[0].additional_data_sources["NameString"].glue_table.database_name #=> String
1211
+ # resp.runs[0].additional_data_sources["NameString"].glue_table.table_name #=> String
1212
+ # resp.runs[0].additional_data_sources["NameString"].glue_table.catalog_id #=> String
1213
+ # resp.runs[0].additional_data_sources["NameString"].glue_table.connection_name #=> String
1214
+ # resp.runs[0].additional_data_sources["NameString"].glue_table.additional_options #=> Hash
1215
+ # resp.runs[0].additional_data_sources["NameString"].glue_table.additional_options["NameString"] #=> String
1216
+ # resp.runs[0].additional_data_sources["NameString"].data_quality_glue_table.database_name #=> String
1217
+ # resp.runs[0].additional_data_sources["NameString"].data_quality_glue_table.table_name #=> String
1218
+ # resp.runs[0].additional_data_sources["NameString"].data_quality_glue_table.catalog_id #=> String
1219
+ # resp.runs[0].additional_data_sources["NameString"].data_quality_glue_table.connection_name #=> String
1220
+ # resp.runs[0].additional_data_sources["NameString"].data_quality_glue_table.additional_options #=> Hash
1221
+ # resp.runs[0].additional_data_sources["NameString"].data_quality_glue_table.additional_options["NameString"] #=> String
1222
+ # resp.runs[0].additional_data_sources["NameString"].data_quality_glue_table.pre_processing_query #=> String
1223
+ # resp.runs_not_found #=> Array
1224
+ # resp.runs_not_found[0] #=> String
1225
+ #
1226
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BatchGetDataQualityRulesetEvaluationRun AWS API Documentation
1227
+ #
1228
+ # @overload batch_get_data_quality_ruleset_evaluation_run(params = {})
1229
+ # @param [Hash] params ({})
1230
+ def batch_get_data_quality_ruleset_evaluation_run(params = {}, options = {})
1231
+ req = build_request(:batch_get_data_quality_ruleset_evaluation_run, params)
1232
+ req.send_request(options)
1233
+ end
1234
+
1125
1235
  # Returns a list of resource metadata for a given list of development
1126
1236
  # endpoint names. After calling the `ListDevEndpoints` operation, you
1127
1237
  # can call this operation to access the data to which you have been
@@ -8486,6 +8596,12 @@ module Aws::Glue
8486
8596
  # resp.analyzer_results[0].evaluation_message #=> String
8487
8597
  # resp.analyzer_results[0].evaluated_metrics #=> Hash
8488
8598
  # resp.analyzer_results[0].evaluated_metrics["NameString"] #=> Float
8599
+ # resp.analyzer_results[0].evaluated_distributions #=> Hash
8600
+ # resp.analyzer_results[0].evaluated_distributions["NameString"].bin_edges #=> Array
8601
+ # resp.analyzer_results[0].evaluated_distributions["NameString"].bin_edges[0] #=> String
8602
+ # resp.analyzer_results[0].evaluated_distributions["NameString"].count #=> Array
8603
+ # resp.analyzer_results[0].evaluated_distributions["NameString"].count[0] #=> Integer
8604
+ # resp.analyzer_results[0].evaluated_distributions["NameString"].data_type #=> String
8489
8605
  # resp.observations #=> Array
8490
8606
  # resp.observations[0].description #=> String
8491
8607
  # resp.observations[0].metric_based_observation.metric_name #=> String
@@ -8533,6 +8649,7 @@ module Aws::Glue
8533
8649
  # * {Types::GetDataQualityRuleRecommendationRunResponse#recommended_ruleset #recommended_ruleset} => String
8534
8650
  # * {Types::GetDataQualityRuleRecommendationRunResponse#created_ruleset_name #created_ruleset_name} => String
8535
8651
  # * {Types::GetDataQualityRuleRecommendationRunResponse#data_quality_security_configuration #data_quality_security_configuration} => String
8652
+ # * {Types::GetDataQualityRuleRecommendationRunResponse#additional_run_options #additional_run_options} => Types::DataQualityRuleRecommendationRunAdditionalRunOptions
8536
8653
  #
8537
8654
  # @example Request syntax with placeholder values
8538
8655
  #
@@ -8568,6 +8685,7 @@ module Aws::Glue
8568
8685
  # resp.recommended_ruleset #=> String
8569
8686
  # resp.created_ruleset_name #=> String
8570
8687
  # resp.data_quality_security_configuration #=> String
8688
+ # resp.additional_run_options.custom_log_group_prefix #=> String
8571
8689
  #
8572
8690
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityRuleRecommendationRun AWS API Documentation
8573
8691
  #
@@ -8675,6 +8793,34 @@ module Aws::Glue
8675
8793
  # resp.additional_run_options.results_s3_prefix #=> String
8676
8794
  # resp.additional_run_options.composite_rule_evaluation_method #=> String, one of "COLUMN", "ROW"
8677
8795
  # resp.additional_run_options.custom_log_group_prefix #=> String
8796
+ # resp.additional_run_options.row_level_results.max_rows_to_write #=> Integer
8797
+ # resp.additional_run_options.row_level_results.result_type #=> String, one of "ALL", "PASSED_ONLY", "FAILED_ONLY"
8798
+ # resp.additional_run_options.row_level_results.catalog_table_config.database_name #=> String
8799
+ # resp.additional_run_options.row_level_results.catalog_table_config.table_name #=> String
8800
+ # resp.additional_run_options.row_level_results.catalog_table_config.s3_location #=> String
8801
+ # resp.additional_run_options.row_level_results.catalog_table_config.catalog_id #=> String
8802
+ # resp.additional_run_options.profiling_results.write_profiling_results_enabled #=> Boolean
8803
+ # resp.additional_run_options.profiling_results.catalog_table_config.database_name #=> String
8804
+ # resp.additional_run_options.profiling_results.catalog_table_config.table_name #=> String
8805
+ # resp.additional_run_options.profiling_results.catalog_table_config.s3_location #=> String
8806
+ # resp.additional_run_options.profiling_results.catalog_table_config.catalog_id #=> String
8807
+ # resp.additional_run_options.profiling_results.distribution_results.write_distribution_results_enabled #=> Boolean
8808
+ # resp.additional_run_options.profiling_results.distribution_results.catalog_table_config.database_name #=> String
8809
+ # resp.additional_run_options.profiling_results.distribution_results.catalog_table_config.table_name #=> String
8810
+ # resp.additional_run_options.profiling_results.distribution_results.catalog_table_config.s3_location #=> String
8811
+ # resp.additional_run_options.profiling_results.distribution_results.catalog_table_config.catalog_id #=> String
8812
+ # resp.additional_run_options.observation_scope #=> String, one of "ALL", "NONE"
8813
+ # resp.additional_run_options.observation_mode #=> String, one of "SCHEDULED", "FIXED"
8814
+ # resp.additional_run_options.data_quality_rule_results.write_data_quality_rule_results_enabled #=> Boolean
8815
+ # resp.additional_run_options.data_quality_rule_results.catalog_table_config.database_name #=> String
8816
+ # resp.additional_run_options.data_quality_rule_results.catalog_table_config.table_name #=> String
8817
+ # resp.additional_run_options.data_quality_rule_results.catalog_table_config.s3_location #=> String
8818
+ # resp.additional_run_options.data_quality_rule_results.catalog_table_config.catalog_id #=> String
8819
+ # resp.additional_run_options.observation_results.write_observation_results_enabled #=> Boolean
8820
+ # resp.additional_run_options.observation_results.catalog_table_config.database_name #=> String
8821
+ # resp.additional_run_options.observation_results.catalog_table_config.table_name #=> String
8822
+ # resp.additional_run_options.observation_results.catalog_table_config.s3_location #=> String
8823
+ # resp.additional_run_options.observation_results.catalog_table_config.catalog_id #=> String
8678
8824
  # resp.status #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
8679
8825
  # resp.error_string #=> String
8680
8826
  # resp.started_on #=> Time
@@ -13958,6 +14104,9 @@ module Aws::Glue
13958
14104
  # @option params [Integer] :max_results
13959
14105
  # The maximum number of results to return.
13960
14106
  #
14107
+ # @option params [Hash<String,String>] :tags
14108
+ # A list of key-value pair tags to filter recommendation runs.
14109
+ #
13961
14110
  # @return [Types::ListDataQualityRuleRecommendationRunsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13962
14111
  #
13963
14112
  # * {Types::ListDataQualityRuleRecommendationRunsResponse#runs #runs} => Array&lt;Types::DataQualityRuleRecommendationRunDescription&gt;
@@ -13995,6 +14144,9 @@ module Aws::Glue
13995
14144
  # },
13996
14145
  # next_token: "PaginationToken",
13997
14146
  # max_results: 1,
14147
+ # tags: {
14148
+ # "TagKey" => "TagValue",
14149
+ # },
13998
14150
  # })
13999
14151
  #
14000
14152
  # @example Response structure
@@ -14016,6 +14168,7 @@ module Aws::Glue
14016
14168
  # resp.runs[0].data_source.data_quality_glue_table.additional_options #=> Hash
14017
14169
  # resp.runs[0].data_source.data_quality_glue_table.additional_options["NameString"] #=> String
14018
14170
  # resp.runs[0].data_source.data_quality_glue_table.pre_processing_query #=> String
14171
+ # resp.runs[0].created_ruleset_name #=> String
14019
14172
  # resp.next_token #=> String
14020
14173
  #
14021
14174
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListDataQualityRuleRecommendationRuns AWS API Documentation
@@ -14275,6 +14428,11 @@ module Aws::Glue
14275
14428
  # resp.statistics[0].run_identifier.job_run_id #=> String
14276
14429
  # resp.statistics[0].statistic_name #=> String
14277
14430
  # resp.statistics[0].double_value #=> Float
14431
+ # resp.statistics[0].distribution_value.bin_edges #=> Array
14432
+ # resp.statistics[0].distribution_value.bin_edges[0] #=> String
14433
+ # resp.statistics[0].distribution_value.count #=> Array
14434
+ # resp.statistics[0].distribution_value.count[0] #=> Integer
14435
+ # resp.statistics[0].distribution_value.data_type #=> String
14278
14436
  # resp.statistics[0].evaluation_level #=> String, one of "Dataset", "Column", "Multicolumn"
14279
14437
  # resp.statistics[0].columns_referenced #=> Array
14280
14438
  # resp.statistics[0].columns_referenced[0] #=> String
@@ -17247,6 +17405,9 @@ module Aws::Glue
17247
17405
  # as a UUID) to avoid creating or starting multiple instances of the
17248
17406
  # same resource.
17249
17407
  #
17408
+ # @option params [Types::DataQualityRuleRecommendationRunAdditionalRunOptions] :additional_run_options
17409
+ # Additional run options you can specify for a recommendation run.
17410
+ #
17250
17411
  # @return [Types::StartDataQualityRuleRecommendationRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
17251
17412
  #
17252
17413
  # * {Types::StartDataQualityRuleRecommendationRunResponse#run_id #run_id} => String
@@ -17281,6 +17442,9 @@ module Aws::Glue
17281
17442
  # created_ruleset_name: "NameString",
17282
17443
  # data_quality_security_configuration: "NameString",
17283
17444
  # client_token: "HashString",
17445
+ # additional_run_options: {
17446
+ # custom_log_group_prefix: "GenericString",
17447
+ # },
17284
17448
  # })
17285
17449
  #
17286
17450
  # @example Response structure
@@ -17367,6 +17531,54 @@ module Aws::Glue
17367
17531
  # results_s3_prefix: "UriString",
17368
17532
  # composite_rule_evaluation_method: "COLUMN", # accepts COLUMN, ROW
17369
17533
  # custom_log_group_prefix: "GenericString",
17534
+ # row_level_results: {
17535
+ # max_rows_to_write: 1,
17536
+ # result_type: "ALL", # accepts ALL, PASSED_ONLY, FAILED_ONLY
17537
+ # catalog_table_config: {
17538
+ # database_name: "NameString",
17539
+ # table_name: "NameString",
17540
+ # s3_location: "UriString",
17541
+ # catalog_id: "NameString",
17542
+ # },
17543
+ # },
17544
+ # profiling_results: {
17545
+ # write_profiling_results_enabled: false,
17546
+ # catalog_table_config: {
17547
+ # database_name: "NameString",
17548
+ # table_name: "NameString",
17549
+ # s3_location: "UriString",
17550
+ # catalog_id: "NameString",
17551
+ # },
17552
+ # distribution_results: {
17553
+ # write_distribution_results_enabled: false,
17554
+ # catalog_table_config: {
17555
+ # database_name: "NameString",
17556
+ # table_name: "NameString",
17557
+ # s3_location: "UriString",
17558
+ # catalog_id: "NameString",
17559
+ # },
17560
+ # },
17561
+ # },
17562
+ # observation_scope: "ALL", # accepts ALL, NONE
17563
+ # observation_mode: "SCHEDULED", # accepts SCHEDULED, FIXED
17564
+ # data_quality_rule_results: {
17565
+ # write_data_quality_rule_results_enabled: false,
17566
+ # catalog_table_config: {
17567
+ # database_name: "NameString",
17568
+ # table_name: "NameString",
17569
+ # s3_location: "UriString",
17570
+ # catalog_id: "NameString",
17571
+ # },
17572
+ # },
17573
+ # observation_results: {
17574
+ # write_observation_results_enabled: false,
17575
+ # catalog_table_config: {
17576
+ # database_name: "NameString",
17577
+ # table_name: "NameString",
17578
+ # s3_location: "UriString",
17579
+ # catalog_id: "NameString",
17580
+ # },
17581
+ # },
17370
17582
  # },
17371
17583
  # ruleset_names: ["NameString"], # required
17372
17584
  # additional_data_sources: {
@@ -20630,7 +20842,7 @@ module Aws::Glue
20630
20842
  tracer: tracer
20631
20843
  )
20632
20844
  context[:gem_name] = 'aws-sdk-glue'
20633
- context[:gem_version] = '1.265.0'
20845
+ context[:gem_version] = '1.266.0'
20634
20846
  Seahorse::Client::Request.new(handlers, context)
20635
20847
  end
20636
20848