aws-sdk-emrserverless 1.19.0 → 1.21.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-emrserverless/client.rb +23 -7
- data/lib/aws-sdk-emrserverless/client_api.rb +12 -2
- data/lib/aws-sdk-emrserverless/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-emrserverless/types.rb +31 -2
- data/lib/aws-sdk-emrserverless.rb +1 -1
- data/sig/client.rbs +13 -2
- data/sig/types.rbs +7 -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: 7afeb7cf2da9edf72c180a16a8ca7df6f0e4a1288e62559c38e1f36421dd7c40
|
|
4
|
+
data.tar.gz: fdeb17824b2180cae4e67ee2b635c3e21124af4764b9cd43dabdbf30b32c2054
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0715cf38b9352b883aa7cc37f4d85e47bfc2f6a40290e5ad98522711357d83d9ee5b1c6fb4a8d6275487a6b50974aabfef22aa8b7d7efcd466801779d8cfca3c
|
|
7
|
+
data.tar.gz: 879ce095615bd0de67eff0896416ece5e6378a8d0b1eb0e82cbd07ebc27174ef1899fdf2e38ce459f3716cf94cbceb86c58e0aa7c6627dde1e1d9e663c20deac
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.21.0 (2024-04-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds the capability to publish detailed Spark engine metrics to Amazon Managed Service for Prometheus (AMP) for enhanced monitoring for Spark jobs.
|
|
8
|
+
|
|
9
|
+
1.20.0 (2024-04-16)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds support for shuffle optimized disks that allow larger disk sizes and higher IOPS to efficiently run shuffle heavy workloads.
|
|
13
|
+
|
|
4
14
|
1.19.0 (2024-01-26)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.21.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
|
# },
|
|
@@ -550,7 +551,7 @@ module Aws::EMRServerless
|
|
|
550
551
|
# {
|
|
551
552
|
# classification: "String1024", # required
|
|
552
553
|
# properties: {
|
|
553
|
-
# "
|
|
554
|
+
# "ConfigurationPropertyKey" => "ConfigurationPropertyValue",
|
|
554
555
|
# },
|
|
555
556
|
# configurations: {
|
|
556
557
|
# # recursive ConfigurationList
|
|
@@ -575,6 +576,9 @@ module Aws::EMRServerless
|
|
|
575
576
|
# "WorkerTypeString" => ["LogTypeString"],
|
|
576
577
|
# },
|
|
577
578
|
# },
|
|
579
|
+
# prometheus_monitoring_configuration: {
|
|
580
|
+
# remote_write_url: "PrometheusUrlString",
|
|
581
|
+
# },
|
|
578
582
|
# },
|
|
579
583
|
# })
|
|
580
584
|
#
|
|
@@ -645,6 +649,7 @@ module Aws::EMRServerless
|
|
|
645
649
|
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.cpu #=> String
|
|
646
650
|
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.memory #=> String
|
|
647
651
|
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.disk #=> String
|
|
652
|
+
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.disk_type #=> String
|
|
648
653
|
# resp.application.maximum_capacity.cpu #=> String
|
|
649
654
|
# resp.application.maximum_capacity.memory #=> String
|
|
650
655
|
# resp.application.maximum_capacity.disk #=> String
|
|
@@ -668,7 +673,7 @@ module Aws::EMRServerless
|
|
|
668
673
|
# resp.application.runtime_configuration #=> Array
|
|
669
674
|
# resp.application.runtime_configuration[0].classification #=> String
|
|
670
675
|
# resp.application.runtime_configuration[0].properties #=> Hash
|
|
671
|
-
# resp.application.runtime_configuration[0].properties["
|
|
676
|
+
# resp.application.runtime_configuration[0].properties["ConfigurationPropertyKey"] #=> String
|
|
672
677
|
# resp.application.runtime_configuration[0].configurations #=> Types::ConfigurationList
|
|
673
678
|
# resp.application.monitoring_configuration.s3_monitoring_configuration.log_uri #=> String
|
|
674
679
|
# resp.application.monitoring_configuration.s3_monitoring_configuration.encryption_key_arn #=> String
|
|
@@ -681,6 +686,7 @@ module Aws::EMRServerless
|
|
|
681
686
|
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types #=> Hash
|
|
682
687
|
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"] #=> Array
|
|
683
688
|
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"][0] #=> String
|
|
689
|
+
# resp.application.monitoring_configuration.prometheus_monitoring_configuration.remote_write_url #=> String
|
|
684
690
|
#
|
|
685
691
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/GetApplication AWS API Documentation
|
|
686
692
|
#
|
|
@@ -770,7 +776,7 @@ module Aws::EMRServerless
|
|
|
770
776
|
# resp.job_run.configuration_overrides.application_configuration #=> Array
|
|
771
777
|
# resp.job_run.configuration_overrides.application_configuration[0].classification #=> String
|
|
772
778
|
# resp.job_run.configuration_overrides.application_configuration[0].properties #=> Hash
|
|
773
|
-
# resp.job_run.configuration_overrides.application_configuration[0].properties["
|
|
779
|
+
# resp.job_run.configuration_overrides.application_configuration[0].properties["ConfigurationPropertyKey"] #=> String
|
|
774
780
|
# resp.job_run.configuration_overrides.application_configuration[0].configurations #=> Types::ConfigurationList
|
|
775
781
|
# resp.job_run.configuration_overrides.monitoring_configuration.s3_monitoring_configuration.log_uri #=> String
|
|
776
782
|
# resp.job_run.configuration_overrides.monitoring_configuration.s3_monitoring_configuration.encryption_key_arn #=> String
|
|
@@ -783,6 +789,7 @@ module Aws::EMRServerless
|
|
|
783
789
|
# resp.job_run.configuration_overrides.monitoring_configuration.cloud_watch_logging_configuration.log_types #=> Hash
|
|
784
790
|
# resp.job_run.configuration_overrides.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"] #=> Array
|
|
785
791
|
# resp.job_run.configuration_overrides.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"][0] #=> String
|
|
792
|
+
# resp.job_run.configuration_overrides.monitoring_configuration.prometheus_monitoring_configuration.remote_write_url #=> String
|
|
786
793
|
# resp.job_run.job_driver.spark_submit.entry_point #=> String
|
|
787
794
|
# resp.job_run.job_driver.spark_submit.entry_point_arguments #=> Array
|
|
788
795
|
# resp.job_run.job_driver.spark_submit.entry_point_arguments[0] #=> String
|
|
@@ -1046,7 +1053,7 @@ module Aws::EMRServerless
|
|
|
1046
1053
|
# {
|
|
1047
1054
|
# classification: "String1024", # required
|
|
1048
1055
|
# properties: {
|
|
1049
|
-
# "
|
|
1056
|
+
# "ConfigurationPropertyKey" => "ConfigurationPropertyValue",
|
|
1050
1057
|
# },
|
|
1051
1058
|
# configurations: {
|
|
1052
1059
|
# # recursive ConfigurationList
|
|
@@ -1071,6 +1078,9 @@ module Aws::EMRServerless
|
|
|
1071
1078
|
# "WorkerTypeString" => ["LogTypeString"],
|
|
1072
1079
|
# },
|
|
1073
1080
|
# },
|
|
1081
|
+
# prometheus_monitoring_configuration: {
|
|
1082
|
+
# remote_write_url: "PrometheusUrlString",
|
|
1083
|
+
# },
|
|
1074
1084
|
# },
|
|
1075
1085
|
# },
|
|
1076
1086
|
# tags: {
|
|
@@ -1266,6 +1276,7 @@ module Aws::EMRServerless
|
|
|
1266
1276
|
# cpu: "CpuSize", # required
|
|
1267
1277
|
# memory: "MemorySize", # required
|
|
1268
1278
|
# disk: "DiskSize",
|
|
1279
|
+
# disk_type: "DiskType",
|
|
1269
1280
|
# },
|
|
1270
1281
|
# },
|
|
1271
1282
|
# },
|
|
@@ -1301,7 +1312,7 @@ module Aws::EMRServerless
|
|
|
1301
1312
|
# {
|
|
1302
1313
|
# classification: "String1024", # required
|
|
1303
1314
|
# properties: {
|
|
1304
|
-
# "
|
|
1315
|
+
# "ConfigurationPropertyKey" => "ConfigurationPropertyValue",
|
|
1305
1316
|
# },
|
|
1306
1317
|
# configurations: {
|
|
1307
1318
|
# # recursive ConfigurationList
|
|
@@ -1326,6 +1337,9 @@ module Aws::EMRServerless
|
|
|
1326
1337
|
# "WorkerTypeString" => ["LogTypeString"],
|
|
1327
1338
|
# },
|
|
1328
1339
|
# },
|
|
1340
|
+
# prometheus_monitoring_configuration: {
|
|
1341
|
+
# remote_write_url: "PrometheusUrlString",
|
|
1342
|
+
# },
|
|
1329
1343
|
# },
|
|
1330
1344
|
# })
|
|
1331
1345
|
#
|
|
@@ -1343,6 +1357,7 @@ module Aws::EMRServerless
|
|
|
1343
1357
|
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.cpu #=> String
|
|
1344
1358
|
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.memory #=> String
|
|
1345
1359
|
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.disk #=> String
|
|
1360
|
+
# resp.application.initial_capacity["WorkerTypeString"].worker_configuration.disk_type #=> String
|
|
1346
1361
|
# resp.application.maximum_capacity.cpu #=> String
|
|
1347
1362
|
# resp.application.maximum_capacity.memory #=> String
|
|
1348
1363
|
# resp.application.maximum_capacity.disk #=> String
|
|
@@ -1366,7 +1381,7 @@ module Aws::EMRServerless
|
|
|
1366
1381
|
# resp.application.runtime_configuration #=> Array
|
|
1367
1382
|
# resp.application.runtime_configuration[0].classification #=> String
|
|
1368
1383
|
# resp.application.runtime_configuration[0].properties #=> Hash
|
|
1369
|
-
# resp.application.runtime_configuration[0].properties["
|
|
1384
|
+
# resp.application.runtime_configuration[0].properties["ConfigurationPropertyKey"] #=> String
|
|
1370
1385
|
# resp.application.runtime_configuration[0].configurations #=> Types::ConfigurationList
|
|
1371
1386
|
# resp.application.monitoring_configuration.s3_monitoring_configuration.log_uri #=> String
|
|
1372
1387
|
# resp.application.monitoring_configuration.s3_monitoring_configuration.encryption_key_arn #=> String
|
|
@@ -1379,6 +1394,7 @@ module Aws::EMRServerless
|
|
|
1379
1394
|
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types #=> Hash
|
|
1380
1395
|
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"] #=> Array
|
|
1381
1396
|
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"][0] #=> String
|
|
1397
|
+
# resp.application.monitoring_configuration.prometheus_monitoring_configuration.remote_write_url #=> String
|
|
1382
1398
|
#
|
|
1383
1399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/UpdateApplication AWS API Documentation
|
|
1384
1400
|
#
|
|
@@ -1402,7 +1418,7 @@ module Aws::EMRServerless
|
|
|
1402
1418
|
params: params,
|
|
1403
1419
|
config: config)
|
|
1404
1420
|
context[:gem_name] = 'aws-sdk-emrserverless'
|
|
1405
|
-
context[:gem_version] = '1.
|
|
1421
|
+
context[:gem_version] = '1.21.0'
|
|
1406
1422
|
Seahorse::Client::Request.new(handlers, context)
|
|
1407
1423
|
end
|
|
1408
1424
|
|
|
@@ -33,6 +33,8 @@ module Aws::EMRServerless
|
|
|
33
33
|
Configuration = Shapes::StructureShape.new(name: 'Configuration')
|
|
34
34
|
ConfigurationList = Shapes::ListShape.new(name: 'ConfigurationList')
|
|
35
35
|
ConfigurationOverrides = Shapes::StructureShape.new(name: 'ConfigurationOverrides')
|
|
36
|
+
ConfigurationPropertyKey = Shapes::StringShape.new(name: 'ConfigurationPropertyKey')
|
|
37
|
+
ConfigurationPropertyValue = Shapes::StringShape.new(name: 'ConfigurationPropertyValue')
|
|
36
38
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
37
39
|
CpuSize = Shapes::StringShape.new(name: 'CpuSize')
|
|
38
40
|
CreateApplicationRequest = Shapes::StructureShape.new(name: 'CreateApplicationRequest')
|
|
@@ -41,6 +43,7 @@ module Aws::EMRServerless
|
|
|
41
43
|
DeleteApplicationRequest = Shapes::StructureShape.new(name: 'DeleteApplicationRequest')
|
|
42
44
|
DeleteApplicationResponse = Shapes::StructureShape.new(name: 'DeleteApplicationResponse')
|
|
43
45
|
DiskSize = Shapes::StringShape.new(name: 'DiskSize')
|
|
46
|
+
DiskType = Shapes::StringShape.new(name: 'DiskType')
|
|
44
47
|
Double = Shapes::FloatShape.new(name: 'Double')
|
|
45
48
|
Duration = Shapes::IntegerShape.new(name: 'Duration')
|
|
46
49
|
EncryptionKeyArn = Shapes::StringShape.new(name: 'EncryptionKeyArn')
|
|
@@ -94,6 +97,8 @@ module Aws::EMRServerless
|
|
|
94
97
|
MonitoringConfiguration = Shapes::StructureShape.new(name: 'MonitoringConfiguration')
|
|
95
98
|
NetworkConfiguration = Shapes::StructureShape.new(name: 'NetworkConfiguration')
|
|
96
99
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
100
|
+
PrometheusMonitoringConfiguration = Shapes::StructureShape.new(name: 'PrometheusMonitoringConfiguration')
|
|
101
|
+
PrometheusUrlString = Shapes::StringShape.new(name: 'PrometheusUrlString')
|
|
97
102
|
Query = Shapes::StringShape.new(name: 'Query')
|
|
98
103
|
ReleaseLabel = Shapes::StringShape.new(name: 'ReleaseLabel')
|
|
99
104
|
RequestIdentityUserArn = Shapes::StringShape.new(name: 'RequestIdentityUserArn')
|
|
@@ -375,12 +380,16 @@ module Aws::EMRServerless
|
|
|
375
380
|
MonitoringConfiguration.add_member(:s3_monitoring_configuration, Shapes::ShapeRef.new(shape: S3MonitoringConfiguration, location_name: "s3MonitoringConfiguration"))
|
|
376
381
|
MonitoringConfiguration.add_member(:managed_persistence_monitoring_configuration, Shapes::ShapeRef.new(shape: ManagedPersistenceMonitoringConfiguration, location_name: "managedPersistenceMonitoringConfiguration"))
|
|
377
382
|
MonitoringConfiguration.add_member(:cloud_watch_logging_configuration, Shapes::ShapeRef.new(shape: CloudWatchLoggingConfiguration, location_name: "cloudWatchLoggingConfiguration"))
|
|
383
|
+
MonitoringConfiguration.add_member(:prometheus_monitoring_configuration, Shapes::ShapeRef.new(shape: PrometheusMonitoringConfiguration, location_name: "prometheusMonitoringConfiguration"))
|
|
378
384
|
MonitoringConfiguration.struct_class = Types::MonitoringConfiguration
|
|
379
385
|
|
|
380
386
|
NetworkConfiguration.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "subnetIds"))
|
|
381
387
|
NetworkConfiguration.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "securityGroupIds"))
|
|
382
388
|
NetworkConfiguration.struct_class = Types::NetworkConfiguration
|
|
383
389
|
|
|
390
|
+
PrometheusMonitoringConfiguration.add_member(:remote_write_url, Shapes::ShapeRef.new(shape: PrometheusUrlString, location_name: "remoteWriteUrl"))
|
|
391
|
+
PrometheusMonitoringConfiguration.struct_class = Types::PrometheusMonitoringConfiguration
|
|
392
|
+
|
|
384
393
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String1024, required: true, location_name: "message"))
|
|
385
394
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
|
386
395
|
|
|
@@ -395,8 +404,8 @@ module Aws::EMRServerless
|
|
|
395
404
|
|
|
396
405
|
SecurityGroupIds.member = Shapes::ShapeRef.new(shape: SecurityGroupString)
|
|
397
406
|
|
|
398
|
-
SensitivePropertiesMap.key = Shapes::ShapeRef.new(shape:
|
|
399
|
-
SensitivePropertiesMap.value = Shapes::ShapeRef.new(shape:
|
|
407
|
+
SensitivePropertiesMap.key = Shapes::ShapeRef.new(shape: ConfigurationPropertyKey)
|
|
408
|
+
SensitivePropertiesMap.value = Shapes::ShapeRef.new(shape: ConfigurationPropertyValue)
|
|
400
409
|
|
|
401
410
|
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String1024, required: true, location_name: "message"))
|
|
402
411
|
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
|
@@ -479,6 +488,7 @@ module Aws::EMRServerless
|
|
|
479
488
|
WorkerResourceConfig.add_member(:cpu, Shapes::ShapeRef.new(shape: CpuSize, required: true, location_name: "cpu"))
|
|
480
489
|
WorkerResourceConfig.add_member(:memory, Shapes::ShapeRef.new(shape: MemorySize, required: true, location_name: "memory"))
|
|
481
490
|
WorkerResourceConfig.add_member(:disk, Shapes::ShapeRef.new(shape: DiskSize, location_name: "disk"))
|
|
491
|
+
WorkerResourceConfig.add_member(:disk_type, Shapes::ShapeRef.new(shape: DiskType, location_name: "diskType"))
|
|
482
492
|
WorkerResourceConfig.struct_class = Types::WorkerResourceConfig
|
|
483
493
|
|
|
484
494
|
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"
|
|
@@ -1106,12 +1106,18 @@ module Aws::EMRServerless
|
|
|
1106
1106
|
# configure your jobs to send log information to CloudWatch.
|
|
1107
1107
|
# @return [Types::CloudWatchLoggingConfiguration]
|
|
1108
1108
|
#
|
|
1109
|
+
# @!attribute [rw] prometheus_monitoring_configuration
|
|
1110
|
+
# The monitoring configuration object you can configure to send
|
|
1111
|
+
# metrics to Amazon Managed Service for Prometheus for a job run.
|
|
1112
|
+
# @return [Types::PrometheusMonitoringConfiguration]
|
|
1113
|
+
#
|
|
1109
1114
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/MonitoringConfiguration AWS API Documentation
|
|
1110
1115
|
#
|
|
1111
1116
|
class MonitoringConfiguration < Struct.new(
|
|
1112
1117
|
:s3_monitoring_configuration,
|
|
1113
1118
|
:managed_persistence_monitoring_configuration,
|
|
1114
|
-
:cloud_watch_logging_configuration
|
|
1119
|
+
:cloud_watch_logging_configuration,
|
|
1120
|
+
:prometheus_monitoring_configuration)
|
|
1115
1121
|
SENSITIVE = []
|
|
1116
1122
|
include Aws::Structure
|
|
1117
1123
|
end
|
|
@@ -1135,6 +1141,22 @@ module Aws::EMRServerless
|
|
|
1135
1141
|
include Aws::Structure
|
|
1136
1142
|
end
|
|
1137
1143
|
|
|
1144
|
+
# The monitoring configuration object you can configure to send metrics
|
|
1145
|
+
# to Amazon Managed Service for Prometheus for a job run.
|
|
1146
|
+
#
|
|
1147
|
+
# @!attribute [rw] remote_write_url
|
|
1148
|
+
# The remote write URL in the Amazon Managed Service for Prometheus
|
|
1149
|
+
# workspace to send metrics to.
|
|
1150
|
+
# @return [String]
|
|
1151
|
+
#
|
|
1152
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/PrometheusMonitoringConfiguration AWS API Documentation
|
|
1153
|
+
#
|
|
1154
|
+
class PrometheusMonitoringConfiguration < Struct.new(
|
|
1155
|
+
:remote_write_url)
|
|
1156
|
+
SENSITIVE = []
|
|
1157
|
+
include Aws::Structure
|
|
1158
|
+
end
|
|
1159
|
+
|
|
1138
1160
|
# The specified resource was not found.
|
|
1139
1161
|
#
|
|
1140
1162
|
# @!attribute [rw] message
|
|
@@ -1555,12 +1577,19 @@ module Aws::EMRServerless
|
|
|
1555
1577
|
# The disk requirements for every worker instance of the worker type.
|
|
1556
1578
|
# @return [String]
|
|
1557
1579
|
#
|
|
1580
|
+
# @!attribute [rw] disk_type
|
|
1581
|
+
# The disk type for every worker instance of the work type. Shuffle
|
|
1582
|
+
# optimized disks have higher performance characteristics and are
|
|
1583
|
+
# better for shuffle heavy workloads. Default is `STANDARD`.
|
|
1584
|
+
# @return [String]
|
|
1585
|
+
#
|
|
1558
1586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/WorkerResourceConfig AWS API Documentation
|
|
1559
1587
|
#
|
|
1560
1588
|
class WorkerResourceConfig < Struct.new(
|
|
1561
1589
|
:cpu,
|
|
1562
1590
|
:memory,
|
|
1563
|
-
:disk
|
|
1591
|
+
:disk,
|
|
1592
|
+
:disk_type)
|
|
1564
1593
|
SENSITIVE = []
|
|
1565
1594
|
include Aws::Structure
|
|
1566
1595
|
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: {
|
|
@@ -152,6 +153,9 @@ module Aws
|
|
|
152
153
|
log_stream_name_prefix: ::String?,
|
|
153
154
|
encryption_key_arn: ::String?,
|
|
154
155
|
log_types: Hash[::String, Array[::String]]?
|
|
156
|
+
}?,
|
|
157
|
+
prometheus_monitoring_configuration: {
|
|
158
|
+
remote_write_url: ::String?
|
|
155
159
|
}?
|
|
156
160
|
}
|
|
157
161
|
) -> _CreateApplicationResponseSuccess
|
|
@@ -292,6 +296,9 @@ module Aws
|
|
|
292
296
|
log_stream_name_prefix: ::String?,
|
|
293
297
|
encryption_key_arn: ::String?,
|
|
294
298
|
log_types: Hash[::String, Array[::String]]?
|
|
299
|
+
}?,
|
|
300
|
+
prometheus_monitoring_configuration: {
|
|
301
|
+
remote_write_url: ::String?
|
|
295
302
|
}?
|
|
296
303
|
}?
|
|
297
304
|
},
|
|
@@ -343,7 +350,8 @@ module Aws
|
|
|
343
350
|
worker_configuration: {
|
|
344
351
|
cpu: ::String,
|
|
345
352
|
memory: ::String,
|
|
346
|
-
disk: ::String
|
|
353
|
+
disk: ::String?,
|
|
354
|
+
disk_type: ::String?
|
|
347
355
|
}?
|
|
348
356
|
}],
|
|
349
357
|
?maximum_capacity: {
|
|
@@ -394,6 +402,9 @@ module Aws
|
|
|
394
402
|
log_stream_name_prefix: ::String?,
|
|
395
403
|
encryption_key_arn: ::String?,
|
|
396
404
|
log_types: Hash[::String, Array[::String]]?
|
|
405
|
+
}?,
|
|
406
|
+
prometheus_monitoring_configuration: {
|
|
407
|
+
remote_write_url: ::String?
|
|
397
408
|
}?
|
|
398
409
|
}
|
|
399
410
|
) -> _UpdateApplicationResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -300,6 +300,7 @@ module Aws::EMRServerless
|
|
|
300
300
|
attr_accessor s3_monitoring_configuration: Types::S3MonitoringConfiguration
|
|
301
301
|
attr_accessor managed_persistence_monitoring_configuration: Types::ManagedPersistenceMonitoringConfiguration
|
|
302
302
|
attr_accessor cloud_watch_logging_configuration: Types::CloudWatchLoggingConfiguration
|
|
303
|
+
attr_accessor prometheus_monitoring_configuration: Types::PrometheusMonitoringConfiguration
|
|
303
304
|
SENSITIVE: []
|
|
304
305
|
end
|
|
305
306
|
|
|
@@ -309,6 +310,11 @@ module Aws::EMRServerless
|
|
|
309
310
|
SENSITIVE: []
|
|
310
311
|
end
|
|
311
312
|
|
|
313
|
+
class PrometheusMonitoringConfiguration
|
|
314
|
+
attr_accessor remote_write_url: ::String
|
|
315
|
+
SENSITIVE: []
|
|
316
|
+
end
|
|
317
|
+
|
|
312
318
|
class ResourceNotFoundException
|
|
313
319
|
attr_accessor message: ::String
|
|
314
320
|
SENSITIVE: []
|
|
@@ -430,6 +436,7 @@ module Aws::EMRServerless
|
|
|
430
436
|
attr_accessor cpu: ::String
|
|
431
437
|
attr_accessor memory: ::String
|
|
432
438
|
attr_accessor disk: ::String
|
|
439
|
+
attr_accessor disk_type: ::String
|
|
433
440
|
SENSITIVE: []
|
|
434
441
|
end
|
|
435
442
|
|
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.21.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-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|