aws-sdk-emr 1.30.1 → 1.31.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-emr.rb +3 -1
- data/lib/aws-sdk-emr/client.rb +6 -1
- data/lib/aws-sdk-emr/client_api.rb +3 -0
- data/lib/aws-sdk-emr/customizations.rb +1 -0
- data/lib/aws-sdk-emr/errors.rb +2 -0
- data/lib/aws-sdk-emr/resource.rb +2 -0
- data/lib/aws-sdk-emr/types.rb +20 -6
- data/lib/aws-sdk-emr/waiters.rb +2 -0
- 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: b1ab93db3d5d2ff0d62fa04b510ced47cb7bcace75f90fdc71f34cae1524c210
|
4
|
+
data.tar.gz: 95bf9f859ea996140e78fe0813de08a862b312cf5c65025dd018b0304f1ad78b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c77ee51431d5642bc13cb3f8ca9f972f209910f5a76495a12e3dc56d1d4b9d661764857d038cc34fe2d536d7bbe174d668c74df371d3cb74de0e3ac9616053be
|
7
|
+
data.tar.gz: 8aa00d9e43226e511346809bb0c4c23a60d2458a4634de5f23cffbde3b93514d56e77ec6699bce9a970f3787bf9ed51b7098a27b7b34aa65f47bdbac24f6b7b2
|
data/lib/aws-sdk-emr.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -46,6 +48,6 @@ require_relative 'aws-sdk-emr/customizations'
|
|
46
48
|
# @service
|
47
49
|
module Aws::EMR
|
48
50
|
|
49
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.31.0'
|
50
52
|
|
51
53
|
end
|
data/lib/aws-sdk-emr/client.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -1108,6 +1110,7 @@ module Aws::EMR
|
|
1108
1110
|
# resp.managed_scaling_policy.compute_limits.minimum_capacity_units #=> Integer
|
1109
1111
|
# resp.managed_scaling_policy.compute_limits.maximum_capacity_units #=> Integer
|
1110
1112
|
# resp.managed_scaling_policy.compute_limits.maximum_on_demand_capacity_units #=> Integer
|
1113
|
+
# resp.managed_scaling_policy.compute_limits.maximum_core_capacity_units #=> Integer
|
1111
1114
|
#
|
1112
1115
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/GetManagedScalingPolicy AWS API Documentation
|
1113
1116
|
#
|
@@ -1893,6 +1896,7 @@ module Aws::EMR
|
|
1893
1896
|
# minimum_capacity_units: 1, # required
|
1894
1897
|
# maximum_capacity_units: 1, # required
|
1895
1898
|
# maximum_on_demand_capacity_units: 1,
|
1899
|
+
# maximum_core_capacity_units: 1,
|
1896
1900
|
# },
|
1897
1901
|
# },
|
1898
1902
|
# })
|
@@ -2477,6 +2481,7 @@ module Aws::EMR
|
|
2477
2481
|
# minimum_capacity_units: 1, # required
|
2478
2482
|
# maximum_capacity_units: 1, # required
|
2479
2483
|
# maximum_on_demand_capacity_units: 1,
|
2484
|
+
# maximum_core_capacity_units: 1,
|
2480
2485
|
# },
|
2481
2486
|
# },
|
2482
2487
|
# })
|
@@ -2631,7 +2636,7 @@ module Aws::EMR
|
|
2631
2636
|
params: params,
|
2632
2637
|
config: config)
|
2633
2638
|
context[:gem_name] = 'aws-sdk-emr'
|
2634
|
-
context[:gem_version] = '1.
|
2639
|
+
context[:gem_version] = '1.31.0'
|
2635
2640
|
Seahorse::Client::Request.new(handlers, context)
|
2636
2641
|
end
|
2637
2642
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -421,6 +423,7 @@ module Aws::EMR
|
|
421
423
|
ComputeLimits.add_member(:minimum_capacity_units, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "MinimumCapacityUnits"))
|
422
424
|
ComputeLimits.add_member(:maximum_capacity_units, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "MaximumCapacityUnits"))
|
423
425
|
ComputeLimits.add_member(:maximum_on_demand_capacity_units, Shapes::ShapeRef.new(shape: Integer, location_name: "MaximumOnDemandCapacityUnits"))
|
426
|
+
ComputeLimits.add_member(:maximum_core_capacity_units, Shapes::ShapeRef.new(shape: Integer, location_name: "MaximumCoreCapacityUnits"))
|
424
427
|
ComputeLimits.struct_class = Types::ComputeLimits
|
425
428
|
|
426
429
|
Configuration.add_member(:classification, Shapes::ShapeRef.new(shape: String, location_name: "Classification"))
|
data/lib/aws-sdk-emr/errors.rb
CHANGED
data/lib/aws-sdk-emr/resource.rb
CHANGED
data/lib/aws-sdk-emr/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -1155,6 +1157,7 @@ module Aws::EMR
|
|
1155
1157
|
# minimum_capacity_units: 1, # required
|
1156
1158
|
# maximum_capacity_units: 1, # required
|
1157
1159
|
# maximum_on_demand_capacity_units: 1,
|
1160
|
+
# maximum_core_capacity_units: 1,
|
1158
1161
|
# }
|
1159
1162
|
#
|
1160
1163
|
# @!attribute [rw] unit_type
|
@@ -1178,12 +1181,19 @@ module Aws::EMR
|
|
1178
1181
|
# @return [Integer]
|
1179
1182
|
#
|
1180
1183
|
# @!attribute [rw] maximum_on_demand_capacity_units
|
1181
|
-
# The upper boundary of
|
1184
|
+
# The upper boundary of On-Demand EC2 units. It is measured through
|
1182
1185
|
# VCPU cores or instances for instance groups and measured through
|
1183
|
-
# units for instance fleets. The
|
1184
|
-
# scale beyond this boundary. The
|
1185
|
-
#
|
1186
|
-
#
|
1186
|
+
# units for instance fleets. The On-Demand units are not allowed to
|
1187
|
+
# scale beyond this boundary. The parameter is used to split capacity
|
1188
|
+
# allocation between On-Demand and Spot instances.
|
1189
|
+
# @return [Integer]
|
1190
|
+
#
|
1191
|
+
# @!attribute [rw] maximum_core_capacity_units
|
1192
|
+
# The upper boundary of EC2 units for core node type in a cluster. It
|
1193
|
+
# is measured through VCPU cores or instances for instance groups and
|
1194
|
+
# measured through units for instance fleets. The core units are not
|
1195
|
+
# allowed to scale beyond this boundary. The parameter is used to
|
1196
|
+
# split capacity allocation between core and task nodes.
|
1187
1197
|
# @return [Integer]
|
1188
1198
|
#
|
1189
1199
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ComputeLimits AWS API Documentation
|
@@ -1192,7 +1202,8 @@ module Aws::EMR
|
|
1192
1202
|
:unit_type,
|
1193
1203
|
:minimum_capacity_units,
|
1194
1204
|
:maximum_capacity_units,
|
1195
|
-
:maximum_on_demand_capacity_units
|
1205
|
+
:maximum_on_demand_capacity_units,
|
1206
|
+
:maximum_core_capacity_units)
|
1196
1207
|
include Aws::Structure
|
1197
1208
|
end
|
1198
1209
|
|
@@ -4119,6 +4130,7 @@ module Aws::EMR
|
|
4119
4130
|
# minimum_capacity_units: 1, # required
|
4120
4131
|
# maximum_capacity_units: 1, # required
|
4121
4132
|
# maximum_on_demand_capacity_units: 1,
|
4133
|
+
# maximum_core_capacity_units: 1,
|
4122
4134
|
# },
|
4123
4135
|
# }
|
4124
4136
|
#
|
@@ -4503,6 +4515,7 @@ module Aws::EMR
|
|
4503
4515
|
# minimum_capacity_units: 1, # required
|
4504
4516
|
# maximum_capacity_units: 1, # required
|
4505
4517
|
# maximum_on_demand_capacity_units: 1,
|
4518
|
+
# maximum_core_capacity_units: 1,
|
4506
4519
|
# },
|
4507
4520
|
# },
|
4508
4521
|
# }
|
@@ -4848,6 +4861,7 @@ module Aws::EMR
|
|
4848
4861
|
# minimum_capacity_units: 1, # required
|
4849
4862
|
# maximum_capacity_units: 1, # required
|
4850
4863
|
# maximum_on_demand_capacity_units: 1,
|
4864
|
+
# maximum_core_capacity_units: 1,
|
4851
4865
|
# },
|
4852
4866
|
# },
|
4853
4867
|
# }
|
data/lib/aws-sdk-emr/waiters.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-emr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.31.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: 2020-06-
|
11
|
+
date: 2020-06-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|