aws-sdk-glue 1.225.0 → 1.227.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +34 -9
- data/lib/aws-sdk-glue/client_api.rb +3 -0
- data/lib/aws-sdk-glue/types.rb +21 -41
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +3 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd4db2253a2d223a901c52c87ae68c6d9d14339f8e816d5681992945cbe539f7
|
4
|
+
data.tar.gz: 767b580fa6b5aabec5b97250622afd3f66115f4c1013408bd281d39226fe57ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c92248b839f721bc34abd6f2d24776ad4390d6fd8330e84f27a8387b98c0ebcd58adca87fc62fe7d7cf7d51891865870560e1297f1ecec2d0490ea07c1797db9
|
7
|
+
data.tar.gz: 80255322c34432368e5c830a0a98de1253c6633ecabbb59a1a5199746c1bd899d610e9a63df234ba2618d5f3b841ed8d703989289039d56258cc75ee418019fb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.227.0 (2025-07-23)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS Glue now supports dynamic session policies for job executions. This feature allows you to specify custom, fine-grained permissions for each job run without creating multiple IAM roles.
|
8
|
+
|
9
|
+
1.226.0 (2025-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.225.0 (2025-07-16)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.227.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -95,7 +95,7 @@ module Aws::Glue
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::Glue
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::Glue
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::Glue
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -374,7 +384,7 @@ module Aws::Glue
|
|
374
384
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
375
385
|
#
|
376
386
|
# @option options [Aws::TokenProvider] :token_provider
|
377
|
-
#
|
387
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
378
388
|
# following classes:
|
379
389
|
#
|
380
390
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -2463,6 +2473,7 @@ module Aws::Glue
|
|
2463
2473
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
2464
2474
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
|
2465
2475
|
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].state_detail #=> String
|
2476
|
+
# resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].execution_role_session_policy #=> String
|
2466
2477
|
# resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls #=> Array
|
2467
2478
|
# resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
2468
2479
|
# resp.workflows[0].last_run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -2536,6 +2547,7 @@ module Aws::Glue
|
|
2536
2547
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
2537
2548
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].profile_name #=> String
|
2538
2549
|
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].state_detail #=> String
|
2550
|
+
# resp.workflows[0].graph.nodes[0].job_details.job_runs[0].execution_role_session_policy #=> String
|
2539
2551
|
# resp.workflows[0].graph.nodes[0].crawler_details.crawls #=> Array
|
2540
2552
|
# resp.workflows[0].graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
2541
2553
|
# resp.workflows[0].graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -10305,6 +10317,7 @@ module Aws::Glue
|
|
10305
10317
|
# resp.job_run.maintenance_window #=> String
|
10306
10318
|
# resp.job_run.profile_name #=> String
|
10307
10319
|
# resp.job_run.state_detail #=> String
|
10320
|
+
# resp.job_run.execution_role_session_policy #=> String
|
10308
10321
|
#
|
10309
10322
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobRun AWS API Documentation
|
10310
10323
|
#
|
@@ -10379,6 +10392,7 @@ module Aws::Glue
|
|
10379
10392
|
# resp.job_runs[0].maintenance_window #=> String
|
10380
10393
|
# resp.job_runs[0].profile_name #=> String
|
10381
10394
|
# resp.job_runs[0].state_detail #=> String
|
10395
|
+
# resp.job_runs[0].execution_role_session_policy #=> String
|
10382
10396
|
# resp.next_token #=> String
|
10383
10397
|
#
|
10384
10398
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobRuns AWS API Documentation
|
@@ -14527,6 +14541,7 @@ module Aws::Glue
|
|
14527
14541
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
14528
14542
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
|
14529
14543
|
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].state_detail #=> String
|
14544
|
+
# resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].execution_role_session_policy #=> String
|
14530
14545
|
# resp.workflow.last_run.graph.nodes[0].crawler_details.crawls #=> Array
|
14531
14546
|
# resp.workflow.last_run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
14532
14547
|
# resp.workflow.last_run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -14600,6 +14615,7 @@ module Aws::Glue
|
|
14600
14615
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
14601
14616
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
|
14602
14617
|
# resp.workflow.graph.nodes[0].job_details.job_runs[0].state_detail #=> String
|
14618
|
+
# resp.workflow.graph.nodes[0].job_details.job_runs[0].execution_role_session_policy #=> String
|
14603
14619
|
# resp.workflow.graph.nodes[0].crawler_details.crawls #=> Array
|
14604
14620
|
# resp.workflow.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
14605
14621
|
# resp.workflow.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -14727,6 +14743,7 @@ module Aws::Glue
|
|
14727
14743
|
# resp.run.graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
14728
14744
|
# resp.run.graph.nodes[0].job_details.job_runs[0].profile_name #=> String
|
14729
14745
|
# resp.run.graph.nodes[0].job_details.job_runs[0].state_detail #=> String
|
14746
|
+
# resp.run.graph.nodes[0].job_details.job_runs[0].execution_role_session_policy #=> String
|
14730
14747
|
# resp.run.graph.nodes[0].crawler_details.crawls #=> Array
|
14731
14748
|
# resp.run.graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
14732
14749
|
# resp.run.graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -14893,6 +14910,7 @@ module Aws::Glue
|
|
14893
14910
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].maintenance_window #=> String
|
14894
14911
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].profile_name #=> String
|
14895
14912
|
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].state_detail #=> String
|
14913
|
+
# resp.runs[0].graph.nodes[0].job_details.job_runs[0].execution_role_session_policy #=> String
|
14896
14914
|
# resp.runs[0].graph.nodes[0].crawler_details.crawls #=> Array
|
14897
14915
|
# resp.runs[0].graph.nodes[0].crawler_details.crawls[0].state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED", "ERROR"
|
14898
14916
|
# resp.runs[0].graph.nodes[0].crawler_details.crawls[0].started_on #=> Time
|
@@ -17823,6 +17841,12 @@ module Aws::Glue
|
|
17823
17841
|
# will be allowed to set `ExecutionClass` to `FLEX`. The flexible
|
17824
17842
|
# execution class is available for Spark jobs.
|
17825
17843
|
#
|
17844
|
+
# @option params [String] :execution_role_session_policy
|
17845
|
+
# This inline session policy to the StartJobRun API allows you to
|
17846
|
+
# dynamically restrict the permissions of the specified execution role
|
17847
|
+
# for the scope of the job, without requiring the creation of additional
|
17848
|
+
# IAM roles.
|
17849
|
+
#
|
17826
17850
|
# @return [Types::StartJobRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17827
17851
|
#
|
17828
17852
|
# * {Types::StartJobRunResponse#job_run_id #job_run_id} => String
|
@@ -17846,6 +17870,7 @@ module Aws::Glue
|
|
17846
17870
|
# worker_type: "Standard", # accepts Standard, G.1X, G.2X, G.025X, G.4X, G.8X, Z.2X
|
17847
17871
|
# number_of_workers: 1,
|
17848
17872
|
# execution_class: "FLEX", # accepts FLEX, STANDARD
|
17873
|
+
# execution_role_session_policy: "OrchestrationPolicyJsonString",
|
17849
17874
|
# })
|
17850
17875
|
#
|
17851
17876
|
# @example Response structure
|
@@ -20457,7 +20482,7 @@ module Aws::Glue
|
|
20457
20482
|
tracer: tracer
|
20458
20483
|
)
|
20459
20484
|
context[:gem_name] = 'aws-sdk-glue'
|
20460
|
-
context[:gem_version] = '1.
|
20485
|
+
context[:gem_version] = '1.227.0'
|
20461
20486
|
Seahorse::Client::Request.new(handlers, context)
|
20462
20487
|
end
|
20463
20488
|
|
@@ -1073,6 +1073,7 @@ module Aws::Glue
|
|
1073
1073
|
OrchestrationNameString = Shapes::StringShape.new(name: 'OrchestrationNameString')
|
1074
1074
|
OrchestrationPageSize200 = Shapes::IntegerShape.new(name: 'OrchestrationPageSize200')
|
1075
1075
|
OrchestrationPageSize25 = Shapes::IntegerShape.new(name: 'OrchestrationPageSize25')
|
1076
|
+
OrchestrationPolicyJsonString = Shapes::StringShape.new(name: 'OrchestrationPolicyJsonString')
|
1076
1077
|
OrchestrationRoleArn = Shapes::StringShape.new(name: 'OrchestrationRoleArn')
|
1077
1078
|
OrchestrationS3Location = Shapes::StringShape.new(name: 'OrchestrationS3Location')
|
1078
1079
|
OrchestrationStatementCodeString = Shapes::StringShape.new(name: 'OrchestrationStatementCodeString')
|
@@ -5044,6 +5045,7 @@ module Aws::Glue
|
|
5044
5045
|
JobRun.add_member(:maintenance_window, Shapes::ShapeRef.new(shape: MaintenanceWindow, location_name: "MaintenanceWindow"))
|
5045
5046
|
JobRun.add_member(:profile_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ProfileName"))
|
5046
5047
|
JobRun.add_member(:state_detail, Shapes::ShapeRef.new(shape: OrchestrationMessageString, location_name: "StateDetail"))
|
5048
|
+
JobRun.add_member(:execution_role_session_policy, Shapes::ShapeRef.new(shape: OrchestrationPolicyJsonString, location_name: "ExecutionRoleSessionPolicy"))
|
5047
5049
|
JobRun.struct_class = Types::JobRun
|
5048
5050
|
|
5049
5051
|
JobRunList.member = Shapes::ShapeRef.new(shape: JobRun)
|
@@ -6568,6 +6570,7 @@ module Aws::Glue
|
|
6568
6570
|
StartJobRunRequest.add_member(:worker_type, Shapes::ShapeRef.new(shape: WorkerType, location_name: "WorkerType"))
|
6569
6571
|
StartJobRunRequest.add_member(:number_of_workers, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "NumberOfWorkers"))
|
6570
6572
|
StartJobRunRequest.add_member(:execution_class, Shapes::ShapeRef.new(shape: ExecutionClass, location_name: "ExecutionClass"))
|
6573
|
+
StartJobRunRequest.add_member(:execution_role_session_policy, Shapes::ShapeRef.new(shape: OrchestrationPolicyJsonString, location_name: "ExecutionRoleSessionPolicy"))
|
6571
6574
|
StartJobRunRequest.struct_class = Types::StartJobRunRequest
|
6572
6575
|
|
6573
6576
|
StartJobRunResponse.add_member(:job_run_id, Shapes::ShapeRef.new(shape: IdString, location_name: "JobRunId"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -17505,6 +17505,13 @@ module Aws::Glue
|
|
17505
17505
|
# state.
|
17506
17506
|
# @return [String]
|
17507
17507
|
#
|
17508
|
+
# @!attribute [rw] execution_role_session_policy
|
17509
|
+
# This inline session policy to the StartJobRun API allows you to
|
17510
|
+
# dynamically restrict the permissions of the specified execution role
|
17511
|
+
# for the scope of the job, without requiring the creation of
|
17512
|
+
# additional IAM roles.
|
17513
|
+
# @return [String]
|
17514
|
+
#
|
17508
17515
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/JobRun AWS API Documentation
|
17509
17516
|
#
|
17510
17517
|
class JobRun < Struct.new(
|
@@ -17536,7 +17543,8 @@ module Aws::Glue
|
|
17536
17543
|
:execution_class,
|
17537
17544
|
:maintenance_window,
|
17538
17545
|
:profile_name,
|
17539
|
-
:state_detail
|
17546
|
+
:state_detail,
|
17547
|
+
:execution_role_session_policy)
|
17540
17548
|
SENSITIVE = []
|
17541
17549
|
include Aws::Structure
|
17542
17550
|
end
|
@@ -17708,48 +17716,12 @@ module Aws::Glue
|
|
17708
17716
|
# @!attribute [rw] worker_type
|
17709
17717
|
# The type of predefined worker that is allocated when a job runs.
|
17710
17718
|
# Accepts a value of G.1X, G.2X, G.4X, G.8X or G.025X for Spark jobs.
|
17711
|
-
# Accepts the value Z.2X for Ray jobs.
|
17712
|
-
#
|
17713
|
-
# * For the `G.1X` worker type, each worker maps to 1 DPU (4 vCPUs, 16
|
17714
|
-
# GB of memory) with 94GB disk, and provides 1 executor per worker.
|
17715
|
-
# We recommend this worker type for workloads such as data
|
17716
|
-
# transforms, joins, and queries, to offers a scalable and cost
|
17717
|
-
# effective way to run most jobs.
|
17718
|
-
#
|
17719
|
-
# * For the `G.2X` worker type, each worker maps to 2 DPU (8 vCPUs, 32
|
17720
|
-
# GB of memory) with 138GB disk, and provides 1 executor per worker.
|
17721
|
-
# We recommend this worker type for workloads such as data
|
17722
|
-
# transforms, joins, and queries, to offers a scalable and cost
|
17723
|
-
# effective way to run most jobs.
|
17724
|
-
#
|
17725
|
-
# * For the `G.4X` worker type, each worker maps to 4 DPU (16 vCPUs,
|
17726
|
-
# 64 GB of memory) with 256GB disk, and provides 1 executor per
|
17727
|
-
# worker. We recommend this worker type for jobs whose workloads
|
17728
|
-
# contain your most demanding transforms, aggregations, joins, and
|
17729
|
-
# queries. This worker type is available only for Glue version 3.0
|
17730
|
-
# or later Spark ETL jobs in the following Amazon Web Services
|
17731
|
-
# Regions: US East (Ohio), US East (N. Virginia), US West (Oregon),
|
17732
|
-
# Asia Pacific (Singapore), Asia Pacific (Sydney), Asia Pacific
|
17733
|
-
# (Tokyo), Canada (Central), Europe (Frankfurt), Europe (Ireland),
|
17734
|
-
# and Europe (Stockholm).
|
17719
|
+
# Accepts the value Z.2X for Ray jobs. For more information, see
|
17720
|
+
# [Defining job properties for Spark jobs ][1]
|
17735
17721
|
#
|
17736
|
-
# * For the `G.8X` worker type, each worker maps to 8 DPU (32 vCPUs,
|
17737
|
-
# 128 GB of memory) with 512GB disk, and provides 1 executor per
|
17738
|
-
# worker. We recommend this worker type for jobs whose workloads
|
17739
|
-
# contain your most demanding transforms, aggregations, joins, and
|
17740
|
-
# queries. This worker type is available only for Glue version 3.0
|
17741
|
-
# or later Spark ETL jobs, in the same Amazon Web Services Regions
|
17742
|
-
# as supported for the `G.4X` worker type.
|
17743
17722
|
#
|
17744
|
-
# * For the `G.025X` worker type, each worker maps to 0.25 DPU (2
|
17745
|
-
# vCPUs, 4 GB of memory) with 84GB disk, and provides 1 executor per
|
17746
|
-
# worker. We recommend this worker type for low volume streaming
|
17747
|
-
# jobs. This worker type is only available for Glue version 3.0 or
|
17748
|
-
# later streaming jobs.
|
17749
17723
|
#
|
17750
|
-
#
|
17751
|
-
# 64 GB of memory) with 128 GB disk, and provides up to 8 Ray
|
17752
|
-
# workers based on the autoscaler.
|
17724
|
+
# [1]: https://docs.aws.amazon.com/glue/latest/dg/add-job.html#create-job
|
17753
17725
|
# @return [String]
|
17754
17726
|
#
|
17755
17727
|
# @!attribute [rw] number_of_workers
|
@@ -25017,6 +24989,13 @@ module Aws::Glue
|
|
25017
24989
|
# execution class is available for Spark jobs.
|
25018
24990
|
# @return [String]
|
25019
24991
|
#
|
24992
|
+
# @!attribute [rw] execution_role_session_policy
|
24993
|
+
# This inline session policy to the StartJobRun API allows you to
|
24994
|
+
# dynamically restrict the permissions of the specified execution role
|
24995
|
+
# for the scope of the job, without requiring the creation of
|
24996
|
+
# additional IAM roles.
|
24997
|
+
# @return [String]
|
24998
|
+
#
|
25020
24999
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StartJobRunRequest AWS API Documentation
|
25021
25000
|
#
|
25022
25001
|
class StartJobRunRequest < Struct.new(
|
@@ -25031,7 +25010,8 @@ module Aws::Glue
|
|
25031
25010
|
:notification_property,
|
25032
25011
|
:worker_type,
|
25033
25012
|
:number_of_workers,
|
25034
|
-
:execution_class
|
25013
|
+
:execution_class,
|
25014
|
+
:execution_role_session_policy)
|
25035
25015
|
SENSITIVE = []
|
25036
25016
|
include Aws::Structure
|
25037
25017
|
end
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -5326,7 +5327,8 @@ module Aws
|
|
5326
5327
|
},
|
5327
5328
|
?worker_type: ("Standard" | "G.1X" | "G.2X" | "G.025X" | "G.4X" | "G.8X" | "Z.2X"),
|
5328
5329
|
?number_of_workers: ::Integer,
|
5329
|
-
?execution_class: ("FLEX" | "STANDARD")
|
5330
|
+
?execution_class: ("FLEX" | "STANDARD"),
|
5331
|
+
?execution_role_session_policy: ::String
|
5330
5332
|
) -> _StartJobRunResponseSuccess
|
5331
5333
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartJobRunResponseSuccess
|
5332
5334
|
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -4242,6 +4242,7 @@ module Aws::Glue
|
|
4242
4242
|
attr_accessor maintenance_window: ::String
|
4243
4243
|
attr_accessor profile_name: ::String
|
4244
4244
|
attr_accessor state_detail: ::String
|
4245
|
+
attr_accessor execution_role_session_policy: ::String
|
4245
4246
|
SENSITIVE: []
|
4246
4247
|
end
|
4247
4248
|
|
@@ -6086,6 +6087,7 @@ module Aws::Glue
|
|
6086
6087
|
attr_accessor worker_type: ("Standard" | "G.1X" | "G.2X" | "G.025X" | "G.4X" | "G.8X" | "Z.2X")
|
6087
6088
|
attr_accessor number_of_workers: ::Integer
|
6088
6089
|
attr_accessor execution_class: ("FLEX" | "STANDARD")
|
6090
|
+
attr_accessor execution_role_session_policy: ::String
|
6089
6091
|
SENSITIVE: []
|
6090
6092
|
end
|
6091
6093
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-glue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.227.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|