aws-sdk-glue 1.186.0 → 1.187.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0d956749b072ed073fa7835e96187791ce3eac19900e1ac0c16291b80ee9165d
4
- data.tar.gz: f1946a4f2651f2066364e2d125f1080b12771e19d9e5c3c8b32fc14b2c59c837
3
+ metadata.gz: 1f1473ce1df6a6d845c3305c326002539d9ca72eff147fc1ce5e9249e3181928
4
+ data.tar.gz: 89441b348ff92690d4d4a4f6f597d08de279db929e47103143cc3cfcc3f05a46
5
5
  SHA512:
6
- metadata.gz: ed98d1c672c52cc5de37064398926b13915401b11af1866a532d0c510cd79f254b53743d03b823dacb21c1f0e521d987b73eadc6516ca795e27c7ce6ad566ec4
7
- data.tar.gz: dd6c5e134731511fae7a998403fb1221491553f998c41f253799fe95e2f5591104efa19fba7d6a4d4dd58dfc6ad4f6f6f8d11906ea15095bd0b4fa435c6b8da6
6
+ metadata.gz: b683ada208c1f2a229813957d2087a4bef5b144d4df6c6f1e832ccd4c8282f2c45cd619817cca33bbc3240bd82cec5f33eb301e240ca2cdb8a33abeac415f73f
7
+ data.tar.gz: fa8836234e48c382c404e42129f6ff8567d64a9d33ff561fc6c3fb91c1bf85098b818a458a4ba793257585bb66d290cb901da88e0eff8b184e007d3887370700
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.187.0 (2024-08-07)
5
+ ------------------
6
+
7
+ * Feature - Introducing AWS Glue Data Quality anomaly detection, a new functionality that uses ML-based solutions to detect data anomalies users have not explicitly defined rules for.
8
+
4
9
  1.186.0 (2024-08-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.186.0
1
+ 1.187.0
@@ -961,6 +961,7 @@ module Aws::Glue
961
961
  #
962
962
  # resp.results #=> Array
963
963
  # resp.results[0].result_id #=> String
964
+ # resp.results[0].profile_id #=> String
964
965
  # resp.results[0].score #=> Float
965
966
  # resp.results[0].data_source.glue_table.database_name #=> String
966
967
  # resp.results[0].data_source.glue_table.table_name #=> String
@@ -982,6 +983,7 @@ module Aws::Glue
982
983
  # resp.results[0].rule_results[0].result #=> String, one of "PASS", "FAIL", "ERROR"
983
984
  # resp.results[0].rule_results[0].evaluated_metrics #=> Hash
984
985
  # resp.results[0].rule_results[0].evaluated_metrics["NameString"] #=> Float
986
+ # resp.results[0].rule_results[0].evaluated_rule #=> String
985
987
  # resp.results[0].analyzer_results #=> Array
986
988
  # resp.results[0].analyzer_results[0].name #=> String
987
989
  # resp.results[0].analyzer_results[0].description #=> String
@@ -991,6 +993,7 @@ module Aws::Glue
991
993
  # resp.results[0].observations #=> Array
992
994
  # resp.results[0].observations[0].description #=> String
993
995
  # resp.results[0].observations[0].metric_based_observation.metric_name #=> String
996
+ # resp.results[0].observations[0].metric_based_observation.statistic_id #=> String
994
997
  # resp.results[0].observations[0].metric_based_observation.metric_values.actual_value #=> Float
995
998
  # resp.results[0].observations[0].metric_based_observation.metric_values.expected_value #=> Float
996
999
  # resp.results[0].observations[0].metric_based_observation.metric_values.lower_limit #=> Float
@@ -2422,6 +2425,47 @@ module Aws::Glue
2422
2425
  req.send_request(options)
2423
2426
  end
2424
2427
 
2428
+ # Annotate datapoints over time for a specific data quality statistic.
2429
+ #
2430
+ # @option params [required, Array<Types::DatapointInclusionAnnotation>] :inclusion_annotations
2431
+ # A list of `DatapointInclusionAnnotation`'s.
2432
+ #
2433
+ # @option params [String] :client_token
2434
+ # Client Token.
2435
+ #
2436
+ # @return [Types::BatchPutDataQualityStatisticAnnotationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2437
+ #
2438
+ # * {Types::BatchPutDataQualityStatisticAnnotationResponse#failed_inclusion_annotations #failed_inclusion_annotations} => Array&lt;Types::AnnotationError&gt;
2439
+ #
2440
+ # @example Request syntax with placeholder values
2441
+ #
2442
+ # resp = client.batch_put_data_quality_statistic_annotation({
2443
+ # inclusion_annotations: [ # required
2444
+ # {
2445
+ # profile_id: "HashString",
2446
+ # statistic_id: "HashString",
2447
+ # inclusion_annotation: "INCLUDE", # accepts INCLUDE, EXCLUDE
2448
+ # },
2449
+ # ],
2450
+ # client_token: "HashString",
2451
+ # })
2452
+ #
2453
+ # @example Response structure
2454
+ #
2455
+ # resp.failed_inclusion_annotations #=> Array
2456
+ # resp.failed_inclusion_annotations[0].profile_id #=> String
2457
+ # resp.failed_inclusion_annotations[0].statistic_id #=> String
2458
+ # resp.failed_inclusion_annotations[0].failure_reason #=> String
2459
+ #
2460
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BatchPutDataQualityStatisticAnnotation AWS API Documentation
2461
+ #
2462
+ # @overload batch_put_data_quality_statistic_annotation(params = {})
2463
+ # @param [Hash] params ({})
2464
+ def batch_put_data_quality_statistic_annotation(params = {}, options = {})
2465
+ req = build_request(:batch_put_data_quality_statistic_annotation, params)
2466
+ req.send_request(options)
2467
+ end
2468
+
2425
2469
  # Stops one or more job runs for a specified job definition.
2426
2470
  #
2427
2471
  # @option params [required, String] :job_name
@@ -3165,6 +3209,10 @@ module Aws::Glue
3165
3209
  # @option params [Types::DataQualityTargetTable] :target_table
3166
3210
  # A target table associated with the data quality ruleset.
3167
3211
  #
3212
+ # @option params [String] :data_quality_security_configuration
3213
+ # The name of the security configuration created with the data quality
3214
+ # encryption option.
3215
+ #
3168
3216
  # @option params [String] :client_token
3169
3217
  # Used for idempotency and is recommended to be set to a random ID (such
3170
3218
  # as a UUID) to avoid creating or starting multiple instances of the
@@ -3188,6 +3236,7 @@ module Aws::Glue
3188
3236
  # database_name: "NameString", # required
3189
3237
  # catalog_id: "NameString",
3190
3238
  # },
3239
+ # data_quality_security_configuration: "NameString",
3191
3240
  # client_token: "HashString",
3192
3241
  # })
3193
3242
  #
@@ -6962,6 +7011,85 @@ module Aws::Glue
6962
7011
  req.send_request(options)
6963
7012
  end
6964
7013
 
7014
+ # Retrieve the training status of the model along with more information
7015
+ # (CompletedOn, StartedOn, FailureReason).
7016
+ #
7017
+ # @option params [String] :statistic_id
7018
+ # The Statistic ID.
7019
+ #
7020
+ # @option params [required, String] :profile_id
7021
+ # The Profile ID.
7022
+ #
7023
+ # @return [Types::GetDataQualityModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7024
+ #
7025
+ # * {Types::GetDataQualityModelResponse#status #status} => String
7026
+ # * {Types::GetDataQualityModelResponse#started_on #started_on} => Time
7027
+ # * {Types::GetDataQualityModelResponse#completed_on #completed_on} => Time
7028
+ # * {Types::GetDataQualityModelResponse#failure_reason #failure_reason} => String
7029
+ #
7030
+ # @example Request syntax with placeholder values
7031
+ #
7032
+ # resp = client.get_data_quality_model({
7033
+ # statistic_id: "HashString",
7034
+ # profile_id: "HashString", # required
7035
+ # })
7036
+ #
7037
+ # @example Response structure
7038
+ #
7039
+ # resp.status #=> String, one of "RUNNING", "SUCCEEDED", "FAILED"
7040
+ # resp.started_on #=> Time
7041
+ # resp.completed_on #=> Time
7042
+ # resp.failure_reason #=> String
7043
+ #
7044
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityModel AWS API Documentation
7045
+ #
7046
+ # @overload get_data_quality_model(params = {})
7047
+ # @param [Hash] params ({})
7048
+ def get_data_quality_model(params = {}, options = {})
7049
+ req = build_request(:get_data_quality_model, params)
7050
+ req.send_request(options)
7051
+ end
7052
+
7053
+ # Retrieve a statistic's predictions for a given Profile ID.
7054
+ #
7055
+ # @option params [required, String] :statistic_id
7056
+ # The Statistic ID.
7057
+ #
7058
+ # @option params [required, String] :profile_id
7059
+ # The Profile ID.
7060
+ #
7061
+ # @return [Types::GetDataQualityModelResultResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7062
+ #
7063
+ # * {Types::GetDataQualityModelResultResponse#completed_on #completed_on} => Time
7064
+ # * {Types::GetDataQualityModelResultResponse#model #model} => Array&lt;Types::StatisticModelResult&gt;
7065
+ #
7066
+ # @example Request syntax with placeholder values
7067
+ #
7068
+ # resp = client.get_data_quality_model_result({
7069
+ # statistic_id: "HashString", # required
7070
+ # profile_id: "HashString", # required
7071
+ # })
7072
+ #
7073
+ # @example Response structure
7074
+ #
7075
+ # resp.completed_on #=> Time
7076
+ # resp.model #=> Array
7077
+ # resp.model[0].lower_bound #=> Float
7078
+ # resp.model[0].upper_bound #=> Float
7079
+ # resp.model[0].predicted_value #=> Float
7080
+ # resp.model[0].actual_value #=> Float
7081
+ # resp.model[0].date #=> Time
7082
+ # resp.model[0].inclusion_annotation #=> String, one of "INCLUDE", "EXCLUDE"
7083
+ #
7084
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityModelResult AWS API Documentation
7085
+ #
7086
+ # @overload get_data_quality_model_result(params = {})
7087
+ # @param [Hash] params ({})
7088
+ def get_data_quality_model_result(params = {}, options = {})
7089
+ req = build_request(:get_data_quality_model_result, params)
7090
+ req.send_request(options)
7091
+ end
7092
+
6965
7093
  # Retrieves the result of a data quality rule evaluation.
6966
7094
  #
6967
7095
  # @option params [required, String] :result_id
@@ -6970,6 +7098,7 @@ module Aws::Glue
6970
7098
  # @return [Types::GetDataQualityResultResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6971
7099
  #
6972
7100
  # * {Types::GetDataQualityResultResponse#result_id #result_id} => String
7101
+ # * {Types::GetDataQualityResultResponse#profile_id #profile_id} => String
6973
7102
  # * {Types::GetDataQualityResultResponse#score #score} => Float
6974
7103
  # * {Types::GetDataQualityResultResponse#data_source #data_source} => Types::DataSource
6975
7104
  # * {Types::GetDataQualityResultResponse#ruleset_name #ruleset_name} => String
@@ -6992,6 +7121,7 @@ module Aws::Glue
6992
7121
  # @example Response structure
6993
7122
  #
6994
7123
  # resp.result_id #=> String
7124
+ # resp.profile_id #=> String
6995
7125
  # resp.score #=> Float
6996
7126
  # resp.data_source.glue_table.database_name #=> String
6997
7127
  # resp.data_source.glue_table.table_name #=> String
@@ -7013,6 +7143,7 @@ module Aws::Glue
7013
7143
  # resp.rule_results[0].result #=> String, one of "PASS", "FAIL", "ERROR"
7014
7144
  # resp.rule_results[0].evaluated_metrics #=> Hash
7015
7145
  # resp.rule_results[0].evaluated_metrics["NameString"] #=> Float
7146
+ # resp.rule_results[0].evaluated_rule #=> String
7016
7147
  # resp.analyzer_results #=> Array
7017
7148
  # resp.analyzer_results[0].name #=> String
7018
7149
  # resp.analyzer_results[0].description #=> String
@@ -7022,6 +7153,7 @@ module Aws::Glue
7022
7153
  # resp.observations #=> Array
7023
7154
  # resp.observations[0].description #=> String
7024
7155
  # resp.observations[0].metric_based_observation.metric_name #=> String
7156
+ # resp.observations[0].metric_based_observation.statistic_id #=> String
7025
7157
  # resp.observations[0].metric_based_observation.metric_values.actual_value #=> Float
7026
7158
  # resp.observations[0].metric_based_observation.metric_values.expected_value #=> Float
7027
7159
  # resp.observations[0].metric_based_observation.metric_values.lower_limit #=> Float
@@ -7058,6 +7190,7 @@ module Aws::Glue
7058
7190
  # * {Types::GetDataQualityRuleRecommendationRunResponse#execution_time #execution_time} => Integer
7059
7191
  # * {Types::GetDataQualityRuleRecommendationRunResponse#recommended_ruleset #recommended_ruleset} => String
7060
7192
  # * {Types::GetDataQualityRuleRecommendationRunResponse#created_ruleset_name #created_ruleset_name} => String
7193
+ # * {Types::GetDataQualityRuleRecommendationRunResponse#data_quality_security_configuration #data_quality_security_configuration} => String
7061
7194
  #
7062
7195
  # @example Request syntax with placeholder values
7063
7196
  #
@@ -7085,6 +7218,7 @@ module Aws::Glue
7085
7218
  # resp.execution_time #=> Integer
7086
7219
  # resp.recommended_ruleset #=> String
7087
7220
  # resp.created_ruleset_name #=> String
7221
+ # resp.data_quality_security_configuration #=> String
7088
7222
  #
7089
7223
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityRuleRecommendationRun AWS API Documentation
7090
7224
  #
@@ -7109,6 +7243,7 @@ module Aws::Glue
7109
7243
  # * {Types::GetDataQualityRulesetResponse#created_on #created_on} => Time
7110
7244
  # * {Types::GetDataQualityRulesetResponse#last_modified_on #last_modified_on} => Time
7111
7245
  # * {Types::GetDataQualityRulesetResponse#recommendation_run_id #recommendation_run_id} => String
7246
+ # * {Types::GetDataQualityRulesetResponse#data_quality_security_configuration #data_quality_security_configuration} => String
7112
7247
  #
7113
7248
  # @example Request syntax with placeholder values
7114
7249
  #
@@ -7127,6 +7262,7 @@ module Aws::Glue
7127
7262
  # resp.created_on #=> Time
7128
7263
  # resp.last_modified_on #=> Time
7129
7264
  # resp.recommendation_run_id #=> String
7265
+ # resp.data_quality_security_configuration #=> String
7130
7266
  #
7131
7267
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityRuleset AWS API Documentation
7132
7268
  #
@@ -13476,6 +13612,125 @@ module Aws::Glue
13476
13612
  req.send_request(options)
13477
13613
  end
13478
13614
 
13615
+ # Retrieve annotations for a data quality statistic.
13616
+ #
13617
+ # @option params [String] :statistic_id
13618
+ # The Statistic ID.
13619
+ #
13620
+ # @option params [String] :profile_id
13621
+ # The Profile ID.
13622
+ #
13623
+ # @option params [Types::TimestampFilter] :timestamp_filter
13624
+ # A timestamp filter.
13625
+ #
13626
+ # @option params [Integer] :max_results
13627
+ # The maximum number of results to return in this request.
13628
+ #
13629
+ # @option params [String] :next_token
13630
+ # A pagination token to retrieve the next set of results.
13631
+ #
13632
+ # @return [Types::ListDataQualityStatisticAnnotationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13633
+ #
13634
+ # * {Types::ListDataQualityStatisticAnnotationsResponse#annotations #annotations} => Array&lt;Types::StatisticAnnotation&gt;
13635
+ # * {Types::ListDataQualityStatisticAnnotationsResponse#next_token #next_token} => String
13636
+ #
13637
+ # @example Request syntax with placeholder values
13638
+ #
13639
+ # resp = client.list_data_quality_statistic_annotations({
13640
+ # statistic_id: "HashString",
13641
+ # profile_id: "HashString",
13642
+ # timestamp_filter: {
13643
+ # recorded_before: Time.now,
13644
+ # recorded_after: Time.now,
13645
+ # },
13646
+ # max_results: 1,
13647
+ # next_token: "PaginationToken",
13648
+ # })
13649
+ #
13650
+ # @example Response structure
13651
+ #
13652
+ # resp.annotations #=> Array
13653
+ # resp.annotations[0].profile_id #=> String
13654
+ # resp.annotations[0].statistic_id #=> String
13655
+ # resp.annotations[0].statistic_recorded_on #=> Time
13656
+ # resp.annotations[0].inclusion_annotation.value #=> String, one of "INCLUDE", "EXCLUDE"
13657
+ # resp.annotations[0].inclusion_annotation.last_modified_on #=> Time
13658
+ # resp.next_token #=> String
13659
+ #
13660
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListDataQualityStatisticAnnotations AWS API Documentation
13661
+ #
13662
+ # @overload list_data_quality_statistic_annotations(params = {})
13663
+ # @param [Hash] params ({})
13664
+ def list_data_quality_statistic_annotations(params = {}, options = {})
13665
+ req = build_request(:list_data_quality_statistic_annotations, params)
13666
+ req.send_request(options)
13667
+ end
13668
+
13669
+ # Retrieves a list of data quality statistics.
13670
+ #
13671
+ # @option params [String] :statistic_id
13672
+ # The Statistic ID.
13673
+ #
13674
+ # @option params [String] :profile_id
13675
+ # The Profile ID.
13676
+ #
13677
+ # @option params [Types::TimestampFilter] :timestamp_filter
13678
+ # A timestamp filter.
13679
+ #
13680
+ # @option params [Integer] :max_results
13681
+ # The maximum number of results to return in this request.
13682
+ #
13683
+ # @option params [String] :next_token
13684
+ # A pagination token to request the next page of results.
13685
+ #
13686
+ # @return [Types::ListDataQualityStatisticsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13687
+ #
13688
+ # * {Types::ListDataQualityStatisticsResponse#statistics #statistics} => Array&lt;Types::StatisticSummary&gt;
13689
+ # * {Types::ListDataQualityStatisticsResponse#next_token #next_token} => String
13690
+ #
13691
+ # @example Request syntax with placeholder values
13692
+ #
13693
+ # resp = client.list_data_quality_statistics({
13694
+ # statistic_id: "HashString",
13695
+ # profile_id: "HashString",
13696
+ # timestamp_filter: {
13697
+ # recorded_before: Time.now,
13698
+ # recorded_after: Time.now,
13699
+ # },
13700
+ # max_results: 1,
13701
+ # next_token: "PaginationToken",
13702
+ # })
13703
+ #
13704
+ # @example Response structure
13705
+ #
13706
+ # resp.statistics #=> Array
13707
+ # resp.statistics[0].statistic_id #=> String
13708
+ # resp.statistics[0].profile_id #=> String
13709
+ # resp.statistics[0].run_identifier.run_id #=> String
13710
+ # resp.statistics[0].run_identifier.job_run_id #=> String
13711
+ # resp.statistics[0].statistic_name #=> String
13712
+ # resp.statistics[0].double_value #=> Float
13713
+ # resp.statistics[0].evaluation_level #=> String, one of "Dataset", "Column", "Multicolumn"
13714
+ # resp.statistics[0].columns_referenced #=> Array
13715
+ # resp.statistics[0].columns_referenced[0] #=> String
13716
+ # resp.statistics[0].referenced_datasets #=> Array
13717
+ # resp.statistics[0].referenced_datasets[0] #=> String
13718
+ # resp.statistics[0].statistic_properties #=> Hash
13719
+ # resp.statistics[0].statistic_properties["NameString"] #=> String
13720
+ # resp.statistics[0].recorded_on #=> Time
13721
+ # resp.statistics[0].inclusion_annotation.value #=> String, one of "INCLUDE", "EXCLUDE"
13722
+ # resp.statistics[0].inclusion_annotation.last_modified_on #=> Time
13723
+ # resp.next_token #=> String
13724
+ #
13725
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListDataQualityStatistics AWS API Documentation
13726
+ #
13727
+ # @overload list_data_quality_statistics(params = {})
13728
+ # @param [Hash] params ({})
13729
+ def list_data_quality_statistics(params = {}, options = {})
13730
+ req = build_request(:list_data_quality_statistics, params)
13731
+ req.send_request(options)
13732
+ end
13733
+
13479
13734
  # Retrieves the names of all `DevEndpoint` resources in this Amazon Web
13480
13735
  # Services account, or the resources with the specified tag. This
13481
13736
  # operation allows you to see which resources are available in your
@@ -14183,6 +14438,32 @@ module Aws::Glue
14183
14438
  req.send_request(options)
14184
14439
  end
14185
14440
 
14441
+ # Annotate all datapoints for a Profile.
14442
+ #
14443
+ # @option params [required, String] :profile_id
14444
+ # The ID of the data quality monitoring profile to annotate.
14445
+ #
14446
+ # @option params [required, String] :inclusion_annotation
14447
+ # The inclusion annotation value to apply to the profile.
14448
+ #
14449
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
14450
+ #
14451
+ # @example Request syntax with placeholder values
14452
+ #
14453
+ # resp = client.put_data_quality_profile_annotation({
14454
+ # profile_id: "HashString", # required
14455
+ # inclusion_annotation: "INCLUDE", # required, accepts INCLUDE, EXCLUDE
14456
+ # })
14457
+ #
14458
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/PutDataQualityProfileAnnotation AWS API Documentation
14459
+ #
14460
+ # @overload put_data_quality_profile_annotation(params = {})
14461
+ # @param [Hash] params ({})
14462
+ def put_data_quality_profile_annotation(params = {}, options = {})
14463
+ req = build_request(:put_data_quality_profile_annotation, params)
14464
+ req.send_request(options)
14465
+ end
14466
+
14186
14467
  # Sets the Data Catalog resource policy for access control.
14187
14468
  #
14188
14469
  # @option params [required, String] :policy_in_json
@@ -15025,6 +15306,10 @@ module Aws::Glue
15025
15306
  # @option params [String] :created_ruleset_name
15026
15307
  # A name for the ruleset.
15027
15308
  #
15309
+ # @option params [String] :data_quality_security_configuration
15310
+ # The name of the security configuration created with the data quality
15311
+ # encryption option.
15312
+ #
15028
15313
  # @option params [String] :client_token
15029
15314
  # Used for idempotency and is recommended to be set to a random ID (such
15030
15315
  # as a UUID) to avoid creating or starting multiple instances of the
@@ -15052,6 +15337,7 @@ module Aws::Glue
15052
15337
  # number_of_workers: 1,
15053
15338
  # timeout: 1,
15054
15339
  # created_ruleset_name: "NameString",
15340
+ # data_quality_security_configuration: "NameString",
15055
15341
  # client_token: "HashString",
15056
15342
  # })
15057
15343
  #
@@ -17592,7 +17878,7 @@ module Aws::Glue
17592
17878
  params: params,
17593
17879
  config: config)
17594
17880
  context[:gem_name] = 'aws-sdk-glue'
17595
- context[:gem_version] = '1.186.0'
17881
+ context[:gem_version] = '1.187.0'
17596
17882
  Seahorse::Client::Request.new(handlers, context)
17597
17883
  end
17598
17884