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

software.amazon.awssdk.services.snowdevicemanagement.model.InstanceState Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Snow Device Management module holds the client classes that are used for communicating with Snow Device Management.

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.snowdevicemanagement.model;

import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
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;

/**
 * 

* The description of the current state of an instance. *

*/ @Generated("software.amazon.awssdk:codegen") public final class InstanceState implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField CODE_FIELD = SdkField. builder(MarshallingType.INTEGER).memberName("code") .getter(getter(InstanceState::code)).setter(setter(Builder::code)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("code").build()).build(); private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("name") .getter(getter(InstanceState::nameAsString)).setter(setter(Builder::name)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("name").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(CODE_FIELD, NAME_FIELD)); private static final Map> SDK_NAME_TO_FIELD = Collections .unmodifiableMap(new HashMap>() { { put("code", CODE_FIELD); put("name", NAME_FIELD); } }); private static final long serialVersionUID = 1L; private final Integer code; private final String name; private InstanceState(BuilderImpl builder) { this.code = builder.code; this.name = builder.name; } /** *

* The state of the instance as a 16-bit unsigned integer. *

*

* The high byte is all of the bits between 2^8 and (2^16)-1, which equals decimal values between 256 and 65,535. * These numerical values are used for internal purposes and should be ignored. *

*

* The low byte is all of the bits between 2^0 and (2^8)-1, which equals decimal values between 0 and 255. *

*

* The valid values for the instance state code are all in the range of the low byte. These values are: *

*
    *
  • *

    * 0 : pending *

    *
  • *
  • *

    * 16 : running *

    *
  • *
  • *

    * 32 : shutting-down *

    *
  • *
  • *

    * 48 : terminated *

    *
  • *
  • *

    * 64 : stopping *

    *
  • *
  • *

    * 80 : stopped *

    *
  • *
*

* You can ignore the high byte value by zeroing out all of the bits above 2^8 or 256 in decimal. *

* * @return The state of the instance as a 16-bit unsigned integer.

*

* The high byte is all of the bits between 2^8 and (2^16)-1, which equals decimal values between 256 and * 65,535. These numerical values are used for internal purposes and should be ignored. *

*

* The low byte is all of the bits between 2^0 and (2^8)-1, which equals decimal values between 0 and 255. *

*

* The valid values for the instance state code are all in the range of the low byte. These values are: *

*
    *
  • *

    * 0 : pending *

    *
  • *
  • *

    * 16 : running *

    *
  • *
  • *

    * 32 : shutting-down *

    *
  • *
  • *

    * 48 : terminated *

    *
  • *
  • *

    * 64 : stopping *

    *
  • *
  • *

    * 80 : stopped *

    *
  • *
*

* You can ignore the high byte value by zeroing out all of the bits above 2^8 or 256 in decimal. */ public final Integer code() { return code; } /** *

* The current state of the instance. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #name} will return * {@link InstanceStateName#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #nameAsString}. *

* * @return The current state of the instance. * @see InstanceStateName */ public final InstanceStateName name() { return InstanceStateName.fromValue(name); } /** *

* The current state of the instance. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #name} will return * {@link InstanceStateName#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #nameAsString}. *

* * @return The current state of the instance. * @see InstanceStateName */ public final String nameAsString() { return name; } @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 + Objects.hashCode(code()); hashCode = 31 * hashCode + Objects.hashCode(nameAsString()); 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 InstanceState)) { return false; } InstanceState other = (InstanceState) obj; return Objects.equals(code(), other.code()) && Objects.equals(nameAsString(), other.nameAsString()); } /** * 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("InstanceState").add("Code", code()).add("Name", nameAsString()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "code": return Optional.ofNullable(clazz.cast(code())); case "name": return Optional.ofNullable(clazz.cast(nameAsString())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } @Override public final Map> sdkFieldNameToField() { return SDK_NAME_TO_FIELD; } private static Function getter(Function g) { return obj -> g.apply((InstanceState) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The state of the instance as a 16-bit unsigned integer. *

*

* The high byte is all of the bits between 2^8 and (2^16)-1, which equals decimal values between 256 and * 65,535. These numerical values are used for internal purposes and should be ignored. *

*

* The low byte is all of the bits between 2^0 and (2^8)-1, which equals decimal values between 0 and 255. *

*

* The valid values for the instance state code are all in the range of the low byte. These values are: *

*
    *
  • *

    * 0 : pending *

    *
  • *
  • *

    * 16 : running *

    *
  • *
  • *

    * 32 : shutting-down *

    *
  • *
  • *

    * 48 : terminated *

    *
  • *
  • *

    * 64 : stopping *

    *
  • *
  • *

    * 80 : stopped *

    *
  • *
*

* You can ignore the high byte value by zeroing out all of the bits above 2^8 or 256 in decimal. *

* * @param code * The state of the instance as a 16-bit unsigned integer.

*

* The high byte is all of the bits between 2^8 and (2^16)-1, which equals decimal values between 256 and * 65,535. These numerical values are used for internal purposes and should be ignored. *

*

* The low byte is all of the bits between 2^0 and (2^8)-1, which equals decimal values between 0 and * 255. *

*

* The valid values for the instance state code are all in the range of the low byte. These values are: *

*
    *
  • *

    * 0 : pending *

    *
  • *
  • *

    * 16 : running *

    *
  • *
  • *

    * 32 : shutting-down *

    *
  • *
  • *

    * 48 : terminated *

    *
  • *
  • *

    * 64 : stopping *

    *
  • *
  • *

    * 80 : stopped *

    *
  • *
*

* You can ignore the high byte value by zeroing out all of the bits above 2^8 or 256 in decimal. * @return Returns a reference to this object so that method calls can be chained together. */ Builder code(Integer code); /** *

* The current state of the instance. *

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

* The current state of the instance. *

* * @param name * The current state of the instance. * @see InstanceStateName * @return Returns a reference to this object so that method calls can be chained together. * @see InstanceStateName */ Builder name(InstanceStateName name); } static final class BuilderImpl implements Builder { private Integer code; private String name; private BuilderImpl() { } private BuilderImpl(InstanceState model) { code(model.code); name(model.name); } public final Integer getCode() { return code; } public final void setCode(Integer code) { this.code = code; } @Override public final Builder code(Integer code) { this.code = code; 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; } @Override public final Builder name(InstanceStateName name) { this.name(name == null ? null : name.toString()); return this; } @Override public InstanceState build() { return new InstanceState(this); } @Override public List> sdkFields() { return SDK_FIELDS; } @Override public Map> sdkFieldNameToField() { return SDK_NAME_TO_FIELD; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy