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

software.amazon.awssdk.services.emr.model.PutAutoScalingPolicyRequest Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.29.15
Show newest version
/*
 * Copyright 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.emr.model;

import java.util.Arrays;
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 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.LocationTrait;
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 PutAutoScalingPolicyRequest extends EmrRequest implements
        ToCopyableBuilder {
    private static final SdkField CLUSTER_ID_FIELD = SdkField. builder(MarshallingType.STRING)
            .getter(getter(PutAutoScalingPolicyRequest::clusterId)).setter(setter(Builder::clusterId))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ClusterId").build()).build();

    private static final SdkField INSTANCE_GROUP_ID_FIELD = SdkField. builder(MarshallingType.STRING)
            .getter(getter(PutAutoScalingPolicyRequest::instanceGroupId)).setter(setter(Builder::instanceGroupId))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("InstanceGroupId").build()).build();

    private static final SdkField AUTO_SCALING_POLICY_FIELD = SdkField
            . builder(MarshallingType.SDK_POJO).getter(getter(PutAutoScalingPolicyRequest::autoScalingPolicy))
            .setter(setter(Builder::autoScalingPolicy)).constructor(AutoScalingPolicy::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("AutoScalingPolicy").build()).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(CLUSTER_ID_FIELD,
            INSTANCE_GROUP_ID_FIELD, AUTO_SCALING_POLICY_FIELD));

    private final String clusterId;

    private final String instanceGroupId;

    private final AutoScalingPolicy autoScalingPolicy;

    private PutAutoScalingPolicyRequest(BuilderImpl builder) {
        super(builder);
        this.clusterId = builder.clusterId;
        this.instanceGroupId = builder.instanceGroupId;
        this.autoScalingPolicy = builder.autoScalingPolicy;
    }

    /**
     * 

* Specifies the ID of a cluster. The instance group to which the automatic scaling policy is applied is within this * cluster. *

* * @return Specifies the ID of a cluster. The instance group to which the automatic scaling policy is applied is * within this cluster. */ public String clusterId() { return clusterId; } /** *

* Specifies the ID of the instance group to which the automatic scaling policy is applied. *

* * @return Specifies the ID of the instance group to which the automatic scaling policy is applied. */ public String instanceGroupId() { return instanceGroupId; } /** *

* Specifies the definition of the automatic scaling policy. *

* * @return Specifies the definition of the automatic scaling policy. */ public AutoScalingPolicy autoScalingPolicy() { return autoScalingPolicy; } @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 + super.hashCode(); hashCode = 31 * hashCode + Objects.hashCode(clusterId()); hashCode = 31 * hashCode + Objects.hashCode(instanceGroupId()); hashCode = 31 * hashCode + Objects.hashCode(autoScalingPolicy()); return hashCode; } @Override public boolean equals(Object obj) { return super.equals(obj) && equalsBySdkFields(obj); } @Override public boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof PutAutoScalingPolicyRequest)) { return false; } PutAutoScalingPolicyRequest other = (PutAutoScalingPolicyRequest) obj; return Objects.equals(clusterId(), other.clusterId()) && Objects.equals(instanceGroupId(), other.instanceGroupId()) && Objects.equals(autoScalingPolicy(), other.autoScalingPolicy()); } /** * 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("PutAutoScalingPolicyRequest").add("ClusterId", clusterId()) .add("InstanceGroupId", instanceGroupId()).add("AutoScalingPolicy", autoScalingPolicy()).build(); } public Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "ClusterId": return Optional.ofNullable(clazz.cast(clusterId())); case "InstanceGroupId": return Optional.ofNullable(clazz.cast(instanceGroupId())); case "AutoScalingPolicy": return Optional.ofNullable(clazz.cast(autoScalingPolicy())); default: return Optional.empty(); } } @Override public List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((PutAutoScalingPolicyRequest) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends EmrRequest.Builder, SdkPojo, CopyableBuilder { /** *

* Specifies the ID of a cluster. The instance group to which the automatic scaling policy is applied is within * this cluster. *

* * @param clusterId * Specifies the ID of a cluster. The instance group to which the automatic scaling policy is applied is * within this cluster. * @return Returns a reference to this object so that method calls can be chained together. */ Builder clusterId(String clusterId); /** *

* Specifies the ID of the instance group to which the automatic scaling policy is applied. *

* * @param instanceGroupId * Specifies the ID of the instance group to which the automatic scaling policy is applied. * @return Returns a reference to this object so that method calls can be chained together. */ Builder instanceGroupId(String instanceGroupId); /** *

* Specifies the definition of the automatic scaling policy. *

* * @param autoScalingPolicy * Specifies the definition of the automatic scaling policy. * @return Returns a reference to this object so that method calls can be chained together. */ Builder autoScalingPolicy(AutoScalingPolicy autoScalingPolicy); /** *

* Specifies the definition of the automatic scaling policy. *

* This is a convenience that creates an instance of the {@link AutoScalingPolicy.Builder} avoiding the need to * create one manually via {@link AutoScalingPolicy#builder()}. * * When the {@link Consumer} completes, {@link AutoScalingPolicy.Builder#build()} is called immediately and its * result is passed to {@link #autoScalingPolicy(AutoScalingPolicy)}. * * @param autoScalingPolicy * a consumer that will call methods on {@link AutoScalingPolicy.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #autoScalingPolicy(AutoScalingPolicy) */ default Builder autoScalingPolicy(Consumer autoScalingPolicy) { return autoScalingPolicy(AutoScalingPolicy.builder().applyMutation(autoScalingPolicy).build()); } @Override Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); @Override Builder overrideConfiguration(Consumer builderConsumer); } static final class BuilderImpl extends EmrRequest.BuilderImpl implements Builder { private String clusterId; private String instanceGroupId; private AutoScalingPolicy autoScalingPolicy; private BuilderImpl() { } private BuilderImpl(PutAutoScalingPolicyRequest model) { super(model); clusterId(model.clusterId); instanceGroupId(model.instanceGroupId); autoScalingPolicy(model.autoScalingPolicy); } public final String getClusterId() { return clusterId; } @Override public final Builder clusterId(String clusterId) { this.clusterId = clusterId; return this; } public final void setClusterId(String clusterId) { this.clusterId = clusterId; } public final String getInstanceGroupId() { return instanceGroupId; } @Override public final Builder instanceGroupId(String instanceGroupId) { this.instanceGroupId = instanceGroupId; return this; } public final void setInstanceGroupId(String instanceGroupId) { this.instanceGroupId = instanceGroupId; } public final AutoScalingPolicy.Builder getAutoScalingPolicy() { return autoScalingPolicy != null ? autoScalingPolicy.toBuilder() : null; } @Override public final Builder autoScalingPolicy(AutoScalingPolicy autoScalingPolicy) { this.autoScalingPolicy = autoScalingPolicy; return this; } public final void setAutoScalingPolicy(AutoScalingPolicy.BuilderImpl autoScalingPolicy) { this.autoScalingPolicy = autoScalingPolicy != null ? autoScalingPolicy.build() : null; } @Override public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) { super.overrideConfiguration(overrideConfiguration); return this; } @Override public Builder overrideConfiguration(Consumer builderConsumer) { super.overrideConfiguration(builderConsumer); return this; } @Override public PutAutoScalingPolicyRequest build() { return new PutAutoScalingPolicyRequest(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy