aws-sdk-emrserverless 1.37.0 → 1.38.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 +6 -1
- data/lib/aws-sdk-emrserverless/client_api.rb +1 -0
- data/lib/aws-sdk-emrserverless/types.rb +7 -1
- data/lib/aws-sdk-emrserverless.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- 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: 94debfe2d8ea68b585622d9753e442a6859ad219e0b59d927db250b895dae78b
|
4
|
+
data.tar.gz: 291e79c7b39e978ee12d0617f44c540bb8bc9101d8177c5333c62f0cbe6ec7a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2868cdf8561f7851e15a34820625b0fecfd97a903ae6f30bbf3b14e59c292e0c3c3a42cfab433efe31bfc25871c1d5f891ec4df2ac7298d98f715317a4b769b1
|
7
|
+
data.tar.gz: 87b2a721a2ee5928804b3c183128042bc65e613c0f109fb78a178226617726c36ca2fdbb5ef93ea9e7dcf50ff1cb0e9ce9d0b0963900ba8f111c545fe590b6b8
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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.
|
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
|
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
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.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-
|
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
|