com.amazonaws.services.redshift.model.transform.ModifyClusterRequestMarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-redshift Show documentation
Show all versions of aws-java-sdk-redshift Show documentation
The AWS Java SDK for Amazon Redshift module holds the client classes that are used for communicating with Amazon Redshift Service
/*
* Copyright 2010-2016 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.redshift.model.transform;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.amazonaws.AmazonClientException;
import com.amazonaws.Request;
import com.amazonaws.DefaultRequest;
import com.amazonaws.http.HttpMethodName;
import com.amazonaws.services.redshift.model.*;
import com.amazonaws.transform.Marshaller;
import com.amazonaws.util.StringUtils;
import com.amazonaws.util.IdempotentUtils;
/**
* ModifyClusterRequest Marshaller
*/
public class ModifyClusterRequestMarshaller implements
Marshaller, ModifyClusterRequest> {
public Request marshall(
ModifyClusterRequest modifyClusterRequest) {
if (modifyClusterRequest == null) {
throw new AmazonClientException(
"Invalid argument passed to marshall(...)");
}
Request request = new DefaultRequest(
modifyClusterRequest, "AmazonRedshift");
request.addParameter("Action", "ModifyCluster");
request.addParameter("Version", "2012-12-01");
request.setHttpMethod(HttpMethodName.POST);
if (modifyClusterRequest.getClusterIdentifier() != null) {
request.addParameter("ClusterIdentifier", StringUtils
.fromString(modifyClusterRequest.getClusterIdentifier()));
}
if (modifyClusterRequest.getClusterType() != null) {
request.addParameter("ClusterType", StringUtils
.fromString(modifyClusterRequest.getClusterType()));
}
if (modifyClusterRequest.getNodeType() != null) {
request.addParameter("NodeType",
StringUtils.fromString(modifyClusterRequest.getNodeType()));
}
if (modifyClusterRequest.getNumberOfNodes() != null) {
request.addParameter("NumberOfNodes", StringUtils
.fromInteger(modifyClusterRequest.getNumberOfNodes()));
}
com.amazonaws.internal.SdkInternalList clusterSecurityGroupsList = (com.amazonaws.internal.SdkInternalList) modifyClusterRequest
.getClusterSecurityGroups();
if (!clusterSecurityGroupsList.isEmpty()
|| !clusterSecurityGroupsList.isAutoConstruct()) {
int clusterSecurityGroupsListIndex = 1;
for (String clusterSecurityGroupsListValue : clusterSecurityGroupsList) {
if (clusterSecurityGroupsListValue != null) {
request.addParameter(
"ClusterSecurityGroups.ClusterSecurityGroupName."
+ clusterSecurityGroupsListIndex,
StringUtils
.fromString(clusterSecurityGroupsListValue));
}
clusterSecurityGroupsListIndex++;
}
}
com.amazonaws.internal.SdkInternalList vpcSecurityGroupIdsList = (com.amazonaws.internal.SdkInternalList) modifyClusterRequest
.getVpcSecurityGroupIds();
if (!vpcSecurityGroupIdsList.isEmpty()
|| !vpcSecurityGroupIdsList.isAutoConstruct()) {
int vpcSecurityGroupIdsListIndex = 1;
for (String vpcSecurityGroupIdsListValue : vpcSecurityGroupIdsList) {
if (vpcSecurityGroupIdsListValue != null) {
request.addParameter(
"VpcSecurityGroupIds.VpcSecurityGroupId."
+ vpcSecurityGroupIdsListIndex, StringUtils
.fromString(vpcSecurityGroupIdsListValue));
}
vpcSecurityGroupIdsListIndex++;
}
}
if (modifyClusterRequest.getMasterUserPassword() != null) {
request.addParameter("MasterUserPassword", StringUtils
.fromString(modifyClusterRequest.getMasterUserPassword()));
}
if (modifyClusterRequest.getClusterParameterGroupName() != null) {
request.addParameter("ClusterParameterGroupName", StringUtils
.fromString(modifyClusterRequest
.getClusterParameterGroupName()));
}
if (modifyClusterRequest.getAutomatedSnapshotRetentionPeriod() != null) {
request.addParameter("AutomatedSnapshotRetentionPeriod",
StringUtils.fromInteger(modifyClusterRequest
.getAutomatedSnapshotRetentionPeriod()));
}
if (modifyClusterRequest.getPreferredMaintenanceWindow() != null) {
request.addParameter("PreferredMaintenanceWindow", StringUtils
.fromString(modifyClusterRequest
.getPreferredMaintenanceWindow()));
}
if (modifyClusterRequest.getClusterVersion() != null) {
request.addParameter("ClusterVersion", StringUtils
.fromString(modifyClusterRequest.getClusterVersion()));
}
if (modifyClusterRequest.getAllowVersionUpgrade() != null) {
request.addParameter("AllowVersionUpgrade", StringUtils
.fromBoolean(modifyClusterRequest.getAllowVersionUpgrade()));
}
if (modifyClusterRequest.getHsmClientCertificateIdentifier() != null) {
request.addParameter("HsmClientCertificateIdentifier", StringUtils
.fromString(modifyClusterRequest
.getHsmClientCertificateIdentifier()));
}
if (modifyClusterRequest.getHsmConfigurationIdentifier() != null) {
request.addParameter("HsmConfigurationIdentifier", StringUtils
.fromString(modifyClusterRequest
.getHsmConfigurationIdentifier()));
}
if (modifyClusterRequest.getNewClusterIdentifier() != null) {
request.addParameter("NewClusterIdentifier", StringUtils
.fromString(modifyClusterRequest.getNewClusterIdentifier()));
}
if (modifyClusterRequest.getPubliclyAccessible() != null) {
request.addParameter("PubliclyAccessible", StringUtils
.fromBoolean(modifyClusterRequest.getPubliclyAccessible()));
}
if (modifyClusterRequest.getElasticIp() != null) {
request.addParameter("ElasticIp",
StringUtils.fromString(modifyClusterRequest.getElasticIp()));
}
return request;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy