aws-sdk-emr 1.60.0 → 1.61.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: d97fd499ce869c43c43ff2bae3795044a20a273b6863739956ad8d1df2d9d808
4
- data.tar.gz: 18a5accfdb83ba4f17288130f8b710d470972ebcffa6118903df6acac79daf9a
3
+ metadata.gz: 831dc86f3be02234167dfc478b6ae8cac9124f50c28fb1b26554edf3ec20cedc
4
+ data.tar.gz: 46b024b03d2b4aedb523c859aed5ba888844776fa8924ec13e196dc79fb57e24
5
5
  SHA512:
6
- metadata.gz: b56c188d402eac9efe4eb37d95acb6c5d5945a1b83f99dea206eb6a32e61fe6d577a4c5b702c5c86f6222dfda3de0de613568bc8442b2e6bb2b2889cff2feec7
7
- data.tar.gz: 2ae3656c406d2519b21a11f974480546b88f795015a0fdb3b473974e081421c2a3093318158bfd1f00b1e17a6b4dbbb3e9594111465be8f350141733313bd98a
6
+ metadata.gz: c543307e6a33a904ec052f7057f9cb21de353ee59eac0c4cea720d4286f89843323913f28a6bcff9d9ab0ccd4302004c33ca7e4a8f50f72ec653ee3b90db79b1
7
+ data.tar.gz: d1d6cf085ddb93c17a77b5260161b4f598e477cdf96f0b1a6539fec57929e9e1e1a6d9d052e4d15b53ec631d15bcd8344fbe1dd0f4d9668691c2d596d180b47a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.0 (2022-06-29)
5
+ ------------------
6
+
7
+ * Feature - This release introduces additional optional parameter "Throughput" to VolumeSpecification to enable user to configure throughput for gp3 ebs volumes.
8
+
4
9
  1.60.0 (2022-05-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.60.0
1
+ 1.61.0
@@ -402,6 +402,7 @@ module Aws::EMR
402
402
  # volume_type: "String", # required
403
403
  # iops: 1,
404
404
  # size_in_gb: 1, # required
405
+ # throughput: 1,
405
406
  # },
406
407
  # volumes_per_instance: 1,
407
408
  # },
@@ -499,6 +500,7 @@ module Aws::EMR
499
500
  # volume_type: "String", # required
500
501
  # iops: 1,
501
502
  # size_in_gb: 1, # required
503
+ # throughput: 1,
502
504
  # },
503
505
  # volumes_per_instance: 1,
504
506
  # },
@@ -1838,6 +1840,7 @@ module Aws::EMR
1838
1840
  # resp.instance_fleets[0].instance_type_specifications[0].ebs_block_devices[0].volume_specification.volume_type #=> String
1839
1841
  # resp.instance_fleets[0].instance_type_specifications[0].ebs_block_devices[0].volume_specification.iops #=> Integer
1840
1842
  # resp.instance_fleets[0].instance_type_specifications[0].ebs_block_devices[0].volume_specification.size_in_gb #=> Integer
1843
+ # resp.instance_fleets[0].instance_type_specifications[0].ebs_block_devices[0].volume_specification.throughput #=> Integer
1841
1844
  # resp.instance_fleets[0].instance_type_specifications[0].ebs_block_devices[0].device #=> String
1842
1845
  # resp.instance_fleets[0].instance_type_specifications[0].ebs_optimized #=> Boolean
1843
1846
  # resp.instance_fleets[0].instance_type_specifications[0].custom_ami_id #=> String
@@ -1916,6 +1919,7 @@ module Aws::EMR
1916
1919
  # resp.instance_groups[0].ebs_block_devices[0].volume_specification.volume_type #=> String
1917
1920
  # resp.instance_groups[0].ebs_block_devices[0].volume_specification.iops #=> Integer
1918
1921
  # resp.instance_groups[0].ebs_block_devices[0].volume_specification.size_in_gb #=> Integer
1922
+ # resp.instance_groups[0].ebs_block_devices[0].volume_specification.throughput #=> Integer
1919
1923
  # resp.instance_groups[0].ebs_block_devices[0].device #=> String
1920
1924
  # resp.instance_groups[0].ebs_optimized #=> Boolean
1921
1925
  # resp.instance_groups[0].shrink_policy.decommission_timeout #=> Integer
@@ -3193,6 +3197,7 @@ module Aws::EMR
3193
3197
  # volume_type: "String", # required
3194
3198
  # iops: 1,
3195
3199
  # size_in_gb: 1, # required
3200
+ # throughput: 1,
3196
3201
  # },
3197
3202
  # volumes_per_instance: 1,
3198
3203
  # },
@@ -3259,6 +3264,7 @@ module Aws::EMR
3259
3264
  # volume_type: "String", # required
3260
3265
  # iops: 1,
3261
3266
  # size_in_gb: 1, # required
3267
+ # throughput: 1,
3262
3268
  # },
3263
3269
  # volumes_per_instance: 1,
3264
3270
  # },
@@ -3777,7 +3783,7 @@ module Aws::EMR
3777
3783
  params: params,
3778
3784
  config: config)
