aws-sdk-glue 1.22.0 → 1.23.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-glue.rb +1 -1
- data/lib/aws-sdk-glue/client.rb +24 -1
- data/lib/aws-sdk-glue/client_api.rb +11 -5
- data/lib/aws-sdk-glue/types.rb +63 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85c550cecde739bef232d0ea3a3d488be0e49799
|
4
|
+
data.tar.gz: 1b4be41dfad71bb1aa1585a48cf50a63bf89f8c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16f1af24ca171146a4d692ad3fd505b49de20defb30e4283d5ef31e9577da869d8df811b2c6ce34895a1172bdc2edc811bf9c4fc089b42d5d114add8815725c2
|
7
|
+
data.tar.gz: 90d9f366b48fdc3ae9bc31046695c7d11daeb274513a0561137f83156ff295e94db8de2d9d75a37617656f0188e96809305a730ae9a3419adb3d59cca4afe5dc
|
data/lib/aws-sdk-glue.rb
CHANGED
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -1020,6 +1020,8 @@ module Aws::Glue
|
|
1020
1020
|
# The maximum number of times to retry this job if it fails.
|
1021
1021
|
#
|
1022
1022
|
# @option params [Integer] :allocated_capacity
|
1023
|
+
# This parameter is deprecated. Use `MaxCapacity` instead.
|
1024
|
+
#
|
1023
1025
|
# The number of AWS Glue data processing units (DPUs) to allocate to
|
1024
1026
|
# this Job. From 2 to 100 DPUs can be allocated; the default is 10. A
|
1025
1027
|
# DPU is a relative measure of processing power that consists of 4 vCPUs
|
@@ -1035,6 +1037,12 @@ module Aws::Glue
|
|
1035
1037
|
# can consume resources before it is terminated and enters `TIMEOUT`
|
1036
1038
|
# status. The default is 2,880 minutes (48 hours).
|
1037
1039
|
#
|
1040
|
+
# @option params [Float] :max_capacity
|
1041
|
+
# AWS Glue supports running jobs on a `JobCommand.Name`="pythonshell"
|
1042
|
+
# with allocated processing as low as 0.0625 DPU, which can be specified
|
1043
|
+
# using `MaxCapacity`. Glue ETL jobs running in any other way cannot
|
1044
|
+
# have fractional DPU allocations.
|
1045
|
+
#
|
1038
1046
|
# @option params [Types::NotificationProperty] :notification_property
|
1039
1047
|
# Specifies configuration properties of a job notification.
|
1040
1048
|
#
|
@@ -1069,6 +1077,7 @@ module Aws::Glue
|
|
1069
1077
|
# max_retries: 1,
|
1070
1078
|
# allocated_capacity: 1,
|
1071
1079
|
# timeout: 1,
|
1080
|
+
# max_capacity: 1.0,
|
1072
1081
|
# notification_property: {
|
1073
1082
|
# notify_delay_after: 1,
|
1074
1083
|
# },
|
@@ -2627,6 +2636,7 @@ module Aws::Glue
|
|
2627
2636
|
# resp.job.max_retries #=> Integer
|
2628
2637
|
# resp.job.allocated_capacity #=> Integer
|
2629
2638
|
# resp.job.timeout #=> Integer
|
2639
|
+
# resp.job.max_capacity #=> Float
|
2630
2640
|
# resp.job.notification_property.notify_delay_after #=> Integer
|
2631
2641
|
# resp.job.security_configuration #=> String
|
2632
2642
|
#
|
@@ -2682,6 +2692,7 @@ module Aws::Glue
|
|
2682
2692
|
# resp.job_run.allocated_capacity #=> Integer
|
2683
2693
|
# resp.job_run.execution_time #=> Integer
|
2684
2694
|
# resp.job_run.timeout #=> Integer
|
2695
|
+
# resp.job_run.max_capacity #=> Float
|
2685
2696
|
# resp.job_run.notification_property.notify_delay_after #=> Integer
|
2686
2697
|
# resp.job_run.security_configuration #=> String
|
2687
2698
|
# resp.job_run.log_group_name #=> String
|
@@ -2740,6 +2751,7 @@ module Aws::Glue
|
|
2740
2751
|
# resp.job_runs[0].allocated_capacity #=> Integer
|
2741
2752
|
# resp.job_runs[0].execution_time #=> Integer
|
2742
2753
|
# resp.job_runs[0].timeout #=> Integer
|
2754
|
+
# resp.job_runs[0].max_capacity #=> Float
|
2743
2755
|
# resp.job_runs[0].notification_property.notify_delay_after #=> Integer
|
2744
2756
|
# resp.job_runs[0].security_configuration #=> String
|
2745
2757
|
# resp.job_runs[0].log_group_name #=> String
|
@@ -2793,6 +2805,7 @@ module Aws::Glue
|
|
2793
2805
|
# resp.jobs[0].max_retries #=> Integer
|
2794
2806
|
# resp.jobs[0].allocated_capacity #=> Integer
|
2795
2807
|
# resp.jobs[0].timeout #=> Integer
|
2808
|
+
# resp.jobs[0].max_capacity #=> Float
|
2796
2809
|
# resp.jobs[0].notification_property.notify_delay_after #=> Integer
|
2797
2810
|
# resp.jobs[0].security_configuration #=> String
|
2798
2811
|
# resp.next_token #=> String
|
@@ -4115,6 +4128,8 @@ module Aws::Glue
|
|
4115
4128
|
# [2]: http://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html
|
4116
4129
|
#
|
4117
4130
|
# @option params [Integer] :allocated_capacity
|
4131
|
+
# This field is deprecated, use `MaxCapacity` instead.
|
4132
|
+
#
|
4118
4133
|
# The number of AWS Glue data processing units (DPUs) to allocate to
|
4119
4134
|
# this JobRun. From 2 to 100 DPUs can be allocated; the default is 10. A
|
4120
4135
|
# DPU is a relative measure of processing power that consists of 4 vCPUs
|
@@ -4131,6 +4146,12 @@ module Aws::Glue
|
|
4131
4146
|
# status. The default is 2,880 minutes (48 hours). This overrides the
|
4132
4147
|
# timeout value set in the parent job.
|
4133
4148
|
#
|
4149
|
+
# @option params [Float] :max_capacity
|
4150
|
+
# AWS Glue supports running jobs on a `JobCommand.Name`="pythonshell"
|
4151
|
+
# with allocated processing as low as 0.0625 DPU, which can be specified
|
4152
|
+
# using `MaxCapacity`. Glue ETL jobs running in any other way cannot
|
4153
|
+
# have fractional DPU allocations.
|
4154
|
+
#
|
4134
4155
|
# @option params [Types::NotificationProperty] :notification_property
|
4135
4156
|
# Specifies configuration properties of a job run notification.
|
4136
4157
|
#
|
@@ -4152,6 +4173,7 @@ module Aws::Glue
|
|
4152
4173
|
# },
|
4153
4174
|
# allocated_capacity: 1,
|
4154
4175
|
# timeout: 1,
|
4176
|
+
# max_capacity: 1.0,
|
4155
4177
|
# notification_property: {
|
4156
4178
|
# notify_delay_after: 1,
|
4157
4179
|
# },
|
@@ -4622,6 +4644,7 @@ module Aws::Glue
|
|
4622
4644
|
# max_retries: 1,
|
4623
4645
|
# allocated_capacity: 1,
|
4624
4646
|
# timeout: 1,
|
4647
|
+
# max_capacity: 1.0,
|
4625
4648
|
# notification_property: {
|
4626
4649
|
# notify_delay_after: 1,
|
4627
4650
|
# },
|
@@ -4963,7 +4986,7 @@ module Aws::Glue
|
|
4963
4986
|
params: params,
|
4964
4987
|
config: config)
|
4965
4988
|
context[:gem_name] = 'aws-sdk-glue'
|
4966
|
-
context[:gem_version] = '1.
|
4989
|
+
context[:gem_version] = '1.23.0'
|
4967
4990
|
Seahorse::Client::Request.new(handlers, context)
|
4968
4991
|
end
|
4969
4992
|
|
@@ -303,6 +303,7 @@ module Aws::Glue
|
|
303
303
|
NonNegativeInteger = Shapes::IntegerShape.new(name: 'NonNegativeInteger')
|
304
304
|
NotificationProperty = Shapes::StructureShape.new(name: 'NotificationProperty')
|
305
305
|
NotifyDelayAfter = Shapes::IntegerShape.new(name: 'NotifyDelayAfter')
|
306
|
+
NullableDouble = Shapes::FloatShape.new(name: 'NullableDouble')
|
306
307
|
OperationTimeoutException = Shapes::StructureShape.new(name: 'OperationTimeoutException')
|
307
308
|
Order = Shapes::StructureShape.new(name: 'Order')
|
308
309
|
OrderList = Shapes::ListShape.new(name: 'OrderList')
|
@@ -740,8 +741,9 @@ module Aws::Glue
|
|
740
741
|
CreateJobRequest.add_member(:default_arguments, Shapes::ShapeRef.new(shape: GenericMap, location_name: "DefaultArguments"))
|
741
742
|
CreateJobRequest.add_member(:connections, Shapes::ShapeRef.new(shape: ConnectionsList, location_name: "Connections"))
|
742
743
|
CreateJobRequest.add_member(:max_retries, Shapes::ShapeRef.new(shape: MaxRetries, location_name: "MaxRetries"))
|
743
|
-
CreateJobRequest.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "AllocatedCapacity"))
|
744
|
+
CreateJobRequest.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, deprecated: true, location_name: "AllocatedCapacity", metadata: {"deprecatedMessage"=>"This property is deprecated, use MaxCapacity instead."}))
|
744
745
|
CreateJobRequest.add_member(:timeout, Shapes::ShapeRef.new(shape: Timeout, location_name: "Timeout"))
|
746
|
+
CreateJobRequest.add_member(:max_capacity, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "MaxCapacity"))
|
745
747
|
CreateJobRequest.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
|
746
748
|
CreateJobRequest.add_member(:security_configuration, Shapes::ShapeRef.new(shape: NameString, location_name: "SecurityConfiguration"))
|
747
749
|
CreateJobRequest.struct_class = Types::CreateJobRequest
|
@@ -1279,8 +1281,9 @@ module Aws::Glue
|
|
1279
1281
|
Job.add_member(:default_arguments, Shapes::ShapeRef.new(shape: GenericMap, location_name: "DefaultArguments"))
|
1280
1282
|
Job.add_member(:connections, Shapes::ShapeRef.new(shape: ConnectionsList, location_name: "Connections"))
|
1281
1283
|
Job.add_member(:max_retries, Shapes::ShapeRef.new(shape: MaxRetries, location_name: "MaxRetries"))
|
1282
|
-
Job.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "AllocatedCapacity"))
|
1284
|
+
Job.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, deprecated: true, location_name: "AllocatedCapacity", metadata: {"deprecatedMessage"=>"This property is deprecated, use MaxCapacity instead."}))
|
1283
1285
|
Job.add_member(:timeout, Shapes::ShapeRef.new(shape: Timeout, location_name: "Timeout"))
|
1286
|
+
Job.add_member(:max_capacity, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "MaxCapacity"))
|
1284
1287
|
Job.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
|
1285
1288
|
Job.add_member(:security_configuration, Shapes::ShapeRef.new(shape: NameString, location_name: "SecurityConfiguration"))
|
1286
1289
|
Job.struct_class = Types::Job
|
@@ -1314,9 +1317,10 @@ module Aws::Glue
|
|
1314
1317
|
JobRun.add_member(:arguments, Shapes::ShapeRef.new(shape: GenericMap, location_name: "Arguments"))
|
1315
1318
|
JobRun.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorString, location_name: "ErrorMessage"))
|
1316
1319
|
JobRun.add_member(:predecessor_runs, Shapes::ShapeRef.new(shape: PredecessorList, location_name: "PredecessorRuns"))
|
1317
|
-
JobRun.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "AllocatedCapacity"))
|
1320
|
+
JobRun.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, deprecated: true, location_name: "AllocatedCapacity", metadata: {"deprecatedMessage"=>"This property is deprecated, use MaxCapacity instead."}))
|
1318
1321
|
JobRun.add_member(:execution_time, Shapes::ShapeRef.new(shape: ExecutionTime, location_name: "ExecutionTime"))
|
1319
1322
|
JobRun.add_member(:timeout, Shapes::ShapeRef.new(shape: Timeout, location_name: "Timeout"))
|
1323
|
+
JobRun.add_member(:max_capacity, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "MaxCapacity"))
|
1320
1324
|
JobRun.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
|
1321
1325
|
JobRun.add_member(:security_configuration, Shapes::ShapeRef.new(shape: NameString, location_name: "SecurityConfiguration"))
|
1322
1326
|
JobRun.add_member(:log_group_name, Shapes::ShapeRef.new(shape: GenericString, location_name: "LogGroupName"))
|
@@ -1332,8 +1336,9 @@ module Aws::Glue
|
|
1332
1336
|
JobUpdate.add_member(:default_arguments, Shapes::ShapeRef.new(shape: GenericMap, location_name: "DefaultArguments"))
|
1333
1337
|
JobUpdate.add_member(:connections, Shapes::ShapeRef.new(shape: ConnectionsList, location_name: "Connections"))
|
1334
1338
|
JobUpdate.add_member(:max_retries, Shapes::ShapeRef.new(shape: MaxRetries, location_name: "MaxRetries"))
|
1335
|
-
JobUpdate.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "AllocatedCapacity"))
|
1339
|
+
JobUpdate.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, deprecated: true, location_name: "AllocatedCapacity", metadata: {"deprecatedMessage"=>"This property is deprecated, use MaxCapacity instead."}))
|
1336
1340
|
JobUpdate.add_member(:timeout, Shapes::ShapeRef.new(shape: Timeout, location_name: "Timeout"))
|
1341
|
+
JobUpdate.add_member(:max_capacity, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "MaxCapacity"))
|
1337
1342
|
JobUpdate.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
|
1338
1343
|
JobUpdate.add_member(:security_configuration, Shapes::ShapeRef.new(shape: NameString, location_name: "SecurityConfiguration"))
|
1339
1344
|
JobUpdate.struct_class = Types::JobUpdate
|
@@ -1518,8 +1523,9 @@ module Aws::Glue
|
|
1518
1523
|
StartJobRunRequest.add_member(:job_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "JobName"))
|
1519
1524
|
StartJobRunRequest.add_member(:job_run_id, Shapes::ShapeRef.new(shape: IdString, location_name: "JobRunId"))
|
1520
1525
|
StartJobRunRequest.add_member(:arguments, Shapes::ShapeRef.new(shape: GenericMap, location_name: "Arguments"))
|
1521
|
-
StartJobRunRequest.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "AllocatedCapacity"))
|
1526
|
+
StartJobRunRequest.add_member(:allocated_capacity, Shapes::ShapeRef.new(shape: IntegerValue, deprecated: true, location_name: "AllocatedCapacity", metadata: {"deprecatedMessage"=>"This property is deprecated, use MaxCapacity instead."}))
|
1522
1527
|
StartJobRunRequest.add_member(:timeout, Shapes::ShapeRef.new(shape: Timeout, location_name: "Timeout"))
|
1528
|
+
StartJobRunRequest.add_member(:max_capacity, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "MaxCapacity"))
|
1523
1529
|
StartJobRunRequest.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
|
1524
1530
|
StartJobRunRequest.add_member(:security_configuration, Shapes::ShapeRef.new(shape: NameString, location_name: "SecurityConfiguration"))
|
1525
1531
|
StartJobRunRequest.struct_class = Types::StartJobRunRequest
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -1710,6 +1710,7 @@ module Aws::Glue
|
|
1710
1710
|
# max_retries: 1,
|
1711
1711
|
# allocated_capacity: 1,
|
1712
1712
|
# timeout: 1,
|
1713
|
+
# max_capacity: 1.0,
|
1713
1714
|
# notification_property: {
|
1714
1715
|
# notify_delay_after: 1,
|
1715
1716
|
# },
|
@@ -1771,6 +1772,8 @@ module Aws::Glue
|
|
1771
1772
|
# @return [Integer]
|
1772
1773
|
#
|
1773
1774
|
# @!attribute [rw] allocated_capacity
|
1775
|
+
# This parameter is deprecated. Use `MaxCapacity` instead.
|
1776
|
+
#
|
1774
1777
|
# The number of AWS Glue data processing units (DPUs) to allocate to
|
1775
1778
|
# this Job. From 2 to 100 DPUs can be allocated; the default is 10. A
|
1776
1779
|
# DPU is a relative measure of processing power that consists of 4
|
@@ -1788,6 +1791,14 @@ module Aws::Glue
|
|
1788
1791
|
# status. The default is 2,880 minutes (48 hours).
|
1789
1792
|
# @return [Integer]
|
1790
1793
|
#
|
1794
|
+
# @!attribute [rw] max_capacity
|
1795
|
+
# AWS Glue supports running jobs on a
|
1796
|
+
# `JobCommand.Name`="pythonshell" with allocated processing as low
|
1797
|
+
# as 0.0625 DPU, which can be specified using `MaxCapacity`. Glue ETL
|
1798
|
+
# jobs running in any other way cannot have fractional DPU
|
1799
|
+
# allocations.
|
1800
|
+
# @return [Float]
|
1801
|
+
#
|
1791
1802
|
# @!attribute [rw] notification_property
|
1792
1803
|
# Specifies configuration properties of a job notification.
|
1793
1804
|
# @return [Types::NotificationProperty]
|
@@ -1811,6 +1822,7 @@ module Aws::Glue
|
|
1811
1822
|
:max_retries,
|
1812
1823
|
:allocated_capacity,
|
1813
1824
|
:timeout,
|
1825
|
+
:max_capacity,
|
1814
1826
|
:notification_property,
|
1815
1827
|
:security_configuration)
|
1816
1828
|
include Aws::Structure
|
@@ -4968,6 +4980,8 @@ module Aws::Glue
|
|
4968
4980
|
# @return [Integer]
|
4969
4981
|
#
|
4970
4982
|
# @!attribute [rw] allocated_capacity
|
4983
|
+
# This field is deprecated, use `MaxCapacity` instead.
|
4984
|
+
#
|
4971
4985
|
# The number of AWS Glue data processing units (DPUs) allocated to
|
4972
4986
|
# runs of this job. From 2 to 100 DPUs can be allocated; the default
|
4973
4987
|
# is 10. A DPU is a relative measure of processing power that consists
|
@@ -4976,6 +4990,8 @@ module Aws::Glue
|
|
4976
4990
|
#
|
4977
4991
|
#
|
4978
4992
|
#
|
4993
|
+
#
|
4994
|
+
#
|
4979
4995
|
# [1]: https://aws.amazon.com/glue/pricing/
|
4980
4996
|
# @return [Integer]
|
4981
4997
|
#
|
@@ -4985,6 +5001,14 @@ module Aws::Glue
|
|
4985
5001
|
# status. The default is 2,880 minutes (48 hours).
|
4986
5002
|
# @return [Integer]
|
4987
5003
|
#
|
5004
|
+
# @!attribute [rw] max_capacity
|
5005
|
+
# AWS Glue supports running jobs on a
|
5006
|
+
# `JobCommand.Name`="pythonshell" with allocated processing as low
|
5007
|
+
# as 0.0625 DPU, which can be specified using `MaxCapacity`. Glue ETL
|
5008
|
+
# jobs running in any other way cannot have fractional DPU
|
5009
|
+
# allocations.
|
5010
|
+
# @return [Float]
|
5011
|
+
#
|
4988
5012
|
# @!attribute [rw] notification_property
|
4989
5013
|
# Specifies configuration properties of a job notification.
|
4990
5014
|
# @return [Types::NotificationProperty]
|
@@ -5010,6 +5034,7 @@ module Aws::Glue
|
|
5010
5034
|
:max_retries,
|
5011
5035
|
:allocated_capacity,
|
5012
5036
|
:timeout,
|
5037
|
+
:max_capacity,
|
5013
5038
|
:notification_property,
|
5014
5039
|
:security_configuration)
|
5015
5040
|
include Aws::Structure
|
@@ -5085,7 +5110,8 @@ module Aws::Glue
|
|
5085
5110
|
# }
|
5086
5111
|
#
|
5087
5112
|
# @!attribute [rw] name
|
5088
|
-
# The name of the job command: this must be `glueetl
|
5113
|
+
# The name of the job command: this must be `glueetl`, for an Apache
|
5114
|
+
# Spark ETL job, or `pythonshell`, for a Python shell job.
|
5089
5115
|
# @return [String]
|
5090
5116
|
#
|
5091
5117
|
# @!attribute [rw] script_location
|
@@ -5169,6 +5195,8 @@ module Aws::Glue
|
|
5169
5195
|
# @return [Array<Types::Predecessor>]
|
5170
5196
|
#
|
5171
5197
|
# @!attribute [rw] allocated_capacity
|
5198
|
+
# This field is deprecated, use `MaxCapacity` instead.
|
5199
|
+
#
|
5172
5200
|
# The number of AWS Glue data processing units (DPUs) allocated to
|
5173
5201
|
# this JobRun. From 2 to 100 DPUs can be allocated; the default is 10.
|
5174
5202
|
# A DPU is a relative measure of processing power that consists of 4
|
@@ -5191,6 +5219,14 @@ module Aws::Glue
|
|
5191
5219
|
# overrides the timeout value set in the parent job.
|
5192
5220
|
# @return [Integer]
|
5193
5221
|
#
|
5222
|
+
# @!attribute [rw] max_capacity
|
5223
|
+
# AWS Glue supports running jobs on a
|
5224
|
+
# `JobCommand.Name`="pythonshell" with allocated processing as low
|
5225
|
+
# as 0.0625 DPU, which can be specified using `MaxCapacity`. Glue ETL
|
5226
|
+
# jobs running in any other way cannot have fractional DPU
|
5227
|
+
# allocations.
|
5228
|
+
# @return [Float]
|
5229
|
+
#
|
5194
5230
|
# @!attribute [rw] notification_property
|
5195
5231
|
# Specifies configuration properties of a job run notification.
|
5196
5232
|
# @return [Types::NotificationProperty]
|
@@ -5228,6 +5264,7 @@ module Aws::Glue
|
|
5228
5264
|
:allocated_capacity,
|
5229
5265
|
:execution_time,
|
5230
5266
|
:timeout,
|
5267
|
+
:max_capacity,
|
5231
5268
|
:notification_property,
|
5232
5269
|
:security_configuration,
|
5233
5270
|
:log_group_name)
|
@@ -5261,6 +5298,7 @@ module Aws::Glue
|
|
5261
5298
|
# max_retries: 1,
|
5262
5299
|
# allocated_capacity: 1,
|
5263
5300
|
# timeout: 1,
|
5301
|
+
# max_capacity: 1.0,
|
5264
5302
|
# notification_property: {
|
5265
5303
|
# notify_delay_after: 1,
|
5266
5304
|
# },
|
@@ -5317,6 +5355,8 @@ module Aws::Glue
|
|
5317
5355
|
# @return [Integer]
|
5318
5356
|
#
|
5319
5357
|
# @!attribute [rw] allocated_capacity
|
5358
|
+
# This field is deprecated. Use `MaxCapacity` instead.
|
5359
|
+
#
|
5320
5360
|
# The number of AWS Glue data processing units (DPUs) to allocate to
|
5321
5361
|
# this Job. From 2 to 100 DPUs can be allocated; the default is 10. A
|
5322
5362
|
# DPU is a relative measure of processing power that consists of 4
|
@@ -5334,6 +5374,14 @@ module Aws::Glue
|
|
5334
5374
|
# status. The default is 2,880 minutes (48 hours).
|
5335
5375
|
# @return [Integer]
|
5336
5376
|
#
|
5377
|
+
# @!attribute [rw] max_capacity
|
5378
|
+
# AWS Glue supports running jobs on a
|
5379
|
+
# `JobCommand.Name`="pythonshell" with allocated processing as low
|
5380
|
+
# as 0.0625 DPU, which can be specified using `MaxCapacity`. Glue ETL
|
5381
|
+
# jobs running in any other way cannot have fractional DPU
|
5382
|
+
# allocations.
|
5383
|
+
# @return [Float]
|
5384
|
+
#
|
5337
5385
|
# @!attribute [rw] notification_property
|
5338
5386
|
# Specifies configuration properties of a job notification.
|
5339
5387
|
# @return [Types::NotificationProperty]
|
@@ -5356,6 +5404,7 @@ module Aws::Glue
|
|
5356
5404
|
:max_retries,
|
5357
5405
|
:allocated_capacity,
|
5358
5406
|
:timeout,
|
5407
|
+
:max_capacity,
|
5359
5408
|
:notification_property,
|
5360
5409
|
:security_configuration)
|
5361
5410
|
include Aws::Structure
|
@@ -6277,6 +6326,7 @@ module Aws::Glue
|
|
6277
6326
|
# },
|
6278
6327
|
# allocated_capacity: 1,
|
6279
6328
|
# timeout: 1,
|
6329
|
+
# max_capacity: 1.0,
|
6280
6330
|
# notification_property: {
|
6281
6331
|
# notify_delay_after: 1,
|
6282
6332
|
# },
|
@@ -6313,6 +6363,8 @@ module Aws::Glue
|
|
6313
6363
|
# @return [Hash<String,String>]
|
6314
6364
|
#
|
6315
6365
|
# @!attribute [rw] allocated_capacity
|
6366
|
+
# This field is deprecated, use `MaxCapacity` instead.
|
6367
|
+
#
|
6316
6368
|
# The number of AWS Glue data processing units (DPUs) to allocate to
|
6317
6369
|
# this JobRun. From 2 to 100 DPUs can be allocated; the default is 10.
|
6318
6370
|
# A DPU is a relative measure of processing power that consists of 4
|
@@ -6331,6 +6383,14 @@ module Aws::Glue
|
|
6331
6383
|
# overrides the timeout value set in the parent job.
|
6332
6384
|
# @return [Integer]
|
6333
6385
|
#
|
6386
|
+
# @!attribute [rw] max_capacity
|
6387
|
+
# AWS Glue supports running jobs on a
|
6388
|
+
# `JobCommand.Name`="pythonshell" with allocated processing as low
|
6389
|
+
# as 0.0625 DPU, which can be specified using `MaxCapacity`. Glue ETL
|
6390
|
+
# jobs running in any other way cannot have fractional DPU
|
6391
|
+
# allocations.
|
6392
|
+
# @return [Float]
|
6393
|
+
#
|
6334
6394
|
# @!attribute [rw] notification_property
|
6335
6395
|
# Specifies configuration properties of a job run notification.
|
6336
6396
|
# @return [Types::NotificationProperty]
|
@@ -6348,6 +6408,7 @@ module Aws::Glue
|
|
6348
6408
|
:arguments,
|
6349
6409
|
:allocated_capacity,
|
6350
6410
|
:timeout,
|
6411
|
+
:max_capacity,
|
6351
6412
|
:notification_property,
|
6352
6413
|
:security_configuration)
|
6353
6414
|
include Aws::Structure
|
@@ -7434,6 +7495,7 @@ module Aws::Glue
|
|
7434
7495
|
# max_retries: 1,
|
7435
7496
|
# allocated_capacity: 1,
|
7436
7497
|
# timeout: 1,
|
7498
|
+
# max_capacity: 1.0,
|
7437
7499
|
# notification_property: {
|
7438
7500
|
# notify_delay_after: 1,
|
7439
7501
|
# },
|
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.23.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:
|
11
|
+
date: 2019-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|