aws-sdk-glue 1.7.0 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-glue.rb +1 -1
- data/lib/aws-sdk-glue/client.rb +29 -1
- data/lib/aws-sdk-glue/client_api.rb +13 -1
- data/lib/aws-sdk-glue/types.rb +81 -6
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 430be85385b526a3aa1d76be8c632a49f086a1d4
|
4
|
+
data.tar.gz: e110d3c2fe771489fc06eaa9747575764992f8cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3128ac378ba37c18922466f241dcf0c9ccf3f3f5673a07e5873c3a19f676d7a4d76685fe4fe89e9c77c17755314c98678fc82abfa044d0020bc5451fbab08eb5
|
7
|
+
data.tar.gz: 36ad8018e9031dd78a5ceaf74f70e97f97d31a5ed4b015331b5fa41c97e36c25adf7ff54f119b167f59059f4637bd26df8ae70420e5d54bb1bf0e93ec608eab1
|
data/lib/aws-sdk-glue.rb
CHANGED
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -928,6 +928,9 @@ module Aws::Glue
|
|
928
928
|
# @option params [Integer] :timeout
|
929
929
|
# The job timeout in minutes. The default is 2880 minutes (48 hours).
|
930
930
|
#
|
931
|
+
# @option params [Types::NotificationProperty] :notification_property
|
932
|
+
# Specifies configuration properties of a job notification.
|
933
|
+
#
|
931
934
|
# @return [Types::CreateJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
932
935
|
#
|
933
936
|
# * {Types::CreateJobResponse#name #name} => String
|
@@ -955,6 +958,9 @@ module Aws::Glue
|
|
955
958
|
# max_retries: 1,
|
956
959
|
# allocated_capacity: 1,
|
957
960
|
# timeout: 1,
|
961
|
+
# notification_property: {
|
962
|
+
# notify_delay_after: 1,
|
963
|
+
# },
|
958
964
|
# })
|
959
965
|
#
|
960
966
|
# @example Response structure
|
@@ -1263,6 +1269,9 @@ module Aws::Glue
|
|
1263
1269
|
# "GenericString" => "GenericString",
|
1264
1270
|
# },
|
1265
1271
|
# timeout: 1,
|
1272
|
+
# notification_property: {
|
1273
|
+
# notify_delay_after: 1,
|
1274
|
+
# },
|
1266
1275
|
# },
|
1267
1276
|
# ],
|
1268
1277
|
# description: "DescriptionString",
|
@@ -2305,6 +2314,7 @@ module Aws::Glue
|
|
2305
2314
|
# resp.job.max_retries #=> Integer
|
2306
2315
|
# resp.job.allocated_capacity #=> Integer
|
2307
2316
|
# resp.job.timeout #=> Integer
|
2317
|
+
# resp.job.notification_property.notify_delay_after #=> Integer
|
2308
2318
|
#
|
2309
2319
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJob AWS API Documentation
|
2310
2320
|
#
|
@@ -2358,6 +2368,7 @@ module Aws::Glue
|
|
2358
2368
|
# resp.job_run.allocated_capacity #=> Integer
|
2359
2369
|
# resp.job_run.execution_time #=> Integer
|
2360
2370
|
# resp.job_run.timeout #=> Integer
|
2371
|
+
# resp.job_run.notification_property.notify_delay_after #=> Integer
|
2361
2372
|
#
|
2362
2373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobRun AWS API Documentation
|
2363
2374
|
#
|
@@ -2413,6 +2424,7 @@ module Aws::Glue
|
|
2413
2424
|
# resp.job_runs[0].allocated_capacity #=> Integer
|
2414
2425
|
# resp.job_runs[0].execution_time #=> Integer
|
2415
2426
|
# resp.job_runs[0].timeout #=> Integer
|
2427
|
+
# resp.job_runs[0].notification_property.notify_delay_after #=> Integer
|
2416
2428
|
# resp.next_token #=> String
|
2417
2429
|
#
|
2418
2430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobRuns AWS API Documentation
|
@@ -2463,6 +2475,7 @@ module Aws::Glue
|
|
2463
2475
|
# resp.jobs[0].max_retries #=> Integer
|
2464
2476
|
# resp.jobs[0].allocated_capacity #=> Integer
|
2465
2477
|
# resp.jobs[0].timeout #=> Integer
|
2478
|
+
# resp.jobs[0].notification_property.notify_delay_after #=> Integer
|
2466
2479
|
# resp.next_token #=> String
|
2467
2480
|
#
|
2468
2481
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobs AWS API Documentation
|
@@ -3183,6 +3196,7 @@ module Aws::Glue
|
|
3183
3196
|
# resp.trigger.actions[0].arguments #=> Hash
|
3184
3197
|
# resp.trigger.actions[0].arguments["GenericString"] #=> String
|
3185
3198
|
# resp.trigger.actions[0].timeout #=> Integer
|
3199
|
+
# resp.trigger.actions[0].notification_property.notify_delay_after #=> Integer
|
3186
3200
|
# resp.trigger.predicate.logical #=> String, one of "AND", "ANY"
|
3187
3201
|
# resp.trigger.predicate.conditions #=> Array
|
3188
3202
|
# resp.trigger.predicate.conditions[0].logical_operator #=> String, one of "EQUALS"
|
@@ -3238,6 +3252,7 @@ module Aws::Glue
|
|
3238
3252
|
# resp.triggers[0].actions[0].arguments #=> Hash
|
3239
3253
|
# resp.triggers[0].actions[0].arguments["GenericString"] #=> String
|
3240
3254
|
# resp.triggers[0].actions[0].timeout #=> Integer
|
3255
|
+
# resp.triggers[0].actions[0].notification_property.notify_delay_after #=> Integer
|
3241
3256
|
# resp.triggers[0].predicate.logical #=> String, one of "AND", "ANY"
|
3242
3257
|
# resp.triggers[0].predicate.conditions #=> Array
|
3243
3258
|
# resp.triggers[0].predicate.conditions[0].logical_operator #=> String, one of "EQUALS"
|
@@ -3499,6 +3514,9 @@ module Aws::Glue
|
|
3499
3514
|
# The job run timeout in minutes. It overrides the timeout value of the
|
3500
3515
|
# job.
|
3501
3516
|
#
|
3517
|
+
# @option params [Types::NotificationProperty] :notification_property
|
3518
|
+
# Specifies configuration properties of a job run notification.
|
3519
|
+
#
|
3502
3520
|
# @return [Types::StartJobRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3503
3521
|
#
|
3504
3522
|
# * {Types::StartJobRunResponse#job_run_id #job_run_id} => String
|
@@ -3513,6 +3531,9 @@ module Aws::Glue
|
|
3513
3531
|
# },
|
3514
3532
|
# allocated_capacity: 1,
|
3515
3533
|
# timeout: 1,
|
3534
|
+
# notification_property: {
|
3535
|
+
# notify_delay_after: 1,
|
3536
|
+
# },
|
3516
3537
|
# })
|
3517
3538
|
#
|
3518
3539
|
# @example Response structure
|
@@ -3964,6 +3985,9 @@ module Aws::Glue
|
|
3964
3985
|
# max_retries: 1,
|
3965
3986
|
# allocated_capacity: 1,
|
3966
3987
|
# timeout: 1,
|
3988
|
+
# notification_property: {
|
3989
|
+
# notify_delay_after: 1,
|
3990
|
+
# },
|
3967
3991
|
# },
|
3968
3992
|
# })
|
3969
3993
|
#
|
@@ -4191,6 +4215,9 @@ module Aws::Glue
|
|
4191
4215
|
# "GenericString" => "GenericString",
|
4192
4216
|
# },
|
4193
4217
|
# timeout: 1,
|
4218
|
+
# notification_property: {
|
4219
|
+
# notify_delay_after: 1,
|
4220
|
+
# },
|
4194
4221
|
# },
|
4195
4222
|
# ],
|
4196
4223
|
# predicate: {
|
@@ -4219,6 +4246,7 @@ module Aws::Glue
|
|
4219
4246
|
# resp.trigger.actions[0].arguments #=> Hash
|
4220
4247
|
# resp.trigger.actions[0].arguments["GenericString"] #=> String
|
4221
4248
|
# resp.trigger.actions[0].timeout #=> Integer
|
4249
|
+
# resp.trigger.actions[0].notification_property.notify_delay_after #=> Integer
|
4222
4250
|
# resp.trigger.predicate.logical #=> String, one of "AND", "ANY"
|
4223
4251
|
# resp.trigger.predicate.conditions #=> Array
|
4224
4252
|
# resp.trigger.predicate.conditions[0].logical_operator #=> String, one of "EQUALS"
|
@@ -4295,7 +4323,7 @@ module Aws::Glue
|
|
4295
4323
|
params: params,
|
4296
4324
|
config: config)
|
4297
4325
|
context[:gem_name] = 'aws-sdk-glue'
|
4298
|
-
context[:gem_version] = '1.
|
4326
|
+
context[:gem_version] = '1.8.0'
|
4299
4327
|
Seahorse::Client::Request.new(handlers, context)
|
4300
4328
|
end
|
4301
4329
|
|
@@ -155,6 +155,7 @@ module Aws::Glue
|
|
155
155
|
ErrorDetail = Shapes::StructureShape.new(name: 'ErrorDetail')
|
156
156
|
ErrorString = Shapes::StringShape.new(name: 'ErrorString')
|
157
157
|
ExecutionProperty = Shapes::StructureShape.new(name: 'ExecutionProperty')
|
158
|
+
ExecutionTime = Shapes::IntegerShape.new(name: 'ExecutionTime')
|
158
159
|
FieldType = Shapes::StringShape.new(name: 'FieldType')
|
159
160
|
FilterString = Shapes::StringShape.new(name: 'FilterString')
|
160
161
|
FormatString = Shapes::StringShape.new(name: 'FormatString')
|
@@ -269,6 +270,8 @@ module Aws::Glue
|
|
269
270
|
NoScheduleException = Shapes::StructureShape.new(name: 'NoScheduleException')
|
270
271
|
NonNegativeDouble = Shapes::FloatShape.new(name: 'NonNegativeDouble')
|
271
272
|
NonNegativeInteger = Shapes::IntegerShape.new(name: 'NonNegativeInteger')
|
273
|
+
NotificationProperty = Shapes::StructureShape.new(name: 'NotificationProperty')
|
274
|
+
NotifyDelayAfter = Shapes::IntegerShape.new(name: 'NotifyDelayAfter')
|
272
275
|
OperationTimeoutException = Shapes::StructureShape.new(name: 'OperationTimeoutException')
|
273
276
|
Order = Shapes::StructureShape.new(name: 'Order')
|
274
277
|
OrderList = Shapes::ListShape.new(name: 'OrderList')
|
@@ -396,6 +399,7 @@ module Aws::Glue
|
|
396
399
|
Action.add_member(:job_name, Shapes::ShapeRef.new(shape: NameString, location_name: "JobName"))
|
397
400
|
Action.add_member(:arguments, Shapes::ShapeRef.new(shape: GenericMap, location_name: "Arguments"))
|
398
401
|
Action.add_member(:timeout, Shapes::ShapeRef.new(shape: Timeout, location_name: "Timeout"))
|
402
|
+
Action.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
|
399
403
|
Action.struct_class = Types::Action
|
400
404
|
|
401
405
|
ActionList.member = Shapes::ShapeRef.new(shape: Action)
|
@@ -681,6 +685,7 @@ module Aws::Glue
|
|
681
685
|
CreateJobRequest.add_member(:max_retries, Shapes::ShapeRef.new(shape: MaxRetries, location_name: "MaxRetries"))
|
682
686
|
CreateJobRequest.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "AllocatedCapacity"))
|
683
687
|
CreateJobRequest.add_member(:timeout, Shapes::ShapeRef.new(shape: Timeout, location_name: "Timeout"))
|
688
|
+
CreateJobRequest.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
|
684
689
|
CreateJobRequest.struct_class = Types::CreateJobRequest
|
685
690
|
|
686
691
|
CreateJobResponse.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
@@ -1150,6 +1155,7 @@ module Aws::Glue
|
|
1150
1155
|
Job.add_member(:max_retries, Shapes::ShapeRef.new(shape: MaxRetries, location_name: "MaxRetries"))
|
1151
1156
|
Job.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "AllocatedCapacity"))
|
1152
1157
|
Job.add_member(:timeout, Shapes::ShapeRef.new(shape: Timeout, location_name: "Timeout"))
|
1158
|
+
Job.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
|
1153
1159
|
Job.struct_class = Types::Job
|
1154
1160
|
|
1155
1161
|
JobBookmarkEntry.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, location_name: "JobName"))
|
@@ -1178,8 +1184,9 @@ module Aws::Glue
|
|
1178
1184
|
JobRun.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorString, location_name: "ErrorMessage"))
|
1179
1185
|
JobRun.add_member(:predecessor_runs, Shapes::ShapeRef.new(shape: PredecessorList, location_name: "PredecessorRuns"))
|
1180
1186
|
JobRun.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "AllocatedCapacity"))
|
1181
|
-
JobRun.add_member(:execution_time, Shapes::ShapeRef.new(shape:
|
1187
|
+
JobRun.add_member(:execution_time, Shapes::ShapeRef.new(shape: ExecutionTime, location_name: "ExecutionTime"))
|
1182
1188
|
JobRun.add_member(:timeout, Shapes::ShapeRef.new(shape: Timeout, location_name: "Timeout"))
|
1189
|
+
JobRun.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
|
1183
1190
|
JobRun.struct_class = Types::JobRun
|
1184
1191
|
|
1185
1192
|
JobRunList.member = Shapes::ShapeRef.new(shape: JobRun)
|
@@ -1194,6 +1201,7 @@ module Aws::Glue
|
|
1194
1201
|
JobUpdate.add_member(:max_retries, Shapes::ShapeRef.new(shape: MaxRetries, location_name: "MaxRetries"))
|
1195
1202
|
JobUpdate.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "AllocatedCapacity"))
|
1196
1203
|
JobUpdate.add_member(:timeout, Shapes::ShapeRef.new(shape: Timeout, location_name: "Timeout"))
|
1204
|
+
JobUpdate.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
|
1197
1205
|
JobUpdate.struct_class = Types::JobUpdate
|
1198
1206
|
|
1199
1207
|
JsonClassifier.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
@@ -1232,6 +1240,9 @@ module Aws::Glue
|
|
1232
1240
|
|
1233
1241
|
NameStringList.member = Shapes::ShapeRef.new(shape: NameString)
|
1234
1242
|
|
1243
|
+
NotificationProperty.add_member(:notify_delay_after, Shapes::ShapeRef.new(shape: NotifyDelayAfter, location_name: "NotifyDelayAfter"))
|
1244
|
+
NotificationProperty.struct_class = Types::NotificationProperty
|
1245
|
+
|
1235
1246
|
Order.add_member(:column, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Column"))
|
1236
1247
|
Order.add_member(:sort_order, Shapes::ShapeRef.new(shape: IntegerFlag, required: true, location_name: "SortOrder"))
|
1237
1248
|
Order.struct_class = Types::Order
|
@@ -1345,6 +1356,7 @@ module Aws::Glue
|
|
1345
1356
|
StartJobRunRequest.add_member(:arguments, Shapes::ShapeRef.new(shape: GenericMap, location_name: "Arguments"))
|
1346
1357
|
StartJobRunRequest.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "AllocatedCapacity"))
|
1347
1358
|
StartJobRunRequest.add_member(:timeout, Shapes::ShapeRef.new(shape: Timeout, location_name: "Timeout"))
|
1359
|
+
StartJobRunRequest.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
|
1348
1360
|
StartJobRunRequest.struct_class = Types::StartJobRunRequest
|
1349
1361
|
|
1350
1362
|
StartJobRunResponse.add_member(:job_run_id, Shapes::ShapeRef.new(shape: IdString, location_name: "JobRunId"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -19,6 +19,9 @@ module Aws::Glue
|
|
19
19
|
# "GenericString" => "GenericString",
|
20
20
|
# },
|
21
21
|
# timeout: 1,
|
22
|
+
# notification_property: {
|
23
|
+
# notify_delay_after: 1,
|
24
|
+
# },
|
22
25
|
# }
|
23
26
|
#
|
24
27
|
# @!attribute [rw] job_name
|
@@ -50,12 +53,17 @@ module Aws::Glue
|
|
50
53
|
# the job.
|
51
54
|
# @return [Integer]
|
52
55
|
#
|
56
|
+
# @!attribute [rw] notification_property
|
57
|
+
# Specifies configuration properties of a job run notification.
|
58
|
+
# @return [Types::NotificationProperty]
|
59
|
+
#
|
53
60
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Action AWS API Documentation
|
54
61
|
#
|
55
62
|
class Action < Struct.new(
|
56
63
|
:job_name,
|
57
64
|
:arguments,
|
58
|
-
:timeout
|
65
|
+
:timeout,
|
66
|
+
:notification_property)
|
59
67
|
include Aws::Structure
|
60
68
|
end
|
61
69
|
|
@@ -1528,6 +1536,9 @@ module Aws::Glue
|
|
1528
1536
|
# max_retries: 1,
|
1529
1537
|
# allocated_capacity: 1,
|
1530
1538
|
# timeout: 1,
|
1539
|
+
# notification_property: {
|
1540
|
+
# notify_delay_after: 1,
|
1541
|
+
# },
|
1531
1542
|
# }
|
1532
1543
|
#
|
1533
1544
|
# @!attribute [rw] name
|
@@ -1600,6 +1611,10 @@ module Aws::Glue
|
|
1600
1611
|
# The job timeout in minutes. The default is 2880 minutes (48 hours).
|
1601
1612
|
# @return [Integer]
|
1602
1613
|
#
|
1614
|
+
# @!attribute [rw] notification_property
|
1615
|
+
# Specifies configuration properties of a job notification.
|
1616
|
+
# @return [Types::NotificationProperty]
|
1617
|
+
#
|
1603
1618
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateJobRequest AWS API Documentation
|
1604
1619
|
#
|
1605
1620
|
class CreateJobRequest < Struct.new(
|
@@ -1613,7 +1628,8 @@ module Aws::Glue
|
|
1613
1628
|
:connections,
|
1614
1629
|
:max_retries,
|
1615
1630
|
:allocated_capacity,
|
1616
|
-
:timeout
|
1631
|
+
:timeout,
|
1632
|
+
:notification_property)
|
1617
1633
|
include Aws::Structure
|
1618
1634
|
end
|
1619
1635
|
|
@@ -1934,6 +1950,9 @@ module Aws::Glue
|
|
1934
1950
|
# "GenericString" => "GenericString",
|
1935
1951
|
# },
|
1936
1952
|
# timeout: 1,
|
1953
|
+
# notification_property: {
|
1954
|
+
# notify_delay_after: 1,
|
1955
|
+
# },
|
1937
1956
|
# },
|
1938
1957
|
# ],
|
1939
1958
|
# description: "DescriptionString",
|
@@ -4261,6 +4280,10 @@ module Aws::Glue
|
|
4261
4280
|
# The job timeout in minutes.
|
4262
4281
|
# @return [Integer]
|
4263
4282
|
#
|
4283
|
+
# @!attribute [rw] notification_property
|
4284
|
+
# Specifies configuration properties of a job notification.
|
4285
|
+
# @return [Types::NotificationProperty]
|
4286
|
+
#
|
4264
4287
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Job AWS API Documentation
|
4265
4288
|
#
|
4266
4289
|
class Job < Struct.new(
|
@@ -4276,7 +4299,8 @@ module Aws::Glue
|
|
4276
4299
|
:connections,
|
4277
4300
|
:max_retries,
|
4278
4301
|
:allocated_capacity,
|
4279
|
-
:timeout
|
4302
|
+
:timeout,
|
4303
|
+
:notification_property)
|
4280
4304
|
include Aws::Structure
|
4281
4305
|
end
|
4282
4306
|
|
@@ -4427,6 +4451,10 @@ module Aws::Glue
|
|
4427
4451
|
# The job run timeout in minutes.
|
4428
4452
|
# @return [Integer]
|
4429
4453
|
#
|
4454
|
+
# @!attribute [rw] notification_property
|
4455
|
+
# Specifies configuration properties of a job run notification.
|
4456
|
+
# @return [Types::NotificationProperty]
|
4457
|
+
#
|
4430
4458
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/JobRun AWS API Documentation
|
4431
4459
|
#
|
4432
4460
|
class JobRun < Struct.new(
|
@@ -4444,7 +4472,8 @@ module Aws::Glue
|
|
4444
4472
|
:predecessor_runs,
|
4445
4473
|
:allocated_capacity,
|
4446
4474
|
:execution_time,
|
4447
|
-
:timeout
|
4475
|
+
:timeout,
|
4476
|
+
:notification_property)
|
4448
4477
|
include Aws::Structure
|
4449
4478
|
end
|
4450
4479
|
|
@@ -4475,6 +4504,9 @@ module Aws::Glue
|
|
4475
4504
|
# max_retries: 1,
|
4476
4505
|
# allocated_capacity: 1,
|
4477
4506
|
# timeout: 1,
|
4507
|
+
# notification_property: {
|
4508
|
+
# notify_delay_after: 1,
|
4509
|
+
# },
|
4478
4510
|
# }
|
4479
4511
|
#
|
4480
4512
|
# @!attribute [rw] description
|
@@ -4542,6 +4574,10 @@ module Aws::Glue
|
|
4542
4574
|
# The job timeout in minutes. The default is 2880 minutes (48 hours).
|
4543
4575
|
# @return [Integer]
|
4544
4576
|
#
|
4577
|
+
# @!attribute [rw] notification_property
|
4578
|
+
# Specifies configuration properties of a job notification.
|
4579
|
+
# @return [Types::NotificationProperty]
|
4580
|
+
#
|
4545
4581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/JobUpdate AWS API Documentation
|
4546
4582
|
#
|
4547
4583
|
class JobUpdate < Struct.new(
|
@@ -4554,7 +4590,8 @@ module Aws::Glue
|
|
4554
4590
|
:connections,
|
4555
4591
|
:max_retries,
|
4556
4592
|
:allocated_capacity,
|
4557
|
-
:timeout
|
4593
|
+
:timeout,
|
4594
|
+
:notification_property)
|
4558
4595
|
include Aws::Structure
|
4559
4596
|
end
|
4560
4597
|
|
@@ -4723,6 +4760,27 @@ module Aws::Glue
|
|
4723
4760
|
include Aws::Structure
|
4724
4761
|
end
|
4725
4762
|
|
4763
|
+
# Specifies configuration properties of a notification.
|
4764
|
+
#
|
4765
|
+
# @note When making an API call, you may pass NotificationProperty
|
4766
|
+
# data as a hash:
|
4767
|
+
#
|
4768
|
+
# {
|
4769
|
+
# notify_delay_after: 1,
|
4770
|
+
# }
|
4771
|
+
#
|
4772
|
+
# @!attribute [rw] notify_delay_after
|
4773
|
+
# After a job run starts, the number of minutes to wait before sending
|
4774
|
+
# a job run delay notification.
|
4775
|
+
# @return [Integer]
|
4776
|
+
#
|
4777
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/NotificationProperty AWS API Documentation
|
4778
|
+
#
|
4779
|
+
class NotificationProperty < Struct.new(
|
4780
|
+
:notify_delay_after)
|
4781
|
+
include Aws::Structure
|
4782
|
+
end
|
4783
|
+
|
4726
4784
|
# Specifies the sort order of a sorted column.
|
4727
4785
|
#
|
4728
4786
|
# @note When making an API call, you may pass Order
|
@@ -5303,6 +5361,9 @@ module Aws::Glue
|
|
5303
5361
|
# },
|
5304
5362
|
# allocated_capacity: 1,
|
5305
5363
|
# timeout: 1,
|
5364
|
+
# notification_property: {
|
5365
|
+
# notify_delay_after: 1,
|
5366
|
+
# },
|
5306
5367
|
# }
|
5307
5368
|
#
|
5308
5369
|
# @!attribute [rw] job_name
|
@@ -5351,6 +5412,10 @@ module Aws::Glue
|
|
5351
5412
|
# the job.
|
5352
5413
|
# @return [Integer]
|
5353
5414
|
#
|
5415
|
+
# @!attribute [rw] notification_property
|
5416
|
+
# Specifies configuration properties of a job run notification.
|
5417
|
+
# @return [Types::NotificationProperty]
|
5418
|
+
#
|
5354
5419
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StartJobRunRequest AWS API Documentation
|
5355
5420
|
#
|
5356
5421
|
class StartJobRunRequest < Struct.new(
|
@@ -5358,7 +5423,8 @@ module Aws::Glue
|
|
5358
5423
|
:job_run_id,
|
5359
5424
|
:arguments,
|
5360
5425
|
:allocated_capacity,
|
5361
|
-
:timeout
|
5426
|
+
:timeout,
|
5427
|
+
:notification_property)
|
5362
5428
|
include Aws::Structure
|
5363
5429
|
end
|
5364
5430
|
|
@@ -5956,6 +6022,9 @@ module Aws::Glue
|
|
5956
6022
|
# "GenericString" => "GenericString",
|
5957
6023
|
# },
|
5958
6024
|
# timeout: 1,
|
6025
|
+
# notification_property: {
|
6026
|
+
# notify_delay_after: 1,
|
6027
|
+
# },
|
5959
6028
|
# },
|
5960
6029
|
# ],
|
5961
6030
|
# predicate: {
|
@@ -6404,6 +6473,9 @@ module Aws::Glue
|
|
6404
6473
|
# max_retries: 1,
|
6405
6474
|
# allocated_capacity: 1,
|
6406
6475
|
# timeout: 1,
|
6476
|
+
# notification_property: {
|
6477
|
+
# notify_delay_after: 1,
|
6478
|
+
# },
|
6407
6479
|
# },
|
6408
6480
|
# }
|
6409
6481
|
#
|
@@ -6680,6 +6752,9 @@ module Aws::Glue
|
|
6680
6752
|
# "GenericString" => "GenericString",
|
6681
6753
|
# },
|
6682
6754
|
# timeout: 1,
|
6755
|
+
# notification_property: {
|
6756
|
+
# notify_delay_after: 1,
|
6757
|
+
# },
|
6683
6758
|
# },
|
6684
6759
|
# ],
|
6685
6760
|
# predicate: {
|
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.8.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: 2018-
|
11
|
+
date: 2018-05-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
version: '0'
|
76
76
|
requirements: []
|
77
77
|
rubyforge_project:
|
78
|
-
rubygems_version: 2.5.2.
|
78
|
+
rubygems_version: 2.5.2.3
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: AWS SDK for Ruby - AWS Glue
|