aws-sdk-emrserverless 1.19.0 → 1.20.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-emrserverless/client.rb +5 -1
- data/lib/aws-sdk-emrserverless/client_api.rb +2 -0
- data/lib/aws-sdk-emrserverless/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-emrserverless/types.rb +8 -1
- data/lib/aws-sdk-emrserverless.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +1 -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: 1b4c27496e07a551774faf80f2d02ba0bd8a1edd8875b6844a2012012eba07dc
|
4
|
+
data.tar.gz: f65ee1cfec3db78bb1352add5db68ddb964c07b85f902dd98d4eec89bea21f0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d33b6096908ebca38fff29507fd09d93b5747f80a2f2c1c4d48ffde485b66b6c96df3b9839de34339d6306c373ed887e5deea89561112ec01d36b70540bab345
|
7
|
+
data.tar.gz: 00be784c327ed8960cb6456a27a637c39e5ee8680f1c31582ceb6b2fcea5d7dce3c0f7313cd51a570d2161b714877a7b0837bdc629fe57ac383d98830ad299f7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.20.0 (2024-04-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for shuffle optimized disks that allow larger disk sizes and higher IOPS to efficiently run shuffle heavy workloads.
|
8
|
+
|
4
9
|
1.19.0 (2024-01-26)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.20.0
|
@@ -513,6 +513,7 @@ module Aws::EMRServerless
|
|
513
513
|
# cpu: "CpuSize", # required
|
514
514
|
# memory: "MemorySize", # required
|
515
515
|
# disk: "DiskSize",
|
516
|
+
# disk_type: "DiskType",
|
516
517
|
# },
|
517
518
|
# },
|
518
519
|
# },
|
@@ -645,6 +646,7 @@ module Aws::EMRServerless
|
|
645
646
|
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.cpu #=> String
|
646
647
|
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.memory #=> String
|
647
648
|
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.disk #=> String
|
649
|
+
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.disk_type #=> String
|
648
650
|
# resp.application.maximum_capacity.cpu #=> String
|
649
651
|
# resp.application.maximum_capacity.memory #=> String
|
650
652
|
# resp.application.maximum_capacity.disk #=> String
|
@@ -1266,6 +1268,7 @@ module Aws::EMRServerless
|
|
1266
1268
|
# cpu: "CpuSize", # required
|
1267
1269
|
# memory: "MemorySize", # required
|
1268
1270
|
# disk: "DiskSize",
|
1271
|
+
# disk_type: "DiskType",
|
1269
1272
|
# },
|
1270
1273
|
# },
|
1271
1274
|
# },
|
@@ -1343,6 +1346,7 @@ module Aws::EMRServerless
|
|
1343
1346
|
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.cpu #=> String
|
1344
1347
|
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.memory #=> String
|
1345
1348
|
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.disk #=> String
|
1349
|
+
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.disk_type #=> String
|
1346
1350
|
# resp.application.maximum_capacity.cpu #=> String
|
1347
1351
|
# resp.application.maximum_capacity.memory #=> String
|
1348
1352
|
# resp.application.maximum_capacity.disk #=> String
|
@@ -1402,7 +1406,7 @@ module Aws::EMRServerless
|
|
1402
1406
|
params: params,
|
1403
1407
|
config: config)
|
1404
1408
|
context[:gem_name] = 'aws-sdk-emrserverless'
|
1405
|
-
context[:gem_version] = '1.
|
1409
|
+
context[:gem_version] = '1.20.0'
|
1406
1410
|
Seahorse::Client::Request.new(handlers, context)
|
1407
1411
|
end
|
1408
1412
|
|
@@ -41,6 +41,7 @@ module Aws::EMRServerless
|
|
41
41
|
DeleteApplicationRequest = Shapes::StructureShape.new(name: 'DeleteApplicationRequest')
|
42
42
|
DeleteApplicationResponse = Shapes::StructureShape.new(name: 'DeleteApplicationResponse')
|
43
43
|
DiskSize = Shapes::StringShape.new(name: 'DiskSize')
|
44
|
+
DiskType = Shapes::StringShape.new(name: 'DiskType')
|
44
45
|
Double = Shapes::FloatShape.new(name: 'Double')
|
45
46
|
Duration = Shapes::IntegerShape.new(name: 'Duration')
|
46
47
|
EncryptionKeyArn = Shapes::StringShape.new(name: 'EncryptionKeyArn')
|
@@ -479,6 +480,7 @@ module Aws::EMRServerless
|
|
479
480
|
WorkerResourceConfig.add_member(:cpu, Shapes::ShapeRef.new(shape: CpuSize, required: true, location_name: "cpu"))
|
480
481
|
WorkerResourceConfig.add_member(:memory, Shapes::ShapeRef.new(shape: MemorySize, required: true, location_name: "memory"))
|
481
482
|
WorkerResourceConfig.add_member(:disk, Shapes::ShapeRef.new(shape: DiskSize, location_name: "disk"))
|
483
|
+
WorkerResourceConfig.add_member(:disk_type, Shapes::ShapeRef.new(shape: DiskType, location_name: "diskType"))
|
482
484
|
WorkerResourceConfig.struct_class = Types::WorkerResourceConfig
|
483
485
|
|
484
486
|
WorkerTypeSpecification.add_member(:image_configuration, Shapes::ShapeRef.new(shape: ImageConfiguration, location_name: "imageConfiguration"))
|
@@ -32,7 +32,7 @@ module Aws::EMRServerless
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://emr-serverless-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -1555,12 +1555,19 @@ module Aws::EMRServerless
|
|
1555
1555
|
# The disk requirements for every worker instance of the worker type.
|
1556
1556
|
# @return [String]
|
1557
1557
|
#
|
1558
|
+
# @!attribute [rw] disk_type
|
1559
|
+
# The disk type for every worker instance of the work type. Shuffle
|
1560
|
+
# optimized disks have higher performance characteristics and are
|
1561
|
+
# better for shuffle heavy workloads. Default is `STANDARD`.
|
1562
|
+
# @return [String]
|
1563
|
+
#
|
1558
1564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/WorkerResourceConfig AWS API Documentation
|
1559
1565
|
#
|
1560
1566
|
class WorkerResourceConfig < Struct.new(
|
1561
1567
|
:cpu,
|
1562
1568
|
:memory,
|
1563
|
-
:disk
|
1569
|
+
:disk,
|
1570
|
+
:disk_type)
|
1564
1571
|
SENSITIVE = []
|
1565
1572
|
include Aws::Structure
|
1566
1573
|
end
|
data/sig/client.rbs
CHANGED
@@ -101,7 +101,8 @@ module Aws
|
|
101
101
|
worker_configuration: {
|
102
102
|
cpu: ::String,
|
103
103
|
memory: ::String,
|
104
|
-
disk: ::String
|
104
|
+
disk: ::String?,
|
105
|
+
disk_type: ::String?
|
105
106
|
}?
|
106
107
|
}],
|
107
108
|
?maximum_capacity: {
|
@@ -343,7 +344,8 @@ module Aws
|
|
343
344
|
worker_configuration: {
|
344
345
|
cpu: ::String,
|
345
346
|
memory: ::String,
|
346
|
-
disk: ::String
|
347
|
+
disk: ::String?,
|
348
|
+
disk_type: ::String?
|
347
349
|
}?
|
348
350
|
}],
|
349
351
|
?maximum_capacity: {
|
data/sig/types.rbs
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-emrserverless
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.20.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-
|
11
|
+
date: 2024-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|