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

com.amazonaws.services.codebuild.model.FleetStatus Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2019-2024 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 com.amazonaws.services.codebuild.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* The status of the compute fleet. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class FleetStatus implements Serializable, Cloneable, StructuredPojo { /** *

* The status code of the compute fleet. Valid values include: *

*
    *
  • *

    * CREATING: The compute fleet is being created. *

    *
  • *
  • *

    * UPDATING: The compute fleet is being updated. *

    *
  • *
  • *

    * ROTATING: The compute fleet is being rotated. *

    *
  • *
  • *

    * PENDING_DELETION: The compute fleet is pending deletion. *

    *
  • *
  • *

    * DELETING: The compute fleet is being deleted. *

    *
  • *
  • *

    * CREATE_FAILED: The compute fleet has failed to create. *

    *
  • *
  • *

    * UPDATE_ROLLBACK_FAILED: The compute fleet has failed to update and could not rollback to previous * state. *

    *
  • *
  • *

    * ACTIVE: The compute fleet has succeeded and is active. *

    *
  • *
*/ private String statusCode; /** *

* Additional information about a compute fleet. Valid values include: *

*
    *
  • *

    * CREATE_FAILED: The compute fleet has failed to create. *

    *
  • *
  • *

    * UPDATE_FAILED: The compute fleet has failed to update. *

    *
  • *
*/ private String context; /** *

* A message associated with the status of a compute fleet. *

*/ private String message; /** *

* The status code of the compute fleet. Valid values include: *

*
    *
  • *

    * CREATING: The compute fleet is being created. *

    *
  • *
  • *

    * UPDATING: The compute fleet is being updated. *

    *
  • *
  • *

    * ROTATING: The compute fleet is being rotated. *

    *
  • *
  • *

    * PENDING_DELETION: The compute fleet is pending deletion. *

    *
  • *
  • *

    * DELETING: The compute fleet is being deleted. *

    *
  • *
  • *

    * CREATE_FAILED: The compute fleet has failed to create. *

    *
  • *
  • *

    * UPDATE_ROLLBACK_FAILED: The compute fleet has failed to update and could not rollback to previous * state. *

    *
  • *
  • *

    * ACTIVE: The compute fleet has succeeded and is active. *

    *
  • *
* * @param statusCode * The status code of the compute fleet. Valid values include:

*
    *
  • *

    * CREATING: The compute fleet is being created. *

    *
  • *
  • *

    * UPDATING: The compute fleet is being updated. *

    *
  • *
  • *

    * ROTATING: The compute fleet is being rotated. *

    *
  • *
  • *

    * PENDING_DELETION: The compute fleet is pending deletion. *

    *
  • *
  • *

    * DELETING: The compute fleet is being deleted. *

    *
  • *
  • *

    * CREATE_FAILED: The compute fleet has failed to create. *

    *
  • *
  • *

    * UPDATE_ROLLBACK_FAILED: The compute fleet has failed to update and could not rollback to * previous state. *

    *
  • *
  • *

    * ACTIVE: The compute fleet has succeeded and is active. *

    *
  • * @see FleetStatusCode */ public void setStatusCode(String statusCode) { this.statusCode = statusCode; } /** *

    * The status code of the compute fleet. Valid values include: *

    *
      *
    • *

      * CREATING: The compute fleet is being created. *

      *
    • *
    • *

      * UPDATING: The compute fleet is being updated. *

      *
    • *
    • *

      * ROTATING: The compute fleet is being rotated. *

      *
    • *
    • *

      * PENDING_DELETION: The compute fleet is pending deletion. *

      *
    • *
    • *

      * DELETING: The compute fleet is being deleted. *

      *
    • *
    • *

      * CREATE_FAILED: The compute fleet has failed to create. *

      *
    • *
    • *

      * UPDATE_ROLLBACK_FAILED: The compute fleet has failed to update and could not rollback to previous * state. *

      *
    • *
    • *

      * ACTIVE: The compute fleet has succeeded and is active. *

      *
    • *
    * * @return The status code of the compute fleet. Valid values include:

    *
      *
    • *

      * CREATING: The compute fleet is being created. *

      *
    • *
    • *

      * UPDATING: The compute fleet is being updated. *

      *
    • *
    • *

      * ROTATING: The compute fleet is being rotated. *

      *
    • *
    • *

      * PENDING_DELETION: The compute fleet is pending deletion. *

      *
    • *
    • *

      * DELETING: The compute fleet is being deleted. *

      *
    • *
    • *

      * CREATE_FAILED: The compute fleet has failed to create. *

      *
    • *
    • *

      * UPDATE_ROLLBACK_FAILED: The compute fleet has failed to update and could not rollback to * previous state. *

      *
    • *
    • *

      * ACTIVE: The compute fleet has succeeded and is active. *

      *
    • * @see FleetStatusCode */ public String getStatusCode() { return this.statusCode; } /** *

      * The status code of the compute fleet. Valid values include: *

      *
        *
      • *

        * CREATING: The compute fleet is being created. *

        *
      • *
      • *

        * UPDATING: The compute fleet is being updated. *

        *
      • *
      • *

        * ROTATING: The compute fleet is being rotated. *

        *
      • *
      • *

        * PENDING_DELETION: The compute fleet is pending deletion. *

        *
      • *
      • *

        * DELETING: The compute fleet is being deleted. *

        *
      • *
      • *

        * CREATE_FAILED: The compute fleet has failed to create. *

        *
      • *
      • *

        * UPDATE_ROLLBACK_FAILED: The compute fleet has failed to update and could not rollback to previous * state. *

        *
      • *
      • *

        * ACTIVE: The compute fleet has succeeded and is active. *

        *
      • *
      * * @param statusCode * The status code of the compute fleet. Valid values include:

      *
        *
      • *

        * CREATING: The compute fleet is being created. *

        *
      • *
      • *

        * UPDATING: The compute fleet is being updated. *

        *
      • *
      • *

        * ROTATING: The compute fleet is being rotated. *

        *
      • *
      • *

        * PENDING_DELETION: The compute fleet is pending deletion. *

        *
      • *
      • *

        * DELETING: The compute fleet is being deleted. *

        *
      • *
      • *

        * CREATE_FAILED: The compute fleet has failed to create. *

        *
      • *
      • *

        * UPDATE_ROLLBACK_FAILED: The compute fleet has failed to update and could not rollback to * previous state. *

        *
      • *
      • *

        * ACTIVE: The compute fleet has succeeded and is active. *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. * @see FleetStatusCode */ public FleetStatus withStatusCode(String statusCode) { setStatusCode(statusCode); return this; } /** *

        * The status code of the compute fleet. Valid values include: *

        *
          *
        • *

          * CREATING: The compute fleet is being created. *

          *
        • *
        • *

          * UPDATING: The compute fleet is being updated. *

          *
        • *
        • *

          * ROTATING: The compute fleet is being rotated. *

          *
        • *
        • *

          * PENDING_DELETION: The compute fleet is pending deletion. *

          *
        • *
        • *

          * DELETING: The compute fleet is being deleted. *

          *
        • *
        • *

          * CREATE_FAILED: The compute fleet has failed to create. *

          *
        • *
        • *

          * UPDATE_ROLLBACK_FAILED: The compute fleet has failed to update and could not rollback to previous * state. *

          *
        • *
        • *

          * ACTIVE: The compute fleet has succeeded and is active. *

          *
        • *
        * * @param statusCode * The status code of the compute fleet. Valid values include:

        *
          *
        • *

          * CREATING: The compute fleet is being created. *

          *
        • *
        • *

          * UPDATING: The compute fleet is being updated. *

          *
        • *
        • *

          * ROTATING: The compute fleet is being rotated. *

          *
        • *
        • *

          * PENDING_DELETION: The compute fleet is pending deletion. *

          *
        • *
        • *

          * DELETING: The compute fleet is being deleted. *

          *
        • *
        • *

          * CREATE_FAILED: The compute fleet has failed to create. *

          *
        • *
        • *

          * UPDATE_ROLLBACK_FAILED: The compute fleet has failed to update and could not rollback to * previous state. *

          *
        • *
        • *

          * ACTIVE: The compute fleet has succeeded and is active. *

          *
        • * @return Returns a reference to this object so that method calls can be chained together. * @see FleetStatusCode */ public FleetStatus withStatusCode(FleetStatusCode statusCode) { this.statusCode = statusCode.toString(); return this; } /** *

          * Additional information about a compute fleet. Valid values include: *

          *
            *
          • *

            * CREATE_FAILED: The compute fleet has failed to create. *

            *
          • *
          • *

            * UPDATE_FAILED: The compute fleet has failed to update. *

            *
          • *
          * * @param context * Additional information about a compute fleet. Valid values include:

          *
            *
          • *

            * CREATE_FAILED: The compute fleet has failed to create. *

            *
          • *
          • *

            * UPDATE_FAILED: The compute fleet has failed to update. *

            *
          • * @see FleetContextCode */ public void setContext(String context) { this.context = context; } /** *

            * Additional information about a compute fleet. Valid values include: *

            *
              *
            • *

              * CREATE_FAILED: The compute fleet has failed to create. *

              *
            • *
            • *

              * UPDATE_FAILED: The compute fleet has failed to update. *

              *
            • *
            * * @return Additional information about a compute fleet. Valid values include:

            *
              *
            • *

              * CREATE_FAILED: The compute fleet has failed to create. *

              *
            • *
            • *

              * UPDATE_FAILED: The compute fleet has failed to update. *

              *
            • * @see FleetContextCode */ public String getContext() { return this.context; } /** *

              * Additional information about a compute fleet. Valid values include: *

              *
                *
              • *

                * CREATE_FAILED: The compute fleet has failed to create. *

                *
              • *
              • *

                * UPDATE_FAILED: The compute fleet has failed to update. *

                *
              • *
              * * @param context * Additional information about a compute fleet. Valid values include:

              *
                *
              • *

                * CREATE_FAILED: The compute fleet has failed to create. *

                *
              • *
              • *

                * UPDATE_FAILED: The compute fleet has failed to update. *

                *
              • * @return Returns a reference to this object so that method calls can be chained together. * @see FleetContextCode */ public FleetStatus withContext(String context) { setContext(context); return this; } /** *

                * Additional information about a compute fleet. Valid values include: *

                *
                  *
                • *

                  * CREATE_FAILED: The compute fleet has failed to create. *

                  *
                • *
                • *

                  * UPDATE_FAILED: The compute fleet has failed to update. *

                  *
                • *
                * * @param context * Additional information about a compute fleet. Valid values include:

                *
                  *
                • *

                  * CREATE_FAILED: The compute fleet has failed to create. *

                  *
                • *
                • *

                  * UPDATE_FAILED: The compute fleet has failed to update. *

                  *
                • * @return Returns a reference to this object so that method calls can be chained together. * @see FleetContextCode */ public FleetStatus withContext(FleetContextCode context) { this.context = context.toString(); return this; } /** *

                  * A message associated with the status of a compute fleet. *

                  * * @param message * A message associated with the status of a compute fleet. */ public void setMessage(String message) { this.message = message; } /** *

                  * A message associated with the status of a compute fleet. *

                  * * @return A message associated with the status of a compute fleet. */ public String getMessage() { return this.message; } /** *

                  * A message associated with the status of a compute fleet. *

                  * * @param message * A message associated with the status of a compute fleet. * @return Returns a reference to this object so that method calls can be chained together. */ public FleetStatus withMessage(String message) { setMessage(message); return this; } /** * 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. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getStatusCode() != null) sb.append("StatusCode: ").append(getStatusCode()).append(","); if (getContext() != null) sb.append("Context: ").append(getContext()).append(","); if (getMessage() != null) sb.append("Message: ").append(getMessage()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof FleetStatus == false) return false; FleetStatus other = (FleetStatus) obj; if (other.getStatusCode() == null ^ this.getStatusCode() == null) return false; if (other.getStatusCode() != null && other.getStatusCode().equals(this.getStatusCode()) == false) return false; if (other.getContext() == null ^ this.getContext() == null) return false; if (other.getContext() != null && other.getContext().equals(this.getContext()) == false) return false; if (other.getMessage() == null ^ this.getMessage() == null) return false; if (other.getMessage() != null && other.getMessage().equals(this.getMessage()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getStatusCode() == null) ? 0 : getStatusCode().hashCode()); hashCode = prime * hashCode + ((getContext() == null) ? 0 : getContext().hashCode()); hashCode = prime * hashCode + ((getMessage() == null) ? 0 : getMessage().hashCode()); return hashCode; } @Override public FleetStatus clone() { try { return (FleetStatus) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.codebuild.model.transform.FleetStatusMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy