
com.amazonaws.services.elasticmapreduce.model.transform.AddInstanceGroupsRequestMarshaller Maven / Gradle / Ivy
/*
* Copyright 2010-2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.amazonaws.services.elasticmapreduce.model.transform;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.amazonaws.Request;
import com.amazonaws.DefaultRequest;
import com.amazonaws.services.elasticmapreduce.model.*;
import com.amazonaws.transform.Marshaller;
import com.amazonaws.util.StringUtils;
/**
* Add Instance Groups Request Marshaller
*/
public class AddInstanceGroupsRequestMarshaller implements Marshaller, AddInstanceGroupsRequest> {
public Request marshall(AddInstanceGroupsRequest addInstanceGroupsRequest) {
Request request = new DefaultRequest(addInstanceGroupsRequest, "AmazonElasticMapReduce");
request.addParameter("Action", "AddInstanceGroups");
request.addParameter("Version", "2009-03-31");
if (addInstanceGroupsRequest != null) {
java.util.List instanceGroupsList = addInstanceGroupsRequest.getInstanceGroups();
int instanceGroupsListIndex = 1;
for (InstanceGroupConfig instanceGroupsListValue : instanceGroupsList) {
if (instanceGroupsListValue != null) {
if (instanceGroupsListValue.getName() != null) {
request.addParameter("InstanceGroups.member." + instanceGroupsListIndex + ".Name", StringUtils.fromString(instanceGroupsListValue.getName()));
}
}
if (instanceGroupsListValue != null) {
if (instanceGroupsListValue.getMarket() != null) {
request.addParameter("InstanceGroups.member." + instanceGroupsListIndex + ".Market", StringUtils.fromString(instanceGroupsListValue.getMarket()));
}
}
if (instanceGroupsListValue != null) {
if (instanceGroupsListValue.getInstanceRole() != null) {
request.addParameter("InstanceGroups.member." + instanceGroupsListIndex + ".InstanceRole", StringUtils.fromString(instanceGroupsListValue.getInstanceRole()));
}
}
if (instanceGroupsListValue != null) {
if (instanceGroupsListValue.getInstanceType() != null) {
request.addParameter("InstanceGroups.member." + instanceGroupsListIndex + ".InstanceType", StringUtils.fromString(instanceGroupsListValue.getInstanceType()));
}
}
if (instanceGroupsListValue != null) {
if (instanceGroupsListValue.getInstanceCount() != null) {
request.addParameter("InstanceGroups.member." + instanceGroupsListIndex + ".InstanceCount", StringUtils.fromInteger(instanceGroupsListValue.getInstanceCount()));
}
}
instanceGroupsListIndex++;
}
}
if (addInstanceGroupsRequest != null) {
if (addInstanceGroupsRequest.getJobFlowId() != null) {
request.addParameter("JobFlowId", StringUtils.fromString(addInstanceGroupsRequest.getJobFlowId()));
}
}
return request;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy