aws-sdk-emrserverless 1.37.0 → 1.38.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: c40885ece1a0cdcd1ef5cdc2384268bc9fcd3084552846d1e04158e2616379cf
4
- data.tar.gz: 23e7881a05563ad3fbcc1ce5c9a04df0f1883761ebd2835023f12315bd7dc7b0
3
+ metadata.gz: 94debfe2d8ea68b585622d9753e442a6859ad219e0b59d927db250b895dae78b
4
+ data.tar.gz: 291e79c7b39e978ee12d0617f44c540bb8bc9101d8177c5333c62f0cbe6ec7a8
5
5
  SHA512:
6
- metadata.gz: 0c3095afc6a81054fdd55272f010d2b92f981a56f3a26aa78ba8e4b265854fb52c5cf0fdf021d79bbac2eeac68ff33c70d419e34f49419425887e743bb7ebc01
7
- data.tar.gz: 30f53691325e4894027bc8f95858d1a881d501d167d49c2cdf73556f4fc8ec608d6f89fc02ac64c4c9e2b83aac98113675d91a5eb091bf2bd3a68f14796a4a95
6
+ metadata.gz: 2868cdf8561f7851e15a34820625b0fecfd97a903ae6f30bbf3b14e59c292e0c3c3a42cfab433efe31bfc25871c1d5f891ec4df2ac7298d98f715317a4b769b1
7
+ data.tar.gz: 87b2a721a2ee5928804b3c183128042bc65e613c0f109fb78a178226617726c36ca2fdbb5ef93ea9e7dcf50ff1cb0e9ce9d0b0963900ba8f111c545fe590b6b8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.38.0 (2024-12-11)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for accessing system profile logs in Lake Formation-enabled jobs.
8
+
4
9
  1.37.0 (2024-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.37.0
1
+ 1.38.0
@@ -801,6 +801,10 @@ module Aws::EMRServerless
801
801
  # job. If not specified, this value defaults to the attempt of the
802
802
  # latest job.
803
803
  #
804
+ # @option params [Boolean] :access_system_profile_logs
805
+ # Allows access to system profile logs for Lake Formation-enabled jobs.
806
+ # Default is false.
807
+ #
804
808
  # @return [Types::GetDashboardForJobRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
805
809
  #
806
810
  # * {Types::GetDashboardForJobRunResponse#url #url} => String
@@ -811,6 +815,7 @@ module Aws::EMRServerless
811
815
  # application_id: "ApplicationId", # required
812
816
  # job_run_id: "JobRunId", # required
813
817
  # attempt: 1,
818
+ # access_system_profile_logs: false,
814
819
  # })
815
820
  #
816
821
  # @example Response structure
@@ -1621,7 +1626,7 @@ module Aws::EMRServerless
1621
1626
  tracer: tracer
1622
1627
  )
1623
1628
  context[:gem_name] = 'aws-sdk-emrserverless'
1624
- context[:gem_version] = '1.37.0'
1629
+ context[:gem_version] = '1.38.0'
1625
1630
  Seahorse::Client::Request.new(handlers, context)
1626
1631
  end
1627
1632
 
@@ -273,6 +273,7 @@ module Aws::EMRServerless
273
273
  GetDashboardForJobRunRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location: "uri", location_name: "applicationId"))
274
274
  GetDashboardForJobRunRequest.add_member(:job_run_id, Shapes::ShapeRef.new(shape: JobRunId, required: true, location: "uri", location_name: "jobRunId"))
275
275
  GetDashboardForJobRunRequest.add_member(:attempt, Shapes::ShapeRef.new(shape: AttemptNumber, location: "querystring", location_name: "attempt"))
276
+ GetDashboardForJobRunRequest.add_member(:access_system_profile_logs, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "accessSystemProfileLogs"))
276
277
  GetDashboardForJobRunRequest.struct_class = Types::GetDashboardForJobRunRequest
277
278
 
278
279
  GetDashboardForJobRunResponse.add_member(:url, Shapes::ShapeRef.new(shape: Url, location_name: "url"))
@@ -587,12 +587,18 @@ module Aws::EMRServerless
587
587
  # latest job.
588
588
  # @return [Integer]
589
589
  #
590
+ # @!attribute [rw] access_system_profile_logs
591
+ # Allows access to system profile logs for Lake Formation-enabled
592
+ # jobs. Default is false.
593
+ # @return [Boolean]
594
+ #
590
595
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/GetDashboardForJobRunRequest AWS API Documentation
591
596
  #
592
597
  class GetDashboardForJobRunRequest < Struct.new(
593
598
  :application_id,
594
599
  :job_run_id,
595
- :attempt)
600
+ :attempt,
601
+ :access_system_profile_logs)
596
602
  SENSITIVE = []
597
603
  include Aws::Structure
598
604
  end
@@ -54,7 +54,7 @@ module Aws::EMRServerless
54
54
  autoload :EndpointProvider, 'aws-sdk-emrserverless/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-emrserverless/endpoints'
56
56
 
57
- GEM_VERSION = '1.37.0'
57
+ GEM_VERSION = '1.38.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -199,7 +199,8 @@ module Aws
199
199
  def get_dashboard_for_job_run: (
200
200
  application_id: ::String,
201
201
  job_run_id: ::String,
202
- ?attempt: ::Integer
202
+ ?attempt: ::Integer,
203
+ ?access_system_profile_logs: bool
203
204
  ) -> _GetDashboardForJobRunResponseSuccess
204
205
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDashboardForJobRunResponseSuccess
205
206
 
data/sig/types.rbs CHANGED
@@ -148,6 +148,7 @@ module Aws::EMRServerless
148
148
  attr_accessor application_id: ::String
149
149
  attr_accessor job_run_id: ::String
150
150
  attr_accessor attempt: ::Integer
151
+ attr_accessor access_system_profile_logs: bool
151
152
  SENSITIVE: []
152
153
  end
153
154
 
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.37.0
4
+ version: 1.38.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-10-18 00:00:00.000000000 Z
11
+ date: 2024-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core