3779
3785
  context[:gem_name] = 'aws-sdk-emr'
3780
- context[:gem_version] = '1.60.0'
3786
+ context[:gem_version] = '1.61.0'
3781
3787
  Seahorse::Client::Request.new(handlers, context)
3782
3788
  end
3783
3789
 
@@ -308,6 +308,7 @@ module Aws::EMR
308
308
  Tag = Shapes::StructureShape.new(name: 'Tag')
309
309
  TagList = Shapes::ListShape.new(name: 'TagList')
310
310
  TerminateJobFlowsInput = Shapes::StructureShape.new(name: 'TerminateJobFlowsInput')
311
+ ThroughputVal = Shapes::IntegerShape.new(name: 'ThroughputVal')
311
312
  Unit = Shapes::StringShape.new(name: 'Unit')
312
313
  UpdateStudioInput = Shapes::StructureShape.new(name: 'UpdateStudioInput')
313
314
  UpdateStudioSessionMappingInput = Shapes::StructureShape.new(name: 'UpdateStudioSessionMappingInput')
@@ -1455,6 +1456,7 @@ module Aws::EMR
1455
1456
  VolumeSpecification.add_member(:volume_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "VolumeType"))
1456
1457
  VolumeSpecification.add_member(:iops, Shapes::ShapeRef.new(shape: Integer, location_name: "Iops"))
1457
1458
  VolumeSpecification.add_member(:size_in_gb, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "SizeInGB"))
1459
+ VolumeSpecification.add_member(:throughput, Shapes::ShapeRef.new(shape: ThroughputVal, location_name: "Throughput"))
1458
1460
  VolumeSpecification.struct_class = Types::VolumeSpecification
1459
1461
 
1460
1462
  XmlStringList.member = Shapes::ShapeRef.new(shape: XmlString)
@@ -33,6 +33,7 @@ module Aws::EMR
33
33
  # volume_type: "String", # required
34
34
  # iops: 1,
35
35
  # size_in_gb: 1, # required
36
+ # throughput: 1,
36
37
  # },
37
38
  # volumes_per_instance: 1,
38
39
  # },
@@ -143,6 +144,7 @@ module Aws::EMR
143
144
  # volume_type: "String", # required
144
145
  # iops: 1,
145
146
  # size_in_gb: 1, # required
147
+ # throughput: 1,
146
148
  # },
147
149
  # volumes_per_instance: 1,
148
150
  # },
@@ -2017,9 +2019,9 @@ module Aws::EMR
2017
2019
  # instance group.
2018
2020
  #
2019
2021
  # @!attribute [rw] volume_specification
2020
- # EBS volume specifications such as volume type, IOPS, and size (GiB)
2021
- # that will be requested for the EBS volume attached to an EC2
2022
- # instance in the cluster.
2022
+ # EBS volume specifications such as volume type, IOPS, size (GiB) and
2023
+ # throughput (MiB/s) that are requested for the EBS volume attached to
2024
+ # an EC2 instance in the cluster.
2023
2025
  # @return [Types::VolumeSpecification]
2024
2026
  #
2025
2027
  # @!attribute [rw] device
@@ -2036,7 +2038,7 @@ module Aws::EMR
2036
2038
  end
2037
2039
 
2038
2040
  # Configuration of requested EBS block device associated with the
2039
- # instance group with count of volumes that will be associated to every
2041
+ # instance group with count of volumes that are associated to every
2040
2042
  # instance.
2041
2043
  #
2042
2044
  # @note When making an API call, you may pass EbsBlockDeviceConfig
@@ -2047,19 +2049,20 @@ module Aws::EMR
2047
2049
  # volume_type: "String", # required
2048
2050
  # iops: 1,
2049
2051
  # size_in_gb: 1, # required
2052
+ # throughput: 1,
2050
2053
  # },
2051
2054
  # volumes_per_instance: 1,
2052
2055
  # }
2053
2056
  #
2054
2057
  # @!attribute [rw] volume_specification
2055
- # EBS volume specifications such as volume type, IOPS, and size (GiB)
2056
- # that will be requested for the EBS volume attached to an EC2
2057
- # instance in the cluster.
2058
+ # EBS volume specifications such as volume type, IOPS, size (GiB) and
2059
+ # throughput (MiB/s) that are requested for the EBS volume attached to
2060
+ # an EC2 instance in the cluster.
2058
2061
  # @return [Types::VolumeSpecification]
2059
2062
  #
2060
2063
  # @!attribute [rw] volumes_per_instance
2061
- # Number of EBS volumes with a specific volume configuration that will
2062
- # be associated with every instance in the instance group
2064
+ # Number of EBS volumes with a specific volume configuration that are
2065
+ # associated with every instance in the instance group
2063
2066
  # @return [Integer]
2064
2067
  #
2065
2068
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/EbsBlockDeviceConfig AWS API Documentation
@@ -2083,6 +2086,7 @@ module Aws::EMR
2083
2086
  # volume_type: "String", # required
2084
2087
  # iops: 1,
2085
2088
  # size_in_gb: 1, # required
2089
+ # throughput: 1,
2086
2090
  # },
2087
2091
  # volumes_per_instance: 1,
2088
2092
  # },
@@ -2776,6 +2780,7 @@ module Aws::EMR
2776
2780
  # volume_type: "String", # required
2777
2781
  # iops: 1,
2778
2782
  # size_in_gb: 1, # required
2783
+ # throughput: 1,
2779
2784
  # },
2780
2785
  # volumes_per_instance: 1,
2781
2786
  # },
@@ -3249,6 +3254,7 @@ module Aws::EMR
3249
3254
  # volume_type: "String", # required
3250
3255
  # iops: 1,
3251
3256
  # size_in_gb: 1, # required
3257
+ # throughput: 1,
3252
3258
  # },
3253
3259
  # volumes_per_instance: 1,
3254
3260
  # },
@@ -3731,6 +3737,7 @@ module Aws::EMR
3731
3737
  # volume_type: "String", # required
3732
3738
  # iops: 1,
3733
3739
  # size_in_gb: 1, # required
3740
+ # throughput: 1,
3734
3741
  # },
3735
3742
  # volumes_per_instance: 1,
3736
3743
  # },
@@ -4117,6 +4124,7 @@ module Aws::EMR
4117
4124
  # volume_type: "String", # required
4118
4125
  # iops: 1,
4119
4126
  # size_in_gb: 1, # required
4127
+ # throughput: 1,
4120
4128
  # },
4121
4129
  # volumes_per_instance: 1,
4122
4130
  # },
@@ -4183,6 +4191,7 @@ module Aws::EMR
4183
4191
  # volume_type: "String", # required
4184
4192
  # iops: 1,
4185
4193
  # size_in_gb: 1, # required
4194
+ # throughput: 1,
4186
4195
  # },
4187
4196
  # volumes_per_instance: 1,
4188
4197
  # },
@@ -6189,6 +6198,7 @@ module Aws::EMR
6189
6198
  # volume_type: "String", # required
6190
6199
  # iops: 1,
6191
6200
  # size_in_gb: 1, # required
6201
+ # throughput: 1,
6192
6202
  # },
6193
6203
  # volumes_per_instance: 1,
6194
6204
  # },
@@ -6255,6 +6265,7 @@ module Aws::EMR
6255
6265
  # volume_type: "String", # required
6256
6266
  # iops: 1,
6257
6267
  # size_in_gb: 1, # required
6268
+ # throughput: 1,
6258
6269
  # },
6259
6270
  # volumes_per_instance: 1,
6260
6271
  # },
@@ -8080,9 +8091,9 @@ module Aws::EMR
8080
8091
  include Aws::Structure
8081
8092
  end
8082
8093
 
8083
- # EBS volume specifications such as volume type, IOPS, and size (GiB)
8084
- # that will be requested for the EBS volume attached to an EC2 instance
8085
- # in the cluster.
8094
+ # EBS volume specifications such as volume type, IOPS, size (GiB) and
8095
+ # throughput (MiB/s) that are requested for the EBS volume attached to
8096
+ # an EC2 instance in the cluster.
8086
8097
  #
8087
8098
  # @note When making an API call, you may pass VolumeSpecification
8088
8099
  # data as a hash:
@@ -8091,6 +8102,7 @@ module Aws::EMR
8091
8102
  # volume_type: "String", # required
8092
8103
  # iops: 1,
8093
8104
  # size_in_gb: 1, # required
8105
+ # throughput: 1,
8094
8106
  # }
8095
8107
  #
8096
8108
  # @!attribute [rw] volume_type
@@ -8107,12 +8119,19 @@ module Aws::EMR
8107
8119
  # 1024. If the volume type is EBS-optimized, the minimum value is 10.
8108
8120
  # @return [Integer]
8109
8121
  #
8122
+ # @!attribute [rw] throughput
8123
+ # The throughput, in mebibyte per second (MiB/s). This optional
8124
+ # parameter can be a number from 125 - 1000 and is valid only for gp3
8125
+ # volumes.
8126
+ # @return [Integer]
8127
+ #
8110
8128
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/VolumeSpecification AWS API Documentation
8111
8129
  #
8112
8130
  class VolumeSpecification < Struct.new(
8113
8131
  :volume_type,
8114
8132
  :iops,
8115
- :size_in_gb)
8133
+ :size_in_gb,
8134
+ :throughput)
8116
8135
  SENSITIVE = []
8117
8136
  include Aws::Structure
8118
8137
  end
data/lib/aws-sdk-emr.rb CHANGED
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-emr/customizations'
49
49
  # @!group service
50
50
  module Aws::EMR
51
51
 
52
- GEM_VERSION = '1.60.0'
52
+ GEM_VERSION = '1.61.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.60.0
4
+ version: 1.61.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: 2022-05-10 00:00:00.000000000 Z
11
+ date: 2022-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core