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

com.amazonaws.services.migrationhubstrategyrecommendations.model.ServerStrategy Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Migration Hub Strategy Recommendations module holds the client classes that are used for communicating with Migration Hub Strategy Recommendations Service

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

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

/**
 * 

* Contains information about a strategy recommendation for a server. *

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

* Set to true if the recommendation is set as preferred. *

*/ private Boolean isPreferred; /** *

* The number of application components with this strategy recommendation running on the server. *

*/ private Integer numberOfApplicationComponents; /** *

* Strategy recommendation for the server. *

*/ private RecommendationSet recommendation; /** *

* The recommendation status of the strategy for the server. *

*/ private String status; /** *

* Set to true if the recommendation is set as preferred. *

* * @param isPreferred * Set to true if the recommendation is set as preferred. */ public void setIsPreferred(Boolean isPreferred) { this.isPreferred = isPreferred; } /** *

* Set to true if the recommendation is set as preferred. *

* * @return Set to true if the recommendation is set as preferred. */ public Boolean getIsPreferred() { return this.isPreferred; } /** *

* Set to true if the recommendation is set as preferred. *

* * @param isPreferred * Set to true if the recommendation is set as preferred. * @return Returns a reference to this object so that method calls can be chained together. */ public ServerStrategy withIsPreferred(Boolean isPreferred) { setIsPreferred(isPreferred); return this; } /** *

* Set to true if the recommendation is set as preferred. *

* * @return Set to true if the recommendation is set as preferred. */ public Boolean isPreferred() { return this.isPreferred; } /** *

* The number of application components with this strategy recommendation running on the server. *

* * @param numberOfApplicationComponents * The number of application components with this strategy recommendation running on the server. */ public void setNumberOfApplicationComponents(Integer numberOfApplicationComponents) { this.numberOfApplicationComponents = numberOfApplicationComponents; } /** *

* The number of application components with this strategy recommendation running on the server. *

* * @return The number of application components with this strategy recommendation running on the server. */ public Integer getNumberOfApplicationComponents() { return this.numberOfApplicationComponents; } /** *

* The number of application components with this strategy recommendation running on the server. *

* * @param numberOfApplicationComponents * The number of application components with this strategy recommendation running on the server. * @return Returns a reference to this object so that method calls can be chained together. */ public ServerStrategy withNumberOfApplicationComponents(Integer numberOfApplicationComponents) { setNumberOfApplicationComponents(numberOfApplicationComponents); return this; } /** *

* Strategy recommendation for the server. *

* * @param recommendation * Strategy recommendation for the server. */ public void setRecommendation(RecommendationSet recommendation) { this.recommendation = recommendation; } /** *

* Strategy recommendation for the server. *

* * @return Strategy recommendation for the server. */ public RecommendationSet getRecommendation() { return this.recommendation; } /** *

* Strategy recommendation for the server. *

* * @param recommendation * Strategy recommendation for the server. * @return Returns a reference to this object so that method calls can be chained together. */ public ServerStrategy withRecommendation(RecommendationSet recommendation) { setRecommendation(recommendation); return this; } /** *

* The recommendation status of the strategy for the server. *

* * @param status * The recommendation status of the strategy for the server. * @see StrategyRecommendation */ public void setStatus(String status) { this.status = status; } /** *

* The recommendation status of the strategy for the server. *

* * @return The recommendation status of the strategy for the server. * @see StrategyRecommendation */ public String getStatus() { return this.status; } /** *

* The recommendation status of the strategy for the server. *

* * @param status * The recommendation status of the strategy for the server. * @return Returns a reference to this object so that method calls can be chained together. * @see StrategyRecommendation */ public ServerStrategy withStatus(String status) { setStatus(status); return this; } /** *

* The recommendation status of the strategy for the server. *

* * @param status * The recommendation status of the strategy for the server. * @return Returns a reference to this object so that method calls can be chained together. * @see StrategyRecommendation */ public ServerStrategy withStatus(StrategyRecommendation status) { this.status = status.toString(); 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 (getIsPreferred() != null) sb.append("IsPreferred: ").append(getIsPreferred()).append(","); if (getNumberOfApplicationComponents() != null) sb.append("NumberOfApplicationComponents: ").append(getNumberOfApplicationComponents()).append(","); if (getRecommendation() != null) sb.append("Recommendation: ").append(getRecommendation()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ServerStrategy == false) return false; ServerStrategy other = (ServerStrategy) obj; if (other.getIsPreferred() == null ^ this.getIsPreferred() == null) return false; if (other.getIsPreferred() != null && other.getIsPreferred().equals(this.getIsPreferred()) == false) return false; if (other.getNumberOfApplicationComponents() == null ^ this.getNumberOfApplicationComponents() == null) return false; if (other.getNumberOfApplicationComponents() != null && other.getNumberOfApplicationComponents().equals(this.getNumberOfApplicationComponents()) == false) return false; if (other.getRecommendation() == null ^ this.getRecommendation() == null) return false; if (other.getRecommendation() != null && other.getRecommendation().equals(this.getRecommendation()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getIsPreferred() == null) ? 0 : getIsPreferred().hashCode()); hashCode = prime * hashCode + ((getNumberOfApplicationComponents() == null) ? 0 : getNumberOfApplicationComponents().hashCode()); hashCode = prime * hashCode + ((getRecommendation() == null) ? 0 : getRecommendation().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); return hashCode; } @Override public ServerStrategy clone() { try { return (ServerStrategy) 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.migrationhubstrategyrecommendations.model.transform.ServerStrategyMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy