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

com.amazonaws.services.wellarchitected.model.LensUpgradeSummary Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Well-Architected Tool module holds the client classes that are used for communicating with AWS Well-Architected Tool Service

There is a newer version: 1.12.778
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.wellarchitected.model;

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

/**
 * 

* Lens upgrade summary return object. *

* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class LensUpgradeSummary implements Serializable, Cloneable, StructuredPojo { private String workloadId; private String workloadName; private String lensAlias; /** *

* The ARN for the lens. *

*/ private String lensArn; /** *

* The current version of the lens. *

*/ private String currentLensVersion; /** *

* The latest version of the lens. *

*/ private String latestLensVersion; /** *

* ResourceArn of the lens being upgraded *

*/ private String resourceArn; private String resourceName; /** * @param workloadId */ public void setWorkloadId(String workloadId) { this.workloadId = workloadId; } /** * @return */ public String getWorkloadId() { return this.workloadId; } /** * @param workloadId * @return Returns a reference to this object so that method calls can be chained together. */ public LensUpgradeSummary withWorkloadId(String workloadId) { setWorkloadId(workloadId); return this; } /** * @param workloadName */ public void setWorkloadName(String workloadName) { this.workloadName = workloadName; } /** * @return */ public String getWorkloadName() { return this.workloadName; } /** * @param workloadName * @return Returns a reference to this object so that method calls can be chained together. */ public LensUpgradeSummary withWorkloadName(String workloadName) { setWorkloadName(workloadName); return this; } /** * @param lensAlias */ public void setLensAlias(String lensAlias) { this.lensAlias = lensAlias; } /** * @return */ public String getLensAlias() { return this.lensAlias; } /** * @param lensAlias * @return Returns a reference to this object so that method calls can be chained together. */ public LensUpgradeSummary withLensAlias(String lensAlias) { setLensAlias(lensAlias); return this; } /** *

* The ARN for the lens. *

* * @param lensArn * The ARN for the lens. */ public void setLensArn(String lensArn) { this.lensArn = lensArn; } /** *

* The ARN for the lens. *

* * @return The ARN for the lens. */ public String getLensArn() { return this.lensArn; } /** *

* The ARN for the lens. *

* * @param lensArn * The ARN for the lens. * @return Returns a reference to this object so that method calls can be chained together. */ public LensUpgradeSummary withLensArn(String lensArn) { setLensArn(lensArn); return this; } /** *

* The current version of the lens. *

* * @param currentLensVersion * The current version of the lens. */ public void setCurrentLensVersion(String currentLensVersion) { this.currentLensVersion = currentLensVersion; } /** *

* The current version of the lens. *

* * @return The current version of the lens. */ public String getCurrentLensVersion() { return this.currentLensVersion; } /** *

* The current version of the lens. *

* * @param currentLensVersion * The current version of the lens. * @return Returns a reference to this object so that method calls can be chained together. */ public LensUpgradeSummary withCurrentLensVersion(String currentLensVersion) { setCurrentLensVersion(currentLensVersion); return this; } /** *

* The latest version of the lens. *

* * @param latestLensVersion * The latest version of the lens. */ public void setLatestLensVersion(String latestLensVersion) { this.latestLensVersion = latestLensVersion; } /** *

* The latest version of the lens. *

* * @return The latest version of the lens. */ public String getLatestLensVersion() { return this.latestLensVersion; } /** *

* The latest version of the lens. *

* * @param latestLensVersion * The latest version of the lens. * @return Returns a reference to this object so that method calls can be chained together. */ public LensUpgradeSummary withLatestLensVersion(String latestLensVersion) { setLatestLensVersion(latestLensVersion); return this; } /** *

* ResourceArn of the lens being upgraded *

* * @param resourceArn * ResourceArn of the lens being upgraded */ public void setResourceArn(String resourceArn) { this.resourceArn = resourceArn; } /** *

* ResourceArn of the lens being upgraded *

* * @return ResourceArn of the lens being upgraded */ public String getResourceArn() { return this.resourceArn; } /** *

* ResourceArn of the lens being upgraded *

* * @param resourceArn * ResourceArn of the lens being upgraded * @return Returns a reference to this object so that method calls can be chained together. */ public LensUpgradeSummary withResourceArn(String resourceArn) { setResourceArn(resourceArn); return this; } /** * @param resourceName */ public void setResourceName(String resourceName) { this.resourceName = resourceName; } /** * @return */ public String getResourceName() { return this.resourceName; } /** * @param resourceName * @return Returns a reference to this object so that method calls can be chained together. */ public LensUpgradeSummary withResourceName(String resourceName) { setResourceName(resourceName); 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 (getWorkloadId() != null) sb.append("WorkloadId: ").append(getWorkloadId()).append(","); if (getWorkloadName() != null) sb.append("WorkloadName: ").append(getWorkloadName()).append(","); if (getLensAlias() != null) sb.append("LensAlias: ").append(getLensAlias()).append(","); if (getLensArn() != null) sb.append("LensArn: ").append(getLensArn()).append(","); if (getCurrentLensVersion() != null) sb.append("CurrentLensVersion: ").append(getCurrentLensVersion()).append(","); if (getLatestLensVersion() != null) sb.append("LatestLensVersion: ").append(getLatestLensVersion()).append(","); if (getResourceArn() != null) sb.append("ResourceArn: ").append(getResourceArn()).append(","); if (getResourceName() != null) sb.append("ResourceName: ").append(getResourceName()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof LensUpgradeSummary == false) return false; LensUpgradeSummary other = (LensUpgradeSummary) obj; if (other.getWorkloadId() == null ^ this.getWorkloadId() == null) return false; if (other.getWorkloadId() != null && other.getWorkloadId().equals(this.getWorkloadId()) == false) return false; if (other.getWorkloadName() == null ^ this.getWorkloadName() == null) return false; if (other.getWorkloadName() != null && other.getWorkloadName().equals(this.getWorkloadName()) == false) return false; if (other.getLensAlias() == null ^ this.getLensAlias() == null) return false; if (other.getLensAlias() != null && other.getLensAlias().equals(this.getLensAlias()) == false) return false; if (other.getLensArn() == null ^ this.getLensArn() == null) return false; if (other.getLensArn() != null && other.getLensArn().equals(this.getLensArn()) == false) return false; if (other.getCurrentLensVersion() == null ^ this.getCurrentLensVersion() == null) return false; if (other.getCurrentLensVersion() != null && other.getCurrentLensVersion().equals(this.getCurrentLensVersion()) == false) return false; if (other.getLatestLensVersion() == null ^ this.getLatestLensVersion() == null) return false; if (other.getLatestLensVersion() != null && other.getLatestLensVersion().equals(this.getLatestLensVersion()) == false) return false; if (other.getResourceArn() == null ^ this.getResourceArn() == null) return false; if (other.getResourceArn() != null && other.getResourceArn().equals(this.getResourceArn()) == false) return false; if (other.getResourceName() == null ^ this.getResourceName() == null) return false; if (other.getResourceName() != null && other.getResourceName().equals(this.getResourceName()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getWorkloadId() == null) ? 0 : getWorkloadId().hashCode()); hashCode = prime * hashCode + ((getWorkloadName() == null) ? 0 : getWorkloadName().hashCode()); hashCode = prime * hashCode + ((getLensAlias() == null) ? 0 : getLensAlias().hashCode()); hashCode = prime * hashCode + ((getLensArn() == null) ? 0 : getLensArn().hashCode()); hashCode = prime * hashCode + ((getCurrentLensVersion() == null) ? 0 : getCurrentLensVersion().hashCode()); hashCode = prime * hashCode + ((getLatestLensVersion() == null) ? 0 : getLatestLensVersion().hashCode()); hashCode = prime * hashCode + ((getResourceArn() == null) ? 0 : getResourceArn().hashCode()); hashCode = prime * hashCode + ((getResourceName() == null) ? 0 : getResourceName().hashCode()); return hashCode; } @Override public LensUpgradeSummary clone() { try { return (LensUpgradeSummary) 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.wellarchitected.model.transform.LensUpgradeSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy