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

software.amazon.awssdk.services.vpclattice.model.UpdateRuleResponse Maven / Gradle / Ivy

Go to download

The AWS Java SDK for VPC Lattice module holds the client classes that are used for communicating with VPC Lattice.

There is a newer version: 2.29.16
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.vpclattice.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.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 UpdateRuleResponse extends VpcLatticeResponse implements
        ToCopyableBuilder {
    private static final SdkField ACTION_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
            .memberName("action").getter(getter(UpdateRuleResponse::action)).setter(setter(Builder::action))
            .constructor(RuleAction::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("action").build()).build();

    private static final SdkField ARN_FIELD = SdkField. builder(MarshallingType.STRING).memberName("arn")
            .getter(getter(UpdateRuleResponse::arn)).setter(setter(Builder::arn))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("arn").build()).build();

    private static final SdkField ID_FIELD = SdkField. builder(MarshallingType.STRING).memberName("id")
            .getter(getter(UpdateRuleResponse::id)).setter(setter(Builder::id))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("id").build()).build();

    private static final SdkField IS_DEFAULT_FIELD = SdkField. builder(MarshallingType.BOOLEAN)
            .memberName("isDefault").getter(getter(UpdateRuleResponse::isDefault)).setter(setter(Builder::isDefault))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("isDefault").build()).build();

    private static final SdkField MATCH_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
            .memberName("match").getter(getter(UpdateRuleResponse::match)).setter(setter(Builder::match))
            .constructor(RuleMatch::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("match").build()).build();

    private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("name")
            .getter(getter(UpdateRuleResponse::name)).setter(setter(Builder::name))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("name").build()).build();

    private static final SdkField PRIORITY_FIELD = SdkField. builder(MarshallingType.INTEGER)
            .memberName("priority").getter(getter(UpdateRuleResponse::priority)).setter(setter(Builder::priority))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("priority").build()).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(ACTION_FIELD, ARN_FIELD,
            ID_FIELD, IS_DEFAULT_FIELD, MATCH_FIELD, NAME_FIELD, PRIORITY_FIELD));

    private final RuleAction action;

    private final String arn;

    private final String id;

    private final Boolean isDefault;

    private final RuleMatch match;

    private final String name;

    private final Integer priority;

    private UpdateRuleResponse(BuilderImpl builder) {
        super(builder);
        this.action = builder.action;
        this.arn = builder.arn;
        this.id = builder.id;
        this.isDefault = builder.isDefault;
        this.match = builder.match;
        this.name = builder.name;
        this.priority = builder.priority;
    }

    /**
     * 

* Information about the action for the specified listener rule. *

* * @return Information about the action for the specified listener rule. */ public final RuleAction action() { return action; } /** *

* The Amazon Resource Name (ARN) of the listener. *

* * @return The Amazon Resource Name (ARN) of the listener. */ public final String arn() { return arn; } /** *

* The ID of the listener. *

* * @return The ID of the listener. */ public final String id() { return id; } /** *

* Indicates whether this is the default rule. *

* * @return Indicates whether this is the default rule. */ public final Boolean isDefault() { return isDefault; } /** *

* The rule match. *

* * @return The rule match. */ public final RuleMatch match() { return match; } /** *

* The name of the listener. *

* * @return The name of the listener. */ public final String name() { return name; } /** *

* The rule priority. *

* * @return The rule priority. */ public final Integer priority() { return priority; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + super.hashCode(); hashCode = 31 * hashCode + Objects.hashCode(action()); hashCode = 31 * hashCode + Objects.hashCode(arn()); hashCode = 31 * hashCode + Objects.hashCode(id()); hashCode = 31 * hashCode + Objects.hashCode(isDefault()); hashCode = 31 * hashCode + Objects.hashCode(match()); hashCode = 31 * hashCode + Objects.hashCode(name()); hashCode = 31 * hashCode + Objects.hashCode(priority()); return hashCode; } @Override public final boolean equals(Object obj) { return super.equals(obj) && equalsBySdkFields(obj); } @Override public final boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof UpdateRuleResponse)) { return false; } UpdateRuleResponse other = (UpdateRuleResponse) obj; return Objects.equals(action(), other.action()) && Objects.equals(arn(), other.arn()) && Objects.equals(id(), other.id()) && Objects.equals(isDefault(), other.isDefault()) && Objects.equals(match(), other.match()) && Objects.equals(name(), other.name()) && Objects.equals(priority(), other.priority()); } /** * 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 final String toString() { return ToString.builder("UpdateRuleResponse").add("Action", action()).add("Arn", arn()).add("Id", id()) .add("IsDefault", isDefault()).add("Match", match()).add("Name", name()).add("Priority", priority()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "action": return Optional.ofNullable(clazz.cast(action())); case "arn": return Optional.ofNullable(clazz.cast(arn())); case "id": return Optional.ofNullable(clazz.cast(id())); case "isDefault": return Optional.ofNullable(clazz.cast(isDefault())); case "match": return Optional.ofNullable(clazz.cast(match())); case "name": return Optional.ofNullable(clazz.cast(name())); case "priority": return Optional.ofNullable(clazz.cast(priority())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((UpdateRuleResponse) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends VpcLatticeResponse.Builder, SdkPojo, CopyableBuilder { /** *

* Information about the action for the specified listener rule. *

* * @param action * Information about the action for the specified listener rule. * @return Returns a reference to this object so that method calls can be chained together. */ Builder action(RuleAction action); /** *

* Information about the action for the specified listener rule. *

* This is a convenience method that creates an instance of the {@link RuleAction.Builder} avoiding the need to * create one manually via {@link RuleAction#builder()}. * *

* When the {@link Consumer} completes, {@link RuleAction.Builder#build()} is called immediately and its result * is passed to {@link #action(RuleAction)}. * * @param action * a consumer that will call methods on {@link RuleAction.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #action(RuleAction) */ default Builder action(Consumer action) { return action(RuleAction.builder().applyMutation(action).build()); } /** *

* The Amazon Resource Name (ARN) of the listener. *

* * @param arn * The Amazon Resource Name (ARN) of the listener. * @return Returns a reference to this object so that method calls can be chained together. */ Builder arn(String arn); /** *

* The ID of the listener. *

* * @param id * The ID of the listener. * @return Returns a reference to this object so that method calls can be chained together. */ Builder id(String id); /** *

* Indicates whether this is the default rule. *

* * @param isDefault * Indicates whether this is the default rule. * @return Returns a reference to this object so that method calls can be chained together. */ Builder isDefault(Boolean isDefault); /** *

* The rule match. *

* * @param match * The rule match. * @return Returns a reference to this object so that method calls can be chained together. */ Builder match(RuleMatch match); /** *

* The rule match. *

* This is a convenience method that creates an instance of the {@link RuleMatch.Builder} avoiding the need to * create one manually via {@link RuleMatch#builder()}. * *

* When the {@link Consumer} completes, {@link RuleMatch.Builder#build()} is called immediately and its result * is passed to {@link #match(RuleMatch)}. * * @param match * a consumer that will call methods on {@link RuleMatch.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #match(RuleMatch) */ default Builder match(Consumer match) { return match(RuleMatch.builder().applyMutation(match).build()); } /** *

* The name of the listener. *

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

* The rule priority. *

* * @param priority * The rule priority. * @return Returns a reference to this object so that method calls can be chained together. */ Builder priority(Integer priority); } static final class BuilderImpl extends VpcLatticeResponse.BuilderImpl implements Builder { private RuleAction action; private String arn; private String id; private Boolean isDefault; private RuleMatch match; private String name; private Integer priority; private BuilderImpl() { } private BuilderImpl(UpdateRuleResponse model) { super(model); action(model.action); arn(model.arn); id(model.id); isDefault(model.isDefault); match(model.match); name(model.name); priority(model.priority); } public final RuleAction.Builder getAction() { return action != null ? action.toBuilder() : null; } public final void setAction(RuleAction.BuilderImpl action) { this.action = action != null ? action.build() : null; } @Override public final Builder action(RuleAction action) { this.action = action; return this; } public final String getArn() { return arn; } public final void setArn(String arn) { this.arn = arn; } @Override public final Builder arn(String arn) { this.arn = arn; return this; } public final String getId() { return id; } public final void setId(String id) { this.id = id; } @Override public final Builder id(String id) { this.id = id; return this; } public final Boolean getIsDefault() { return isDefault; } public final void setIsDefault(Boolean isDefault) { this.isDefault = isDefault; } @Override public final Builder isDefault(Boolean isDefault) { this.isDefault = isDefault; return this; } public final RuleMatch.Builder getMatch() { return match != null ? match.toBuilder() : null; } public final void setMatch(RuleMatch.BuilderImpl match) { this.match = match != null ? match.build() : null; } @Override public final Builder match(RuleMatch match) { this.match = match; return this; } public final String getName() { return name; } public final void setName(String name) { this.name = name; } @Override public final Builder name(String name) { this.name = name; return this; } public final Integer getPriority() { return priority; } public final void setPriority(Integer priority) { this.priority = priority; } @Override public final Builder priority(Integer priority) { this.priority = priority; return this; } @Override public UpdateRuleResponse build() { return new UpdateRuleResponse(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy