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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 18657b1e1dd3cc01e401d665979f810010c25030d716a4c297a9b7f320d2bec9
4
- data.tar.gz: 6f38e8a203a43f808fa22ceef0d65453f32a7f415357bb1c2c7012d96939d1d3
3
+ metadata.gz: 93f281f88373b102f7ff659a0a3dac73d93a38b2f2d554bce2618e62e187bab8
4
+ data.tar.gz: 94baff816a004a0e768f74362253ae321684a65d09eca586d1f2f987e5fe7609
5
5
  SHA512:
6
- metadata.gz: a99eeffb8b4868533015a4d35396584c2e71e11999acb9ee7a59517f6bb88f0bdbc12f0dd316681866fdd9a59373d1233224a9079d5aff4824bdd5132834a4c6
7
- data.tar.gz: 7a6a92f5dcef5c2cfe4b71ee3a151909dae933afadbe94077d80bbb607674369e6094d97873cbdc40831549acf3dbf5192ca2ff0b91690b678f0369040bb86bf
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.47.0
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 (in seconds) to wait before forcefully terminating the
482
- # job after cancellation is requested.
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.47.0'
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 (in seconds) to wait before forcefully terminating the
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,
@@ -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.47.0'
57
+ GEM_VERSION = '1.48.0'
58
58
 
59
59
  end
60
60
 
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
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.47.0
4
+ version: 1.48.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services