com.amazonaws.services.wellarchitected.model.LensReviewSummary Maven / Gradle / Ivy
Show all versions of aws-java-sdk-wellarchitected Show documentation
/*
* 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;
/**
*
* A lens review summary of a workload.
*
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class LensReviewSummary implements Serializable, Cloneable, StructuredPojo {
private String lensAlias;
/**
*
* The ARN for the lens.
*
*/
private String lensArn;
/**
*
* The version of the lens.
*
*/
private String lensVersion;
private String lensName;
/**
*
* The status of the lens.
*
*/
private String lensStatus;
private java.util.Date updatedAt;
private java.util.Map riskCounts;
/**
*
* The profiles associated with the workload.
*
*/
private java.util.List profiles;
private java.util.Map prioritizedRiskCounts;
/**
* @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 LensReviewSummary 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 LensReviewSummary withLensArn(String lensArn) {
setLensArn(lensArn);
return this;
}
/**
*
* The version of the lens.
*
*
* @param lensVersion
* The version of the lens.
*/
public void setLensVersion(String lensVersion) {
this.lensVersion = lensVersion;
}
/**
*
* The version of the lens.
*
*
* @return The version of the lens.
*/
public String getLensVersion() {
return this.lensVersion;
}
/**
*
* The version of the lens.
*
*
* @param lensVersion
* The version of the lens.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LensReviewSummary withLensVersion(String lensVersion) {
setLensVersion(lensVersion);
return this;
}
/**
* @param lensName
*/
public void setLensName(String lensName) {
this.lensName = lensName;
}
/**
* @return
*/
public String getLensName() {
return this.lensName;
}
/**
* @param lensName
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LensReviewSummary withLensName(String lensName) {
setLensName(lensName);
return this;
}
/**
*
* The status of the lens.
*
*
* @param lensStatus
* The status of the lens.
* @see LensStatus
*/
public void setLensStatus(String lensStatus) {
this.lensStatus = lensStatus;
}
/**
*
* The status of the lens.
*
*
* @return The status of the lens.
* @see LensStatus
*/
public String getLensStatus() {
return this.lensStatus;
}
/**
*
* The status of the lens.
*
*
* @param lensStatus
* The status of the lens.
* @return Returns a reference to this object so that method calls can be chained together.
* @see LensStatus
*/
public LensReviewSummary withLensStatus(String lensStatus) {
setLensStatus(lensStatus);
return this;
}
/**
*
* The status of the lens.
*
*
* @param lensStatus
* The status of the lens.
* @return Returns a reference to this object so that method calls can be chained together.
* @see LensStatus
*/
public LensReviewSummary withLensStatus(LensStatus lensStatus) {
this.lensStatus = lensStatus.toString();
return this;
}
/**
* @param updatedAt
*/
public void setUpdatedAt(java.util.Date updatedAt) {
this.updatedAt = updatedAt;
}
/**
* @return
*/
public java.util.Date getUpdatedAt() {
return this.updatedAt;
}
/**
* @param updatedAt
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LensReviewSummary withUpdatedAt(java.util.Date updatedAt) {
setUpdatedAt(updatedAt);
return this;
}
/**
* @return
*/
public java.util.Map getRiskCounts() {
return riskCounts;
}
/**
* @param riskCounts
*/
public void setRiskCounts(java.util.Map riskCounts) {
this.riskCounts = riskCounts;
}
/**
* @param riskCounts
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LensReviewSummary withRiskCounts(java.util.Map riskCounts) {
setRiskCounts(riskCounts);
return this;
}
/**
* Add a single RiskCounts entry
*
* @see LensReviewSummary#withRiskCounts
* @returns a reference to this object so that method calls can be chained together.
*/
public LensReviewSummary addRiskCountsEntry(String key, Integer value) {
if (null == this.riskCounts) {
this.riskCounts = new java.util.HashMap();
}
if (this.riskCounts.containsKey(key))
throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided.");
this.riskCounts.put(key, value);
return this;
}
/**
* Removes all the entries added into RiskCounts.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LensReviewSummary clearRiskCountsEntries() {
this.riskCounts = null;
return this;
}
/**
*
* The profiles associated with the workload.
*
*
* @return The profiles associated with the workload.
*/
public java.util.List getProfiles() {
return profiles;
}
/**
*
* The profiles associated with the workload.
*
*
* @param profiles
* The profiles associated with the workload.
*/
public void setProfiles(java.util.Collection profiles) {
if (profiles == null) {
this.profiles = null;
return;
}
this.profiles = new java.util.ArrayList(profiles);
}
/**
*
* The profiles associated with the workload.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setProfiles(java.util.Collection)} or {@link #withProfiles(java.util.Collection)} if you want to override
* the existing values.
*
*
* @param profiles
* The profiles associated with the workload.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LensReviewSummary withProfiles(WorkloadProfile... profiles) {
if (this.profiles == null) {
setProfiles(new java.util.ArrayList(profiles.length));
}
for (WorkloadProfile ele : profiles) {
this.profiles.add(ele);
}
return this;
}
/**
*
* The profiles associated with the workload.
*
*
* @param profiles
* The profiles associated with the workload.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LensReviewSummary withProfiles(java.util.Collection profiles) {
setProfiles(profiles);
return this;
}
/**
* @return
*/
public java.util.Map getPrioritizedRiskCounts() {
return prioritizedRiskCounts;
}
/**
* @param prioritizedRiskCounts
*/
public void setPrioritizedRiskCounts(java.util.Map prioritizedRiskCounts) {
this.prioritizedRiskCounts = prioritizedRiskCounts;
}
/**
* @param prioritizedRiskCounts
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LensReviewSummary withPrioritizedRiskCounts(java.util.Map prioritizedRiskCounts) {
setPrioritizedRiskCounts(prioritizedRiskCounts);
return this;
}
/**
* Add a single PrioritizedRiskCounts entry
*
* @see LensReviewSummary#withPrioritizedRiskCounts
* @returns a reference to this object so that method calls can be chained together.
*/
public LensReviewSummary addPrioritizedRiskCountsEntry(String key, Integer value) {
if (null == this.prioritizedRiskCounts) {
this.prioritizedRiskCounts = new java.util.HashMap();
}
if (this.prioritizedRiskCounts.containsKey(key))
throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided.");
this.prioritizedRiskCounts.put(key, value);
return this;
}
/**
* Removes all the entries added into PrioritizedRiskCounts.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LensReviewSummary clearPrioritizedRiskCountsEntries() {
this.prioritizedRiskCounts = null;
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 (getLensAlias() != null)
sb.append("LensAlias: ").append(getLensAlias()).append(",");
if (getLensArn() != null)
sb.append("LensArn: ").append(getLensArn()).append(",");
if (getLensVersion() != null)
sb.append("LensVersion: ").append(getLensVersion()).append(",");
if (getLensName() != null)
sb.append("LensName: ").append(getLensName()).append(",");
if (getLensStatus() != null)
sb.append("LensStatus: ").append(getLensStatus()).append(",");
if (getUpdatedAt() != null)
sb.append("UpdatedAt: ").append(getUpdatedAt()).append(",");
if (getRiskCounts() != null)
sb.append("RiskCounts: ").append(getRiskCounts()).append(",");
if (getProfiles() != null)
sb.append("Profiles: ").append(getProfiles()).append(",");
if (getPrioritizedRiskCounts() != null)
sb.append("PrioritizedRiskCounts: ").append(getPrioritizedRiskCounts());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof LensReviewSummary == false)
return false;
LensReviewSummary other = (LensReviewSummary) obj;
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.getLensVersion() == null ^ this.getLensVersion() == null)
return false;
if (other.getLensVersion() != null && other.getLensVersion().equals(this.getLensVersion()) == false)
return false;
if (other.getLensName() == null ^ this.getLensName() == null)
return false;
if (other.getLensName() != null && other.getLensName().equals(this.getLensName()) == false)
return false;
if (other.getLensStatus() == null ^ this.getLensStatus() == null)
return false;
if (other.getLensStatus() != null && other.getLensStatus().equals(this.getLensStatus()) == false)
return false;
if (other.getUpdatedAt() == null ^ this.getUpdatedAt() == null)
return false;
if (other.getUpdatedAt() != null && other.getUpdatedAt().equals(this.getUpdatedAt()) == false)
return false;
if (other.getRiskCounts() == null ^ this.getRiskCounts() == null)
return false;
if (other.getRiskCounts() != null && other.getRiskCounts().equals(this.getRiskCounts()) == false)
return false;
if (other.getProfiles() == null ^ this.getProfiles() == null)
return false;
if (other.getProfiles() != null && other.getProfiles().equals(this.getProfiles()) == false)
return false;
if (other.getPrioritizedRiskCounts() == null ^ this.getPrioritizedRiskCounts() == null)
return false;
if (other.getPrioritizedRiskCounts() != null && other.getPrioritizedRiskCounts().equals(this.getPrioritizedRiskCounts()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getLensAlias() == null) ? 0 : getLensAlias().hashCode());
hashCode = prime * hashCode + ((getLensArn() == null) ? 0 : getLensArn().hashCode());
hashCode = prime * hashCode + ((getLensVersion() == null) ? 0 : getLensVersion().hashCode());
hashCode = prime * hashCode + ((getLensName() == null) ? 0 : getLensName().hashCode());
hashCode = prime * hashCode + ((getLensStatus() == null) ? 0 : getLensStatus().hashCode());
hashCode = prime * hashCode + ((getUpdatedAt() == null) ? 0 : getUpdatedAt().hashCode());
hashCode = prime * hashCode + ((getRiskCounts() == null) ? 0 : getRiskCounts().hashCode());
hashCode = prime * hashCode + ((getProfiles() == null) ? 0 : getProfiles().hashCode());
hashCode = prime * hashCode + ((getPrioritizedRiskCounts() == null) ? 0 : getPrioritizedRiskCounts().hashCode());
return hashCode;
}
@Override
public LensReviewSummary clone() {
try {
return (LensReviewSummary) 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.LensReviewSummaryMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}