aws-sdk-emrserverless 1.47.0 → 1.48.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 -3
- data/lib/aws-sdk-emrserverless/client_api.rb +1 -0
- data/lib/aws-sdk-emrserverless/types.rb +8 -1
- data/lib/aws-sdk-emrserverless.rb +1 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93f281f88373b102f7ff659a0a3dac73d93a38b2f2d554bce2618e62e187bab8
|
4
|
+
data.tar.gz: 94baff816a004a0e768f74362253ae321684a65d09eca586d1f2f987e5fe7609
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c57b2f2d637f78777ad852f33ae050b597ef9e7d68f0913f1d69c81a81f446628bd27b1b03748491ad24df250a182c51d49dc6131225b264ebd20dac18e9f8ac
|
7
|
+
data.tar.gz: a1a1d5bfb43ff8b625823837256dccb611b68b0bb7d3ef400c080fafcb31b0ee09ece1772e3867647c33e7b32543747b0a06ca7cc74e76d92a9b92e4b06d506f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.48.0 (2025-06-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for retrieval of the optional executionIamPolicy field in the GetJobRun API response.
|
8
|
+
|
4
9
|
1.47.0 (2025-06-03)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.48.0
|
@@ -478,8 +478,8 @@ module Aws::EMRServerless
|
|
478
478
|
# The ID of the job run to cancel.
|
479
479
|
#
|
480
480
|
# @option params [Integer] :shutdown_grace_period_in_seconds
|
481
|
-
# The duration
|
482
|
-
#
|
481
|
+
# The duration in seconds to wait before forcefully terminating the job
|
482
|
+
# after cancellation is requested.
|
483
483
|
#
|
484
484
|
# @return [Types::CancelJobRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
485
485
|
#
|
@@ -893,6 +893,9 @@ module Aws::EMRServerless
|
|
893
893
|
# resp.job_run.created_at #=> Time
|
894
894
|
# resp.job_run.updated_at #=> Time
|
895
895
|
# resp.job_run.execution_role #=> String
|
896
|
+
# resp.job_run.execution_iam_policy.policy #=> String
|
897
|
+
# resp.job_run.execution_iam_policy.policy_arns #=> Array
|
898
|
+
# resp.job_run.execution_iam_policy.policy_arns[0] #=> String
|
896
899
|
# resp.job_run.state #=> String, one of "SUBMITTED", "PENDING", "SCHEDULED", "RUNNING", "SUCCESS", "FAILED", "CANCELLING", "CANCELLED", "QUEUED"
|
897
900
|
# resp.job_run.state_details #=> String
|
898
901
|
# resp.job_run.release_label #=> String
|
@@ -1662,7 +1665,7 @@ module Aws::EMRServerless
|
|
1662
1665
|
tracer: tracer
|
1663
1666
|
)
|
1664
1667
|
context[:gem_name] = 'aws-sdk-emrserverless'
|
1665
|
-
context[:gem_version] = '1.
|
1668
|
+
context[:gem_version] = '1.48.0'
|
1666
1669
|
Seahorse::Client::Request.new(handlers, context)
|
1667
1670
|
end
|
1668
1671
|
|
@@ -335,6 +335,7 @@ module Aws::EMRServerless
|
|
335
335
|
JobRun.add_member(:created_at, Shapes::ShapeRef.new(shape: Date, required: true, location_name: "createdAt"))
|
336
336
|
JobRun.add_member(:updated_at, Shapes::ShapeRef.new(shape: Date, required: true, location_name: "updatedAt"))
|
337
337
|
JobRun.add_member(:execution_role, Shapes::ShapeRef.new(shape: IAMRoleArn, required: true, location_name: "executionRole"))
|
338
|
+
JobRun.add_member(:execution_iam_policy, Shapes::ShapeRef.new(shape: JobRunExecutionIamPolicy, location_name: "executionIamPolicy"))
|
338
339
|
JobRun.add_member(:state, Shapes::ShapeRef.new(shape: JobRunState, required: true, location_name: "state"))
|
339
340
|
JobRun.add_member(:state_details, Shapes::ShapeRef.new(shape: String256, required: true, location_name: "stateDetails"))
|
340
341
|
JobRun.add_member(:release_label, Shapes::ShapeRef.new(shape: ReleaseLabel, required: true, location_name: "releaseLabel"))
|
@@ -253,7 +253,7 @@ module Aws::EMRServerless
|
|
253
253
|
# @return [String]
|
254
254
|
#
|
255
255
|
# @!attribute [rw] shutdown_grace_period_in_seconds
|
256
|
-
# The duration
|
256
|
+
# The duration in seconds to wait before forcefully terminating the
|
257
257
|
# job after cancellation is requested.
|
258
258
|
# @return [Integer]
|
259
259
|
#
|
@@ -838,6 +838,12 @@ module Aws::EMRServerless
|
|
838
838
|
# The execution role ARN of the job run.
|
839
839
|
# @return [String]
|
840
840
|
#
|
841
|
+
# @!attribute [rw] execution_iam_policy
|
842
|
+
# Optional IAM policy. The resulting job IAM role permissions will be
|
843
|
+
# an intersection of the policies passed and the policy associated
|
844
|
+
# with your job execution role.
|
845
|
+
# @return [Types::JobRunExecutionIamPolicy]
|
846
|
+
#
|
841
847
|
# @!attribute [rw] state
|
842
848
|
# The state of the job run.
|
843
849
|
# @return [String]
|
@@ -937,6 +943,7 @@ module Aws::EMRServerless
|
|
937
943
|
:created_at,
|
938
944
|
:updated_at,
|
939
945
|
:execution_role,
|
946
|
+
:execution_iam_policy,
|
940
947
|
:state,
|
941
948
|
:state_details,
|
942
949
|
:release_label,
|
data/sig/types.rbs
CHANGED
@@ -228,6 +228,7 @@ module Aws::EMRServerless
|
|
228
228
|
attr_accessor created_at: ::Time
|
229
229
|
attr_accessor updated_at: ::Time
|
230
230
|
attr_accessor execution_role: ::String
|
231
|
+
attr_accessor execution_iam_policy: Types::JobRunExecutionIamPolicy
|
231
232
|
attr_accessor state: ("SUBMITTED" | "PENDING" | "SCHEDULED" | "RUNNING" | "SUCCESS" | "FAILED" | "CANCELLING" | "CANCELLED" | "QUEUED")
|
232
233
|
attr_accessor state_details: ::String
|
233
234
|
attr_accessor release_label: ::String
|