aws-sdk-emr 1.98.0 → 1.100.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-emr/client.rb +5 -3
- data/lib/aws-sdk-emr/client_api.rb +3 -0
- data/lib/aws-sdk-emr/types.rb +18 -3
- data/lib/aws-sdk-emr.rb +3 -1
- data/sig/client.rbs +6 -3
- data/sig/types.rbs +3 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bdde5834f37e9fb22bc170b71f05e9ee016100e86b07ffcbf5dcc2ee44f61de4
|
4
|
+
data.tar.gz: 68901d6859bef37daaad4ad203534234f6864afbd948c550c81f8ecf7ee3c942
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0f5c91b1d4405407a884564ada7df315fed8a09da9bb17fe73a4ca7249f23de8d32fe8a77c131f11ef0041caa76ae0519e194105b0e91a871b429c0fb898f72
|
7
|
+
data.tar.gz: 6d26589889842b75e913ae77b64e3f5a804bb6f0cf66f6d8f05b4687f8737f25dfacae4d06bee6c853357c87915cb6fa1c1eedbf650657ffb2004c94f7432dee
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.100.0 (2024-10-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release provides new parameter "Context" in instance fleet clusters.
|
8
|
+
|
9
|
+
1.99.0 (2024-09-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.98.0 (2024-09-23)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.100.0
|
data/lib/aws-sdk-emr/client.rb
CHANGED
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
|
|
36
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
37
37
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
38
38
|
|
39
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:emr)
|
40
|
-
|
41
39
|
module Aws::EMR
|
42
40
|
# An API client for EMR. To construct a client, you need to configure a `:region` and `:credentials`.
|
43
41
|
#
|
@@ -550,6 +548,7 @@ module Aws::EMR
|
|
550
548
|
# },
|
551
549
|
# },
|
552
550
|
# },
|
551
|
+
# context: "XmlStringMaxLen256",
|
553
552
|
# },
|
554
553
|
# })
|
555
554
|
#
|
@@ -2067,6 +2066,7 @@ module Aws::EMR
|
|
2067
2066
|
# resp.instance_fleets[0].resize_specifications.on_demand_resize_specification.capacity_reservation_options.usage_strategy #=> String, one of "use-capacity-reservations-first"
|
2068
2067
|
# resp.instance_fleets[0].resize_specifications.on_demand_resize_specification.capacity_reservation_options.capacity_reservation_preference #=> String, one of "open", "none"
|
2069
2068
|
# resp.instance_fleets[0].resize_specifications.on_demand_resize_specification.capacity_reservation_options.capacity_reservation_resource_group_arn #=> String
|
2069
|
+
# resp.instance_fleets[0].context #=> String
|
2070
2070
|
# resp.marker #=> String
|
2071
2071
|
#
|
2072
2072
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/ListInstanceFleets AWS API Documentation
|
@@ -2782,6 +2782,7 @@ module Aws::EMR
|
|
2782
2782
|
# priority: 1.0,
|
2783
2783
|
# },
|
2784
2784
|
# ],
|
2785
|
+
# context: "XmlStringMaxLen256",
|
2785
2786
|
# },
|
2786
2787
|
# })
|
2787
2788
|
#
|
@@ -3657,6 +3658,7 @@ module Aws::EMR
|
|
3657
3658
|
# },
|
3658
3659
|
# },
|
3659
3660
|
# },
|
3661
|
+
# context: "XmlStringMaxLen256",
|
3660
3662
|
# },
|
3661
3663
|
# ],
|
3662
3664
|
# ec2_key_name: "XmlStringMaxLen256",
|
@@ -4274,7 +4276,7 @@ module Aws::EMR
|
|
4274
4276
|
tracer: tracer
|
4275
4277
|
)
|
4276
4278
|
context[:gem_name] = 'aws-sdk-emr'
|
4277
|
-
context[:gem_version] = '1.
|
4279
|
+
context[:gem_version] = '1.100.0'
|
4278
4280
|
Seahorse::Client::Request.new(handlers, context)
|
4279
4281
|
end
|
4280
4282
|
|
@@ -780,6 +780,7 @@ module Aws::EMR
|
|
780
780
|
InstanceFleet.add_member(:instance_type_specifications, Shapes::ShapeRef.new(shape: InstanceTypeSpecificationList, location_name: "InstanceTypeSpecifications"))
|
781
781
|
InstanceFleet.add_member(:launch_specifications, Shapes::ShapeRef.new(shape: InstanceFleetProvisioningSpecifications, location_name: "LaunchSpecifications"))
|
782
782
|
InstanceFleet.add_member(:resize_specifications, Shapes::ShapeRef.new(shape: InstanceFleetResizingSpecifications, location_name: "ResizeSpecifications"))
|
783
|
+
InstanceFleet.add_member(:context, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "Context"))
|
783
784
|
InstanceFleet.struct_class = Types::InstanceFleet
|
784
785
|
|
785
786
|
InstanceFleetConfig.add_member(:name, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "Name"))
|
@@ -789,6 +790,7 @@ module Aws::EMR
|
|
789
790
|
InstanceFleetConfig.add_member(:instance_type_configs, Shapes::ShapeRef.new(shape: InstanceTypeConfigList, location_name: "InstanceTypeConfigs"))
|
790
791
|
InstanceFleetConfig.add_member(:launch_specifications, Shapes::ShapeRef.new(shape: InstanceFleetProvisioningSpecifications, location_name: "LaunchSpecifications"))
|
791
792
|
InstanceFleetConfig.add_member(:resize_specifications, Shapes::ShapeRef.new(shape: InstanceFleetResizingSpecifications, location_name: "ResizeSpecifications"))
|
793
|
+
InstanceFleetConfig.add_member(:context, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "Context"))
|
792
794
|
InstanceFleetConfig.struct_class = Types::InstanceFleetConfig
|
793
795
|
|
794
796
|
InstanceFleetConfigList.member = Shapes::ShapeRef.new(shape: InstanceFleetConfig)
|
@@ -800,6 +802,7 @@ module Aws::EMR
|
|
800
802
|
InstanceFleetModifyConfig.add_member(:target_spot_capacity, Shapes::ShapeRef.new(shape: WholeNumber, location_name: "TargetSpotCapacity"))
|
801
803
|
InstanceFleetModifyConfig.add_member(:resize_specifications, Shapes::ShapeRef.new(shape: InstanceFleetResizingSpecifications, location_name: "ResizeSpecifications"))
|
802
804
|
InstanceFleetModifyConfig.add_member(:instance_type_configs, Shapes::ShapeRef.new(shape: InstanceTypeConfigList, location_name: "InstanceTypeConfigs"))
|
805
|
+
InstanceFleetModifyConfig.add_member(:context, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "Context"))
|
803
806
|
InstanceFleetModifyConfig.struct_class = Types::InstanceFleetModifyConfig
|
804
807
|
|
805
808
|
InstanceFleetProvisioningSpecifications.add_member(:spot_specification, Shapes::ShapeRef.new(shape: SpotProvisioningSpecification, location_name: "SpotSpecification"))
|
data/lib/aws-sdk-emr/types.rb
CHANGED
@@ -2373,6 +2373,10 @@ module Aws::EMR
|
|
2373
2373
|
# The resize specification for the instance fleet.
|
2374
2374
|
# @return [Types::InstanceFleetResizingSpecifications]
|
2375
2375
|
#
|
2376
|
+
# @!attribute [rw] context
|
2377
|
+
# Reserved.
|
2378
|
+
# @return [String]
|
2379
|
+
#
|
2376
2380
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceFleet AWS API Documentation
|
2377
2381
|
#
|
2378
2382
|
class InstanceFleet < Struct.new(
|
@@ -2386,7 +2390,8 @@ module Aws::EMR
|
|
2386
2390
|
:provisioned_spot_capacity,
|
2387
2391
|
:instance_type_specifications,
|
2388
2392
|
:launch_specifications,
|
2389
|
-
:resize_specifications
|
2393
|
+
:resize_specifications,
|
2394
|
+
:context)
|
2390
2395
|
SENSITIVE = []
|
2391
2396
|
include Aws::Structure
|
2392
2397
|
end
|
@@ -2468,6 +2473,10 @@ module Aws::EMR
|
|
2468
2473
|
# The resize specification for the instance fleet.
|
2469
2474
|
# @return [Types::InstanceFleetResizingSpecifications]
|
2470
2475
|
#
|
2476
|
+
# @!attribute [rw] context
|
2477
|
+
# Reserved.
|
2478
|
+
# @return [String]
|
2479
|
+
#
|
2471
2480
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceFleetConfig AWS API Documentation
|
2472
2481
|
#
|
2473
2482
|
class InstanceFleetConfig < Struct.new(
|
@@ -2477,7 +2486,8 @@ module Aws::EMR
|
|
2477
2486
|
:target_spot_capacity,
|
2478
2487
|
:instance_type_configs,
|
2479
2488
|
:launch_specifications,
|
2480
|
-
:resize_specifications
|
2489
|
+
:resize_specifications,
|
2490
|
+
:context)
|
2481
2491
|
SENSITIVE = []
|
2482
2492
|
include Aws::Structure
|
2483
2493
|
end
|
@@ -2517,6 +2527,10 @@ module Aws::EMR
|
|
2517
2527
|
# [1]: https://docs.aws.amazon.com/emr/latest/APIReference/API_InstanceTypeConfig.html
|
2518
2528
|
# @return [Array<Types::InstanceTypeConfig>]
|
2519
2529
|
#
|
2530
|
+
# @!attribute [rw] context
|
2531
|
+
# Reserved.
|
2532
|
+
# @return [String]
|
2533
|
+
#
|
2520
2534
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/InstanceFleetModifyConfig AWS API Documentation
|
2521
2535
|
#
|
2522
2536
|
class InstanceFleetModifyConfig < Struct.new(
|
@@ -2524,7 +2538,8 @@ module Aws::EMR
|
|
2524
2538
|
:target_on_demand_capacity,
|
2525
2539
|
:target_spot_capacity,
|
2526
2540
|
:resize_specifications,
|
2527
|
-
:instance_type_configs
|
2541
|
+
:instance_type_configs,
|
2542
|
+
:context)
|
2528
2543
|
SENSITIVE = []
|
2529
2544
|
include Aws::Structure
|
2530
2545
|
end
|
data/lib/aws-sdk-emr.rb
CHANGED
@@ -11,6 +11,8 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:emr)
|
15
|
+
|
14
16
|
# This module provides support for Amazon EMR. This module is available in the
|
15
17
|
# `aws-sdk-emr` gem.
|
16
18
|
#
|
@@ -53,7 +55,7 @@ module Aws::EMR
|
|
53
55
|
autoload :EndpointProvider, 'aws-sdk-emr/endpoint_provider'
|
54
56
|
autoload :Endpoints, 'aws-sdk-emr/endpoints'
|
55
57
|
|
56
|
-
GEM_VERSION = '1.
|
58
|
+
GEM_VERSION = '1.100.0'
|
57
59
|
|
58
60
|
end
|
59
61
|
|
data/sig/client.rbs
CHANGED
@@ -151,7 +151,8 @@ module Aws
|
|
151
151
|
capacity_reservation_resource_group_arn: ::String?
|
152
152
|
}?
|
153
153
|
}?
|
154
|
-
}
|
154
|
+
}?,
|
155
|
+
context: ::String?
|
155
156
|
}
|
156
157
|
) -> _AddInstanceFleetResponseSuccess
|
157
158
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddInstanceFleetResponseSuccess
|
@@ -730,7 +731,8 @@ module Aws
|
|
730
731
|
custom_ami_id: ::String?,
|
731
732
|
priority: ::Float?
|
732
733
|
},
|
733
|
-
]
|
734
|
+
]?,
|
735
|
+
context: ::String?
|
734
736
|
}
|
735
737
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
736
738
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
@@ -1055,7 +1057,8 @@ module Aws
|
|
1055
1057
|
capacity_reservation_resource_group_arn: ::String?
|
1056
1058
|
}?
|
1057
1059
|
}?
|
1058
|
-
}
|
1060
|
+
}?,
|
1061
|
+
context: ::String?
|
1059
1062
|
},
|
1060
1063
|
]?,
|
1061
1064
|
ec2_key_name: ::String?,
|
data/sig/types.rbs
CHANGED
@@ -560,6 +560,7 @@ module Aws::EMR
|
|
560
560
|
attr_accessor instance_type_specifications: ::Array[Types::InstanceTypeSpecification]
|
561
561
|
attr_accessor launch_specifications: Types::InstanceFleetProvisioningSpecifications
|
562
562
|
attr_accessor resize_specifications: Types::InstanceFleetResizingSpecifications
|
563
|
+
attr_accessor context: ::String
|
563
564
|
SENSITIVE: []
|
564
565
|
end
|
565
566
|
|
@@ -571,6 +572,7 @@ module Aws::EMR
|
|
571
572
|
attr_accessor instance_type_configs: ::Array[Types::InstanceTypeConfig]
|
572
573
|
attr_accessor launch_specifications: Types::InstanceFleetProvisioningSpecifications
|
573
574
|
attr_accessor resize_specifications: Types::InstanceFleetResizingSpecifications
|
575
|
+
attr_accessor context: ::String
|
574
576
|
SENSITIVE: []
|
575
577
|
end
|
576
578
|
|
@@ -580,6 +582,7 @@ module Aws::EMR
|
|
580
582
|
attr_accessor target_spot_capacity: ::Integer
|
581
583
|
attr_accessor resize_specifications: Types::InstanceFleetResizingSpecifications
|
582
584
|
attr_accessor instance_type_configs: ::Array[Types::InstanceTypeConfig]
|
585
|
+
attr_accessor context: ::String
|
583
586
|
SENSITIVE: []
|
584
587
|
end
|
585
588
|
|
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.
|
4
|
+
version: 1.100.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: 2024-
|
11
|
+
date: 2024-10-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|