aws-sdk-emrserverless 1.14.0 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 99c4925e7e1a16f19fa6d517592f73c8c836bec7f7e0aab1a87be22866c63427
4
- data.tar.gz: 6a883d401ad258cd0f1e3b1371135ba860f04e99e713f030511a299e5d4eeb02
3
+ metadata.gz: c38f438ba0a5054d8db97e0fa22f062e6b97f1b2e20a7f44199bba2912d46ef1
4
+ data.tar.gz: 92c2aa244282fce96c552ad8cf60af83d52718ad9838300c97bcfee4534a375e
5
5
  SHA512:
6
- metadata.gz: b310c61b538b0bb7537a482347ea1ba944312238df83f3edab1e49fa2ce3a74ec99bb931e486fd466f607242359de1c93ac6f61bbc8f0fe5b29a11604aa78fa2
7
- data.tar.gz: ed1b44cde92015e49470fb06e25d2740c193ce94f457a9ad5372ee5d3c9f2a1ab2ce5742ce3c7059fd7d3b7541681be2ac6871442f65702ad1105317eb03326d
6
+ metadata.gz: 1a7df5dc6594c9837a74ed71fa173dd60aac9934b78f500a8086bdf4a5c0657e119adae374607389a121cf7b4515f7e7e7ce986ee45077dae1b0568a9e679584
7
+ data.tar.gz: 2cbcc1ed8479b021622dfebbfd59099151fbf21805a4c1cc74ee24722f266ffe779272bb1991b1a870df3bd0abdc7f845ae8be824364ba3f0fb6a82eb019c7d2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.16.0 (2023-09-27)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.15.0 (2023-09-25)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for application-wide default job configurations.
13
+
4
14
  1.14.0 (2023-07-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.16.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.14.0'
1405
+ context[:gem_version] = '1.16.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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-emrserverless/customizations'
52
52
  # @!group service
53
53
  module Aws::EMRServerless
54
54
 
55
- GEM_VERSION = '1.14.0'
55
+ GEM_VERSION = '1.16.0'
56
56
 
57
57
  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.14.0
4
+ version: 1.16.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-07-25 00:00:00.000000000 Z
11
+ date: 2023-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.177.0
22
+ version: 3.184.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement