aws-sdk-glue 1.178.0 → 1.179.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 292432521ca18ed4bdcf7e8ac43235c16dc408afb9a161f96d1743802749b243
4
- data.tar.gz: 49291f5da066aad5275357e2e969ab57023cedbedb832fc11101e0c7240c6ce7
3
+ metadata.gz: 4219986e9bea5e3bbd1ed0a0b4f2cb436ecc9046efc8d1a39c589c9b32691ff9
4
+ data.tar.gz: 6b23c8a36504d930662db691233e8fefbb084b71b08bedd8f3992663dc68fe91
5
5
  SHA512:
6
- metadata.gz: 3c9699231d525bb117efc042fd309b620c64aa74ae4fe211f374397377398fd03d6336201fa0881d1302b153f5ad702dee751aabdd938a709ceb1a34e1925ada
7
- data.tar.gz: 504fced69766bbbf92890f10dfde26ac448709d3690da36c70cb7497fa580368ac838463b158ebc551daef6aef11c5051c4ccbb6dc76df11520b0b8186351622
6
+ metadata.gz: f0be801e08eca16f6f18a8c4e965bff4777ba5a5d49668e0f273566145200491a2c55e3a43ec1c44202d43967ee5d637064d46ad4a76b588206798a432ec2afd
7
+ data.tar.gz: b6dcc741a0b42bdddb31d3a1cfd548a4f41fcf24e37d1b3eafda1a00a27fe15ba944a28e31c33767063a4db0e73b49719acb4891a145847a67edaaeb7ec8a5cf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.179.0 (2024-06-17)
5
+ ------------------
6
+
7
+ * Feature - This release introduces a new feature, Usage profiles. Usage profiles allow the AWS Glue admin to create different profiles for various classes of users within the account, enforcing limits and defaults for jobs and sessions.
8
+
4
9
  1.178.0 (2024-06-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.178.0
1
+ 1.179.0
@@ -1971,6 +1971,7 @@ module Aws::Glue
1971
1971
  # resp.jobs[0].source_control_details.auth_strategy #=> String, one of "PERSONAL_ACCESS_TOKEN", "AWS_SECRETS_MANAGER"
1972
1972
  # resp.jobs[0].source_control_details.auth_token #=> String
1973
1973
  # resp.jobs[0].maintenance_window #=> String
1974
+ # resp.jobs[0].profile_name #=> String
1974
1975
  # resp.jobs_not_found #=> Array
1975
1976
  # resp.jobs_not_found[0] #=> String
1976
1977
  #
@@ -2307,6 +2308,7 @@ module Aws::Glue
2307
2308
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
2308
2309
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
2309
2310
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
2311
+ # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
2310
2312
  # resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls #=> Array
2311
2313
  # resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
2312
2314
  # resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
@@ -2377,6 +2379,7 @@ module Aws::Glue
2377
2379
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
2378
2380
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
2379
2381
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
2382
+ # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].profile_name #=> String
2380
2383
  # resp.workflows[0].graph.nodes[0].crawler_details.crawls #=> Array
2381
2384
  # resp.workflows[0].graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
2382
2385
  # resp.workflows[0].graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
@@ -4515,6 +4518,7 @@ module Aws::Glue
4515
4518
  # resp.session.execution_time #=> Float
4516
4519
  # resp.session.dpu_seconds #=> Float
4517
4520
  # resp.session.idle_timeout #=> Integer
4521
+ # resp.session.profile_name #=> String
4518
4522
  #
4519
4523
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateSession AWS API Documentation
4520
4524
  #
@@ -4832,6 +4836,66 @@ module Aws::Glue
4832
4836
  req.send_request(options)
4833
4837
  end
4834
4838
 
4839
+ # Creates an Glue usage profile.
4840
+ #
4841
+ # @option params [required, String] :name
4842
+ # The name of the usage profile.
4843
+ #
4844
+ # @option params [String] :description
4845
+ # A description of the usage profile.
4846
+ #
4847
+ # @option params [required, Types::ProfileConfiguration] :configuration
4848
+ # A `ProfileConfiguration` object specifying the job and session values
4849
+ # for the profile.
4850
+ #
4851
+ # @option params [Hash<String,String>] :tags
4852
+ # A list of tags applied to the usage profile.
4853
+ #
4854
+ # @return [Types::CreateUsageProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4855
+ #
4856
+ # * {Types::CreateUsageProfileResponse#name #name} => String
4857
+ #
4858
+ # @example Request syntax with placeholder values
4859
+ #
4860
+ # resp = client.create_usage_profile({
4861
+ # name: "NameString", # required
4862
+ # description: "DescriptionString",
4863
+ # configuration: { # required
4864
+ # session_configuration: {
4865
+ # "NameString" => {
4866
+ # default_value: "ConfigValueString",
4867
+ # allowed_values: ["ConfigValueString"],
4868
+ # min_value: "ConfigValueString",
4869
+ # max_value: "ConfigValueString",
4870
+ # },
4871
+ # },
4872
+ # job_configuration: {
4873
+ # "NameString" => {
4874
+ # default_value: "ConfigValueString",
4875
+ # allowed_values: ["ConfigValueString"],
4876
+ # min_value: "ConfigValueString",
4877
+ # max_value: "ConfigValueString",
4878
+ # },
4879
+ # },
4880
+ # },
4881
+ # tags: {
4882
+ # "TagKey" => "TagValue",
4883
+ # },
4884
+ # })
4885
+ #
4886
+ # @example Response structure
4887
+ #
4888
+ # resp.name #=> String
4889
+ #
4890
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateUsageProfile AWS API Documentation
4891
+ #
4892
+ # @overload create_usage_profile(params = {})
4893
+ # @param [Hash] params ({})
4894
+ def create_usage_profile(params = {}, options = {})
4895
+ req = build_request(:create_usage_profile, params)
4896
+ req.send_request(options)
4897
+ end
4898
+
4835
4899
  # Creates a new function definition in the Data Catalog.
4836
4900
  #
4837
4901
  # @option params [String] :catalog_id
@@ -5738,6 +5802,28 @@ module Aws::Glue
5738
5802
  req.send_request(options)
5739
5803
  end
5740
5804
 
5805
+ # Deletes the Glue specified usage profile.
5806
+ #
5807
+ # @option params [required, String] :name
5808
+ # The name of the usage profile to delete.
5809
+ #
5810
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5811
+ #
5812
+ # @example Request syntax with placeholder values
5813
+ #
5814
+ # resp = client.delete_usage_profile({
5815
+ # name: "NameString", # required
5816
+ # })
5817
+ #
5818
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteUsageProfile AWS API Documentation
5819
+ #
5820
+ # @overload delete_usage_profile(params = {})
5821
+ # @param [Hash] params ({})
5822
+ def delete_usage_profile(params = {}, options = {})
5823
+ req = build_request(:delete_usage_profile, params)
5824
+ req.send_request(options)
5825
+ end
5826
+
5741
5827
  # Deletes an existing function definition from the Data Catalog.
5742
5828
  #
5743
5829
  # @option params [String] :catalog_id
@@ -8301,6 +8387,7 @@ module Aws::Glue
8301
8387
  # resp.job.source_control_details.auth_strategy #=> String, one of "PERSONAL_ACCESS_TOKEN", "AWS_SECRETS_MANAGER"
8302
8388
  # resp.job.source_control_details.auth_token #=> String
8303
8389
  # resp.job.maintenance_window #=> String
8390
+ # resp.job.profile_name #=> String
8304
8391
  #
8305
8392
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJob AWS API Documentation
8306
8393
  #
@@ -8363,7 +8450,8 @@ module Aws::Glue
8363
8450
  req.send_request(options)
8364
8451
  end
8365
8452
 
8366
- # Retrieves the metadata for a given job run.
8453
+ # Retrieves the metadata for a given job run. Job run history is
8454
+ # accessible for 90 days for your workflow and job run.
8367
8455
  #
8368
8456
  # @option params [required, String] :job_name
8369
8457
  # Name of the job definition being run.
@@ -8417,6 +8505,7 @@ module Aws::Glue
8417
8505
  # resp.job_run.dpu_seconds #=> Float
8418
8506
  # resp.job_run.execution_class #=> String, one of "FLEX", "STANDARD"
8419
8507
  # resp.job_run.maintenance_window #=> String
8508
+ # resp.job_run.profile_name #=> String
8420
8509
  #
8421
8510
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobRun AWS API Documentation
8422
8511
  #
@@ -8485,6 +8574,7 @@ module Aws::Glue
8485
8574
  # resp.job_runs[0].dpu_seconds #=> Float
8486
8575
  # resp.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
8487
8576
  # resp.job_runs[0].maintenance_window #=> String
8577
+ # resp.job_runs[0].profile_name #=> String
8488
8578
  # resp.next_token #=> String
8489
8579
  #
8490
8580
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobRuns AWS API Documentation
@@ -9404,6 +9494,7 @@ module Aws::Glue
9404
9494
  # resp.jobs[0].source_control_details.auth_strategy #=> String, one of "PERSONAL_ACCESS_TOKEN", "AWS_SECRETS_MANAGER"
9405
9495
  # resp.jobs[0].source_control_details.auth_token #=> String
9406
9496
  # resp.jobs[0].maintenance_window #=> String
9497
+ # resp.jobs[0].profile_name #=> String
9407
9498
  # resp.next_token #=> String
9408
9499
  #
9409
9500
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobs AWS API Documentation
@@ -10794,6 +10885,7 @@ module Aws::Glue
10794
10885
  # resp.session.execution_time #=> Float
10795
10886
  # resp.session.dpu_seconds #=> Float
10796
10887
  # resp.session.idle_timeout #=> Integer
10888
+ # resp.session.profile_name #=> String
10797
10889
  #
10798
10890
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetSession AWS API Documentation
10799
10891
  #
@@ -12164,6 +12256,53 @@ module Aws::Glue
12164
12256
  req.send_request(options)
12165
12257
  end
12166
12258
 
12259
+ # Retrieves information about the specified Glue usage profile.
12260
+ #
12261
+ # @option params [required, String] :name
12262
+ # The name of the usage profile to retrieve.
12263
+ #
12264
+ # @return [Types::GetUsageProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12265
+ #
12266
+ # * {Types::GetUsageProfileResponse#name #name} => String
12267
+ # * {Types::GetUsageProfileResponse#description #description} => String
12268
+ # * {Types::GetUsageProfileResponse#configuration #configuration} => Types::ProfileConfiguration
12269
+ # * {Types::GetUsageProfileResponse#created_on #created_on} => Time
12270
+ # * {Types::GetUsageProfileResponse#last_modified_on #last_modified_on} => Time
12271
+ #
12272
+ # @example Request syntax with placeholder values
12273
+ #
12274
+ # resp = client.get_usage_profile({
12275
+ # name: "NameString", # required
12276
+ # })
12277
+ #
12278
+ # @example Response structure
12279
+ #
12280
+ # resp.name #=> String
12281
+ # resp.description #=> String
12282
+ # resp.configuration.session_configuration #=> Hash
12283
+ # resp.configuration.session_configuration["NameString"].default_value #=> String
12284
+ # resp.configuration.session_configuration["NameString"].allowed_values #=> Array
12285
+ # resp.configuration.session_configuration["NameString"].allowed_values[0] #=> String
12286
+ # resp.configuration.session_configuration["NameString"].min_value #=> String
12287
+ # resp.configuration.session_configuration["NameString"].max_value #=> String
12288
+ # resp.configuration.job_configuration #=> Hash
12289
+ # resp.configuration.job_configuration["NameString"].default_value #=> String
12290
+ # resp.configuration.job_configuration["NameString"].allowed_values #=> Array
12291
+ # resp.configuration.job_configuration["NameString"].allowed_values[0] #=> String
12292
+ # resp.configuration.job_configuration["NameString"].min_value #=> String
12293
+ # resp.configuration.job_configuration["NameString"].max_value #=> String
12294
+ # resp.created_on #=> Time
12295
+ # resp.last_modified_on #=> Time
12296
+ #
12297
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetUsageProfile AWS API Documentation
12298
+ #
12299
+ # @overload get_usage_profile(params = {})
12300
+ # @param [Hash] params ({})
12301
+ def get_usage_profile(params = {}, options = {})
12302
+ req = build_request(:get_usage_profile, params)
12303
+ req.send_request(options)
12304
+ end
12305
+
12167
12306
  # Retrieves a specified function definition from the Data Catalog.
12168
12307
  #
12169
12308
  # @option params [String] :catalog_id
@@ -12377,6 +12516,7 @@ module Aws::Glue
12377
12516
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
12378
12517
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
12379
12518
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
12519
+ # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
12380
12520
  # resp.workflow.last_run.graph.nodes[0].crawler_details.crawls #=> Array
12381
12521
  # resp.workflow.last_run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
12382
12522
  # resp.workflow.last_run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
@@ -12447,6 +12587,7 @@ module Aws::Glue
12447
12587
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
12448
12588
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
12449
12589
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
12590
+ # resp.workflow.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
12450
12591
  # resp.workflow.graph.nodes[0].crawler_details.crawls #=> Array
12451
12592
  # resp.workflow.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
12452
12593
  # resp.workflow.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
@@ -12470,7 +12611,8 @@ module Aws::Glue
12470
12611
  req.send_request(options)
12471
12612
  end
12472
12613
 
12473
- # Retrieves the metadata for a given workflow run.
12614
+ # Retrieves the metadata for a given workflow run. Job run history is
12615
+ # accessible for 90 days for your workflow and job run.
12474
12616
  #
12475
12617
  # @option params [required, String] :name
12476
12618
  # Name of the workflow being run.
@@ -12570,6 +12712,7 @@ module Aws::Glue
12570
12712
  # resp.run.graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
12571
12713
  # resp.run.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
12572
12714
  # resp.run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
12715
+ # resp.run.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
12573
12716
  # resp.run.graph.nodes[0].crawler_details.crawls #=> Array
12574
12717
  # resp.run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
12575
12718
  # resp.run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
@@ -12733,6 +12876,7 @@ module Aws::Glue
12733
12876
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
12734
12877
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
12735
12878
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
12879
+ # resp.runs[0].graph.nodes[0].job_details.job_runs[0].profile_name #=> String
12736
12880
  # resp.runs[0].graph.nodes[0].crawler_details.crawls #=> Array
12737
12881
  # resp.runs[0].graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
12738
12882
  # resp.runs[0].graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
@@ -13696,6 +13840,7 @@ module Aws::Glue
13696
13840
  # resp.sessions[0].execution_time #=> Float
13697
13841
  # resp.sessions[0].dpu_seconds #=> Float
13698
13842
  # resp.sessions[0].idle_timeout #=> Integer
13843
+ # resp.sessions[0].profile_name #=> String
13699
13844
  # resp.next_token #=> String
13700
13845
  #
13701
13846
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListSessions AWS API Documentation
@@ -13882,6 +14027,46 @@ module Aws::Glue
13882
14027
  req.send_request(options)
13883
14028
  end
13884
14029
 
14030
+ # List all the Glue usage profiles.
14031
+ #
14032
+ # @option params [String] :next_token
14033
+ # A continuation token, included if this is a continuation call.
14034
+ #
14035
+ # @option params [Integer] :max_results
14036
+ # The maximum number of usage profiles to return in a single response.
14037
+ #
14038
+ # @return [Types::ListUsageProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14039
+ #
14040
+ # * {Types::ListUsageProfilesResponse#profiles #profiles} => Array&lt;Types::UsageProfileDefinition&gt;
14041
+ # * {Types::ListUsageProfilesResponse#next_token #next_token} => String
14042
+ #
14043
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14044
+ #
14045
+ # @example Request syntax with placeholder values
14046
+ #
14047
+ # resp = client.list_usage_profiles({
14048
+ # next_token: "OrchestrationToken",
14049
+ # max_results: 1,
14050
+ # })
14051
+ #
14052
+ # @example Response structure
14053
+ #
14054
+ # resp.profiles #=> Array
14055
+ # resp.profiles[0].name #=> String
14056
+ # resp.profiles[0].description #=> String
14057
+ # resp.profiles[0].created_on #=> Time
14058
+ # resp.profiles[0].last_modified_on #=> Time
14059
+ # resp.next_token #=> String
14060
+ #
14061
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListUsageProfiles AWS API Documentation
14062
+ #
14063
+ # @overload list_usage_profiles(params = {})
14064
+ # @param [Hash] params ({})
14065
+ def list_usage_profiles(params = {}, options = {})
14066
+ req = build_request(:list_usage_profiles, params)
14067
+ req.send_request(options)
14068
+ end
14069
+
13885
14070
  # Lists names of workflows created in the account.
13886
14071
  #
13887
14072
  # @option params [String] :next_token
@@ -17205,6 +17390,60 @@ module Aws::Glue
17205
17390
  req.send_request(options)
17206
17391
  end
17207
17392
 
17393
+ # Update an Glue usage profile.
17394
+ #
17395
+ # @option params [required, String] :name
17396
+ # The name of the usage profile.
17397
+ #
17398
+ # @option params [String] :description
17399
+ # A description of the usage profile.
17400
+ #
17401
+ # @option params [required, Types::ProfileConfiguration] :configuration
17402
+ # A `ProfileConfiguration` object specifying the job and session values
17403
+ # for the profile.
17404
+ #
17405
+ # @return [Types::UpdateUsageProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
17406
+ #
17407
+ # * {Types::UpdateUsageProfileResponse#name #name} => String
17408
+ #
17409
+ # @example Request syntax with placeholder values
17410
+ #
17411
+ # resp = client.update_usage_profile({
17412
+ # name: "NameString", # required
17413
+ # description: "DescriptionString",
17414
+ # configuration: { # required
17415
+ # session_configuration: {
17416
+ # "NameString" => {
17417
+ # default_value: "ConfigValueString",
17418
+ # allowed_values: ["ConfigValueString"],
17419
+ # min_value: "ConfigValueString",
17420
+ # max_value: "ConfigValueString",
17421
+ # },
17422
+ # },
17423
+ # job_configuration: {
17424
+ # "NameString" => {
17425
+ # default_value: "ConfigValueString",
17426
+ # allowed_values: ["ConfigValueString"],
17427
+ # min_value: "ConfigValueString",
17428
+ # max_value: "ConfigValueString",
17429
+ # },
17430
+ # },
17431
+ # },
17432
+ # })
17433
+ #
17434
+ # @example Response structure
17435
+ #
17436
+ # resp.name #=> String
17437
+ #
17438
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateUsageProfile AWS API Documentation
17439
+ #
17440
+ # @overload update_usage_profile(params = {})
17441
+ # @param [Hash] params ({})
17442
+ def update_usage_profile(params = {}, options = {})
17443
+ req = build_request(:update_usage_profile, params)
17444
+ req.send_request(options)
17445
+ end
17446
+
17208
17447
  # Updates an existing function definition in the Data Catalog.
17209
17448
  #
17210
17449
  # @option params [String] :catalog_id
@@ -17314,7 +17553,7 @@ module Aws::Glue
17314
17553
  params: params,
17315
17554
  config: config)
17316
17555
  context[:gem_name] = 'aws-sdk-glue'
17317
- context[:gem_version] = '1.178.0'
17556
+ context[:gem_version] = '1.179.0'
17318
17557
  Seahorse::Client::Request.new(handlers, context)
17319
17558
  end
17320
17559