software.amazon.awssdk.services.vpclattice.model.UpdateRuleResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vpclattice Show documentation
Show all versions of vpclattice Show documentation
The AWS Java SDK for VPC Lattice module holds the client classes that are used for
communicating with VPC Lattice.
/*
* 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 extends Builder> 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