All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.services.redshift.model.ModifyClusterParameterGroupRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Redshift module holds the client classes that are used for communicating with Amazon Redshift Service

There is a newer version: 2.29.15
Show newest version
/*
 * Copyright 2014-2019 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 software.amazon.awssdk.services.redshift.model;

import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.awscore.AwsRequestOverrideConfiguration;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.ListTrait;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructList;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

*/ @Generated("software.amazon.awssdk:codegen") public final class ModifyClusterParameterGroupRequest extends RedshiftRequest implements ToCopyableBuilder { private static final SdkField PARAMETER_GROUP_NAME_FIELD = SdkField. builder(MarshallingType.STRING) .getter(getter(ModifyClusterParameterGroupRequest::parameterGroupName)).setter(setter(Builder::parameterGroupName)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ParameterGroupName").build()) .build(); private static final SdkField> PARAMETERS_FIELD = SdkField .> builder(MarshallingType.LIST) .getter(getter(ModifyClusterParameterGroupRequest::parameters)) .setter(setter(Builder::parameters)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Parameters").build(), ListTrait .builder() .memberLocationName("Parameter") .memberFieldInfo( SdkField. builder(MarshallingType.SDK_POJO) .constructor(Parameter::builder) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) .locationName("Parameter").build()).build()).build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(PARAMETER_GROUP_NAME_FIELD, PARAMETERS_FIELD)); private final String parameterGroupName; private final List parameters; private ModifyClusterParameterGroupRequest(BuilderImpl builder) { super(builder); this.parameterGroupName = builder.parameterGroupName; this.parameters = builder.parameters; } /** *

* The name of the parameter group to be modified. *

* * @return The name of the parameter group to be modified. */ public String parameterGroupName() { return parameterGroupName; } /** *

* An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request. *

*

* For each parameter to be modified, you must supply at least the parameter name and parameter value; other * name-value pairs of the parameter are optional. *

*

* For the workload management (WLM) configuration, you must supply all the name-value pairs in the * wlm_json_configuration parameter. *

*

* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

* * @return An array of parameters to be modified. A maximum of 20 parameters can be modified in a single * request.

*

* For each parameter to be modified, you must supply at least the parameter name and parameter value; other * name-value pairs of the parameter are optional. *

*

* For the workload management (WLM) configuration, you must supply all the name-value pairs in the * wlm_json_configuration parameter. */ public List parameters() { return parameters; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(parameterGroupName()); hashCode = 31 * hashCode + Objects.hashCode(parameters()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof ModifyClusterParameterGroupRequest)) { return false; } ModifyClusterParameterGroupRequest other = (ModifyClusterParameterGroupRequest) obj; return Objects.equals(parameterGroupName(), other.parameterGroupName()) && Objects.equals(parameters(), other.parameters()); } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. */ @Override public String toString() { return ToString.builder("ModifyClusterParameterGroupRequest").add("ParameterGroupName", parameterGroupName()) .add("Parameters", parameters()).build(); } public Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "ParameterGroupName": return Optional.ofNullable(clazz.cast(parameterGroupName())); case "Parameters": return Optional.ofNullable(clazz.cast(parameters())); default: return Optional.empty(); } } @Override public List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((ModifyClusterParameterGroupRequest) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends RedshiftRequest.Builder, SdkPojo, CopyableBuilder { /** *

* The name of the parameter group to be modified. *

* * @param parameterGroupName * The name of the parameter group to be modified. * @return Returns a reference to this object so that method calls can be chained together. */ Builder parameterGroupName(String parameterGroupName); /** *

* An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request. *

*

* For each parameter to be modified, you must supply at least the parameter name and parameter value; other * name-value pairs of the parameter are optional. *

*

* For the workload management (WLM) configuration, you must supply all the name-value pairs in the * wlm_json_configuration parameter. *

* * @param parameters * An array of parameters to be modified. A maximum of 20 parameters can be modified in a single * request.

*

* For each parameter to be modified, you must supply at least the parameter name and parameter value; * other name-value pairs of the parameter are optional. *

*

* For the workload management (WLM) configuration, you must supply all the name-value pairs in the * wlm_json_configuration parameter. * @return Returns a reference to this object so that method calls can be chained together. */ Builder parameters(Collection parameters); /** *

* An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request. *

*

* For each parameter to be modified, you must supply at least the parameter name and parameter value; other * name-value pairs of the parameter are optional. *

*

* For the workload management (WLM) configuration, you must supply all the name-value pairs in the * wlm_json_configuration parameter. *

* * @param parameters * An array of parameters to be modified. A maximum of 20 parameters can be modified in a single * request.

*

* For each parameter to be modified, you must supply at least the parameter name and parameter value; * other name-value pairs of the parameter are optional. *

*

* For the workload management (WLM) configuration, you must supply all the name-value pairs in the * wlm_json_configuration parameter. * @return Returns a reference to this object so that method calls can be chained together. */ Builder parameters(Parameter... parameters); /** *

* An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request. *

*

* For each parameter to be modified, you must supply at least the parameter name and parameter value; other * name-value pairs of the parameter are optional. *

*

* For the workload management (WLM) configuration, you must supply all the name-value pairs in the * wlm_json_configuration parameter. *

* This is a convenience that creates an instance of the {@link List.Builder} avoiding the need to * create one manually via {@link List#builder()}. * * When the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its * result is passed to {@link #parameters(List)}. * * @param parameters * a consumer that will call methods on {@link List.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #parameters(List) */ Builder parameters(Consumer... parameters); @Override Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); @Override Builder overrideConfiguration(Consumer builderConsumer); } static final class BuilderImpl extends RedshiftRequest.BuilderImpl implements Builder { private String parameterGroupName; private List parameters = DefaultSdkAutoConstructList.getInstance(); private BuilderImpl() { } private BuilderImpl(ModifyClusterParameterGroupRequest model) { super(model); parameterGroupName(model.parameterGroupName); parameters(model.parameters); } public final String getParameterGroupName() { return parameterGroupName; } @Override public final Builder parameterGroupName(String parameterGroupName) { this.parameterGroupName = parameterGroupName; return this; } public final void setParameterGroupName(String parameterGroupName) { this.parameterGroupName = parameterGroupName; } public final Collection getParameters() { return parameters != null ? parameters.stream().map(Parameter::toBuilder).collect(Collectors.toList()) : null; } @Override public final Builder parameters(Collection parameters) { this.parameters = ParametersListCopier.copy(parameters); return this; } @Override @SafeVarargs public final Builder parameters(Parameter... parameters) { parameters(Arrays.asList(parameters)); return this; } @Override @SafeVarargs public final Builder parameters(Consumer... parameters) { parameters(Stream.of(parameters).map(c -> Parameter.builder().applyMutation(c).build()).collect(Collectors.toList())); return this; } public final void setParameters(Collection parameters) { this.parameters = ParametersListCopier.copyFromBuilder(parameters); } @Override public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) { super.overrideConfiguration(overrideConfiguration); return this; } @Override public Builder overrideConfiguration(Consumer builderConsumer) { super.overrideConfiguration(builderConsumer); return this; } @Override public ModifyClusterParameterGroupRequest build() { return new ModifyClusterParameterGroupRequest(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy