aws-sdk-emrserverless 1.14.0 → 1.15.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 +119 -1
- data/lib/aws-sdk-emrserverless/client_api.rb +6 -0
- data/lib/aws-sdk-emrserverless/types.rb +56 -3
- data/lib/aws-sdk-emrserverless.rb +1 -1
- 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: f90acedbd62f3a63c25b2235246e84a7707a5c5e7d860e9229c7a28688a095f9
|
|
4
|
+
data.tar.gz: '08a68d04c22516c7e82b8f6166defc73830aabce5d20d75b3103b57973338b8b'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9fced180379eec872da00c8e7ed568a17a5ef9b13f12851bd5192f2696fbe0c1e3d5feeba36d41f7cffb17c74e9df5d5df276163ae9c30dc2db5418563acc75d
|
|
7
|
+
data.tar.gz: 353491ecdbdee9b3576affd32949922c99bc566f88eafc90de92d0cb99ed17d2ec14a447084c3b7de4110c4ac0d3a7b8b6bc2b52bcbb28bdbe028b243e8ad128
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.15.0
|
|
@@ -480,6 +480,19 @@ module Aws::EMRServerless
|
|
|
480
480
|
# image details in this parameter for each worker type, or in
|
|
481
481
|
# `imageConfiguration` for all worker types.
|
|
482
482
|
#
|
|
483
|
+
# @option params [Array<Types::Configuration>] :runtime_configuration
|
|
484
|
+
# The [Configuration][1] specifications to use when creating an
|
|
485
|
+
# application. Each configuration consists of a classification and
|
|
486
|
+
# properties. This configuration is applied to all the job runs
|
|
487
|
+
# submitted under the application.
|
|
488
|
+
#
|
|
489
|
+
#
|
|
490
|
+
#
|
|
491
|
+
# [1]: https://docs.aws.amazon.com/emr-serverless/latest/APIReference/API_Configuration.html
|
|
492
|
+
#
|
|
493
|
+
# @option params [Types::MonitoringConfiguration] :monitoring_configuration
|
|
494
|
+
# The configuration setting for monitoring.
|
|
495
|
+
#
|
|
483
496
|
# @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
484
497
|
#
|
|
485
498
|
# * {Types::CreateApplicationResponse#application_id #application_id} => String
|
|
@@ -533,6 +546,36 @@ module Aws::EMRServerless
|
|
|
533
546
|
# },
|
|
534
547
|
# },
|
|
535
548
|
# },
|
|
549
|
+
# runtime_configuration: [
|
|
550
|
+
# {
|
|
551
|
+
# classification: "String1024", # required
|
|
552
|
+
# properties: {
|
|
553
|
+
# "String1024" => "String1024",
|
|
554
|
+
# },
|
|
555
|
+
# configurations: {
|
|
556
|
+
# # recursive ConfigurationList
|
|
557
|
+
# },
|
|
558
|
+
# },
|
|
559
|
+
# ],
|
|
560
|
+
# monitoring_configuration: {
|
|
561
|
+
# s3_monitoring_configuration: {
|
|
562
|
+
# log_uri: "UriString",
|
|
563
|
+
# encryption_key_arn: "EncryptionKeyArn",
|
|
564
|
+
# },
|
|
565
|
+
# managed_persistence_monitoring_configuration: {
|
|
566
|
+
# enabled: false,
|
|
567
|
+
# encryption_key_arn: "EncryptionKeyArn",
|
|
568
|
+
# },
|
|
569
|
+
# cloud_watch_logging_configuration: {
|
|
570
|
+
# enabled: false, # required
|
|
571
|
+
# log_group_name: "LogGroupName",
|
|
572
|
+
# log_stream_name_prefix: "LogStreamNamePrefix",
|
|
573
|
+
# encryption_key_arn: "EncryptionKeyArn",
|
|
574
|
+
# log_types: {
|
|
575
|
+
# "WorkerTypeString" => ["LogTypeString"],
|
|
576
|
+
# },
|
|
577
|
+
# },
|
|
578
|
+
# },
|
|
536
579
|
# })
|
|
537
580
|
#
|
|
538
581
|
# @example Response structure
|
|
@@ -622,6 +665,22 @@ module Aws::EMRServerless
|
|
|
622
665
|
# resp.application.worker_type_specifications #=> Hash
|
|
623
666
|
# resp.application.worker_type_specifications["WorkerTypeString"].image_configuration.image_uri #=> String
|
|
624
667
|
# resp.application.worker_type_specifications["WorkerTypeString"].image_configuration.resolved_image_digest #=> String
|
|
668
|
+
# resp.application.runtime_configuration #=> Array
|
|
669
|
+
# resp.application.runtime_configuration[0].classification #=> String
|
|
670
|
+
# resp.application.runtime_configuration[0].properties #=> Hash
|
|
671
|
+
# resp.application.runtime_configuration[0].properties["String1024"] #=> String
|
|
672
|
+
# resp.application.runtime_configuration[0].configurations #=> Types::ConfigurationList
|
|
673
|
+
# resp.application.monitoring_configuration.s3_monitoring_configuration.log_uri #=> String
|
|
674
|
+
# resp.application.monitoring_configuration.s3_monitoring_configuration.encryption_key_arn #=> String
|
|
675
|
+
# resp.application.monitoring_configuration.managed_persistence_monitoring_configuration.enabled #=> Boolean
|
|
676
|
+
# resp.application.monitoring_configuration.managed_persistence_monitoring_configuration.encryption_key_arn #=> String
|
|
677
|
+
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.enabled #=> Boolean
|
|
678
|
+
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_group_name #=> String
|
|
679
|
+
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_stream_name_prefix #=> String
|
|
680
|
+
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.encryption_key_arn #=> String
|
|
681
|
+
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types #=> Hash
|
|
682
|
+
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"] #=> Array
|
|
683
|
+
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"][0] #=> String
|
|
625
684
|
#
|
|
626
685
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/GetApplication AWS API Documentation
|
|
627
686
|
#
|
|
@@ -1178,6 +1237,19 @@ module Aws::EMRServerless
|
|
|
1178
1237
|
# The Amazon EMR release label for the application. You can change the
|
|
1179
1238
|
# release label to use a different release of Amazon EMR.
|
|
1180
1239
|
#
|
|
1240
|
+
# @option params [Array<Types::Configuration>] :runtime_configuration
|
|
1241
|
+
# The [Configuration][1] specifications to use when updating an
|
|
1242
|
+
# application. Each configuration consists of a classification and
|
|
1243
|
+
# properties. This configuration is applied across all the job runs
|
|
1244
|
+
# submitted under the application.
|
|
1245
|
+
#
|
|
1246
|
+
#
|
|
1247
|
+
#
|
|
1248
|
+
# [1]: https://docs.aws.amazon.com/emr-serverless/latest/APIReference/API_Configuration.html
|
|
1249
|
+
#
|
|
1250
|
+
# @option params [Types::MonitoringConfiguration] :monitoring_configuration
|
|
1251
|
+
# The configuration setting for monitoring.
|
|
1252
|
+
#
|
|
1181
1253
|
# @return [Types::UpdateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1182
1254
|
#
|
|
1183
1255
|
# * {Types::UpdateApplicationResponse#application #application} => Types::Application
|
|
@@ -1225,6 +1297,36 @@ module Aws::EMRServerless
|
|
|
1225
1297
|
# },
|
|
1226
1298
|
# },
|
|
1227
1299
|
# release_label: "ReleaseLabel",
|
|
1300
|
+
# runtime_configuration: [
|
|
1301
|
+
# {
|
|
1302
|
+
# classification: "String1024", # required
|
|
1303
|
+
# properties: {
|
|
1304
|
+
# "String1024" => "String1024",
|
|
1305
|
+
# },
|
|
1306
|
+
# configurations: {
|
|
1307
|
+
# # recursive ConfigurationList
|
|
1308
|
+
# },
|
|
1309
|
+
# },
|
|
1310
|
+
# ],
|
|
1311
|
+
# monitoring_configuration: {
|
|
1312
|
+
# s3_monitoring_configuration: {
|
|
1313
|
+
# log_uri: "UriString",
|
|
1314
|
+
# encryption_key_arn: "EncryptionKeyArn",
|
|
1315
|
+
# },
|
|
1316
|
+
# managed_persistence_monitoring_configuration: {
|
|
1317
|
+
# enabled: false,
|
|
1318
|
+
# encryption_key_arn: "EncryptionKeyArn",
|
|
1319
|
+
# },
|
|
1320
|
+
# cloud_watch_logging_configuration: {
|
|
1321
|
+
# enabled: false, # required
|
|
1322
|
+
# log_group_name: "LogGroupName",
|
|
1323
|
+
# log_stream_name_prefix: "LogStreamNamePrefix",
|
|
1324
|
+
# encryption_key_arn: "EncryptionKeyArn",
|
|
1325
|
+
# log_types: {
|
|
1326
|
+
# "WorkerTypeString" => ["LogTypeString"],
|
|
1327
|
+
# },
|
|
1328
|
+
# },
|
|
1329
|
+
# },
|
|
1228
1330
|
# })
|
|
1229
1331
|
#
|
|
1230
1332
|
# @example Response structure
|
|
@@ -1261,6 +1363,22 @@ module Aws::EMRServerless
|
|
|
1261
1363
|
# resp.application.worker_type_specifications #=> Hash
|
|
1262
1364
|
# resp.application.worker_type_specifications["WorkerTypeString"].image_configuration.image_uri #=> String
|
|
1263
1365
|
# resp.application.worker_type_specifications["WorkerTypeString"].image_configuration.resolved_image_digest #=> String
|
|
1366
|
+
# resp.application.runtime_configuration #=> Array
|
|
1367
|
+
# resp.application.runtime_configuration[0].classification #=> String
|
|
1368
|
+
# resp.application.runtime_configuration[0].properties #=> Hash
|
|
1369
|
+
# resp.application.runtime_configuration[0].properties["String1024"] #=> String
|
|
1370
|
+
# resp.application.runtime_configuration[0].configurations #=> Types::ConfigurationList
|
|
1371
|
+
# resp.application.monitoring_configuration.s3_monitoring_configuration.log_uri #=> String
|
|
1372
|
+
# resp.application.monitoring_configuration.s3_monitoring_configuration.encryption_key_arn #=> String
|
|
1373
|
+
# resp.application.monitoring_configuration.managed_persistence_monitoring_configuration.enabled #=> Boolean
|
|
1374
|
+
# resp.application.monitoring_configuration.managed_persistence_monitoring_configuration.encryption_key_arn #=> String
|
|
1375
|
+
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.enabled #=> Boolean
|
|
1376
|
+
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_group_name #=> String
|
|
1377
|
+
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_stream_name_prefix #=> String
|
|
1378
|
+
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.encryption_key_arn #=> String
|
|
1379
|
+
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types #=> Hash
|
|
1380
|
+
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"] #=> Array
|
|
1381
|
+
# resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"][0] #=> String
|
|
1264
1382
|
#
|
|
1265
1383
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/UpdateApplication AWS API Documentation
|
|
1266
1384
|
#
|
|
@@ -1284,7 +1402,7 @@ module Aws::EMRServerless
|
|
|
1284
1402
|
params: params,
|
|
1285
1403
|
config: config)
|
|
1286
1404
|
context[:gem_name] = 'aws-sdk-emrserverless'
|
|
1287
|
-
context[:gem_version] = '1.
|
|
1405
|
+
context[:gem_version] = '1.15.0'
|
|
1288
1406
|
Seahorse::Client::Request.new(handlers, context)
|
|
1289
1407
|
end
|
|
1290
1408
|
|
|
@@ -157,6 +157,8 @@ module Aws::EMRServerless
|
|
|
157
157
|
Application.add_member(:architecture, Shapes::ShapeRef.new(shape: Architecture, location_name: "architecture"))
|
|
158
158
|
Application.add_member(:image_configuration, Shapes::ShapeRef.new(shape: ImageConfiguration, location_name: "imageConfiguration"))
|
|
159
159
|
Application.add_member(:worker_type_specifications, Shapes::ShapeRef.new(shape: WorkerTypeSpecificationMap, location_name: "workerTypeSpecifications"))
|
|
160
|
+
Application.add_member(:runtime_configuration, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "runtimeConfiguration"))
|
|
161
|
+
Application.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "monitoringConfiguration"))
|
|
160
162
|
Application.struct_class = Types::Application
|
|
161
163
|
|
|
162
164
|
ApplicationList.member = Shapes::ShapeRef.new(shape: ApplicationSummary)
|
|
@@ -224,6 +226,8 @@ module Aws::EMRServerless
|
|
|
224
226
|
CreateApplicationRequest.add_member(:architecture, Shapes::ShapeRef.new(shape: Architecture, location_name: "architecture"))
|
|
225
227
|
CreateApplicationRequest.add_member(:image_configuration, Shapes::ShapeRef.new(shape: ImageConfigurationInput, location_name: "imageConfiguration"))
|
|
226
228
|
CreateApplicationRequest.add_member(:worker_type_specifications, Shapes::ShapeRef.new(shape: WorkerTypeSpecificationInputMap, location_name: "workerTypeSpecifications"))
|
|
229
|
+
CreateApplicationRequest.add_member(:runtime_configuration, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "runtimeConfiguration"))
|
|
230
|
+
CreateApplicationRequest.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "monitoringConfiguration"))
|
|
227
231
|
CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
|
|
228
232
|
|
|
229
233
|
CreateApplicationResponse.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location_name: "applicationId"))
|
|
@@ -462,6 +466,8 @@ module Aws::EMRServerless
|
|
|
462
466
|
UpdateApplicationRequest.add_member(:image_configuration, Shapes::ShapeRef.new(shape: ImageConfigurationInput, location_name: "imageConfiguration"))
|
|
463
467
|
UpdateApplicationRequest.add_member(:worker_type_specifications, Shapes::ShapeRef.new(shape: WorkerTypeSpecificationInputMap, location_name: "workerTypeSpecifications"))
|
|
464
468
|
UpdateApplicationRequest.add_member(:release_label, Shapes::ShapeRef.new(shape: ReleaseLabel, location_name: "releaseLabel"))
|
|
469
|
+
UpdateApplicationRequest.add_member(:runtime_configuration, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "runtimeConfiguration"))
|
|
470
|
+
UpdateApplicationRequest.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "monitoringConfiguration"))
|
|
465
471
|
UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
|
|
466
472
|
|
|
467
473
|
UpdateApplicationResponse.add_member(:application, Shapes::ShapeRef.new(shape: Application, required: true, location_name: "application"))
|
|
@@ -91,6 +91,23 @@ module Aws::EMRServerless
|
|
|
91
91
|
# The specification applied to each worker type.
|
|
92
92
|
# @return [Hash<String,Types::WorkerTypeSpecification>]
|
|
93
93
|
#
|
|
94
|
+
# @!attribute [rw] runtime_configuration
|
|
95
|
+
# The [Configuration][1] specifications of an application. Each
|
|
96
|
+
# configuration consists of a classification and properties. You use
|
|
97
|
+
# this parameter when creating or updating an application. To see the
|
|
98
|
+
# runtimeConfiguration object of an application, run the
|
|
99
|
+
# [GetApplication][2] API operation.
|
|
100
|
+
#
|
|
101
|
+
#
|
|
102
|
+
#
|
|
103
|
+
# [1]: https://docs.aws.amazon.com/emr-serverless/latest/APIReference/API_Configuration.html
|
|
104
|
+
# [2]: https://docs.aws.amazon.com/emr-serverless/latest/APIReference/API_GetApplication.html
|
|
105
|
+
# @return [Array<Types::Configuration>]
|
|
106
|
+
#
|
|
107
|
+
# @!attribute [rw] monitoring_configuration
|
|
108
|
+
# The configuration setting for monitoring.
|
|
109
|
+
# @return [Types::MonitoringConfiguration]
|
|
110
|
+
#
|
|
94
111
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/Application AWS API Documentation
|
|
95
112
|
#
|
|
96
113
|
class Application < Struct.new(
|
|
@@ -111,7 +128,9 @@ module Aws::EMRServerless
|
|
|
111
128
|
:network_configuration,
|
|
112
129
|
:architecture,
|
|
113
130
|
:image_configuration,
|
|
114
|
-
:worker_type_specifications
|
|
131
|
+
:worker_type_specifications,
|
|
132
|
+
:runtime_configuration,
|
|
133
|
+
:monitoring_configuration)
|
|
115
134
|
SENSITIVE = []
|
|
116
135
|
include Aws::Structure
|
|
117
136
|
end
|
|
@@ -431,6 +450,21 @@ module Aws::EMRServerless
|
|
|
431
450
|
# `imageConfiguration` for all worker types.
|
|
432
451
|
# @return [Hash<String,Types::WorkerTypeSpecificationInput>]
|
|
433
452
|
#
|
|
453
|
+
# @!attribute [rw] runtime_configuration
|
|
454
|
+
# The [Configuration][1] specifications to use when creating an
|
|
455
|
+
# application. Each configuration consists of a classification and
|
|
456
|
+
# properties. This configuration is applied to all the job runs
|
|
457
|
+
# submitted under the application.
|
|
458
|
+
#
|
|
459
|
+
#
|
|
460
|
+
#
|
|
461
|
+
# [1]: https://docs.aws.amazon.com/emr-serverless/latest/APIReference/API_Configuration.html
|
|
462
|
+
# @return [Array<Types::Configuration>]
|
|
463
|
+
#
|
|
464
|
+
# @!attribute [rw] monitoring_configuration
|
|
465
|
+
# The configuration setting for monitoring.
|
|
466
|
+
# @return [Types::MonitoringConfiguration]
|
|
467
|
+
#
|
|
434
468
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/CreateApplicationRequest AWS API Documentation
|
|
435
469
|
#
|
|
436
470
|
class CreateApplicationRequest < Struct.new(
|
|
@@ -446,7 +480,9 @@ module Aws::EMRServerless
|
|
|
446
480
|
:network_configuration,
|
|
447
481
|
:architecture,
|
|
448
482
|
:image_configuration,
|
|
449
|
-
:worker_type_specifications
|
|
483
|
+
:worker_type_specifications,
|
|
484
|
+
:runtime_configuration,
|
|
485
|
+
:monitoring_configuration)
|
|
450
486
|
SENSITIVE = []
|
|
451
487
|
include Aws::Structure
|
|
452
488
|
end
|
|
@@ -1442,6 +1478,21 @@ module Aws::EMRServerless
|
|
|
1442
1478
|
# release label to use a different release of Amazon EMR.
|
|
1443
1479
|
# @return [String]
|
|
1444
1480
|
#
|
|
1481
|
+
# @!attribute [rw] runtime_configuration
|
|
1482
|
+
# The [Configuration][1] specifications to use when updating an
|
|
1483
|
+
# application. Each configuration consists of a classification and
|
|
1484
|
+
# properties. This configuration is applied across all the job runs
|
|
1485
|
+
# submitted under the application.
|
|
1486
|
+
#
|
|
1487
|
+
#
|
|
1488
|
+
#
|
|
1489
|
+
# [1]: https://docs.aws.amazon.com/emr-serverless/latest/APIReference/API_Configuration.html
|
|
1490
|
+
# @return [Array<Types::Configuration>]
|
|
1491
|
+
#
|
|
1492
|
+
# @!attribute [rw] monitoring_configuration
|
|
1493
|
+
# The configuration setting for monitoring.
|
|
1494
|
+
# @return [Types::MonitoringConfiguration]
|
|
1495
|
+
#
|
|
1445
1496
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/UpdateApplicationRequest AWS API Documentation
|
|
1446
1497
|
#
|
|
1447
1498
|
class UpdateApplicationRequest < Struct.new(
|
|
@@ -1455,7 +1506,9 @@ module Aws::EMRServerless
|
|
|
1455
1506
|
:architecture,
|
|
1456
1507
|
:image_configuration,
|
|
1457
1508
|
:worker_type_specifications,
|
|
1458
|
-
:release_label
|
|
1509
|
+
:release_label,
|
|
1510
|
+
:runtime_configuration,
|
|
1511
|
+
:monitoring_configuration)
|
|
1459
1512
|
SENSITIVE = []
|
|
1460
1513
|
include Aws::Structure
|
|
1461
1514
|
end
|
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.15.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: 2023-
|
|
11
|
+
date: 2023-09-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|