aws-sdk-emrserverless 1.68.0 → 1.69.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 +16 -1
- data/lib/aws-sdk-emrserverless/client_api.rb +4 -0
- data/lib/aws-sdk-emrserverless/types.rb +36 -4
- data/lib/aws-sdk-emrserverless.rb +1 -1
- data/sig/client.rbs +8 -4
- data/sig/types.rbs +4 -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: 95d30637b72eb5dede5ca45cec05f1f19c12b8ce645a3ea8f9a310e31e8c9ee2
|
|
4
|
+
data.tar.gz: 6a5d520194da67bf5503fd4b9c182714919469d9021570a29c935a561c017be3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70ff65ccc8ce3829ec2494f77b4a6c2d3b838fb7da5dfba4ff2d70e73c8244a41f7297d58f256eec18fedb3cc3a088c2426811923999172d45d11cecaa6cb142
|
|
7
|
+
data.tar.gz: e897315a7023d7e823dd9cb0ccf9dd29db7623e7d3e12bc69e52261ecef429c5d6a159841f26d93265b1363cfd62689f77090c6ef5233131c95b73db6f1d568e
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.69.0
|
|
@@ -650,11 +650,13 @@ module Aws::EMRServerless
|
|
|
650
650
|
# architecture: "ARM64", # accepts ARM64, X86_64
|
|
651
651
|
# image_configuration: {
|
|
652
652
|
# image_uri: "ImageUri",
|
|
653
|
+
# application_level_digest_resolution: false,
|
|
653
654
|
# },
|
|
654
655
|
# worker_type_specifications: {
|
|
655
656
|
# "WorkerTypeString" => {
|
|
656
657
|
# image_configuration: {
|
|
657
658
|
# image_uri: "ImageUri",
|
|
659
|
+
# application_level_digest_resolution: false,
|
|
658
660
|
# },
|
|
659
661
|
# },
|
|
660
662
|
# },
|
|
@@ -800,9 +802,11 @@ module Aws::EMRServerless
|
|
|
800
802
|
# resp.application.architecture #=> String, one of "ARM64", "X86_64"
|
|
801
803
|
# resp.application.image_configuration.image_uri #=> String
|
|
802
804
|
# resp.application.image_configuration.resolved_image_digest #=> String
|
|
805
|
+
# resp.application.image_configuration.application_level_digest_resolution #=> Boolean
|
|
803
806
|
# resp.application.worker_type_specifications #=> Hash
|
|
804
807
|
# resp.application.worker_type_specifications["WorkerTypeString"].image_configuration.image_uri #=> String
|
|
805
808
|
# resp.application.worker_type_specifications["WorkerTypeString"].image_configuration.resolved_image_digest #=> String
|
|
809
|
+
# resp.application.worker_type_specifications["WorkerTypeString"].image_configuration.application_level_digest_resolution #=> Boolean
|
|
806
810
|
# resp.application.runtime_configuration #=> Array
|
|
807
811
|
# resp.application.runtime_configuration[0].classification #=> String
|
|
808
812
|
# resp.application.runtime_configuration[0].properties #=> Hash
|
|
@@ -988,6 +992,13 @@ module Aws::EMRServerless
|
|
|
988
992
|
# resp.job_run.started_at #=> Time
|
|
989
993
|
# resp.job_run.ended_at #=> Time
|
|
990
994
|
# resp.job_run.queued_duration_milliseconds #=> Integer
|
|
995
|
+
# resp.job_run.image_configuration.image_uri #=> String
|
|
996
|
+
# resp.job_run.image_configuration.resolved_image_digest #=> String
|
|
997
|
+
# resp.job_run.image_configuration.application_level_digest_resolution #=> Boolean
|
|
998
|
+
# resp.job_run.worker_type_specifications #=> Hash
|
|
999
|
+
# resp.job_run.worker_type_specifications["WorkerTypeString"].image_configuration.image_uri #=> String
|
|
1000
|
+
# resp.job_run.worker_type_specifications["WorkerTypeString"].image_configuration.resolved_image_digest #=> String
|
|
1001
|
+
# resp.job_run.worker_type_specifications["WorkerTypeString"].image_configuration.application_level_digest_resolution #=> Boolean
|
|
991
1002
|
#
|
|
992
1003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/GetJobRun AWS API Documentation
|
|
993
1004
|
#
|
|
@@ -1932,11 +1943,13 @@ module Aws::EMRServerless
|
|
|
1932
1943
|
# architecture: "ARM64", # accepts ARM64, X86_64
|
|
1933
1944
|
# image_configuration: {
|
|
1934
1945
|
# image_uri: "ImageUri",
|
|
1946
|
+
# application_level_digest_resolution: false,
|
|
1935
1947
|
# },
|
|
1936
1948
|
# worker_type_specifications: {
|
|
1937
1949
|
# "WorkerTypeString" => {
|
|
1938
1950
|
# image_configuration: {
|
|
1939
1951
|
# image_uri: "ImageUri",
|
|
1952
|
+
# application_level_digest_resolution: false,
|
|
1940
1953
|
# },
|
|
1941
1954
|
# },
|
|
1942
1955
|
# },
|
|
@@ -2030,9 +2043,11 @@ module Aws::EMRServerless
|
|
|
2030
2043
|
# resp.application.architecture #=> String, one of "ARM64", "X86_64"
|
|
2031
2044
|
# resp.application.image_configuration.image_uri #=> String
|
|
2032
2045
|
# resp.application.image_configuration.resolved_image_digest #=> String
|
|
2046
|
+
# resp.application.image_configuration.application_level_digest_resolution #=> Boolean
|
|
2033
2047
|
# resp.application.worker_type_specifications #=> Hash
|
|
2034
2048
|
# resp.application.worker_type_specifications["WorkerTypeString"].image_configuration.image_uri #=> String
|
|
2035
2049
|
# resp.application.worker_type_specifications["WorkerTypeString"].image_configuration.resolved_image_digest #=> String
|
|
2050
|
+
# resp.application.worker_type_specifications["WorkerTypeString"].image_configuration.application_level_digest_resolution #=> Boolean
|
|
2036
2051
|
# resp.application.runtime_configuration #=> Array
|
|
2037
2052
|
# resp.application.runtime_configuration[0].classification #=> String
|
|
2038
2053
|
# resp.application.runtime_configuration[0].properties #=> Hash
|
|
@@ -2090,7 +2105,7 @@ module Aws::EMRServerless
|
|
|
2090
2105
|
tracer: tracer
|
|
2091
2106
|
)
|
|
2092
2107
|
context[:gem_name] = 'aws-sdk-emrserverless'
|
|
2093
|
-
context[:gem_version] = '1.
|
|
2108
|
+
context[:gem_version] = '1.69.0'
|
|
2094
2109
|
Seahorse::Client::Request.new(handlers, context)
|
|
2095
2110
|
end
|
|
2096
2111
|
|
|
@@ -383,9 +383,11 @@ module Aws::EMRServerless
|
|
|
383
383
|
|
|
384
384
|
ImageConfiguration.add_member(:image_uri, Shapes::ShapeRef.new(shape: ImageUri, required: true, location_name: "imageUri"))
|
|
385
385
|
ImageConfiguration.add_member(:resolved_image_digest, Shapes::ShapeRef.new(shape: ImageDigest, location_name: "resolvedImageDigest"))
|
|
386
|
+
ImageConfiguration.add_member(:application_level_digest_resolution, Shapes::ShapeRef.new(shape: Boolean, location_name: "applicationLevelDigestResolution"))
|
|
386
387
|
ImageConfiguration.struct_class = Types::ImageConfiguration
|
|
387
388
|
|
|
388
389
|
ImageConfigurationInput.add_member(:image_uri, Shapes::ShapeRef.new(shape: ImageUri, location_name: "imageUri"))
|
|
390
|
+
ImageConfigurationInput.add_member(:application_level_digest_resolution, Shapes::ShapeRef.new(shape: Boolean, location_name: "applicationLevelDigestResolution"))
|
|
389
391
|
ImageConfigurationInput.struct_class = Types::ImageConfigurationInput
|
|
390
392
|
|
|
391
393
|
InitialCapacityConfig.add_member(:worker_count, Shapes::ShapeRef.new(shape: WorkerCounts, required: true, location_name: "workerCount"))
|
|
@@ -442,6 +444,8 @@ module Aws::EMRServerless
|
|
|
442
444
|
JobRun.add_member(:started_at, Shapes::ShapeRef.new(shape: Date, location_name: "startedAt"))
|
|
443
445
|
JobRun.add_member(:ended_at, Shapes::ShapeRef.new(shape: Date, location_name: "endedAt"))
|
|
444
446
|
JobRun.add_member(:queued_duration_milliseconds, Shapes::ShapeRef.new(shape: Long, location_name: "queuedDurationMilliseconds"))
|
|
447
|
+
JobRun.add_member(:image_configuration, Shapes::ShapeRef.new(shape: ImageConfiguration, location_name: "imageConfiguration"))
|
|
448
|
+
JobRun.add_member(:worker_type_specifications, Shapes::ShapeRef.new(shape: WorkerTypeSpecificationMap, location_name: "workerTypeSpecifications"))
|
|
445
449
|
JobRun.struct_class = Types::JobRun
|
|
446
450
|
|
|
447
451
|
JobRunAttemptSummary.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location_name: "applicationId"))
|
|
@@ -786,7 +786,9 @@ module Aws::EMRServerless
|
|
|
786
786
|
# @return [String]
|
|
787
787
|
#
|
|
788
788
|
# @!attribute [rw] auth_token
|
|
789
|
-
#
|
|
789
|
+
# The authentication token for connecting to the session endpoint.
|
|
790
|
+
# Call `GetSessionEndpoint` again to obtain a new token before it
|
|
791
|
+
# expires.
|
|
790
792
|
# @return [String]
|
|
791
793
|
#
|
|
792
794
|
# @!attribute [rw] auth_token_expires_at
|
|
@@ -924,11 +926,20 @@ module Aws::EMRServerless
|
|
|
924
926
|
# exist until an application has started.
|
|
925
927
|
# @return [String]
|
|
926
928
|
#
|
|
929
|
+
# @!attribute [rw] application_level_digest_resolution
|
|
930
|
+
# Boolean value indicating if the digest resolution is application
|
|
931
|
+
# level or workload level. If true, a custom image URI is resolved at
|
|
932
|
+
# application start time and all workloads submitted will use that
|
|
933
|
+
# image digest. If false, the custom image URI is resolved at the
|
|
934
|
+
# workload submission time.
|
|
935
|
+
# @return [Boolean]
|
|
936
|
+
#
|
|
927
937
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/ImageConfiguration AWS API Documentation
|
|
928
938
|
#
|
|
929
939
|
class ImageConfiguration < Struct.new(
|
|
930
940
|
:image_uri,
|
|
931
|
-
:resolved_image_digest
|
|
941
|
+
:resolved_image_digest,
|
|
942
|
+
:application_level_digest_resolution)
|
|
932
943
|
SENSITIVE = []
|
|
933
944
|
include Aws::Structure
|
|
934
945
|
end
|
|
@@ -941,10 +952,19 @@ module Aws::EMRServerless
|
|
|
941
952
|
# blank in an update, Amazon EMR will remove the image configuration.
|
|
942
953
|
# @return [String]
|
|
943
954
|
#
|
|
955
|
+
# @!attribute [rw] application_level_digest_resolution
|
|
956
|
+
# Boolean value indicating if the digest resolution is application
|
|
957
|
+
# level or workload level. If true, a custom image URI is resolved at
|
|
958
|
+
# application start time and all workloads submitted will use that
|
|
959
|
+
# image digest. If false, the custom image URI is resolved at the
|
|
960
|
+
# workload submission time.
|
|
961
|
+
# @return [Boolean]
|
|
962
|
+
#
|
|
944
963
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/ImageConfigurationInput AWS API Documentation
|
|
945
964
|
#
|
|
946
965
|
class ImageConfigurationInput < Struct.new(
|
|
947
|
-
:image_uri
|
|
966
|
+
:image_uri,
|
|
967
|
+
:application_level_digest_resolution)
|
|
948
968
|
SENSITIVE = []
|
|
949
969
|
include Aws::Structure
|
|
950
970
|
end
|
|
@@ -1184,6 +1204,16 @@ module Aws::EMRServerless
|
|
|
1184
1204
|
# The total time for a job in the QUEUED state in milliseconds.
|
|
1185
1205
|
# @return [Integer]
|
|
1186
1206
|
#
|
|
1207
|
+
# @!attribute [rw] image_configuration
|
|
1208
|
+
# The applied image configuration.
|
|
1209
|
+
# @return [Types::ImageConfiguration]
|
|
1210
|
+
#
|
|
1211
|
+
# @!attribute [rw] worker_type_specifications
|
|
1212
|
+
# The specification applied to each worker type. Includes the
|
|
1213
|
+
# JobRun-level ImageConfiguration when the
|
|
1214
|
+
# applicationLevelDigestResolution is false for the application.
|
|
1215
|
+
# @return [Hash<String,Types::WorkerTypeSpecification>]
|
|
1216
|
+
#
|
|
1187
1217
|
# @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/JobRun AWS API Documentation
|
|
1188
1218
|
#
|
|
1189
1219
|
class JobRun < Struct.new(
|
|
@@ -1214,7 +1244,9 @@ module Aws::EMRServerless
|
|
|
1214
1244
|
:attempt_updated_at,
|
|
1215
1245
|
:started_at,
|
|
1216
1246
|
:ended_at,
|
|
1217
|
-
:queued_duration_milliseconds
|
|
1247
|
+
:queued_duration_milliseconds,
|
|
1248
|
+
:image_configuration,
|
|
1249
|
+
:worker_type_specifications)
|
|
1218
1250
|
SENSITIVE = []
|
|
1219
1251
|
include Aws::Structure
|
|
1220
1252
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -123,11 +123,13 @@ module Aws
|
|
|
123
123
|
},
|
|
124
124
|
?architecture: ("ARM64" | "X86_64"),
|
|
125
125
|
?image_configuration: {
|
|
126
|
-
image_uri: ::String
|
|
126
|
+
image_uri: ::String?,
|
|
127
|
+
application_level_digest_resolution: bool?
|
|
127
128
|
},
|
|
128
129
|
?worker_type_specifications: Hash[::String, {
|
|
129
130
|
image_configuration: {
|
|
130
|
-
image_uri: ::String
|
|
131
|
+
image_uri: ::String?,
|
|
132
|
+
application_level_digest_resolution: bool?
|
|
131
133
|
}?
|
|
132
134
|
}],
|
|
133
135
|
?runtime_configuration: Array[
|
|
@@ -468,11 +470,13 @@ module Aws
|
|
|
468
470
|
},
|
|
469
471
|
?architecture: ("ARM64" | "X86_64"),
|
|
470
472
|
?image_configuration: {
|
|
471
|
-
image_uri: ::String
|
|
473
|
+
image_uri: ::String?,
|
|
474
|
+
application_level_digest_resolution: bool?
|
|
472
475
|
},
|
|
473
476
|
?worker_type_specifications: Hash[::String, {
|
|
474
477
|
image_configuration: {
|
|
475
|
-
image_uri: ::String
|
|
478
|
+
image_uri: ::String?,
|
|
479
|
+
application_level_digest_resolution: bool?
|
|
476
480
|
}?
|
|
477
481
|
}],
|
|
478
482
|
?interactive_configuration: {
|
data/sig/types.rbs
CHANGED
|
@@ -244,11 +244,13 @@ module Aws::EMRServerless
|
|
|
244
244
|
class ImageConfiguration
|
|
245
245
|
attr_accessor image_uri: ::String
|
|
246
246
|
attr_accessor resolved_image_digest: ::String
|
|
247
|
+
attr_accessor application_level_digest_resolution: bool
|
|
247
248
|
SENSITIVE: []
|
|
248
249
|
end
|
|
249
250
|
|
|
250
251
|
class ImageConfigurationInput
|
|
251
252
|
attr_accessor image_uri: ::String
|
|
253
|
+
attr_accessor application_level_digest_resolution: bool
|
|
252
254
|
SENSITIVE: []
|
|
253
255
|
end
|
|
254
256
|
|
|
@@ -318,6 +320,8 @@ module Aws::EMRServerless
|
|
|
318
320
|
attr_accessor started_at: ::Time
|
|
319
321
|
attr_accessor ended_at: ::Time
|
|
320
322
|
attr_accessor queued_duration_milliseconds: ::Integer
|
|
323
|
+
attr_accessor image_configuration: Types::ImageConfiguration
|
|
324
|
+
attr_accessor worker_type_specifications: ::Hash[::String, Types::WorkerTypeSpecification]
|
|
321
325
|
SENSITIVE: []
|
|
322
326
|
end
|
|
323
327
|
|