aws-sdk-emrserverless 1.23.0 → 1.24.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 80655f08f473e7e72a390ee98b5d49c5b03019fbd3984f5ef240a50e1dd022e3
4
- data.tar.gz: 19f57f3ef9eb3b9cf86c25f897dd50fb8b4eea629eba6b65e38aa5c6e8d97daf
3
+ metadata.gz: 9c901eecedd25f6bf4b63307e1d937a89b0fa64ddafd12da42cb6805f5a9c6f0
4
+ data.tar.gz: f4d4523de0d83462cac4aaeb4e44de087ee8a8e153bc91d813f659780406852b
5
5
  SHA512:
6
- metadata.gz: 88a81d0c4b48762c114642b49ea024cf7eceeba7a515afcbabf021cf6de422cc634d85ff42bb3825f1409dc330bf331e29c62bee5871e088309a2d5dd9298e70
7
- data.tar.gz: 417afd61192710a0d742bfda7c9c41bd3162fcd56e2d24e3aab9e025ffef1784aff759c8da8b314f1a696402b4ab0876cf5611aba86e11af8a0867b02e8ad7ae
6
+ metadata.gz: 10996555c70e2d14d547115ae23d66a5402749828c347c0cd495e4636bb47e547206056b38ddb659bec97e4e1a5f205728bcb1d8af78837d71ba23ff51430ac8
7
+ data.tar.gz: f18fc75a5b78035cac89c5e94bbf3b57bd02ec8efcbbff02fcc65e78d9417c9360897bc23fbe6dbdd5187000249297f895f1567136b0d1acb120b3ad54dea729
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.24.0 (2024-05-23)
5
+ ------------------
6
+
7
+ * Feature - This release adds the capability to run interactive workloads using Apache Livy Endpoint.
8
+
4
9
  1.23.0 (2024-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.23.0
1
+ 1.24.0
@@ -518,6 +518,10 @@ module Aws::EMRServerless
518
518
  # @option params [Types::MonitoringConfiguration] :monitoring_configuration
519
519
  # The configuration setting for monitoring.
520
520
  #
521
+ # @option params [Types::InteractiveConfiguration] :interactive_configuration
522
+ # The interactive configuration object that enables the interactive use
523
+ # cases to use when running an application.
524
+ #
521
525
  # @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
522
526
  #
523
527
  # * {Types::CreateApplicationResponse#application_id #application_id} => String
@@ -605,6 +609,10 @@ module Aws::EMRServerless
605
609
  # remote_write_url: "PrometheusUrlString",
606
610
  # },
607
611
  # },
612
+ # interactive_configuration: {
613
+ # studio_enabled: false,
614
+ # livy_endpoint_enabled: false,
615
+ # },
608
616
  # })
609
617
  #
610
618
  # @example Response structure
@@ -712,6 +720,8 @@ module Aws::EMRServerless
712
720
  # resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"] #=> Array
713
721
  # resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"][0] #=> String
714
722
  # resp.application.monitoring_configuration.prometheus_monitoring_configuration.remote_write_url #=> String
723
+ # resp.application.interactive_configuration.studio_enabled #=> Boolean
724
+ # resp.application.interactive_configuration.livy_endpoint_enabled #=> Boolean
715
725
  #
716
726
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/GetApplication AWS API Documentation
717
727
  #
@@ -1268,6 +1278,10 @@ module Aws::EMRServerless
1268
1278
  # image details in this parameter for each worker type, or in
1269
1279
  # `imageConfiguration` for all worker types.
1270
1280
  #
1281
+ # @option params [Types::InteractiveConfiguration] :interactive_configuration
1282
+ # The interactive configuration object that contains new interactive use
1283
+ # cases when the application is updated.
1284
+ #
1271
1285
  # @option params [String] :release_label
1272
1286
  # The Amazon EMR release label for the application. You can change the
1273
1287
  # release label to use a different release of Amazon EMR.
@@ -1332,6 +1346,10 @@ module Aws::EMRServerless
1332
1346
  # },
1333
1347
  # },
1334
1348
  # },
1349
+ # interactive_configuration: {
1350
+ # studio_enabled: false,
1351
+ # livy_endpoint_enabled: false,
1352
+ # },
1335
1353
  # release_label: "ReleaseLabel",
1336
1354
  # runtime_configuration: [
1337
1355
  # {
@@ -1420,6 +1438,8 @@ module Aws::EMRServerless
1420
1438
  # resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"] #=> Array
1421
1439
  # resp.application.monitoring_configuration.cloud_watch_logging_configuration.log_types["WorkerTypeString"][0] #=> String
1422
1440
  # resp.application.monitoring_configuration.prometheus_monitoring_configuration.remote_write_url #=> String
1441
+ # resp.application.interactive_configuration.studio_enabled #=> Boolean
1442
+ # resp.application.interactive_configuration.livy_endpoint_enabled #=> Boolean
1423
1443
  #
1424
1444
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/UpdateApplication AWS API Documentation
1425
1445
  #
@@ -1443,7 +1463,7 @@ module Aws::EMRServerless
1443
1463
  params: params,
1444
1464
  config: config)
1445
1465
  context[:gem_name] = 'aws-sdk-emrserverless'
1446
- context[:gem_version] = '1.23.0'
1466
+ context[:gem_version] = '1.24.0'
1447
1467
  Seahorse::Client::Request.new(handlers, context)
1448
1468
  end
1449
1469
 
@@ -68,6 +68,7 @@ module Aws::EMRServerless
68
68
  InitialCapacityConfig = Shapes::StructureShape.new(name: 'InitialCapacityConfig')
69
69
  InitialCapacityConfigMap = Shapes::MapShape.new(name: 'InitialCapacityConfigMap')
70
70
  Integer = Shapes::IntegerShape.new(name: 'Integer')
71
+ InteractiveConfiguration = Shapes::StructureShape.new(name: 'InteractiveConfiguration')
71
72
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
72
73
  JobArn = Shapes::StringShape.new(name: 'JobArn')
73
74
  JobDriver = Shapes::UnionShape.new(name: 'JobDriver')
@@ -164,6 +165,7 @@ module Aws::EMRServerless
164
165
  Application.add_member(:worker_type_specifications, Shapes::ShapeRef.new(shape: WorkerTypeSpecificationMap, location_name: "workerTypeSpecifications"))
165
166
  Application.add_member(:runtime_configuration, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "runtimeConfiguration"))
166
167
  Application.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "monitoringConfiguration"))
168
+ Application.add_member(:interactive_configuration, Shapes::ShapeRef.new(shape: InteractiveConfiguration, location_name: "interactiveConfiguration"))
167
169
  Application.struct_class = Types::Application
168
170
 
169
171
  ApplicationList.member = Shapes::ShapeRef.new(shape: ApplicationSummary)
@@ -233,6 +235,7 @@ module Aws::EMRServerless
233
235
  CreateApplicationRequest.add_member(:worker_type_specifications, Shapes::ShapeRef.new(shape: WorkerTypeSpecificationInputMap, location_name: "workerTypeSpecifications"))
234
236
  CreateApplicationRequest.add_member(:runtime_configuration, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "runtimeConfiguration"))
235
237
  CreateApplicationRequest.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "monitoringConfiguration"))
238
+ CreateApplicationRequest.add_member(:interactive_configuration, Shapes::ShapeRef.new(shape: InteractiveConfiguration, location_name: "interactiveConfiguration"))
236
239
  CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
237
240
 
238
241
  CreateApplicationResponse.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location_name: "applicationId"))
@@ -286,6 +289,10 @@ module Aws::EMRServerless
286
289
  InitialCapacityConfigMap.key = Shapes::ShapeRef.new(shape: WorkerTypeString)
287
290
  InitialCapacityConfigMap.value = Shapes::ShapeRef.new(shape: InitialCapacityConfig)
288
291
 
292
+ InteractiveConfiguration.add_member(:studio_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "studioEnabled"))
293
+ InteractiveConfiguration.add_member(:livy_endpoint_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "livyEndpointEnabled"))
294
+ InteractiveConfiguration.struct_class = Types::InteractiveConfiguration
295
+
289
296
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String1024, required: true, location_name: "message"))
290
297
  InternalServerException.struct_class = Types::InternalServerException
291
298
 
@@ -474,6 +481,7 @@ module Aws::EMRServerless
474
481
  UpdateApplicationRequest.add_member(:architecture, Shapes::ShapeRef.new(shape: Architecture, location_name: "architecture"))
475
482
  UpdateApplicationRequest.add_member(:image_configuration, Shapes::ShapeRef.new(shape: ImageConfigurationInput, location_name: "imageConfiguration"))
476
483
  UpdateApplicationRequest.add_member(:worker_type_specifications, Shapes::ShapeRef.new(shape: WorkerTypeSpecificationInputMap, location_name: "workerTypeSpecifications"))
484
+ UpdateApplicationRequest.add_member(:interactive_configuration, Shapes::ShapeRef.new(shape: InteractiveConfiguration, location_name: "interactiveConfiguration"))
477
485
  UpdateApplicationRequest.add_member(:release_label, Shapes::ShapeRef.new(shape: ReleaseLabel, location_name: "releaseLabel"))
478
486
  UpdateApplicationRequest.add_member(:runtime_configuration, Shapes::ShapeRef.new(shape: ConfigurationList, location_name: "runtimeConfiguration"))
479
487
  UpdateApplicationRequest.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "monitoringConfiguration"))
@@ -512,8 +520,8 @@ module Aws::EMRServerless
512
520
  api.metadata = {
513
521
  "apiVersion" => "2021-07-13",
514
522
  "endpointPrefix" => "emr-serverless",
515
- "jsonVersion" => "1.1",
516
523
  "protocol" => "rest-json",
524
+ "protocols" => ["rest-json"],
517
525
  "serviceFullName" => "EMR Serverless",
518
526
  "serviceId" => "EMR Serverless",
519
527
  "signatureVersion" => "v4",
@@ -108,6 +108,11 @@ module Aws::EMRServerless
108
108
  # The configuration setting for monitoring.
109
109
  # @return [Types::MonitoringConfiguration]
110
110
  #
111
+ # @!attribute [rw] interactive_configuration
112
+ # The interactive configuration object that enables the interactive
113
+ # use cases for an application.
114
+ # @return [Types::InteractiveConfiguration]
115
+ #
111
116
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/Application AWS API Documentation
112
117
  #
113
118
  class Application < Struct.new(
@@ -130,7 +135,8 @@ module Aws::EMRServerless
130
135
  :image_configuration,
131
136
  :worker_type_specifications,
132
137
  :runtime_configuration,
133
- :monitoring_configuration)
138
+ :monitoring_configuration,
139
+ :interactive_configuration)
134
140
  SENSITIVE = []
135
141
  include Aws::Structure
136
142
  end
@@ -465,6 +471,11 @@ module Aws::EMRServerless
465
471
  # The configuration setting for monitoring.
466
472
  # @return [Types::MonitoringConfiguration]
467
473
  #
474
+ # @!attribute [rw] interactive_configuration
475
+ # The interactive configuration object that enables the interactive
476
+ # use cases to use when running an application.
477
+ # @return [Types::InteractiveConfiguration]
478
+ #
468
479
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/CreateApplicationRequest AWS API Documentation
469
480
  #
470
481
  class CreateApplicationRequest < Struct.new(
@@ -482,7 +493,8 @@ module Aws::EMRServerless
482
493
  :image_configuration,
483
494
  :worker_type_specifications,
484
495
  :runtime_configuration,
485
- :monitoring_configuration)
496
+ :monitoring_configuration,
497
+ :interactive_configuration)
486
498
  SENSITIVE = []
487
499
  include Aws::Structure
488
500
  end
@@ -687,6 +699,28 @@ module Aws::EMRServerless
687
699
  include Aws::Structure
688
700
  end
689
701
 
702
+ # The configuration to use to enable the different types of interactive
703
+ # use cases in an application.
704
+ #
705
+ # @!attribute [rw] studio_enabled
706
+ # Enables you to connect an application to Amazon EMR Studio to run
707
+ # interactive workloads in a notebook.
708
+ # @return [Boolean]
709
+ #
710
+ # @!attribute [rw] livy_endpoint_enabled
711
+ # Enables an Apache Livy endpoint that you can connect to and run
712
+ # interactive jobs.
713
+ # @return [Boolean]
714
+ #
715
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/InteractiveConfiguration AWS API Documentation
716
+ #
717
+ class InteractiveConfiguration < Struct.new(
718
+ :studio_enabled,
719
+ :livy_endpoint_enabled)
720
+ SENSITIVE = []
721
+ include Aws::Structure
722
+ end
723
+
690
724
  # Request processing failed because of an error or failure with the
691
725
  # service.
692
726
  #
@@ -1495,6 +1529,11 @@ module Aws::EMRServerless
1495
1529
  # `imageConfiguration` for all worker types.
1496
1530
  # @return [Hash<String,Types::WorkerTypeSpecificationInput>]
1497
1531
  #
1532
+ # @!attribute [rw] interactive_configuration
1533
+ # The interactive configuration object that contains new interactive
1534
+ # use cases when the application is updated.
1535
+ # @return [Types::InteractiveConfiguration]
1536
+ #
1498
1537
  # @!attribute [rw] release_label
1499
1538
  # The Amazon EMR release label for the application. You can change the
1500
1539
  # release label to use a different release of Amazon EMR.
@@ -1528,6 +1567,7 @@ module Aws::EMRServerless
1528
1567
  :architecture,
1529
1568
  :image_configuration,
1530
1569
  :worker_type_specifications,
1570
+ :interactive_configuration,
1531
1571
  :release_label,
1532
1572
  :runtime_configuration,
1533
1573
  :monitoring_configuration)
@@ -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.23.0'
55
+ GEM_VERSION = '1.24.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -157,6 +157,10 @@ module Aws
157
157
  prometheus_monitoring_configuration: {
158
158
  remote_write_url: ::String?
159
159
  }?
160
+ },
161
+ ?interactive_configuration: {
162
+ studio_enabled: bool?,
163
+ livy_endpoint_enabled: bool?
160
164
  }
161
165
  ) -> _CreateApplicationResponseSuccess
162
166
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
@@ -379,6 +383,10 @@ module Aws
379
383
  image_uri: ::String?
380
384
  }?
381
385
  }],
386
+ ?interactive_configuration: {
387
+ studio_enabled: bool?,
388
+ livy_endpoint_enabled: bool?
389
+ },
382
390
  ?release_label: ::String,
383
391
  ?runtime_configuration: Array[
384
392
  {
data/sig/types.rbs CHANGED
@@ -29,6 +29,7 @@ module Aws::EMRServerless
29
29
  attr_accessor worker_type_specifications: ::Hash[::String, Types::WorkerTypeSpecification]
30
30
  attr_accessor runtime_configuration: ::Array[Types::Configuration]
31
31
  attr_accessor monitoring_configuration: Types::MonitoringConfiguration
32
+ attr_accessor interactive_configuration: Types::InteractiveConfiguration
32
33
  SENSITIVE: []
33
34
  end
34
35
 
@@ -112,6 +113,7 @@ module Aws::EMRServerless
112
113
  attr_accessor worker_type_specifications: ::Hash[::String, Types::WorkerTypeSpecificationInput]
113
114
  attr_accessor runtime_configuration: ::Array[Types::Configuration]
114
115
  attr_accessor monitoring_configuration: Types::MonitoringConfiguration
116
+ attr_accessor interactive_configuration: Types::InteractiveConfiguration
115
117
  SENSITIVE: []
116
118
  end
117
119
 
@@ -186,6 +188,12 @@ module Aws::EMRServerless
186
188
  SENSITIVE: []
187
189
  end
188
190
 
191
+ class InteractiveConfiguration
192
+ attr_accessor studio_enabled: bool
193
+ attr_accessor livy_endpoint_enabled: bool
194
+ SENSITIVE: []
195
+ end
196
+
189
197
  class InternalServerException
190
198
  attr_accessor message: ::String
191
199
  SENSITIVE: []
@@ -416,6 +424,7 @@ module Aws::EMRServerless
416
424
  attr_accessor architecture: ("ARM64" | "X86_64")
417
425
  attr_accessor image_configuration: Types::ImageConfigurationInput
418
426
  attr_accessor worker_type_specifications: ::Hash[::String, Types::WorkerTypeSpecificationInput]
427
+ attr_accessor interactive_configuration: Types::InteractiveConfiguration
419
428
  attr_accessor release_label: ::String
420
429
  attr_accessor runtime_configuration: ::Array[Types::Configuration]
421
430
  attr_accessor monitoring_configuration: Types::MonitoringConfiguration
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.23.0
4
+ version: 1.24.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-05-13 00:00:00.000000000 Z
11
+ date: 2024-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core