aws-sdk-glue 1.173.0 → 1.175.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +67 -21
- data/lib/aws-sdk-glue/client_api.rb +11 -0
- data/lib/aws-sdk-glue/types.rb +141 -10
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +8 -4
- data/sig/types.rbs +10 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 471b4ec8474074f1289956c2f175ce7e4a61c1e0d8847d1bce9082cbd878b9c1
|
4
|
+
data.tar.gz: 0ce1b0804f982ff6794b63738a5e110101dee40fdeaa586bba69c12a333a7454
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48fbc558e4bbb1b2b2adb54518996bfad05c8941a1675bb9b90fa15ab1bc7285279e714bff8e6e3494c295d7d532c3fe42b5af479964c606e7b203b5834aa547
|
7
|
+
data.tar.gz: 426afd75c9f75b0b06aef2af76d6a6fb4a0bd6a5498f6de9485c1d853f0891f7440e35f4ce7788f472031d8844c6d52cab15739d003382672d36fb6e44abeb04
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.175.0 (2024-05-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add optional field JobMode to CreateJob and UpdateJob APIs.
|
8
|
+
|
9
|
+
1.174.0 (2024-05-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add Maintenance window to CreateJob and UpdateJob APIs and JobRun response. Add a new Job Run State for EXPIRED.
|
13
|
+
|
4
14
|
1.173.0 (2024-05-13)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.175.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -1089,6 +1089,7 @@ module Aws::Glue
|
|
1089
1089
|
#
|
1090
1090
|
# resp.jobs #=> Array
|
1091
1091
|
# resp.jobs[0].name #=> String
|
1092
|
+
# resp.jobs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
|
1092
1093
|
# resp.jobs[0].description #=> String
|
1093
1094
|
# resp.jobs[0].log_uri #=> String
|
1094
1095
|
# resp.jobs[0].role #=> String
|
@@ -1969,6 +1970,7 @@ module Aws::Glue
|
|
1969
1970
|
# resp.jobs[0].source_control_details.last_commit_id #=> String
|
1970
1971
|
# resp.jobs[0].source_control_details.auth_strategy #=> String, one of "PERSONAL_ACCESS_TOKEN", "AWS_SECRETS_MANAGER"
|
1971
1972
|
# resp.jobs[0].source_control_details.auth_token #=> String
|
1973
|
+
# resp.jobs[0].maintenance_window #=> String
|
1972
1974
|
# resp.jobs_not_found #=> Array
|
1973
1975
|
# resp.jobs_not_found[0] #=> String
|
1974
1976
|
#
|
@@ -2178,7 +2180,7 @@ module Aws::Glue
|
|
2178
2180
|
# resp.triggers[0].predicate.conditions #=> Array
|
2179
2181
|
# resp.triggers[0].predicate.conditions[0].logical_operator #=> String, one of "EQUALS"
|
2180
2182
|
# resp.triggers[0].predicate.conditions[0].job_name #=> String
|
2181
|
-
# resp.triggers[0].predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
2183
|
+
# resp.triggers[0].predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
2182
2184
|
# resp.triggers[0].predicate.conditions[0].crawler_name #=> String
|
2183
2185
|
# resp.triggers[0].predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
2184
2186
|
# resp.triggers[0].event_batching_condition.batch_size #=> Integer
|
@@ -2270,7 +2272,7 @@ module Aws::Glue
|
|
2270
2272
|
# resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions #=> Array
|
2271
2273
|
# resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].logical_operator #=> String, one of "EQUALS"
|
2272
2274
|
# resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].job_name #=> String
|
2273
|
-
# resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
2275
|
+
# resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
2274
2276
|
# resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawler_name #=> String
|
2275
2277
|
# resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
2276
2278
|
# resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_size #=> Integer
|
@@ -2281,10 +2283,11 @@ module Aws::Glue
|
|
2281
2283
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].previous_run_id #=> String
|
2282
2284
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
|
2283
2285
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].job_name #=> String
|
2286
|
+
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
|
2284
2287
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].started_on #=> Time
|
2285
2288
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
|
2286
2289
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
|
2287
|
-
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
2290
|
+
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
2288
2291
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].arguments #=> Hash
|
2289
2292
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].arguments["GenericString"] #=> String
|
2290
2293
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].error_message #=> String
|
@@ -2303,6 +2306,7 @@ module Aws::Glue
|
|
2303
2306
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].glue_version #=> String
|
2304
2307
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
|
2305
2308
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
2309
|
+
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
2306
2310
|
# resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls #=> Array
|
2307
2311
|
# resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
2308
2312
|
# resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -2338,7 +2342,7 @@ module Aws::Glue
|
|
2338
2342
|
# resp.workflows[0].graph.nodes[0].trigger_details.trigger.predicate.conditions #=> Array
|
2339
2343
|
# resp.workflows[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].logical_operator #=> String, one of "EQUALS"
|
2340
2344
|
# resp.workflows[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].job_name #=> String
|
2341
|
-
# resp.workflows[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
2345
|
+
# resp.workflows[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
2342
2346
|
# resp.workflows[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawler_name #=> String
|
2343
2347
|
# resp.workflows[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
2344
2348
|
# resp.workflows[0].graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_size #=> Integer
|
@@ -2349,10 +2353,11 @@ module Aws::Glue
|
|
2349
2353
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].previous_run_id #=> String
|
2350
2354
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
|
2351
2355
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].job_name #=> String
|
2356
|
+
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
|
2352
2357
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].started_on #=> Time
|
2353
2358
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
|
2354
2359
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
|
2355
|
-
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
2360
|
+
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
2356
2361
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].arguments #=> Hash
|
2357
2362
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].arguments["GenericString"] #=> String
|
2358
2363
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].error_message #=> String
|
@@ -2371,6 +2376,7 @@ module Aws::Glue
|
|
2371
2376
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].glue_version #=> String
|
2372
2377
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
|
2373
2378
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
2379
|
+
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
2374
2380
|
# resp.workflows[0].graph.nodes[0].crawler_details.crawls #=> Array
|
2375
2381
|
# resp.workflows[0].graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
2376
2382
|
# resp.workflows[0].graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -3414,6 +3420,19 @@ module Aws::Glue
|
|
3414
3420
|
# The name you assign to this job definition. It must be unique in your
|
3415
3421
|
# account.
|
3416
3422
|
#
|
3423
|
+
# @option params [String] :job_mode
|
3424
|
+
# A mode that describes how a job was created. Valid values are:
|
3425
|
+
#
|
3426
|
+
# * `SCRIPT` - The job was created using the Glue Studio script editor.
|
3427
|
+
#
|
3428
|
+
# * `VISUAL` - The job was created using the Glue Studio visual editor.
|
3429
|
+
#
|
3430
|
+
# * `NOTEBOOK` - The job was created using an interactive sessions
|
3431
|
+
# notebook.
|
3432
|
+
#
|
3433
|
+
# When the `JobMode` field is missing or null, `SCRIPT` is assigned as
|
3434
|
+
# the default value.
|
3435
|
+
#
|
3417
3436
|
# @option params [String] :description
|
3418
3437
|
# Description of the job being defined.
|
3419
3438
|
#
|
@@ -3626,6 +3645,17 @@ module Aws::Glue
|
|
3626
3645
|
# The details for a source control configuration for a job, allowing
|
3627
3646
|
# synchronization of job artifacts to or from a remote repository.
|
3628
3647
|
#
|
3648
|
+
# @option params [String] :maintenance_window
|
3649
|
+
# This field specifies a day of the week and hour for a maintenance
|
3650
|
+
# window for streaming jobs. Glue periodically performs maintenance
|
3651
|
+
# activities. During these maintenance windows, Glue will need to
|
3652
|
+
# restart your streaming jobs.
|
3653
|
+
#
|
3654
|
+
# Glue will restart the job within 3 hours of the specified maintenance
|
3655
|
+
# window. For instance, if you set up the maintenance window for Monday
|
3656
|
+
# at 10:00AM GMT, your jobs will be restarted between 10:00AM GMT to
|
3657
|
+
# 1:00PM GMT.
|
3658
|
+
#
|
3629
3659
|
# @return [Types::CreateJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3630
3660
|
#
|
3631
3661
|
# * {Types::CreateJobResponse#name #name} => String
|
@@ -4712,7 +4742,7 @@ module Aws::Glue
|
|
4712
4742
|
# {
|
4713
4743
|
# logical_operator: "EQUALS", # accepts EQUALS
|
4714
4744
|
# job_name: "NameString",
|
4715
|
-
# state: "STARTING", # accepts STARTING, RUNNING, STOPPING, STOPPED, SUCCEEDED, FAILED, TIMEOUT, ERROR, WAITING
|
4745
|
+
# state: "STARTING", # accepts STARTING, RUNNING, STOPPING, STOPPED, SUCCEEDED, FAILED, TIMEOUT, ERROR, WAITING, EXPIRED
|
4716
4746
|
# crawler_name: "NameString",
|
4717
4747
|
# crawl_state: "RUNNING", # accepts RUNNING, CANCELLING, CANCELLED, SUCCEEDED, FAILED, ERROR
|
4718
4748
|
# },
|
@@ -7320,6 +7350,7 @@ module Aws::Glue
|
|
7320
7350
|
# @example Response structure
|
7321
7351
|
#
|
7322
7352
|
# resp.job.name #=> String
|
7353
|
+
# resp.job.job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
|
7323
7354
|
# resp.job.description #=> String
|
7324
7355
|
# resp.job.log_uri #=> String
|
7325
7356
|
# resp.job.role #=> String
|
@@ -8200,6 +8231,7 @@ module Aws::Glue
|
|
8200
8231
|
# resp.job.source_control_details.last_commit_id #=> String
|
8201
8232
|
# resp.job.source_control_details.auth_strategy #=> String, one of "PERSONAL_ACCESS_TOKEN", "AWS_SECRETS_MANAGER"
|
8202
8233
|
# resp.job.source_control_details.auth_token #=> String
|
8234
|
+
# resp.job.maintenance_window #=> String
|
8203
8235
|
#
|
8204
8236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJob AWS API Documentation
|
8205
8237
|
#
|
@@ -8292,10 +8324,11 @@ module Aws::Glue
|
|
8292
8324
|
# resp.job_run.previous_run_id #=> String
|
8293
8325
|
# resp.job_run.trigger_name #=> String
|
8294
8326
|
# resp.job_run.job_name #=> String
|
8327
|
+
# resp.job_run.job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
|
8295
8328
|
# resp.job_run.started_on #=> Time
|
8296
8329
|
# resp.job_run.last_modified_on #=> Time
|
8297
8330
|
# resp.job_run.completed_on #=> Time
|
8298
|
-
# resp.job_run.job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
8331
|
+
# resp.job_run.job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
8299
8332
|
# resp.job_run.arguments #=> Hash
|
8300
8333
|
# resp.job_run.arguments["GenericString"] #=> String
|
8301
8334
|
# resp.job_run.error_message #=> String
|
@@ -8314,6 +8347,7 @@ module Aws::Glue
|
|
8314
8347
|
# resp.job_run.glue_version #=> String
|
8315
8348
|
# resp.job_run.dpu_seconds #=> Float
|
8316
8349
|
# resp.job_run.execution_class #=> String, one of "FLEX", "STANDARD"
|
8350
|
+
# resp.job_run.maintenance_window #=> String
|
8317
8351
|
#
|
8318
8352
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobRun AWS API Documentation
|
8319
8353
|
#
|
@@ -8358,10 +8392,11 @@ module Aws::Glue
|
|
8358
8392
|
# resp.job_runs[0].previous_run_id #=> String
|
8359
8393
|
# resp.job_runs[0].trigger_name #=> String
|
8360
8394
|
# resp.job_runs[0].job_name #=> String
|
8395
|
+
# resp.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
|
8361
8396
|
# resp.job_runs[0].started_on #=> Time
|
8362
8397
|
# resp.job_runs[0].last_modified_on #=> Time
|
8363
8398
|
# resp.job_runs[0].completed_on #=> Time
|
8364
|
-
# resp.job_runs[0].job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
8399
|
+
# resp.job_runs[0].job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
8365
8400
|
# resp.job_runs[0].arguments #=> Hash
|
8366
8401
|
# resp.job_runs[0].arguments["GenericString"] #=> String
|
8367
8402
|
# resp.job_runs[0].error_message #=> String
|
@@ -8380,6 +8415,7 @@ module Aws::Glue
|
|
8380
8415
|
# resp.job_runs[0].glue_version #=> String
|
8381
8416
|
# resp.job_runs[0].dpu_seconds #=> Float
|
8382
8417
|
# resp.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
8418
|
+
# resp.job_runs[0].maintenance_window #=> String
|
8383
8419
|
# resp.next_token #=> String
|
8384
8420
|
#
|
8385
8421
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobRuns AWS API Documentation
|
@@ -8417,6 +8453,7 @@ module Aws::Glue
|
|
8417
8453
|
#
|
8418
8454
|
# resp.jobs #=> Array
|
8419
8455
|
# resp.jobs[0].name #=> String
|
8456
|
+
# resp.jobs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
|
8420
8457
|
# resp.jobs[0].description #=> String
|
8421
8458
|
# resp.jobs[0].log_uri #=> String
|
8422
8459
|
# resp.jobs[0].role #=> String
|
@@ -9297,6 +9334,7 @@ module Aws::Glue
|
|
9297
9334
|
# resp.jobs[0].source_control_details.last_commit_id #=> String
|
9298
9335
|
# resp.jobs[0].source_control_details.auth_strategy #=> String, one of "PERSONAL_ACCESS_TOKEN", "AWS_SECRETS_MANAGER"
|
9299
9336
|
# resp.jobs[0].source_control_details.auth_token #=> String
|
9337
|
+
# resp.jobs[0].maintenance_window #=> String
|
9300
9338
|
# resp.next_token #=> String
|
9301
9339
|
#
|
9302
9340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobs AWS API Documentation
|
@@ -11388,7 +11426,7 @@ module Aws::Glue
|
|
11388
11426
|
# resp.trigger.predicate.conditions #=> Array
|
11389
11427
|
# resp.trigger.predicate.conditions[0].logical_operator #=> String, one of "EQUALS"
|
11390
11428
|
# resp.trigger.predicate.conditions[0].job_name #=> String
|
11391
|
-
# resp.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
11429
|
+
# resp.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
11392
11430
|
# resp.trigger.predicate.conditions[0].crawler_name #=> String
|
11393
11431
|
# resp.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
11394
11432
|
# resp.trigger.event_batching_condition.batch_size #=> Integer
|
@@ -11453,7 +11491,7 @@ module Aws::Glue
|
|
11453
11491
|
# resp.triggers[0].predicate.conditions #=> Array
|
11454
11492
|
# resp.triggers[0].predicate.conditions[0].logical_operator #=> String, one of "EQUALS"
|
11455
11493
|
# resp.triggers[0].predicate.conditions[0].job_name #=> String
|
11456
|
-
# resp.triggers[0].predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
11494
|
+
# resp.triggers[0].predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
11457
11495
|
# resp.triggers[0].predicate.conditions[0].crawler_name #=> String
|
11458
11496
|
# resp.triggers[0].predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
11459
11497
|
# resp.triggers[0].event_batching_condition.batch_size #=> Integer
|
@@ -12230,7 +12268,7 @@ module Aws::Glue
|
|
12230
12268
|
# resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions #=> Array
|
12231
12269
|
# resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].logical_operator #=> String, one of "EQUALS"
|
12232
12270
|
# resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].job_name #=> String
|
12233
|
-
# resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
12271
|
+
# resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
12234
12272
|
# resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawler_name #=> String
|
12235
12273
|
# resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
12236
12274
|
# resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_size #=> Integer
|
@@ -12241,10 +12279,11 @@ module Aws::Glue
|
|
12241
12279
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].previous_run_id #=> String
|
12242
12280
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
|
12243
12281
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].job_name #=> String
|
12282
|
+
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
|
12244
12283
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].started_on #=> Time
|
12245
12284
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
|
12246
12285
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
|
12247
|
-
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
12286
|
+
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
12248
12287
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].arguments #=> Hash
|
12249
12288
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].arguments["GenericString"] #=> String
|
12250
12289
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].error_message #=> String
|
@@ -12263,6 +12302,7 @@ module Aws::Glue
|
|
12263
12302
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].glue_version #=> String
|
12264
12303
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
|
12265
12304
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
12305
|
+
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
12266
12306
|
# resp.workflow.last_run.graph.nodes[0].crawler_details.crawls #=> Array
|
12267
12307
|
# resp.workflow.last_run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
12268
12308
|
# resp.workflow.last_run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -12298,7 +12338,7 @@ module Aws::Glue
|
|
12298
12338
|
# resp.workflow.graph.nodes[0].trigger_details.trigger.predicate.conditions #=> Array
|
12299
12339
|
# resp.workflow.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].logical_operator #=> String, one of "EQUALS"
|
12300
12340
|
# resp.workflow.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].job_name #=> String
|
12301
|
-
# resp.workflow.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
12341
|
+
# resp.workflow.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
12302
12342
|
# resp.workflow.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawler_name #=> String
|
12303
12343
|
# resp.workflow.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
12304
12344
|
# resp.workflow.graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_size #=> Integer
|
@@ -12309,10 +12349,11 @@ module Aws::Glue
|
|
12309
12349
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].previous_run_id #=> String
|
12310
12350
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
|
12311
12351
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].job_name #=> String
|
12352
|
+
# resp.workflow.graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
|
12312
12353
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].started_on #=> Time
|
12313
12354
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
|
12314
12355
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
|
12315
|
-
# resp.workflow.graph.nodes[0].job_details.job_runs[0].job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
12356
|
+
# resp.workflow.graph.nodes[0].job_details.job_runs[0].job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
12316
12357
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].arguments #=> Hash
|
12317
12358
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].arguments["GenericString"] #=> String
|
12318
12359
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].error_message #=> String
|
@@ -12331,6 +12372,7 @@ module Aws::Glue
|
|
12331
12372
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].glue_version #=> String
|
12332
12373
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
|
12333
12374
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
12375
|
+
# resp.workflow.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
12334
12376
|
# resp.workflow.graph.nodes[0].crawler_details.crawls #=> Array
|
12335
12377
|
# resp.workflow.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
12336
12378
|
# resp.workflow.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -12419,7 +12461,7 @@ module Aws::Glue
|
|
12419
12461
|
# resp.run.graph.nodes[0].trigger_details.trigger.predicate.conditions #=> Array
|
12420
12462
|
# resp.run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].logical_operator #=> String, one of "EQUALS"
|
12421
12463
|
# resp.run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].job_name #=> String
|
12422
|
-
# resp.run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
12464
|
+
# resp.run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
12423
12465
|
# resp.run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawler_name #=> String
|
12424
12466
|
# resp.run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
12425
12467
|
# resp.run.graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_size #=> Integer
|
@@ -12430,10 +12472,11 @@ module Aws::Glue
|
|
12430
12472
|
# resp.run.graph.nodes[0].job_details.job_runs[0].previous_run_id #=> String
|
12431
12473
|
# resp.run.graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
|
12432
12474
|
# resp.run.graph.nodes[0].job_details.job_runs[0].job_name #=> String
|
12475
|
+
# resp.run.graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
|
12433
12476
|
# resp.run.graph.nodes[0].job_details.job_runs[0].started_on #=> Time
|
12434
12477
|
# resp.run.graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
|
12435
12478
|
# resp.run.graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
|
12436
|
-
# resp.run.graph.nodes[0].job_details.job_runs[0].job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
12479
|
+
# resp.run.graph.nodes[0].job_details.job_runs[0].job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
12437
12480
|
# resp.run.graph.nodes[0].job_details.job_runs[0].arguments #=> Hash
|
12438
12481
|
# resp.run.graph.nodes[0].job_details.job_runs[0].arguments["GenericString"] #=> String
|
12439
12482
|
# resp.run.graph.nodes[0].job_details.job_runs[0].error_message #=> String
|
@@ -12452,6 +12495,7 @@ module Aws::Glue
|
|
12452
12495
|
# resp.run.graph.nodes[0].job_details.job_runs[0].glue_version #=> String
|
12453
12496
|
# resp.run.graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
|
12454
12497
|
# resp.run.graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
12498
|
+
# resp.run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
12455
12499
|
# resp.run.graph.nodes[0].crawler_details.crawls #=> Array
|
12456
12500
|
# resp.run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
12457
12501
|
# resp.run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -12580,7 +12624,7 @@ module Aws::Glue
|
|
12580
12624
|
# resp.runs[0].graph.nodes[0].trigger_details.trigger.predicate.conditions #=> Array
|
12581
12625
|
# resp.runs[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].logical_operator #=> String, one of "EQUALS"
|
12582
12626
|
# resp.runs[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].job_name #=> String
|
12583
|
-
# resp.runs[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
12627
|
+
# resp.runs[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
12584
12628
|
# resp.runs[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawler_name #=> String
|
12585
12629
|
# resp.runs[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
12586
12630
|
# resp.runs[0].graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_size #=> Integer
|
@@ -12591,10 +12635,11 @@ module Aws::Glue
|
|
12591
12635
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].previous_run_id #=> String
|
12592
12636
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
|
12593
12637
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].job_name #=> String
|
12638
|
+
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
|
12594
12639
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].started_on #=> Time
|
12595
12640
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
|
12596
12641
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
|
12597
|
-
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
12642
|
+
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].job_run_state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
12598
12643
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].arguments #=> Hash
|
12599
12644
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].arguments["GenericString"] #=> String
|
12600
12645
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].error_message #=> String
|
@@ -12613,6 +12658,7 @@ module Aws::Glue
|
|
12613
12658
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].glue_version #=> String
|
12614
12659
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].dpu_seconds #=> Float
|
12615
12660
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
12661
|
+
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
12616
12662
|
# resp.runs[0].graph.nodes[0].crawler_details.crawls #=> Array
|
12617
12663
|
# resp.runs[0].graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
12618
12664
|
# resp.runs[0].graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -16988,7 +17034,7 @@ module Aws::Glue
|
|
16988
17034
|
# {
|
16989
17035
|
# logical_operator: "EQUALS", # accepts EQUALS
|
16990
17036
|
# job_name: "NameString",
|
16991
|
-
# state: "STARTING", # accepts STARTING, RUNNING, STOPPING, STOPPED, SUCCEEDED, FAILED, TIMEOUT, ERROR, WAITING
|
17037
|
+
# state: "STARTING", # accepts STARTING, RUNNING, STOPPING, STOPPED, SUCCEEDED, FAILED, TIMEOUT, ERROR, WAITING, EXPIRED
|
16992
17038
|
# crawler_name: "NameString",
|
16993
17039
|
# crawl_state: "RUNNING", # accepts RUNNING, CANCELLING, CANCELLED, SUCCEEDED, FAILED, ERROR
|
16994
17040
|
# },
|
@@ -17022,7 +17068,7 @@ module Aws::Glue
|
|
17022
17068
|
# resp.trigger.predicate.conditions #=> Array
|
17023
17069
|
# resp.trigger.predicate.conditions[0].logical_operator #=> String, one of "EQUALS"
|
17024
17070
|
# resp.trigger.predicate.conditions[0].job_name #=> String
|
17025
|
-
# resp.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING"
|
17071
|
+
# resp.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT", "ERROR", "WAITING", "EXPIRED"
|
17026
17072
|
# resp.trigger.predicate.conditions[0].crawler_name #=> String
|
17027
17073
|
# resp.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
17028
17074
|
# resp.trigger.event_batching_condition.batch_size #=> Integer
|
@@ -17146,7 +17192,7 @@ module Aws::Glue
|
|
17146
17192
|
params: params,
|
17147
17193
|
config: config)
|
17148
17194
|
context[:gem_name] = 'aws-sdk-glue'
|
17149
|
-
context[:gem_version] = '1.
|
17195
|
+
context[:gem_version] = '1.175.0'
|
17150
17196
|
Seahorse::Client::Request.new(handlers, context)
|
17151
17197
|
end
|
17152
17198
|
|
@@ -689,6 +689,7 @@ module Aws::Glue
|
|
689
689
|
JobBookmarksEncryptionMode = Shapes::StringShape.new(name: 'JobBookmarksEncryptionMode')
|
690
690
|
JobCommand = Shapes::StructureShape.new(name: 'JobCommand')
|
691
691
|
JobList = Shapes::ListShape.new(name: 'JobList')
|
692
|
+
JobMode = Shapes::StringShape.new(name: 'JobMode')
|
692
693
|
JobName = Shapes::StringShape.new(name: 'JobName')
|
693
694
|
JobNameList = Shapes::ListShape.new(name: 'JobNameList')
|
694
695
|
JobNodeDetails = Shapes::StructureShape.new(name: 'JobNodeDetails')
|
@@ -777,6 +778,7 @@ module Aws::Glue
|
|
777
778
|
MLTransformNotReadyException = Shapes::StructureShape.new(name: 'MLTransformNotReadyException')
|
778
779
|
MLUserDataEncryption = Shapes::StructureShape.new(name: 'MLUserDataEncryption')
|
779
780
|
MLUserDataEncryptionModeString = Shapes::StringShape.new(name: 'MLUserDataEncryptionModeString')
|
781
|
+
MaintenanceWindow = Shapes::StringShape.new(name: 'MaintenanceWindow')
|
780
782
|
ManyInputs = Shapes::ListShape.new(name: 'ManyInputs')
|
781
783
|
MapValue = Shapes::MapShape.new(name: 'MapValue')
|
782
784
|
Mapping = Shapes::StructureShape.new(name: 'Mapping')
|
@@ -2187,6 +2189,7 @@ module Aws::Glue
|
|
2187
2189
|
CreateGrokClassifierRequest.struct_class = Types::CreateGrokClassifierRequest
|
2188
2190
|
|
2189
2191
|
CreateJobRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
2192
|
+
CreateJobRequest.add_member(:job_mode, Shapes::ShapeRef.new(shape: JobMode, location_name: "JobMode"))
|
2190
2193
|
CreateJobRequest.add_member(:description, Shapes::ShapeRef.new(shape: DescriptionString, location_name: "Description"))
|
2191
2194
|
CreateJobRequest.add_member(:log_uri, Shapes::ShapeRef.new(shape: UriString, location_name: "LogUri"))
|
2192
2195
|
CreateJobRequest.add_member(:role, Shapes::ShapeRef.new(shape: RoleString, required: true, location_name: "Role"))
|
@@ -2208,6 +2211,7 @@ module Aws::Glue
|
|
2208
2211
|
CreateJobRequest.add_member(:code_gen_configuration_nodes, Shapes::ShapeRef.new(shape: CodeGenConfigurationNodes, location_name: "CodeGenConfigurationNodes"))
|
2209
2212
|
CreateJobRequest.add_member(:execution_class, Shapes::ShapeRef.new(shape: ExecutionClass, location_name: "ExecutionClass"))
|
2210
2213
|
CreateJobRequest.add_member(:source_control_details, Shapes::ShapeRef.new(shape: SourceControlDetails, location_name: "SourceControlDetails"))
|
2214
|
+
CreateJobRequest.add_member(:maintenance_window, Shapes::ShapeRef.new(shape: MaintenanceWindow, location_name: "MaintenanceWindow"))
|
2211
2215
|
CreateJobRequest.struct_class = Types::CreateJobRequest
|
2212
2216
|
|
2213
2217
|
CreateJobResponse.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
@@ -3896,6 +3900,7 @@ module Aws::Glue
|
|
3896
3900
|
JdbcTargetList.member = Shapes::ShapeRef.new(shape: JdbcTarget)
|
3897
3901
|
|
3898
3902
|
Job.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
3903
|
+
Job.add_member(:job_mode, Shapes::ShapeRef.new(shape: JobMode, location_name: "JobMode"))
|
3899
3904
|
Job.add_member(:description, Shapes::ShapeRef.new(shape: DescriptionString, location_name: "Description"))
|
3900
3905
|
Job.add_member(:log_uri, Shapes::ShapeRef.new(shape: UriString, location_name: "LogUri"))
|
3901
3906
|
Job.add_member(:role, Shapes::ShapeRef.new(shape: RoleString, location_name: "Role"))
|
@@ -3918,6 +3923,7 @@ module Aws::Glue
|
|
3918
3923
|
Job.add_member(:code_gen_configuration_nodes, Shapes::ShapeRef.new(shape: CodeGenConfigurationNodes, location_name: "CodeGenConfigurationNodes"))
|
3919
3924
|
Job.add_member(:execution_class, Shapes::ShapeRef.new(shape: ExecutionClass, location_name: "ExecutionClass"))
|
3920
3925
|
Job.add_member(:source_control_details, Shapes::ShapeRef.new(shape: SourceControlDetails, location_name: "SourceControlDetails"))
|
3926
|
+
Job.add_member(:maintenance_window, Shapes::ShapeRef.new(shape: MaintenanceWindow, location_name: "MaintenanceWindow"))
|
3921
3927
|
Job.struct_class = Types::Job
|
3922
3928
|
|
3923
3929
|
JobBookmarkEntry.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, location_name: "JobName"))
|
@@ -3951,6 +3957,7 @@ module Aws::Glue
|
|
3951
3957
|
JobRun.add_member(:previous_run_id, Shapes::ShapeRef.new(shape: IdString, location_name: "PreviousRunId"))
|
3952
3958
|
JobRun.add_member(:trigger_name, Shapes::ShapeRef.new(shape: NameString, location_name: "TriggerName"))
|
3953
3959
|
JobRun.add_member(:job_name, Shapes::ShapeRef.new(shape: NameString, location_name: "JobName"))
|
3960
|
+
JobRun.add_member(:job_mode, Shapes::ShapeRef.new(shape: JobMode, location_name: "JobMode"))
|
3954
3961
|
JobRun.add_member(:started_on, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "StartedOn"))
|
3955
3962
|
JobRun.add_member(:last_modified_on, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "LastModifiedOn"))
|
3956
3963
|
JobRun.add_member(:completed_on, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "CompletedOn"))
|
@@ -3970,10 +3977,12 @@ module Aws::Glue
|
|
3970
3977
|
JobRun.add_member(:glue_version, Shapes::ShapeRef.new(shape: GlueVersionString, location_name: "GlueVersion"))
|
3971
3978
|
JobRun.add_member(:dpu_seconds, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "DPUSeconds"))
|
3972
3979
|
JobRun.add_member(:execution_class, Shapes::ShapeRef.new(shape: ExecutionClass, location_name: "ExecutionClass"))
|
3980
|
+
JobRun.add_member(:maintenance_window, Shapes::ShapeRef.new(shape: MaintenanceWindow, location_name: "MaintenanceWindow"))
|
3973
3981
|
JobRun.struct_class = Types::JobRun
|
3974
3982
|
|
3975
3983
|
JobRunList.member = Shapes::ShapeRef.new(shape: JobRun)
|
3976
3984
|
|
3985
|
+
JobUpdate.add_member(:job_mode, Shapes::ShapeRef.new(shape: JobMode, location_name: "JobMode"))
|
3977
3986
|
JobUpdate.add_member(:description, Shapes::ShapeRef.new(shape: DescriptionString, location_name: "Description"))
|
3978
3987
|
JobUpdate.add_member(:log_uri, Shapes::ShapeRef.new(shape: UriString, location_name: "LogUri"))
|
3979
3988
|
JobUpdate.add_member(:role, Shapes::ShapeRef.new(shape: RoleString, location_name: "Role"))
|
@@ -3994,6 +4003,7 @@ module Aws::Glue
|
|
3994
4003
|
JobUpdate.add_member(:code_gen_configuration_nodes, Shapes::ShapeRef.new(shape: CodeGenConfigurationNodes, location_name: "CodeGenConfigurationNodes"))
|
3995
4004
|
JobUpdate.add_member(:execution_class, Shapes::ShapeRef.new(shape: ExecutionClass, location_name: "ExecutionClass"))
|
3996
4005
|
JobUpdate.add_member(:source_control_details, Shapes::ShapeRef.new(shape: SourceControlDetails, location_name: "SourceControlDetails"))
|
4006
|
+
JobUpdate.add_member(:maintenance_window, Shapes::ShapeRef.new(shape: MaintenanceWindow, location_name: "MaintenanceWindow"))
|
3997
4007
|
JobUpdate.struct_class = Types::JobUpdate
|
3998
4008
|
|
3999
4009
|
Join.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
@@ -5953,6 +5963,7 @@ module Aws::Glue
|
|
5953
5963
|
"endpointPrefix" => "glue",
|
5954
5964
|
"jsonVersion" => "1.1",
|
5955
5965
|
"protocol" => "json",
|
5966
|
+
"protocols" => ["json"],
|
5956
5967
|
"serviceFullName" => "AWS Glue",
|
5957
5968
|
"serviceId" => "Glue",
|
5958
5969
|
"signatureVersion" => "v4",
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -4661,6 +4661,22 @@ module Aws::Glue
|
|
4661
4661
|
# your account.
|
4662
4662
|
# @return [String]
|
4663
4663
|
#
|
4664
|
+
# @!attribute [rw] job_mode
|
4665
|
+
# A mode that describes how a job was created. Valid values are:
|
4666
|
+
#
|
4667
|
+
# * `SCRIPT` - The job was created using the Glue Studio script
|
4668
|
+
# editor.
|
4669
|
+
#
|
4670
|
+
# * `VISUAL` - The job was created using the Glue Studio visual
|
4671
|
+
# editor.
|
4672
|
+
#
|
4673
|
+
# * `NOTEBOOK` - The job was created using an interactive sessions
|
4674
|
+
# notebook.
|
4675
|
+
#
|
4676
|
+
# When the `JobMode` field is missing or null, `SCRIPT` is assigned as
|
4677
|
+
# the default value.
|
4678
|
+
# @return [String]
|
4679
|
+
#
|
4664
4680
|
# @!attribute [rw] description
|
4665
4681
|
# Description of the job being defined.
|
4666
4682
|
# @return [String]
|
@@ -4899,10 +4915,23 @@ module Aws::Glue
|
|
4899
4915
|
# synchronization of job artifacts to or from a remote repository.
|
4900
4916
|
# @return [Types::SourceControlDetails]
|
4901
4917
|
#
|
4918
|
+
# @!attribute [rw] maintenance_window
|
4919
|
+
# This field specifies a day of the week and hour for a maintenance
|
4920
|
+
# window for streaming jobs. Glue periodically performs maintenance
|
4921
|
+
# activities. During these maintenance windows, Glue will need to
|
4922
|
+
# restart your streaming jobs.
|
4923
|
+
#
|
4924
|
+
# Glue will restart the job within 3 hours of the specified
|
4925
|
+
# maintenance window. For instance, if you set up the maintenance
|
4926
|
+
# window for Monday at 10:00AM GMT, your jobs will be restarted
|
4927
|
+
# between 10:00AM GMT to 1:00PM GMT.
|
4928
|
+
# @return [String]
|
4929
|
+
#
|
4902
4930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateJobRequest AWS API Documentation
|
4903
4931
|
#
|
4904
4932
|
class CreateJobRequest < Struct.new(
|
4905
4933
|
:name,
|
4934
|
+
:job_mode,
|
4906
4935
|
:description,
|
4907
4936
|
:log_uri,
|
4908
4937
|
:role,
|
@@ -4923,7 +4952,8 @@ module Aws::Glue
|
|
4923
4952
|
:worker_type,
|
4924
4953
|
:code_gen_configuration_nodes,
|
4925
4954
|
:execution_class,
|
4926
|
-
:source_control_details
|
4955
|
+
:source_control_details,
|
4956
|
+
:maintenance_window)
|
4927
4957
|
SENSITIVE = [:code_gen_configuration_nodes]
|
4928
4958
|
include Aws::Structure
|
4929
4959
|
end
|
@@ -13191,6 +13221,22 @@ module Aws::Glue
|
|
13191
13221
|
# The name you assign to this job definition.
|
13192
13222
|
# @return [String]
|
13193
13223
|
#
|
13224
|
+
# @!attribute [rw] job_mode
|
13225
|
+
# A mode that describes how a job was created. Valid values are:
|
13226
|
+
#
|
13227
|
+
# * `SCRIPT` - The job was created using the Glue Studio script
|
13228
|
+
# editor.
|
13229
|
+
#
|
13230
|
+
# * `VISUAL` - The job was created using the Glue Studio visual
|
13231
|
+
# editor.
|
13232
|
+
#
|
13233
|
+
# * `NOTEBOOK` - The job was created using an interactive sessions
|
13234
|
+
# notebook.
|
13235
|
+
#
|
13236
|
+
# When the `JobMode` field is missing or null, `SCRIPT` is assigned as
|
13237
|
+
# the default value.
|
13238
|
+
# @return [String]
|
13239
|
+
#
|
13194
13240
|
# @!attribute [rw] description
|
13195
13241
|
# A description of the job.
|
13196
13242
|
# @return [String]
|
@@ -13429,10 +13475,23 @@ module Aws::Glue
|
|
13429
13475
|
# synchronization of job artifacts to or from a remote repository.
|
13430
13476
|
# @return [Types::SourceControlDetails]
|
13431
13477
|
#
|
13478
|
+
# @!attribute [rw] maintenance_window
|
13479
|
+
# This field specifies a day of the week and hour for a maintenance
|
13480
|
+
# window for streaming jobs. Glue periodically performs maintenance
|
13481
|
+
# activities. During these maintenance windows, Glue will need to
|
13482
|
+
# restart your streaming jobs.
|
13483
|
+
#
|
13484
|
+
# Glue will restart the job within 3 hours of the specified
|
13485
|
+
# maintenance window. For instance, if you set up the maintenance
|
13486
|
+
# window for Monday at 10:00AM GMT, your jobs will be restarted
|
13487
|
+
# between 10:00AM GMT to 1:00PM GMT.
|
13488
|
+
# @return [String]
|
13489
|
+
#
|
13432
13490
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Job AWS API Documentation
|
13433
13491
|
#
|
13434
13492
|
class Job < Struct.new(
|
13435
13493
|
:name,
|
13494
|
+
:job_mode,
|
13436
13495
|
:description,
|
13437
13496
|
:log_uri,
|
13438
13497
|
:role,
|
@@ -13454,7 +13513,8 @@ module Aws::Glue
|
|
13454
13513
|
:glue_version,
|
13455
13514
|
:code_gen_configuration_nodes,
|
13456
13515
|
:execution_class,
|
13457
|
-
:source_control_details
|
13516
|
+
:source_control_details,
|
13517
|
+
:maintenance_window)
|
13458
13518
|
SENSITIVE = [:code_gen_configuration_nodes]
|
13459
13519
|
include Aws::Structure
|
13460
13520
|
end
|
@@ -13602,6 +13662,22 @@ module Aws::Glue
|
|
13602
13662
|
# The name of the job definition being used in this run.
|
13603
13663
|
# @return [String]
|
13604
13664
|
#
|
13665
|
+
# @!attribute [rw] job_mode
|
13666
|
+
# A mode that describes how a job was created. Valid values are:
|
13667
|
+
#
|
13668
|
+
# * `SCRIPT` - The job was created using the Glue Studio script
|
13669
|
+
# editor.
|
13670
|
+
#
|
13671
|
+
# * `VISUAL` - The job was created using the Glue Studio visual
|
13672
|
+
# editor.
|
13673
|
+
#
|
13674
|
+
# * `NOTEBOOK` - The job was created using an interactive sessions
|
13675
|
+
# notebook.
|
13676
|
+
#
|
13677
|
+
# When the `JobMode` field is missing or null, `SCRIPT` is assigned as
|
13678
|
+
# the default value.
|
13679
|
+
# @return [String]
|
13680
|
+
#
|
13605
13681
|
# @!attribute [rw] started_on
|
13606
13682
|
# The date and time at which this job run was started.
|
13607
13683
|
# @return [Time]
|
@@ -13687,8 +13763,18 @@ module Aws::Glue
|
|
13687
13763
|
# `TIMEOUT` status. This value overrides the timeout value set in the
|
13688
13764
|
# parent job.
|
13689
13765
|
#
|
13690
|
-
#
|
13691
|
-
#
|
13766
|
+
# The maximum value for timeout for batch jobs is 7 days or 10080
|
13767
|
+
# minutes. The default is 2880 minutes (48 hours) for batch jobs.
|
13768
|
+
#
|
13769
|
+
# Any existing Glue jobs that have a greater timeout value are
|
13770
|
+
# defaulted to 7 days. For instance you have specified a timeout of 20
|
13771
|
+
# days for a batch job, it will be stopped on the 7th day.
|
13772
|
+
#
|
13773
|
+
# Streaming jobs must have timeout values less than 7 days or 10080
|
13774
|
+
# minutes. When the value is left blank, the job will be restarted
|
13775
|
+
# after 7 days based if you have not setup a maintenance window. If
|
13776
|
+
# you have setup maintenance window, it will be restarted during the
|
13777
|
+
# maintenance window after 7 days.
|
13692
13778
|
# @return [Integer]
|
13693
13779
|
#
|
13694
13780
|
# @!attribute [rw] max_capacity
|
@@ -13819,10 +13905,11 @@ module Aws::Glue
|
|
13819
13905
|
# @return [String]
|
13820
13906
|
#
|
13821
13907
|
# @!attribute [rw] dpu_seconds
|
13822
|
-
# This field
|
13823
|
-
#
|
13824
|
-
#
|
13825
|
-
#
|
13908
|
+
# This field can be set for either job runs with execution class
|
13909
|
+
# `FLEX` or when Auto Scaling is enabled, and represents the total
|
13910
|
+
# time each executor ran during the lifecycle of a job run in seconds,
|
13911
|
+
# multiplied by a DPU factor (1 for `G.1X`, 2 for `G.2X`, or 0.25 for
|
13912
|
+
# `G.025X` workers). This value may be different than the
|
13826
13913
|
# `executionEngineRuntime` * `MaxCapacity` as in the case of Auto
|
13827
13914
|
# Scaling jobs, as the number of executors running at a given time may
|
13828
13915
|
# be less than the `MaxCapacity`. Therefore, it is possible that the
|
@@ -13844,6 +13931,18 @@ module Aws::Glue
|
|
13844
13931
|
# execution class is available for Spark jobs.
|
13845
13932
|
# @return [String]
|
13846
13933
|
#
|
13934
|
+
# @!attribute [rw] maintenance_window
|
13935
|
+
# This field specifies a day of the week and hour for a maintenance
|
13936
|
+
# window for streaming jobs. Glue periodically performs maintenance
|
13937
|
+
# activities. During these maintenance windows, Glue will need to
|
13938
|
+
# restart your streaming jobs.
|
13939
|
+
#
|
13940
|
+
# Glue will restart the job within 3 hours of the specified
|
13941
|
+
# maintenance window. For instance, if you set up the maintenance
|
13942
|
+
# window for Monday at 10:00AM GMT, your jobs will be restarted
|
13943
|
+
# between 10:00AM GMT to 1:00PM GMT.
|
13944
|
+
# @return [String]
|
13945
|
+
#
|
13847
13946
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/JobRun AWS API Documentation
|
13848
13947
|
#
|
13849
13948
|
class JobRun < Struct.new(
|
@@ -13852,6 +13951,7 @@ module Aws::Glue
|
|
13852
13951
|
:previous_run_id,
|
13853
13952
|
:trigger_name,
|
13854
13953
|
:job_name,
|
13954
|
+
:job_mode,
|
13855
13955
|
:started_on,
|
13856
13956
|
:last_modified_on,
|
13857
13957
|
:completed_on,
|
@@ -13870,7 +13970,8 @@ module Aws::Glue
|
|
13870
13970
|
:notification_property,
|
13871
13971
|
:glue_version,
|
13872
13972
|
:dpu_seconds,
|
13873
|
-
:execution_class
|
13973
|
+
:execution_class,
|
13974
|
+
:maintenance_window)
|
13874
13975
|
SENSITIVE = []
|
13875
13976
|
include Aws::Structure
|
13876
13977
|
end
|
@@ -13878,6 +13979,22 @@ module Aws::Glue
|
|
13878
13979
|
# Specifies information used to update an existing job definition. The
|
13879
13980
|
# previous job definition is completely overwritten by this information.
|
13880
13981
|
#
|
13982
|
+
# @!attribute [rw] job_mode
|
13983
|
+
# A mode that describes how a job was created. Valid values are:
|
13984
|
+
#
|
13985
|
+
# * `SCRIPT` - The job was created using the Glue Studio script
|
13986
|
+
# editor.
|
13987
|
+
#
|
13988
|
+
# * `VISUAL` - The job was created using the Glue Studio visual
|
13989
|
+
# editor.
|
13990
|
+
#
|
13991
|
+
# * `NOTEBOOK` - The job was created using an interactive sessions
|
13992
|
+
# notebook.
|
13993
|
+
#
|
13994
|
+
# When the `JobMode` field is missing or null, `SCRIPT` is assigned as
|
13995
|
+
# the default value.
|
13996
|
+
# @return [String]
|
13997
|
+
#
|
13881
13998
|
# @!attribute [rw] description
|
13882
13999
|
# Description of the job being defined.
|
13883
14000
|
# @return [String]
|
@@ -14106,9 +14223,22 @@ module Aws::Glue
|
|
14106
14223
|
# synchronization of job artifacts to or from a remote repository.
|
14107
14224
|
# @return [Types::SourceControlDetails]
|
14108
14225
|
#
|
14226
|
+
# @!attribute [rw] maintenance_window
|
14227
|
+
# This field specifies a day of the week and hour for a maintenance
|
14228
|
+
# window for streaming jobs. Glue periodically performs maintenance
|
14229
|
+
# activities. During these maintenance windows, Glue will need to
|
14230
|
+
# restart your streaming jobs.
|
14231
|
+
#
|
14232
|
+
# Glue will restart the job within 3 hours of the specified
|
14233
|
+
# maintenance window. For instance, if you set up the maintenance
|
14234
|
+
# window for Monday at 10:00AM GMT, your jobs will be restarted
|
14235
|
+
# between 10:00AM GMT to 1:00PM GMT.
|
14236
|
+
# @return [String]
|
14237
|
+
#
|
14109
14238
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/JobUpdate AWS API Documentation
|
14110
14239
|
#
|
14111
14240
|
class JobUpdate < Struct.new(
|
14241
|
+
:job_mode,
|
14112
14242
|
:description,
|
14113
14243
|
:log_uri,
|
14114
14244
|
:role,
|
@@ -14128,7 +14258,8 @@ module Aws::Glue
|
|
14128
14258
|
:glue_version,
|
14129
14259
|
:code_gen_configuration_nodes,
|
14130
14260
|
:execution_class,
|
14131
|
-
:source_control_details
|
14261
|
+
:source_control_details,
|
14262
|
+
:maintenance_window)
|
14132
14263
|
SENSITIVE = [:code_gen_configuration_nodes]
|
14133
14264
|
include Aws::Structure
|
14134
14265
|
end
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -734,6 +734,7 @@ module Aws
|
|
734
734
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#create_job-instance_method
|
735
735
|
def create_job: (
|
736
736
|
name: ::String,
|
737
|
+
?job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK"),
|
737
738
|
?description: ::String,
|
738
739
|
?log_uri: ::String,
|
739
740
|
role: ::String,
|
@@ -1956,7 +1957,8 @@ module Aws
|
|
1956
1957
|
last_commit_id: ::String?,
|
1957
1958
|
auth_strategy: ("PERSONAL_ACCESS_TOKEN" | "AWS_SECRETS_MANAGER")?,
|
1958
1959
|
auth_token: ::String?
|
1959
|
-
}
|
1960
|
+
},
|
1961
|
+
?maintenance_window: ::String
|
1960
1962
|
) -> _CreateJobResponseSuccess
|
1961
1963
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateJobResponseSuccess
|
1962
1964
|
|
@@ -2340,7 +2342,7 @@ module Aws
|
|
2340
2342
|
{
|
2341
2343
|
logical_operator: ("EQUALS")?,
|
2342
2344
|
job_name: ::String?,
|
2343
|
-
state: ("STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED" | "TIMEOUT" | "ERROR" | "WAITING")?,
|
2345
|
+
state: ("STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED" | "TIMEOUT" | "ERROR" | "WAITING" | "EXPIRED")?,
|
2344
2346
|
crawler_name: ::String?,
|
2345
2347
|
crawl_state: ("RUNNING" | "CANCELLING" | "CANCELLED" | "SUCCEEDED" | "FAILED" | "ERROR")?
|
2346
2348
|
},
|
@@ -5053,6 +5055,7 @@ module Aws
|
|
5053
5055
|
def update_job: (
|
5054
5056
|
job_name: ::String,
|
5055
5057
|
job_update: {
|
5058
|
+
job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")?,
|
5056
5059
|
description: ::String?,
|
5057
5060
|
log_uri: ::String?,
|
5058
5061
|
role: ::String?,
|
@@ -6274,7 +6277,8 @@ module Aws
|
|
6274
6277
|
last_commit_id: ::String?,
|
6275
6278
|
auth_strategy: ("PERSONAL_ACCESS_TOKEN" | "AWS_SECRETS_MANAGER")?,
|
6276
6279
|
auth_token: ::String?
|
6277
|
-
}
|
6280
|
+
}?,
|
6281
|
+
maintenance_window: ::String?
|
6278
6282
|
}
|
6279
6283
|
) -> _UpdateJobResponseSuccess
|
6280
6284
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateJobResponseSuccess
|
@@ -6570,7 +6574,7 @@ module Aws
|
|
6570
6574
|
{
|
6571
6575
|
logical_operator: ("EQUALS")?,
|
6572
6576
|
job_name: ::String?,
|
6573
|
-
state: ("STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED" | "TIMEOUT" | "ERROR" | "WAITING")?,
|
6577
|
+
state: ("STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED" | "TIMEOUT" | "ERROR" | "WAITING" | "EXPIRED")?,
|
6574
6578
|
crawler_name: ::String?,
|
6575
6579
|
crawl_state: ("RUNNING" | "CANCELLING" | "CANCELLED" | "SUCCEEDED" | "FAILED" | "ERROR")?
|
6576
6580
|
},
|
data/sig/types.rbs
CHANGED
@@ -772,7 +772,7 @@ module Aws::Glue
|
|
772
772
|
class Condition
|
773
773
|
attr_accessor logical_operator: ("EQUALS")
|
774
774
|
attr_accessor job_name: ::String
|
775
|
-
attr_accessor state: ("STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED" | "TIMEOUT" | "ERROR" | "WAITING")
|
775
|
+
attr_accessor state: ("STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED" | "TIMEOUT" | "ERROR" | "WAITING" | "EXPIRED")
|
776
776
|
attr_accessor crawler_name: ::String
|
777
777
|
attr_accessor crawl_state: ("RUNNING" | "CANCELLING" | "CANCELLED" | "SUCCEEDED" | "FAILED" | "ERROR")
|
778
778
|
SENSITIVE: []
|
@@ -1105,6 +1105,7 @@ module Aws::Glue
|
|
1105
1105
|
|
1106
1106
|
class CreateJobRequest
|
1107
1107
|
attr_accessor name: ::String
|
1108
|
+
attr_accessor job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")
|
1108
1109
|
attr_accessor description: ::String
|
1109
1110
|
attr_accessor log_uri: ::String
|
1110
1111
|
attr_accessor role: ::String
|
@@ -1126,6 +1127,7 @@ module Aws::Glue
|
|
1126
1127
|
attr_accessor code_gen_configuration_nodes: ::Hash[::String, Types::CodeGenConfigurationNode]
|
1127
1128
|
attr_accessor execution_class: ("FLEX" | "STANDARD")
|
1128
1129
|
attr_accessor source_control_details: Types::SourceControlDetails
|
1130
|
+
attr_accessor maintenance_window: ::String
|
1129
1131
|
SENSITIVE: [:code_gen_configuration_nodes]
|
1130
1132
|
end
|
1131
1133
|
|
@@ -3314,6 +3316,7 @@ module Aws::Glue
|
|
3314
3316
|
|
3315
3317
|
class Job
|
3316
3318
|
attr_accessor name: ::String
|
3319
|
+
attr_accessor job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")
|
3317
3320
|
attr_accessor description: ::String
|
3318
3321
|
attr_accessor log_uri: ::String
|
3319
3322
|
attr_accessor role: ::String
|
@@ -3336,6 +3339,7 @@ module Aws::Glue
|
|
3336
3339
|
attr_accessor code_gen_configuration_nodes: ::Hash[::String, Types::CodeGenConfigurationNode]
|
3337
3340
|
attr_accessor execution_class: ("FLEX" | "STANDARD")
|
3338
3341
|
attr_accessor source_control_details: Types::SourceControlDetails
|
3342
|
+
attr_accessor maintenance_window: ::String
|
3339
3343
|
SENSITIVE: [:code_gen_configuration_nodes]
|
3340
3344
|
end
|
3341
3345
|
|
@@ -3375,10 +3379,11 @@ module Aws::Glue
|
|
3375
3379
|
attr_accessor previous_run_id: ::String
|
3376
3380
|
attr_accessor trigger_name: ::String
|
3377
3381
|
attr_accessor job_name: ::String
|
3382
|
+
attr_accessor job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")
|
3378
3383
|
attr_accessor started_on: ::Time
|
3379
3384
|
attr_accessor last_modified_on: ::Time
|
3380
3385
|
attr_accessor completed_on: ::Time
|
3381
|
-
attr_accessor job_run_state: ("STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED" | "TIMEOUT" | "ERROR" | "WAITING")
|
3386
|
+
attr_accessor job_run_state: ("STARTING" | "RUNNING" | "STOPPING" | "STOPPED" | "SUCCEEDED" | "FAILED" | "TIMEOUT" | "ERROR" | "WAITING" | "EXPIRED")
|
3382
3387
|
attr_accessor arguments: ::Hash[::String, ::String]
|
3383
3388
|
attr_accessor error_message: ::String
|
3384
3389
|
attr_accessor predecessor_runs: ::Array[Types::Predecessor]
|
@@ -3394,10 +3399,12 @@ module Aws::Glue
|
|
3394
3399
|
attr_accessor glue_version: ::String
|
3395
3400
|
attr_accessor dpu_seconds: ::Float
|
3396
3401
|
attr_accessor execution_class: ("FLEX" | "STANDARD")
|
3402
|
+
attr_accessor maintenance_window: ::String
|
3397
3403
|
SENSITIVE: []
|
3398
3404
|
end
|
3399
3405
|
|
3400
3406
|
class JobUpdate
|
3407
|
+
attr_accessor job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")
|
3401
3408
|
attr_accessor description: ::String
|
3402
3409
|
attr_accessor log_uri: ::String
|
3403
3410
|
attr_accessor role: ::String
|
@@ -3418,6 +3425,7 @@ module Aws::Glue
|
|
3418
3425
|
attr_accessor code_gen_configuration_nodes: ::Hash[::String, Types::CodeGenConfigurationNode]
|
3419
3426
|
attr_accessor execution_class: ("FLEX" | "STANDARD")
|
3420
3427
|
attr_accessor source_control_details: Types::SourceControlDetails
|
3428
|
+
attr_accessor maintenance_window: ::String
|
3421
3429
|
SENSITIVE: [:code_gen_configuration_nodes]
|
3422
3430
|
end
|
3423
3431
|
|
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.
|
4
|
+
version: 1.175.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-05-
|
11
|
+
date: 2024-05-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|