software.amazon.awssdk.services.connect.model.HierarchyStructureUpdate Maven / Gradle / Ivy
/*
* 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.connect.model;
import java.beans.Transient;
import java.io.Serializable;
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;
/**
*
* Contains information about the level hierarchy to update.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class HierarchyStructureUpdate implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField LEVEL_ONE_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("LevelOne")
.getter(getter(HierarchyStructureUpdate::levelOne)).setter(setter(Builder::levelOne))
.constructor(HierarchyLevelUpdate::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LevelOne").build()).build();
private static final SdkField LEVEL_TWO_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("LevelTwo")
.getter(getter(HierarchyStructureUpdate::levelTwo)).setter(setter(Builder::levelTwo))
.constructor(HierarchyLevelUpdate::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LevelTwo").build()).build();
private static final SdkField LEVEL_THREE_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("LevelThree")
.getter(getter(HierarchyStructureUpdate::levelThree)).setter(setter(Builder::levelThree))
.constructor(HierarchyLevelUpdate::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LevelThree").build()).build();
private static final SdkField LEVEL_FOUR_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("LevelFour")
.getter(getter(HierarchyStructureUpdate::levelFour)).setter(setter(Builder::levelFour))
.constructor(HierarchyLevelUpdate::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LevelFour").build()).build();
private static final SdkField LEVEL_FIVE_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("LevelFive")
.getter(getter(HierarchyStructureUpdate::levelFive)).setter(setter(Builder::levelFive))
.constructor(HierarchyLevelUpdate::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LevelFive").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(LEVEL_ONE_FIELD,
LEVEL_TWO_FIELD, LEVEL_THREE_FIELD, LEVEL_FOUR_FIELD, LEVEL_FIVE_FIELD));
private static final long serialVersionUID = 1L;
private final HierarchyLevelUpdate levelOne;
private final HierarchyLevelUpdate levelTwo;
private final HierarchyLevelUpdate levelThree;
private final HierarchyLevelUpdate levelFour;
private final HierarchyLevelUpdate levelFive;
private HierarchyStructureUpdate(BuilderImpl builder) {
this.levelOne = builder.levelOne;
this.levelTwo = builder.levelTwo;
this.levelThree = builder.levelThree;
this.levelFour = builder.levelFour;
this.levelFive = builder.levelFive;
}
/**
*
* The update for level one.
*
*
* @return The update for level one.
*/
public final HierarchyLevelUpdate levelOne() {
return levelOne;
}
/**
*
* The update for level two.
*
*
* @return The update for level two.
*/
public final HierarchyLevelUpdate levelTwo() {
return levelTwo;
}
/**
*
* The update for level three.
*
*
* @return The update for level three.
*/
public final HierarchyLevelUpdate levelThree() {
return levelThree;
}
/**
*
* The update for level four.
*
*
* @return The update for level four.
*/
public final HierarchyLevelUpdate levelFour() {
return levelFour;
}
/**
*
* The update for level five.
*
*
* @return The update for level five.
*/
public final HierarchyLevelUpdate levelFive() {
return levelFive;
}
@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 + Objects.hashCode(levelOne());
hashCode = 31 * hashCode + Objects.hashCode(levelTwo());
hashCode = 31 * hashCode + Objects.hashCode(levelThree());
hashCode = 31 * hashCode + Objects.hashCode(levelFour());
hashCode = 31 * hashCode + Objects.hashCode(levelFive());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof HierarchyStructureUpdate)) {
return false;
}
HierarchyStructureUpdate other = (HierarchyStructureUpdate) obj;
return Objects.equals(levelOne(), other.levelOne()) && Objects.equals(levelTwo(), other.levelTwo())
&& Objects.equals(levelThree(), other.levelThree()) && Objects.equals(levelFour(), other.levelFour())
&& Objects.equals(levelFive(), other.levelFive());
}
/**
* 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("HierarchyStructureUpdate").add("LevelOne", levelOne()).add("LevelTwo", levelTwo())
.add("LevelThree", levelThree()).add("LevelFour", levelFour()).add("LevelFive", levelFive()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "LevelOne":
return Optional.ofNullable(clazz.cast(levelOne()));
case "LevelTwo":
return Optional.ofNullable(clazz.cast(levelTwo()));
case "LevelThree":
return Optional.ofNullable(clazz.cast(levelThree()));
case "LevelFour":
return Optional.ofNullable(clazz.cast(levelFour()));
case "LevelFive":
return Optional.ofNullable(clazz.cast(levelFive()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy