aws-sdk-glue 1.189.0 → 1.191.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: 00a0acbb9dd997eabc7954b868a9e6083132abb0101679807fc407cd3377dbdc
4
- data.tar.gz: ecd9280466a5d0cef4b9a81c5ad2c5acd7880855d3fb5153779d23399465acd6
3
+ metadata.gz: fcb289862dcfabafd9a5187085169986c3f65a4f752b1ceafdd38a91c2546a4c
4
+ data.tar.gz: 67a1224d7b63037db41674c378dd49531eb756151bd4e005afdcc32af6083b6d
5
5
  SHA512:
6
- metadata.gz: 949ce7706bc7e18bb77d0c045312c3716df798959578b05fa0d5f984eec830bef3cb9b8a99a0d4080bea48d98f4c43597d2addbe823e41442b149df7f8b6b396
7
- data.tar.gz: ddd6173950c41cc08df2572bf4a355f0b3a1a9336d4df5b077b236480df9b36aef7f82b7ff845d52386cf4d91765cd2a68f51e6b0700b3da7232af4115f19254
6
+ metadata.gz: d7d8e277072bed8aee1add3939b341a3f077826bc5967a38a6c9c120f471215876e434b84db0222888d1e6f86e6c08808800c2755c5d9e3efef62611d0f95057
7
+ data.tar.gz: adb49e7471de301baffad72dce559cd74e918f8967a91a46a9003d3a3d14d7847001c007fcf244dad98405d7f984a7972f06b478897240af373163c806b3d985
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.191.0 (2024-09-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.190.0 (2024-08-21)
10
+ ------------------
11
+
12
+ * Feature - Add optional field JobRunQueuingEnabled to CreateJob and UpdateJob APIs.
13
+
4
14
  1.189.0 (2024-08-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.189.0
1
+ 1.191.0
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::Glue
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
88
90
  add_plugin(Aws::Glue::Plugins::Endpoints)
@@ -337,6 +339,16 @@ module Aws::Glue
337
339
  # ** Please note ** When response stubbing is enabled, no HTTP
338
340
  # requests are made, and retries are disabled.
339
341
  #
342
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
343
+ # Allows you to provide a telemetry provider, which is used to
344
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
345
+ # will not record or emit any telemetry data. The SDK supports the
346
+ # following telemetry providers:
347
+ #
348
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
349
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
350
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
351
+ #
340
352
  # @option options [Aws::TokenProvider] :token_provider
341
353
  # A Bearer Token Provider. This can be an instance of any one of the
342
354
  # following classes:
@@ -1102,6 +1114,7 @@ module Aws::Glue
1102
1114
  # resp.jobs #=> Array
1103
1115
  # resp.jobs[0].name #=> String
1104
1116
  # resp.jobs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
1117
+ # resp.jobs[0].job_run_queuing_enabled #=> Boolean
1105
1118
  # resp.jobs[0].description #=> String
1106
1119
  # resp.jobs[0].log_uri #=> String
1107
1120
  # resp.jobs[0].role #=> String
@@ -2308,6 +2321,7 @@ module Aws::Glue
2308
2321
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
2309
2322
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].job_name #=> String
2310
2323
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
2324
+ # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].job_run_queuing_enabled #=> Boolean
2311
2325
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].started_on #=> Time
2312
2326
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
2313
2327
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
@@ -2332,6 +2346,7 @@ module Aws::Glue
2332
2346
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
2333
2347
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
2334
2348
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
2349
+ # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].state_detail #=> String
2335
2350
  # resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls #=> Array
2336
2351
  # resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
2337
2352
  # resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
@@ -2379,6 +2394,7 @@ module Aws::Glue
2379
2394
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
2380
2395
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].job_name #=> String
2381
2396
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
2397
+ # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].job_run_queuing_enabled #=> Boolean
2382
2398
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].started_on #=> Time
2383
2399
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
2384
2400
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
@@ -2403,6 +2419,7 @@ module Aws::Glue
2403
2419
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
2404
2420
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
2405
2421
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].profile_name #=> String
2422
+ # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].state_detail #=> String
2406
2423
  # resp.workflows[0].graph.nodes[0].crawler_details.crawls #=> Array
2407
2424
  # resp.workflows[0].graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
2408
2425
  # resp.workflows[0].graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
@@ -3531,6 +3548,17 @@ module Aws::Glue
3531
3548
  # When the `JobMode` field is missing or null, `SCRIPT` is assigned as
3532
3549
  # the default value.
3533
3550
  #
3551
+ # @option params [Boolean] :job_run_queuing_enabled
3552
+ # Specifies whether job run queuing is enabled for the job runs for this
3553
+ # job.
3554
+ #
3555
+ # A value of true means job run queuing is enabled for the job runs. If
3556
+ # false or not populated, the job runs will not be considered for
3557
+ # queueing.
3558
+ #
3559
+ # If this field does not match the value set in the job run, then the
3560
+ # value from the job run field will be used.
3561
+ #
3534
3562
  # @option params [String] :description
3535
3563
  # Description of the job being defined.
3536
3564
  #
@@ -7668,6 +7696,7 @@ module Aws::Glue
7668
7696
  #
7669
7697
  # resp.job.name #=> String
7670
7698
  # resp.job.job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
7699
+ # resp.job.job_run_queuing_enabled #=> Boolean
7671
7700
  # resp.job.description #=> String
7672
7701
  # resp.job.log_uri #=> String
7673
7702
  # resp.job.role #=> String
@@ -8655,6 +8684,7 @@ module Aws::Glue
8655
8684
  # resp.job_run.trigger_name #=> String
8656
8685
  # resp.job_run.job_name #=> String
8657
8686
  # resp.job_run.job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
8687
+ # resp.job_run.job_run_queuing_enabled #=> Boolean
8658
8688
  # resp.job_run.started_on #=> Time
8659
8689
  # resp.job_run.last_modified_on #=> Time
8660
8690
  # resp.job_run.completed_on #=> Time
@@ -8679,6 +8709,7 @@ module Aws::Glue
8679
8709
  # resp.job_run.execution_class #=> String, one of "FLEX", "STANDARD"
8680
8710
  # resp.job_run.maintenance_window #=> String
8681
8711
  # resp.job_run.profile_name #=> String
8712
+ # resp.job_run.state_detail #=> String
8682
8713
  #
8683
8714
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobRun AWS API Documentation
8684
8715
  #
@@ -8724,6 +8755,7 @@ module Aws::Glue
8724
8755
  # resp.job_runs[0].trigger_name #=> String
8725
8756
  # resp.job_runs[0].job_name #=> String
8726
8757
  # resp.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
8758
+ # resp.job_runs[0].job_run_queuing_enabled #=> Boolean
8727
8759
  # resp.job_runs[0].started_on #=> Time
8728
8760
  # resp.job_runs[0].last_modified_on #=> Time
8729
8761
  # resp.job_runs[0].completed_on #=> Time
@@ -8748,6 +8780,7 @@ module Aws::Glue
8748
8780
  # resp.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
8749
8781
  # resp.job_runs[0].maintenance_window #=> String
8750
8782
  # resp.job_runs[0].profile_name #=> String
8783
+ # resp.job_runs[0].state_detail #=> String
8751
8784
  # resp.next_token #=> String
8752
8785
  #
8753
8786
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobRuns AWS API Documentation
@@ -8786,6 +8819,7 @@ module Aws::Glue
8786
8819
  # resp.jobs #=> Array
8787
8820
  # resp.jobs[0].name #=> String
8788
8821
  # resp.jobs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
8822
+ # resp.jobs[0].job_run_queuing_enabled #=> Boolean
8789
8823
  # resp.jobs[0].description #=> String
8790
8824
  # resp.jobs[0].log_uri #=> String
8791
8825
  # resp.jobs[0].role #=> String
@@ -12784,6 +12818,7 @@ module Aws::Glue
12784
12818
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
12785
12819
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].job_name #=> String
12786
12820
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
12821
+ # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].job_run_queuing_enabled #=> Boolean
12787
12822
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].started_on #=> Time
12788
12823
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
12789
12824
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
@@ -12808,6 +12843,7 @@ module Aws::Glue
12808
12843
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
12809
12844
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
12810
12845
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
12846
+ # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].state_detail #=> String
12811
12847
  # resp.workflow.last_run.graph.nodes[0].crawler_details.crawls #=> Array
12812
12848
  # resp.workflow.last_run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
12813
12849
  # resp.workflow.last_run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
@@ -12855,6 +12891,7 @@ module Aws::Glue
12855
12891
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
12856
12892
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].job_name #=> String
12857
12893
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
12894
+ # resp.workflow.graph.nodes[0].job_details.job_runs[0].job_run_queuing_enabled #=> Boolean
12858
12895
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].started_on #=> Time
12859
12896
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
12860
12897
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
@@ -12879,6 +12916,7 @@ module Aws::Glue
12879
12916
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
12880
12917
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
12881
12918
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
12919
+ # resp.workflow.graph.nodes[0].job_details.job_runs[0].state_detail #=> String
12882
12920
  # resp.workflow.graph.nodes[0].crawler_details.crawls #=> Array
12883
12921
  # resp.workflow.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
12884
12922
  # resp.workflow.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
@@ -12980,6 +13018,7 @@ module Aws::Glue
12980
13018
  # resp.run.graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
12981
13019
  # resp.run.graph.nodes[0].job_details.job_runs[0].job_name #=> String
12982
13020
  # resp.run.graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
13021
+ # resp.run.graph.nodes[0].job_details.job_runs[0].job_run_queuing_enabled #=> Boolean
12983
13022
  # resp.run.graph.nodes[0].job_details.job_runs[0].started_on #=> Time
12984
13023
  # resp.run.graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
12985
13024
  # resp.run.graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
@@ -13004,6 +13043,7 @@ module Aws::Glue
13004
13043
  # resp.run.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
13005
13044
  # resp.run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
13006
13045
  # resp.run.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
13046
+ # resp.run.graph.nodes[0].job_details.job_runs[0].state_detail #=> String
13007
13047
  # resp.run.graph.nodes[0].crawler_details.crawls #=> Array
13008
13048
  # resp.run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
13009
13049
  # resp.run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
@@ -13144,6 +13184,7 @@ module Aws::Glue
13144
13184
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
13145
13185
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].job_name #=> String
13146
13186
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
13187
+ # resp.runs[0].graph.nodes[0].job_details.job_runs[0].job_run_queuing_enabled #=> Boolean
13147
13188
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].started_on #=> Time
13148
13189
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
13149
13190
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
@@ -13168,6 +13209,7 @@ module Aws::Glue
13168
13209
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
13169
13210
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
13170
13211
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].profile_name #=> String
13212
+ # resp.runs[0].graph.nodes[0].job_details.job_runs[0].state_detail #=> String
13171
13213
  # resp.runs[0].graph.nodes[0].crawler_details.crawls #=> Array
13172
13214
  # resp.runs[0].graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
13173
13215
  # resp.runs[0].graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
@@ -15694,6 +15736,13 @@ module Aws::Glue
15694
15736
  # @option params [required, String] :job_name
15695
15737
  # The name of the job definition to use.
15696
15738
  #
15739
+ # @option params [Boolean] :job_run_queuing_enabled
15740
+ # Specifies whether job run queuing is enabled for the job run.
15741
+ #
15742
+ # A value of true means job run queuing is enabled for the job run. If
15743
+ # false or not populated, the job run will not be considered for
15744
+ # queueing.
15745
+ #
15697
15746
  # @option params [String] :job_run_id
15698
15747
  # The ID of a previous `JobRun` to retry.
15699
15748
  #
@@ -15859,6 +15908,7 @@ module Aws::Glue
15859
15908
  #
15860
15909
  # resp = client.start_job_run({
15861
15910
  # job_name: "NameString", # required
15911
+ # job_run_queuing_enabled: false,
15862
15912
  # job_run_id: "IdString",
15863
15913
  # arguments: {
15864
15914
  # "GenericString" => "GenericString",
@@ -18009,14 +18059,19 @@ module Aws::Glue
18009
18059
  # @api private
18010
18060
  def build_request(operation_name, params = {})
18011
18061
  handlers = @handlers.for(operation_name)
18062
+ tracer = config.telemetry_provider.tracer_provider.tracer(
18063
+ Aws::Telemetry.module_to_tracer_name('Aws::Glue')
18064
+ )
18012
18065
  context = Seahorse::Client::RequestContext.new(
18013
18066
  operation_name: operation_name,
18014
18067
  operation: config.api.operation(operation_name),
18015
18068
  client: self,
18016
18069
  params: params,
18017
- config: config)
18070
+ config: config,
18071
+ tracer: tracer
18072
+ )
18018
18073
  context[:gem_name] = 'aws-sdk-glue'
18019
- context[:gem_version] = '1.189.0'
18074
+ context[:gem_version] = '1.191.0'
18020
18075
  Seahorse::Client::Request.new(handlers, context)
18021
18076
  end
18022
18077
 
@@ -892,6 +892,7 @@ module Aws::Glue
892
892
  OrchestrationArgumentsMap = Shapes::MapShape.new(name: 'OrchestrationArgumentsMap')
893
893
  OrchestrationArgumentsValue = Shapes::StringShape.new(name: 'OrchestrationArgumentsValue')
894
894
  OrchestrationIAMRoleArn = Shapes::StringShape.new(name: 'OrchestrationIAMRoleArn')
895
+ OrchestrationMessageString = Shapes::StringShape.new(name: 'OrchestrationMessageString')
895
896
  OrchestrationNameString = Shapes::StringShape.new(name: 'OrchestrationNameString')
896
897
  OrchestrationPageSize200 = Shapes::IntegerShape.new(name: 'OrchestrationPageSize200')
897
898
  OrchestrationPageSize25 = Shapes::IntegerShape.new(name: 'OrchestrationPageSize25')
@@ -2343,6 +2344,7 @@ module Aws::Glue
2343
2344
 
2344
2345
  CreateJobRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
2345
2346
  CreateJobRequest.add_member(:job_mode, Shapes::ShapeRef.new(shape: JobMode, location_name: "JobMode"))
2347
+ CreateJobRequest.add_member(:job_run_queuing_enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "JobRunQueuingEnabled"))
2346
2348
  CreateJobRequest.add_member(:description, Shapes::ShapeRef.new(shape: DescriptionString, location_name: "Description"))
2347
2349
  CreateJobRequest.add_member(:log_uri, Shapes::ShapeRef.new(shape: UriString, location_name: "LogUri"))
2348
2350
  CreateJobRequest.add_member(:role, Shapes::ShapeRef.new(shape: RoleString, required: true, location_name: "Role"))
@@ -4115,6 +4117,7 @@ module Aws::Glue
4115
4117
 
4116
4118
  Job.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
4117
4119
  Job.add_member(:job_mode, Shapes::ShapeRef.new(shape: JobMode, location_name: "JobMode"))
4120
+ Job.add_member(:job_run_queuing_enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "JobRunQueuingEnabled"))
4118
4121
  Job.add_member(:description, Shapes::ShapeRef.new(shape: DescriptionString, location_name: "Description"))
4119
4122
  Job.add_member(:log_uri, Shapes::ShapeRef.new(shape: UriString, location_name: "LogUri"))
4120
4123
  Job.add_member(:role, Shapes::ShapeRef.new(shape: RoleString, location_name: "Role"))
@@ -4173,6 +4176,7 @@ module Aws::Glue
4173
4176
  JobRun.add_member(:trigger_name, Shapes::ShapeRef.new(shape: NameString, location_name: "TriggerName"))
4174
4177
  JobRun.add_member(:job_name, Shapes::ShapeRef.new(shape: NameString, location_name: "JobName"))
4175
4178
  JobRun.add_member(:job_mode, Shapes::ShapeRef.new(shape: JobMode, location_name: "JobMode"))
4179
+ JobRun.add_member(:job_run_queuing_enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "JobRunQueuingEnabled"))
4176
4180
  JobRun.add_member(:started_on, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "StartedOn"))
4177
4181
  JobRun.add_member(:last_modified_on, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "LastModifiedOn"))
4178
4182
  JobRun.add_member(:completed_on, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "CompletedOn"))
@@ -4194,11 +4198,13 @@ module Aws::Glue
4194
4198
  JobRun.add_member(:execution_class, Shapes::ShapeRef.new(shape: ExecutionClass, location_name: "ExecutionClass"))
4195
4199
  JobRun.add_member(:maintenance_window, Shapes::ShapeRef.new(shape: MaintenanceWindow, location_name: "MaintenanceWindow"))
4196
4200
  JobRun.add_member(:profile_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ProfileName"))
4201
+ JobRun.add_member(:state_detail, Shapes::ShapeRef.new(shape: OrchestrationMessageString, location_name: "StateDetail"))
4197
4202
  JobRun.struct_class = Types::JobRun
4198
4203
 
4199
4204
  JobRunList.member = Shapes::ShapeRef.new(shape: JobRun)
4200
4205
 
4201
4206
  JobUpdate.add_member(:job_mode, Shapes::ShapeRef.new(shape: JobMode, location_name: "JobMode"))
4207
+ JobUpdate.add_member(:job_run_queuing_enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "JobRunQueuingEnabled"))
4202
4208
  JobUpdate.add_member(:description, Shapes::ShapeRef.new(shape: DescriptionString, location_name: "Description"))
4203
4209
  JobUpdate.add_member(:log_uri, Shapes::ShapeRef.new(shape: UriString, location_name: "LogUri"))
4204
4210
  JobUpdate.add_member(:role, Shapes::ShapeRef.new(shape: RoleString, location_name: "Role"))
@@ -5556,6 +5562,7 @@ module Aws::Glue
5556
5562
  StartImportLabelsTaskRunResponse.struct_class = Types::StartImportLabelsTaskRunResponse
5557
5563
 
5558
5564
  StartJobRunRequest.add_member(:job_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "JobName"))
5565
+ StartJobRunRequest.add_member(:job_run_queuing_enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "JobRunQueuingEnabled"))
5559
5566
  StartJobRunRequest.add_member(:job_run_id, Shapes::ShapeRef.new(shape: IdString, location_name: "JobRunId"))
5560
5567
  StartJobRunRequest.add_member(:arguments, Shapes::ShapeRef.new(shape: GenericMap, location_name: "Arguments"))
5561
5568
  StartJobRunRequest.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, deprecated: true, location_name: "AllocatedCapacity", metadata: {"deprecatedMessage"=>"This property is deprecated, use MaxCapacity instead."}))
@@ -4946,6 +4946,18 @@ module Aws::Glue
4946
4946
  # the default value.
4947
4947
  # @return [String]
4948
4948
  #
4949
+ # @!attribute [rw] job_run_queuing_enabled
4950
+ # Specifies whether job run queuing is enabled for the job runs for
4951
+ # this job.
4952
+ #
4953
+ # A value of true means job run queuing is enabled for the job runs.
4954
+ # If false or not populated, the job runs will not be considered for
4955
+ # queueing.
4956
+ #
4957
+ # If this field does not match the value set in the job run, then the
4958
+ # value from the job run field will be used.
4959
+ # @return [Boolean]
4960
+ #
4949
4961
  # @!attribute [rw] description
4950
4962
  # Description of the job being defined.
4951
4963
  # @return [String]
@@ -5207,6 +5219,7 @@ module Aws::Glue
5207
5219
  class CreateJobRequest < Struct.new(
5208
5220
  :name,
5209
5221
  :job_mode,
5222
+ :job_run_queuing_enabled,
5210
5223
  :description,
5211
5224
  :log_uri,
5212
5225
  :role,
@@ -13781,6 +13794,18 @@ module Aws::Glue
13781
13794
  # the default value.
13782
13795
  # @return [String]
13783
13796
  #
13797
+ # @!attribute [rw] job_run_queuing_enabled
13798
+ # Specifies whether job run queuing is enabled for the job runs for
13799
+ # this job.
13800
+ #
13801
+ # A value of true means job run queuing is enabled for the job runs.
13802
+ # If false or not populated, the job runs will not be considered for
13803
+ # queueing.
13804
+ #
13805
+ # If this field does not match the value set in the job run, then the
13806
+ # value from the job run field will be used.
13807
+ # @return [Boolean]
13808
+ #
13784
13809
  # @!attribute [rw] description
13785
13810
  # A description of the job.
13786
13811
  # @return [String]
@@ -14046,6 +14071,7 @@ module Aws::Glue
14046
14071
  class Job < Struct.new(
14047
14072
  :name,
14048
14073
  :job_mode,
14074
+ :job_run_queuing_enabled,
14049
14075
  :description,
14050
14076
  :log_uri,
14051
14077
  :role,
@@ -14233,6 +14259,14 @@ module Aws::Glue
14233
14259
  # the default value.
14234
14260
  # @return [String]
14235
14261
  #
14262
+ # @!attribute [rw] job_run_queuing_enabled
14263
+ # Specifies whether job run queuing is enabled for the job run.
14264
+ #
14265
+ # A value of true means job run queuing is enabled for the job run. If
14266
+ # false or not populated, the job run will not be considered for
14267
+ # queueing.
14268
+ # @return [Boolean]
14269
+ #
14236
14270
  # @!attribute [rw] started_on
14237
14271
  # The date and time at which this job run was started.
14238
14272
  # @return [Time]
@@ -14495,6 +14529,15 @@ module Aws::Glue
14495
14529
  # The name of an Glue usage profile associated with the job run.
14496
14530
  # @return [String]
14497
14531
  #
14532
+ # @!attribute [rw] state_detail
14533
+ # This field holds details that pertain to the state of a job run. The
14534
+ # field is nullable.
14535
+ #
14536
+ # For example, when a job run is in a WAITING state as a result of job
14537
+ # run queuing, the field has the reason why the job run is in that
14538
+ # state.
14539
+ # @return [String]
14540
+ #
14498
14541
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/JobRun AWS API Documentation
14499
14542
  #
14500
14543
  class JobRun < Struct.new(
@@ -14504,6 +14547,7 @@ module Aws::Glue
14504
14547
  :trigger_name,
14505
14548
  :job_name,
14506
14549
  :job_mode,
14550
+ :job_run_queuing_enabled,
14507
14551
  :started_on,
14508
14552
  :last_modified_on,
14509
14553
  :completed_on,
@@ -14524,7 +14568,8 @@ module Aws::Glue
14524
14568
  :dpu_seconds,
14525
14569
  :execution_class,
14526
14570
  :maintenance_window,
14527
- :profile_name)
14571
+ :profile_name,
14572
+ :state_detail)
14528
14573
  SENSITIVE = []
14529
14574
  include Aws::Structure
14530
14575
  end
@@ -14548,6 +14593,18 @@ module Aws::Glue
14548
14593
  # the default value.
14549
14594
  # @return [String]
14550
14595
  #
14596
+ # @!attribute [rw] job_run_queuing_enabled
14597
+ # Specifies whether job run queuing is enabled for the job runs for
14598
+ # this job.
14599
+ #
14600
+ # A value of true means job run queuing is enabled for the job runs.
14601
+ # If false or not populated, the job runs will not be considered for
14602
+ # queueing.
14603
+ #
14604
+ # If this field does not match the value set in the job run, then the
14605
+ # value from the job run field will be used.
14606
+ # @return [Boolean]
14607
+ #
14551
14608
  # @!attribute [rw] description
14552
14609
  # Description of the job being defined.
14553
14610
  # @return [String]
@@ -14798,6 +14855,7 @@ module Aws::Glue
14798
14855
  #
14799
14856
  class JobUpdate < Struct.new(
14800
14857
  :job_mode,
14858
+ :job_run_queuing_enabled,
14801
14859
  :description,
14802
14860
  :log_uri,
14803
14861
  :role,
@@ -21147,6 +21205,14 @@ module Aws::Glue
21147
21205
  # The name of the job definition to use.
21148
21206
  # @return [String]
21149
21207
  #
21208
+ # @!attribute [rw] job_run_queuing_enabled
21209
+ # Specifies whether job run queuing is enabled for the job run.
21210
+ #
21211
+ # A value of true means job run queuing is enabled for the job run. If
21212
+ # false or not populated, the job run will not be considered for
21213
+ # queueing.
21214
+ # @return [Boolean]
21215
+ #
21150
21216
  # @!attribute [rw] job_run_id
21151
21217
  # The ID of a previous `JobRun` to retry.
21152
21218
  # @return [String]
@@ -21322,6 +21388,7 @@ module Aws::Glue
21322
21388
  #
21323
21389
  class StartJobRunRequest < Struct.new(
21324
21390
  :job_name,
21391
+ :job_run_queuing_enabled,
21325
21392
  :job_run_id,
21326
21393
  :arguments,
21327
21394
  :allocated_capacity,
data/lib/aws-sdk-glue.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-glue/customizations'
52
52
  # @!group service
53
53
  module Aws::Glue
54
54
 
55
- GEM_VERSION = '1.189.0'
55
+ GEM_VERSION = '1.191.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -51,6 +51,7 @@ module Aws
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?simple_json: bool,
53
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
54
55
  ?token_provider: untyped,
55
56
  ?use_dualstack_endpoint: bool,
56
57
  ?use_fips_endpoint: bool,
@@ -773,6 +774,7 @@ module Aws
773
774
  def create_job: (
774
775
  name: ::String,
775
776
  ?job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK"),
777
+ ?job_run_queuing_enabled: bool,
776
778
  ?description: ::String,
777
779
  ?log_uri: ::String,
778
780
  role: ::String,
@@ -4744,6 +4746,7 @@ module Aws
4744
4746
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#start_job_run-instance_method
4745
4747
  def start_job_run: (
4746
4748
  job_name: ::String,
4749
+ ?job_run_queuing_enabled: bool,
4747
4750
  ?job_run_id: ::String,
4748
4751
  ?arguments: Hash[::String, ::String],
4749
4752
  ?allocated_capacity: ::Integer,
@@ -5287,6 +5290,7 @@ module Aws
5287
5290
  job_name: ::String,
5288
5291
  job_update: {
5289
5292
  job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")?,
5293
+ job_run_queuing_enabled: bool?,
5290
5294
  description: ::String?,
5291
5295
  log_uri: ::String?,
5292
5296
  role: ::String?,
data/sig/resource.rbs CHANGED
@@ -51,6 +51,7 @@ module Aws
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?simple_json: bool,
53
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
54
55
  ?token_provider: untyped,
55
56
  ?use_dualstack_endpoint: bool,
56
57
  ?use_fips_endpoint: bool,
data/sig/types.rbs CHANGED
@@ -1169,6 +1169,7 @@ module Aws::Glue
1169
1169
  class CreateJobRequest
1170
1170
  attr_accessor name: ::String
1171
1171
  attr_accessor job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")
1172
+ attr_accessor job_run_queuing_enabled: bool
1172
1173
  attr_accessor description: ::String
1173
1174
  attr_accessor log_uri: ::String
1174
1175
  attr_accessor role: ::String
@@ -3458,6 +3459,7 @@ module Aws::Glue
3458
3459
  class Job
3459
3460
  attr_accessor name: ::String
3460
3461
  attr_accessor job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")
3462
+ attr_accessor job_run_queuing_enabled: bool
3461
3463
  attr_accessor description: ::String
3462
3464
  attr_accessor log_uri: ::String
3463
3465
  attr_accessor role: ::String
@@ -3522,6 +3524,7 @@ module Aws::Glue
3522
3524
  attr_accessor trigger_name: ::String
3523
3525
  attr_accessor job_name: ::String
3524
3526
  attr_accessor job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")
3527
+ attr_accessor job_run_queuing_enabled: bool
3525
3528
  attr_accessor started_on: ::Time
3526
3529
  attr_accessor last_modified_on: ::Time
3527
3530
  attr_accessor completed_on: ::Time
@@ -3543,11 +3546,13 @@ module Aws::Glue
3543
3546
  attr_accessor execution_class: ("FLEX" | "STANDARD")
3544
3547
  attr_accessor maintenance_window: ::String
3545
3548
  attr_accessor profile_name: ::String
3549
+ attr_accessor state_detail: ::String
3546
3550
  SENSITIVE: []
3547
3551
  end
3548
3552
 
3549
3553
  class JobUpdate
3550
3554
  attr_accessor job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")
3555
+ attr_accessor job_run_queuing_enabled: bool
3551
3556
  attr_accessor description: ::String
3552
3557
  attr_accessor log_uri: ::String
3553
3558
  attr_accessor role: ::String
@@ -5208,6 +5213,7 @@ module Aws::Glue
5208
5213
 
5209
5214
  class StartJobRunRequest
5210
5215
  attr_accessor job_name: ::String
5216
+ attr_accessor job_run_queuing_enabled: bool
5211
5217
  attr_accessor job_run_id: ::String
5212
5218
  attr_accessor arguments: ::Hash[::String, ::String]
5213
5219
  attr_accessor allocated_capacity: ::Integer
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.189.0
4
+ version: 1.191.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-13 00:00:00.000000000 Z
11
+ date: 2024-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.201.0
22
+ version: 3.203.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement