aws-sdk-emrserverless 1.63.0 → 1.64.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.
data/sig/types.rbs CHANGED
@@ -183,6 +183,44 @@ module Aws::EMRServerless
183
183
  SENSITIVE: []
184
184
  end
185
185
 
186
+ class GetResourceDashboardRequest
187
+ attr_accessor application_id: ::String
188
+ attr_accessor resource_id: ::String
189
+ attr_accessor resource_type: ("SESSION")
190
+ SENSITIVE: []
191
+ end
192
+
193
+ class GetResourceDashboardResponse
194
+ attr_accessor url: ::String
195
+ SENSITIVE: []
196
+ end
197
+
198
+ class GetSessionEndpointRequest
199
+ attr_accessor application_id: ::String
200
+ attr_accessor session_id: ::String
201
+ SENSITIVE: []
202
+ end
203
+
204
+ class GetSessionEndpointResponse
205
+ attr_accessor application_id: ::String
206
+ attr_accessor session_id: ::String
207
+ attr_accessor endpoint: ::String
208
+ attr_accessor auth_token: ::String
209
+ attr_accessor auth_token_expires_at: ::Time
210
+ SENSITIVE: [:auth_token]
211
+ end
212
+
213
+ class GetSessionRequest
214
+ attr_accessor application_id: ::String
215
+ attr_accessor session_id: ::String
216
+ SENSITIVE: []
217
+ end
218
+
219
+ class GetSessionResponse
220
+ attr_accessor session: Types::Session
221
+ SENSITIVE: []
222
+ end
223
+
186
224
  class Hive
187
225
  attr_accessor query: ::String
188
226
  attr_accessor init_query_file: ::String
@@ -223,6 +261,7 @@ module Aws::EMRServerless
223
261
  class InteractiveConfiguration
224
262
  attr_accessor studio_enabled: bool
225
263
  attr_accessor livy_endpoint_enabled: bool
264
+ attr_accessor session_enabled: bool
226
265
  SENSITIVE: []
227
266
  end
228
267
 
@@ -371,6 +410,22 @@ module Aws::EMRServerless
371
410
  SENSITIVE: []
372
411
  end
373
412
 
413
+ class ListSessionsRequest
414
+ attr_accessor application_id: ::String
415
+ attr_accessor next_token: ::String
416
+ attr_accessor max_results: ::Integer
417
+ attr_accessor states: ::Array[("SUBMITTED" | "STARTING" | "STARTED" | "IDLE" | "BUSY" | "FAILED" | "TERMINATING" | "TERMINATED")]
418
+ attr_accessor created_at_after: ::Time
419
+ attr_accessor created_at_before: ::Time
420
+ SENSITIVE: []
421
+ end
422
+
423
+ class ListSessionsResponse
424
+ attr_accessor sessions: ::Array[Types::SessionSummary]
425
+ attr_accessor next_token: ::String
426
+ SENSITIVE: []
427
+ end
428
+
374
429
  class ListTagsForResourceRequest
375
430
  attr_accessor resource_arn: ::String
376
431
  SENSITIVE: []
@@ -448,6 +503,51 @@ module Aws::EMRServerless
448
503
  SENSITIVE: []
449
504
  end
450
505
 
506
+ class Session
507
+ attr_accessor application_id: ::String
508
+ attr_accessor session_id: ::String
509
+ attr_accessor arn: ::String
510
+ attr_accessor name: ::String
511
+ attr_accessor state: ("SUBMITTED" | "STARTING" | "STARTED" | "IDLE" | "BUSY" | "FAILED" | "TERMINATING" | "TERMINATED")
512
+ attr_accessor state_details: ::String
513
+ attr_accessor release_label: ::String
514
+ attr_accessor execution_role_arn: ::String
515
+ attr_accessor created_by: ::String
516
+ attr_accessor created_at: ::Time
517
+ attr_accessor updated_at: ::Time
518
+ attr_accessor started_at: ::Time
519
+ attr_accessor ended_at: ::Time
520
+ attr_accessor idle_since: ::Time
521
+ attr_accessor configuration_overrides: Types::SessionConfigurationOverrides
522
+ attr_accessor network_configuration: Types::NetworkConfiguration
523
+ attr_accessor idle_timeout_minutes: ::Integer
524
+ attr_accessor tags: ::Hash[::String, ::String]
525
+ attr_accessor total_resource_utilization: Types::TotalResourceUtilization
526
+ attr_accessor billed_resource_utilization: Types::ResourceUtilization
527
+ attr_accessor total_execution_duration_seconds: ::Integer
528
+ SENSITIVE: []
529
+ end
530
+
531
+ class SessionConfigurationOverrides
532
+ attr_accessor runtime_configuration: ::Array[Types::Configuration]
533
+ SENSITIVE: []
534
+ end
535
+
536
+ class SessionSummary
537
+ attr_accessor application_id: ::String
538
+ attr_accessor session_id: ::String
539
+ attr_accessor arn: ::String
540
+ attr_accessor name: ::String
541
+ attr_accessor state: ("SUBMITTED" | "STARTING" | "STARTED" | "IDLE" | "BUSY" | "FAILED" | "TERMINATING" | "TERMINATED")
542
+ attr_accessor state_details: ::String
543
+ attr_accessor release_label: ::String
544
+ attr_accessor execution_role_arn: ::String
545
+ attr_accessor created_by: ::String
546
+ attr_accessor created_at: ::Time
547
+ attr_accessor updated_at: ::Time
548
+ SENSITIVE: []
549
+ end
550
+
451
551
  class SparkSubmit
452
552
  attr_accessor entry_point: ::String
453
553
  attr_accessor entry_point_arguments: ::Array[::String]
@@ -485,6 +585,24 @@ module Aws::EMRServerless
485
585
  SENSITIVE: []
486
586
  end
487
587
 
588
+ class StartSessionRequest
589
+ attr_accessor application_id: ::String
590
+ attr_accessor client_token: ::String
591
+ attr_accessor execution_role_arn: ::String
592
+ attr_accessor configuration_overrides: Types::SessionConfigurationOverrides
593
+ attr_accessor tags: ::Hash[::String, ::String]
594
+ attr_accessor idle_timeout_minutes: ::Integer
595
+ attr_accessor name: ::String
596
+ SENSITIVE: []
597
+ end
598
+
599
+ class StartSessionResponse
600
+ attr_accessor application_id: ::String
601
+ attr_accessor session_id: ::String
602
+ attr_accessor arn: ::String
603
+ SENSITIVE: []
604
+ end
605
+
488
606
  class StopApplicationRequest
489
607
  attr_accessor application_id: ::String
490
608
  SENSITIVE: []
@@ -502,6 +620,18 @@ module Aws::EMRServerless
502
620
  class TagResourceResponse < Aws::EmptyStructure
503
621
  end
504
622
 
623
+ class TerminateSessionRequest
624
+ attr_accessor application_id: ::String
625
+ attr_accessor session_id: ::String
626
+ SENSITIVE: []
627
+ end
628
+
629
+ class TerminateSessionResponse
630
+ attr_accessor application_id: ::String
631
+ attr_accessor session_id: ::String
632
+ SENSITIVE: []
633
+ end
634
+
505
635
  class TotalResourceUtilization
506
636
  attr_accessor v_cpu_hour: ::Float
507
637
  attr_accessor memory_gb_hour: ::Float
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emrserverless
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.63.0
4
+ version: 1.64.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services