aws-sdk-emr 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-emr.rb +1 -1
- data/lib/aws-sdk-emr/client.rb +41 -14
- data/lib/aws-sdk-emr/client_api.rb +10 -0
- data/lib/aws-sdk-emr/types.rb +137 -21
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b921e0dc70867771a2c85388a4dacd644c5f8f7b
|
4
|
+
data.tar.gz: 610c7bb197df3e3bfb5d49846a3fea6c4085d2bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d123c555571c75394a5d23ae8a513832b4c0922829ab398bebb5a9d8bb32d66edab496339ade7190e7eedc99b7d60ab584ace8bd32c331a1f3322aacd28fb95
|
7
|
+
data.tar.gz: abe9721e89da01c1d593d6c08689d7f49952dbfda53ddf55308c3e9aafc5639ae7008a16458901e88f7704dd81996437ee67ed30a6bb430f07e8a7ad70a8c4d4
|
data/lib/aws-sdk-emr.rb
CHANGED
data/lib/aws-sdk-emr/client.rb
CHANGED
@@ -371,7 +371,7 @@ module Aws::EMR
|
|
371
371
|
#
|
372
372
|
#
|
373
373
|
#
|
374
|
-
# [1]: http://docs.aws.amazon.com/
|
374
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/ManagementGuide/AddMoreThan256Steps.html
|
375
375
|
#
|
376
376
|
# @option params [required, String] :job_flow_id
|
377
377
|
# A string that uniquely identifies the job flow. This identifier is
|
@@ -423,12 +423,12 @@ module Aws::EMR
|
|
423
423
|
|
424
424
|
# Adds tags to an Amazon EMR resource. Tags make it easier to associate
|
425
425
|
# clusters in various ways, such as grouping clusters to track your
|
426
|
-
# Amazon EMR resource allocation costs. For more information, see
|
427
|
-
#
|
426
|
+
# Amazon EMR resource allocation costs. For more information, see [Tag
|
427
|
+
# Clusters][1].
|
428
428
|
#
|
429
429
|
#
|
430
430
|
#
|
431
|
-
# [1]: http://docs.aws.amazon.com/
|
431
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html
|
432
432
|
#
|
433
433
|
# @option params [required, String] :resource_id
|
434
434
|
# The Amazon EMR resource identifier to which tags will be added. This
|
@@ -512,7 +512,13 @@ module Aws::EMR
|
|
512
512
|
# The name of the security configuration.
|
513
513
|
#
|
514
514
|
# @option params [required, String] :security_configuration
|
515
|
-
# The security configuration details in JSON format.
|
515
|
+
# The security configuration details in JSON format. For JSON parameters
|
516
|
+
# and examples, see [Use Security Configurations to Set Up Cluster
|
517
|
+
# Security][1] in the *Amazon EMR Management Guide*.
|
518
|
+
#
|
519
|
+
#
|
520
|
+
#
|
521
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-security-configurations.html
|
516
522
|
#
|
517
523
|
# @return [Types::CreateSecurityConfigurationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
518
524
|
#
|
@@ -636,6 +642,11 @@ module Aws::EMR
|
|
636
642
|
# resp.cluster.custom_ami_id #=> String
|
637
643
|
# resp.cluster.ebs_root_volume_size #=> Integer
|
638
644
|
# resp.cluster.repo_upgrade_on_boot #=> String, one of "SECURITY", "NONE"
|
645
|
+
# resp.cluster.kerberos_attributes.realm #=> String
|
646
|
+
# resp.cluster.kerberos_attributes.kdc_admin_password #=> String
|
647
|
+
# resp.cluster.kerberos_attributes.cross_realm_trust_principal_password #=> String
|
648
|
+
# resp.cluster.kerberos_attributes.ad_domain_join_user #=> String
|
649
|
+
# resp.cluster.kerberos_attributes.ad_domain_join_password #=> String
|
639
650
|
#
|
640
651
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribeCluster AWS API Documentation
|
641
652
|
#
|
@@ -1509,14 +1520,14 @@ module Aws::EMR
|
|
1509
1520
|
# Removes tags from an Amazon EMR resource. Tags make it easier to
|
1510
1521
|
# associate clusters in various ways, such as grouping clusters to track
|
1511
1522
|
# your Amazon EMR resource allocation costs. For more information, see
|
1512
|
-
# [
|
1523
|
+
# [Tag Clusters][1].
|
1513
1524
|
#
|
1514
1525
|
# The following example removes the stack tag with value Prod from a
|
1515
1526
|
# cluster:
|
1516
1527
|
#
|
1517
1528
|
#
|
1518
1529
|
#
|
1519
|
-
# [1]: http://docs.aws.amazon.com/
|
1530
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html
|
1520
1531
|
#
|
1521
1532
|
# @option params [required, String] :resource_id
|
1522
1533
|
# The Amazon EMR resource identifier from which tags will be removed.
|
@@ -1578,7 +1589,7 @@ module Aws::EMR
|
|
1578
1589
|
#
|
1579
1590
|
#
|
1580
1591
|
#
|
1581
|
-
# [1]: http://docs.aws.amazon.com/
|
1592
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/ManagementGuide/AddMoreThan256Steps.html
|
1582
1593
|
#
|
1583
1594
|
# @option params [required, String] :name
|
1584
1595
|
# The name of the job flow.
|
@@ -1597,7 +1608,7 @@ module Aws::EMR
|
|
1597
1608
|
# use when launching Amazon EC2 instances in the job flow. For details
|
1598
1609
|
# about the AMI versions currently supported in EMR version 3.x and 2.x,
|
1599
1610
|
# see [AMI Versions Supported in
|
1600
|
-
# EMR](
|
1611
|
+
# EMR](emr/latest/DeveloperGuide/emr-dg.pdf#nameddest=ami-versions-supported)
|
1601
1612
|
# in the *Amazon EMR Developer Guide*.
|
1602
1613
|
#
|
1603
1614
|
# If the AMI supports multiple versions of Hadoop (for example, AMI 1.0
|
@@ -1634,8 +1645,8 @@ module Aws::EMR
|
|
1634
1645
|
# </note>
|
1635
1646
|
#
|
1636
1647
|
# A list of strings that indicates third-party software to use. For more
|
1637
|
-
# information, see [
|
1638
|
-
#
|
1648
|
+
# information, see the [Amazon EMR Developer Guide][1]. Currently
|
1649
|
+
# supported values are:
|
1639
1650
|
#
|
1640
1651
|
# * "mapr-m3" - launch the job flow using MapR M3 Edition.
|
1641
1652
|
#
|
@@ -1643,7 +1654,7 @@ module Aws::EMR
|
|
1643
1654
|
#
|
1644
1655
|
#
|
1645
1656
|
#
|
1646
|
-
# [1]: http://docs.aws.amazon.com/
|
1657
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/DeveloperGuide/emr-dg.pdf
|
1647
1658
|
#
|
1648
1659
|
# @option params [Array<Types::SupportedProductConfig>] :new_supported_products
|
1649
1660
|
# <note markdown="1"> For Amazon EMR releases 3.x and 2.x. For Amazon EMR releases 4.x and
|
@@ -1680,7 +1691,7 @@ module Aws::EMR
|
|
1680
1691
|
#
|
1681
1692
|
#
|
1682
1693
|
#
|
1683
|
-
# [1]: http://docs.aws.amazon.com/
|
1694
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/DeveloperGuide/emr-dg.pdf
|
1684
1695
|
#
|
1685
1696
|
# @option params [Array<Types::Application>] :applications
|
1686
1697
|
# For Amazon EMR releases 4.0 and later. A list of applications for the
|
@@ -1770,6 +1781,15 @@ module Aws::EMR
|
|
1770
1781
|
# `NONE` is specified, no updates are applied, and all updates must be
|
1771
1782
|
# applied manually.
|
1772
1783
|
#
|
1784
|
+
# @option params [Types::KerberosAttributes] :kerberos_attributes
|
1785
|
+
# Attributes for Kerberos configuration when Kerberos authentication is
|
1786
|
+
# enabled using a security configuration. For more information see [Use
|
1787
|
+
# Kerberos Authentication][1] in the *EMR Management Guide*.
|
1788
|
+
#
|
1789
|
+
#
|
1790
|
+
#
|
1791
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-kerberos.html
|
1792
|
+
#
|
1773
1793
|
# @return [Types::RunJobFlowOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1774
1794
|
#
|
1775
1795
|
# * {Types::RunJobFlowOutput#job_flow_id #job_flow_id} => String
|
@@ -1990,6 +2010,13 @@ module Aws::EMR
|
|
1990
2010
|
# custom_ami_id: "XmlStringMaxLen256",
|
1991
2011
|
# ebs_root_volume_size: 1,
|
1992
2012
|
# repo_upgrade_on_boot: "SECURITY", # accepts SECURITY, NONE
|
2013
|
+
# kerberos_attributes: {
|
2014
|
+
# realm: "XmlStringMaxLen256", # required
|
2015
|
+
# kdc_admin_password: "XmlStringMaxLen256", # required
|
2016
|
+
# cross_realm_trust_principal_password: "XmlStringMaxLen256",
|
2017
|
+
# ad_domain_join_user: "XmlStringMaxLen256",
|
2018
|
+
# ad_domain_join_password: "XmlStringMaxLen256",
|
2019
|
+
# },
|
1993
2020
|
# })
|
1994
2021
|
#
|
1995
2022
|
# @example Response structure
|
@@ -2140,7 +2167,7 @@ module Aws::EMR
|
|
2140
2167
|
params: params,
|
2141
2168
|
config: config)
|
2142
2169
|
context[:gem_name] = 'aws-sdk-emr'
|
2143
|
-
context[:gem_version] = '1.
|
2170
|
+
context[:gem_version] = '1.1.0'
|
2144
2171
|
Seahorse::Client::Request.new(handlers, context)
|
2145
2172
|
end
|
2146
2173
|
|
@@ -142,6 +142,7 @@ module Aws::EMR
|
|
142
142
|
JobFlowExecutionStatusDetail = Shapes::StructureShape.new(name: 'JobFlowExecutionStatusDetail')
|
143
143
|
JobFlowInstancesConfig = Shapes::StructureShape.new(name: 'JobFlowInstancesConfig')
|
144
144
|
JobFlowInstancesDetail = Shapes::StructureShape.new(name: 'JobFlowInstancesDetail')
|
145
|
+
KerberosAttributes = Shapes::StructureShape.new(name: 'KerberosAttributes')
|
145
146
|
KeyValue = Shapes::StructureShape.new(name: 'KeyValue')
|
146
147
|
KeyValueList = Shapes::ListShape.new(name: 'KeyValueList')
|
147
148
|
ListBootstrapActionsInput = Shapes::StructureShape.new(name: 'ListBootstrapActionsInput')
|
@@ -341,6 +342,7 @@ module Aws::EMR
|
|
341
342
|
Cluster.add_member(:custom_ami_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "CustomAmiId"))
|
342
343
|
Cluster.add_member(:ebs_root_volume_size, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeSize"))
|
343
344
|
Cluster.add_member(:repo_upgrade_on_boot, Shapes::ShapeRef.new(shape: RepoUpgradeOnBoot, location_name: "RepoUpgradeOnBoot"))
|
345
|
+
Cluster.add_member(:kerberos_attributes, Shapes::ShapeRef.new(shape: KerberosAttributes, location_name: "KerberosAttributes"))
|
344
346
|
Cluster.struct_class = Types::Cluster
|
345
347
|
|
346
348
|
ClusterStateChangeReason.add_member(:code, Shapes::ShapeRef.new(shape: ClusterStateChangeReasonCode, location_name: "Code"))
|
@@ -721,6 +723,13 @@ module Aws::EMR
|
|
721
723
|
JobFlowInstancesDetail.add_member(:hadoop_version, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "HadoopVersion"))
|
722
724
|
JobFlowInstancesDetail.struct_class = Types::JobFlowInstancesDetail
|
723
725
|
|
726
|
+
KerberosAttributes.add_member(:realm, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, required: true, location_name: "Realm"))
|
727
|
+
KerberosAttributes.add_member(:kdc_admin_password, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, required: true, location_name: "KdcAdminPassword"))
|
728
|
+
KerberosAttributes.add_member(:cross_realm_trust_principal_password, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "CrossRealmTrustPrincipalPassword"))
|
729
|
+
KerberosAttributes.add_member(:ad_domain_join_user, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "ADDomainJoinUser"))
|
730
|
+
KerberosAttributes.add_member(:ad_domain_join_password, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "ADDomainJoinPassword"))
|
731
|
+
KerberosAttributes.struct_class = Types::KerberosAttributes
|
732
|
+
|
724
733
|
KeyValue.add_member(:key, Shapes::ShapeRef.new(shape: XmlString, location_name: "Key"))
|
725
734
|
KeyValue.add_member(:value, Shapes::ShapeRef.new(shape: XmlString, location_name: "Value"))
|
726
735
|
KeyValue.struct_class = Types::KeyValue
|
@@ -855,6 +864,7 @@ module Aws::EMR
|
|
855
864
|
RunJobFlowInput.add_member(:custom_ami_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "CustomAmiId"))
|
856
865
|
RunJobFlowInput.add_member(:ebs_root_volume_size, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeSize"))
|
857
866
|
RunJobFlowInput.add_member(:repo_upgrade_on_boot, Shapes::ShapeRef.new(shape: RepoUpgradeOnBoot, location_name: "RepoUpgradeOnBoot"))
|
867
|
+
RunJobFlowInput.add_member(:kerberos_attributes, Shapes::ShapeRef.new(shape: KerberosAttributes, location_name: "KerberosAttributes"))
|
858
868
|
RunJobFlowInput.struct_class = Types::RunJobFlowInput
|
859
869
|
|
860
870
|
RunJobFlowOutput.add_member(:job_flow_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "JobFlowId"))
|
data/lib/aws-sdk-emr/types.rb
CHANGED
@@ -328,7 +328,7 @@ module Aws::EMR
|
|
328
328
|
#
|
329
329
|
#
|
330
330
|
#
|
331
|
-
# [1]: http://docs.aws.amazon.com/
|
331
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-mapr.html
|
332
332
|
#
|
333
333
|
# @note When making an API call, you may pass Application
|
334
334
|
# data as a hash:
|
@@ -797,7 +797,9 @@ module Aws::EMR
|
|
797
797
|
# @return [Integer]
|
798
798
|
#
|
799
799
|
# @!attribute [rw] master_public_dns_name
|
800
|
-
# The
|
800
|
+
# The DNS name of the master node. If the cluster is on a private
|
801
|
+
# subnet, this is the private DNS name. On a public subnet, this is
|
802
|
+
# the public DNS name.
|
801
803
|
# @return [String]
|
802
804
|
#
|
803
805
|
# @!attribute [rw] configurations
|
@@ -850,6 +852,16 @@ module Aws::EMR
|
|
850
852
|
# repositories when an instance boots using the AMI.
|
851
853
|
# @return [String]
|
852
854
|
#
|
855
|
+
# @!attribute [rw] kerberos_attributes
|
856
|
+
# Attributes for Kerberos configuration when Kerberos authentication
|
857
|
+
# is enabled using a security configuration. For more information see
|
858
|
+
# [Use Kerberos Authentication][1] in the *EMR Management Guide*.
|
859
|
+
#
|
860
|
+
#
|
861
|
+
#
|
862
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-kerberos.html
|
863
|
+
# @return [Types::KerberosAttributes]
|
864
|
+
#
|
853
865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Cluster AWS API Documentation
|
854
866
|
#
|
855
867
|
class Cluster < Struct.new(
|
@@ -876,7 +888,8 @@ module Aws::EMR
|
|
876
888
|
:scale_down_behavior,
|
877
889
|
:custom_ami_id,
|
878
890
|
:ebs_root_volume_size,
|
879
|
-
:repo_upgrade_on_boot
|
891
|
+
:repo_upgrade_on_boot,
|
892
|
+
:kerberos_attributes)
|
880
893
|
include Aws::Structure
|
881
894
|
end
|
882
895
|
|
@@ -1074,7 +1087,13 @@ module Aws::EMR
|
|
1074
1087
|
# @return [String]
|
1075
1088
|
#
|
1076
1089
|
# @!attribute [rw] security_configuration
|
1077
|
-
# The security configuration details in JSON format.
|
1090
|
+
# The security configuration details in JSON format. For JSON
|
1091
|
+
# parameters and examples, see [Use Security Configurations to Set Up
|
1092
|
+
# Cluster Security][1] in the *Amazon EMR Management Guide*.
|
1093
|
+
#
|
1094
|
+
#
|
1095
|
+
#
|
1096
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-security-configurations.html
|
1078
1097
|
# @return [String]
|
1079
1098
|
#
|
1080
1099
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CreateSecurityConfigurationInput AWS API Documentation
|
@@ -2028,6 +2047,27 @@ module Aws::EMR
|
|
2028
2047
|
#
|
2029
2048
|
# @!attribute [rw] state
|
2030
2049
|
# A code representing the instance fleet status.
|
2050
|
+
#
|
2051
|
+
# * `PROVISIONING`—The instance fleet is provisioning EC2 resources
|
2052
|
+
# and is not yet ready to run jobs.
|
2053
|
+
#
|
2054
|
+
# * `BOOTSTRAPPING`—EC2 instances and other resources have been
|
2055
|
+
# provisioned and the bootstrap actions specified for the instances
|
2056
|
+
# are underway.
|
2057
|
+
#
|
2058
|
+
# * `RUNNING`—EC2 instances and other resources are running. They are
|
2059
|
+
# either executing jobs or waiting to execute jobs.
|
2060
|
+
#
|
2061
|
+
# * `RESIZING`—A resize operation is underway. EC2 instances are
|
2062
|
+
# either being added or removed.
|
2063
|
+
#
|
2064
|
+
# * `SUSPENDED`—A resize operation could not complete. Existing EC2
|
2065
|
+
# instances are running, but instances can't be added or removed.
|
2066
|
+
#
|
2067
|
+
# * `TERMINATING`—The instance fleet is terminating EC2 instances.
|
2068
|
+
#
|
2069
|
+
# * `TERMINATED`—The instance fleet is no longer active, and all EC2
|
2070
|
+
# instances have been terminated.
|
2031
2071
|
# @return [String]
|
2032
2072
|
#
|
2033
2073
|
# @!attribute [rw] state_change_reason
|
@@ -2780,7 +2820,7 @@ module Aws::EMR
|
|
2780
2820
|
#
|
2781
2821
|
#
|
2782
2822
|
#
|
2783
|
-
# [1]: http://docs.aws.amazon.com/
|
2823
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/DeveloperGuide/emr-dg.pdf#nameddest=ami-versions-supported
|
2784
2824
|
# @return [String]
|
2785
2825
|
#
|
2786
2826
|
# @!attribute [rw] execution_status_detail
|
@@ -3193,7 +3233,9 @@ module Aws::EMR
|
|
3193
3233
|
# @return [String]
|
3194
3234
|
#
|
3195
3235
|
# @!attribute [rw] master_public_dns_name
|
3196
|
-
# The DNS name of the master node.
|
3236
|
+
# The DNS name of the master node. If the cluster is on a private
|
3237
|
+
# subnet, this is the private DNS name. On a public subnet, this is
|
3238
|
+
# the public DNS name.
|
3197
3239
|
# @return [String]
|
3198
3240
|
#
|
3199
3241
|
# @!attribute [rw] master_instance_id
|
@@ -3273,6 +3315,63 @@ module Aws::EMR
|
|
3273
3315
|
include Aws::Structure
|
3274
3316
|
end
|
3275
3317
|
|
3318
|
+
# Attributes for Kerberos configuration when Kerberos authentication is
|
3319
|
+
# enabled using a security configuration. For more information see [Use
|
3320
|
+
# Kerberos Authentication][1] in the *EMR Management Guide*.
|
3321
|
+
#
|
3322
|
+
#
|
3323
|
+
#
|
3324
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-kerberos.html
|
3325
|
+
#
|
3326
|
+
# @note When making an API call, you may pass KerberosAttributes
|
3327
|
+
# data as a hash:
|
3328
|
+
#
|
3329
|
+
# {
|
3330
|
+
# realm: "XmlStringMaxLen256", # required
|
3331
|
+
# kdc_admin_password: "XmlStringMaxLen256", # required
|
3332
|
+
# cross_realm_trust_principal_password: "XmlStringMaxLen256",
|
3333
|
+
# ad_domain_join_user: "XmlStringMaxLen256",
|
3334
|
+
# ad_domain_join_password: "XmlStringMaxLen256",
|
3335
|
+
# }
|
3336
|
+
#
|
3337
|
+
# @!attribute [rw] realm
|
3338
|
+
# The name of the Kerberos realm to which all nodes in a cluster
|
3339
|
+
# belong. For example, `EC2.INTERNAL`.
|
3340
|
+
# @return [String]
|
3341
|
+
#
|
3342
|
+
# @!attribute [rw] kdc_admin_password
|
3343
|
+
# The password used within the cluster for the kadmin service on the
|
3344
|
+
# cluster-dedicated KDC, which maintains Kerberos principals, password
|
3345
|
+
# policies, and keytabs for the cluster.
|
3346
|
+
# @return [String]
|
3347
|
+
#
|
3348
|
+
# @!attribute [rw] cross_realm_trust_principal_password
|
3349
|
+
# Required only when establishing a cross-realm trust with a KDC in a
|
3350
|
+
# different realm. The cross-realm principal password, which must be
|
3351
|
+
# identical across realms.
|
3352
|
+
# @return [String]
|
3353
|
+
#
|
3354
|
+
# @!attribute [rw] ad_domain_join_user
|
3355
|
+
# Required only when establishing a cross-realm trust with an Active
|
3356
|
+
# Directory domain. A user with sufficient privileges to join
|
3357
|
+
# resources to the domain.
|
3358
|
+
# @return [String]
|
3359
|
+
#
|
3360
|
+
# @!attribute [rw] ad_domain_join_password
|
3361
|
+
# The Active Directory password for `ADDomainJoinUser`.
|
3362
|
+
# @return [String]
|
3363
|
+
#
|
3364
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/KerberosAttributes AWS API Documentation
|
3365
|
+
#
|
3366
|
+
class KerberosAttributes < Struct.new(
|
3367
|
+
:realm,
|
3368
|
+
:kdc_admin_password,
|
3369
|
+
:cross_realm_trust_principal_password,
|
3370
|
+
:ad_domain_join_user,
|
3371
|
+
:ad_domain_join_password)
|
3372
|
+
include Aws::Structure
|
3373
|
+
end
|
3374
|
+
|
3276
3375
|
# A key value pair.
|
3277
3376
|
#
|
3278
3377
|
# @note When making an API call, you may pass KeyValue
|
@@ -4179,6 +4278,13 @@ module Aws::EMR
|
|
4179
4278
|
# custom_ami_id: "XmlStringMaxLen256",
|
4180
4279
|
# ebs_root_volume_size: 1,
|
4181
4280
|
# repo_upgrade_on_boot: "SECURITY", # accepts SECURITY, NONE
|
4281
|
+
# kerberos_attributes: {
|
4282
|
+
# realm: "XmlStringMaxLen256", # required
|
4283
|
+
# kdc_admin_password: "XmlStringMaxLen256", # required
|
4284
|
+
# cross_realm_trust_principal_password: "XmlStringMaxLen256",
|
4285
|
+
# ad_domain_join_user: "XmlStringMaxLen256",
|
4286
|
+
# ad_domain_join_password: "XmlStringMaxLen256",
|
4287
|
+
# },
|
4182
4288
|
# }
|
4183
4289
|
#
|
4184
4290
|
# @!attribute [rw] name
|
@@ -4201,7 +4307,7 @@ module Aws::EMR
|
|
4201
4307
|
# Image (AMI) to use when launching Amazon EC2 instances in the job
|
4202
4308
|
# flow. For details about the AMI versions currently supported in EMR
|
4203
4309
|
# version 3.x and 2.x, see [AMI Versions Supported in
|
4204
|
-
# EMR](
|
4310
|
+
# EMR](emr/latest/DeveloperGuide/emr-dg.pdf#nameddest=ami-versions-supported)
|
4205
4311
|
# in the *Amazon EMR Developer Guide*.
|
4206
4312
|
#
|
4207
4313
|
# If the AMI supports multiple versions of Hadoop (for example, AMI
|
@@ -4244,8 +4350,8 @@ module Aws::EMR
|
|
4244
4350
|
# </note>
|
4245
4351
|
#
|
4246
4352
|
# A list of strings that indicates third-party software to use. For
|
4247
|
-
# more information, see [
|
4248
|
-
#
|
4353
|
+
# more information, see the [Amazon EMR Developer Guide][1]. Currently
|
4354
|
+
# supported values are:
|
4249
4355
|
#
|
4250
4356
|
# * "mapr-m3" - launch the job flow using MapR M3 Edition.
|
4251
4357
|
#
|
@@ -4253,7 +4359,7 @@ module Aws::EMR
|
|
4253
4359
|
#
|
4254
4360
|
#
|
4255
4361
|
#
|
4256
|
-
# [1]: http://docs.aws.amazon.com/
|
4362
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/DeveloperGuide/emr-dg.pdf
|
4257
4363
|
# @return [Array<String>]
|
4258
4364
|
#
|
4259
4365
|
# @!attribute [rw] new_supported_products
|
@@ -4291,7 +4397,7 @@ module Aws::EMR
|
|
4291
4397
|
#
|
4292
4398
|
#
|
4293
4399
|
#
|
4294
|
-
# [1]: http://docs.aws.amazon.com/
|
4400
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/DeveloperGuide/emr-dg.pdf
|
4295
4401
|
# @return [Array<Types::SupportedProductConfig>]
|
4296
4402
|
#
|
4297
4403
|
# @!attribute [rw] applications
|
@@ -4395,6 +4501,16 @@ module Aws::EMR
|
|
4395
4501
|
# updates must be applied manually.
|
4396
4502
|
# @return [String]
|
4397
4503
|
#
|
4504
|
+
# @!attribute [rw] kerberos_attributes
|
4505
|
+
# Attributes for Kerberos configuration when Kerberos authentication
|
4506
|
+
# is enabled using a security configuration. For more information see
|
4507
|
+
# [Use Kerberos Authentication][1] in the *EMR Management Guide*.
|
4508
|
+
#
|
4509
|
+
#
|
4510
|
+
#
|
4511
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-kerberos.html
|
4512
|
+
# @return [Types::KerberosAttributes]
|
4513
|
+
#
|
4398
4514
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RunJobFlowInput AWS API Documentation
|
4399
4515
|
#
|
4400
4516
|
class RunJobFlowInput < Struct.new(
|
@@ -4419,7 +4535,8 @@ module Aws::EMR
|
|
4419
4535
|
:scale_down_behavior,
|
4420
4536
|
:custom_ami_id,
|
4421
4537
|
:ebs_root_volume_size,
|
4422
|
-
:repo_upgrade_on_boot
|
4538
|
+
:repo_upgrade_on_boot,
|
4539
|
+
:kerberos_attributes)
|
4423
4540
|
include Aws::Structure
|
4424
4541
|
end
|
4425
4542
|
|
@@ -4770,7 +4887,7 @@ module Aws::EMR
|
|
4770
4887
|
# `ScalingAdjustment`, which should be expressed as an integer.
|
4771
4888
|
# `PERCENT_CHANGE_IN_CAPACITY` indicates the instance count increments
|
4772
4889
|
# or decrements by the percentage specified by `ScalingAdjustment`,
|
4773
|
-
# which should be expressed as
|
4890
|
+
# which should be expressed as an integer. For example, 20 indicates
|
4774
4891
|
# an increase in 20% increments of cluster capacity. `EXACT_CAPACITY`
|
4775
4892
|
# indicates the scaling activity results in an instance group with the
|
4776
4893
|
# number of EC2 instances specified by `ScalingAdjustment`, which
|
@@ -4784,7 +4901,7 @@ module Aws::EMR
|
|
4784
4901
|
# `AdjustmentType` is set to `EXACT_CAPACITY`, the number should only
|
4785
4902
|
# be a positive integer. If `AdjustmentType` is set to
|
4786
4903
|
# `PERCENT_CHANGE_IN_CAPACITY`, the value should express the
|
4787
|
-
# percentage as
|
4904
|
+
# percentage as an integer. For example, -20 indicates a decrease in
|
4788
4905
|
# 20% increments of cluster capacity.
|
4789
4906
|
# @return [Integer]
|
4790
4907
|
#
|
@@ -5127,11 +5244,11 @@ module Aws::EMR
|
|
5127
5244
|
# associate with an Amazon EMR resource. Tags make it easier to
|
5128
5245
|
# associate clusters in various ways, such as grouping clusters to track
|
5129
5246
|
# your Amazon EMR resource allocation costs. For more information, see
|
5130
|
-
# [
|
5247
|
+
# [Tag Clusters][1].
|
5131
5248
|
#
|
5132
5249
|
#
|
5133
5250
|
#
|
5134
|
-
# [1]: http://docs.aws.amazon.com/
|
5251
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html
|
5135
5252
|
#
|
5136
5253
|
# @note When making an API call, you may pass Tag
|
5137
5254
|
# data as a hash:
|
@@ -5143,21 +5260,20 @@ module Aws::EMR
|
|
5143
5260
|
#
|
5144
5261
|
# @!attribute [rw] key
|
5145
5262
|
# A user-defined key, which is the minimum required information for a
|
5146
|
-
# valid tag. For more information, see [
|
5147
|
-
# Resources][1].
|
5263
|
+
# valid tag. For more information, see [Tag ][1].
|
5148
5264
|
#
|
5149
5265
|
#
|
5150
5266
|
#
|
5151
|
-
# [1]: http://docs.aws.amazon.com/
|
5267
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html
|
5152
5268
|
# @return [String]
|
5153
5269
|
#
|
5154
5270
|
# @!attribute [rw] value
|
5155
5271
|
# A user-defined value, which is optional in a tag. For more
|
5156
|
-
# information, see [
|
5272
|
+
# information, see [Tag Clusters][1].
|
5157
5273
|
#
|
5158
5274
|
#
|
5159
5275
|
#
|
5160
|
-
# [1]: http://docs.aws.amazon.com/
|
5276
|
+
# [1]: http://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html
|
5161
5277
|
# @return [String]
|
5162
5278
|
#
|
5163
5279
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Tag AWS API Documentation
|
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.1.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: 2017-
|
11
|
+
date: 2017-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -57,7 +57,9 @@ files:
|
|
57
57
|
homepage: http://github.com/aws/aws-sdk-ruby
|
58
58
|
licenses:
|
59
59
|
- Apache-2.0
|
60
|
-
metadata:
|
60
|
+
metadata:
|
61
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-emr
|
62
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-emr/CHANGELOG.md
|
61
63
|
post_install_message:
|
62
64
|
rdoc_options: []
|
63
65
|
require_paths:
|