com.amazonaws.services.simplesystemsmanagement.model.LabelParameterVersionResult Maven / Gradle / Ivy
/*
* 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.simplesystemsmanagement.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class LabelParameterVersionResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The label doesn't meet the requirements. For information about parameter label requirements, see Working with
* parameter labels in the Amazon Web Services Systems Manager User Guide.
*
*/
private com.amazonaws.internal.SdkInternalList invalidLabels;
/**
*
* The version of the parameter that has been labeled.
*
*/
private Long parameterVersion;
/**
*
* The label doesn't meet the requirements. For information about parameter label requirements, see Working with
* parameter labels in the Amazon Web Services Systems Manager User Guide.
*
*
* @return The label doesn't meet the requirements. For information about parameter label requirements, see Working
* with parameter labels in the Amazon Web Services Systems Manager User Guide.
*/
public java.util.List getInvalidLabels() {
if (invalidLabels == null) {
invalidLabels = new com.amazonaws.internal.SdkInternalList();
}
return invalidLabels;
}
/**
*
* The label doesn't meet the requirements. For information about parameter label requirements, see Working with
* parameter labels in the Amazon Web Services Systems Manager User Guide.
*
*
* @param invalidLabels
* The label doesn't meet the requirements. For information about parameter label requirements, see Working
* with parameter labels in the Amazon Web Services Systems Manager User Guide.
*/
public void setInvalidLabels(java.util.Collection invalidLabels) {
if (invalidLabels == null) {
this.invalidLabels = null;
return;
}
this.invalidLabels = new com.amazonaws.internal.SdkInternalList(invalidLabels);
}
/**
*
* The label doesn't meet the requirements. For information about parameter label requirements, see Working with
* parameter labels in the Amazon Web Services Systems Manager User Guide.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setInvalidLabels(java.util.Collection)} or {@link #withInvalidLabels(java.util.Collection)} if you want
* to override the existing values.
*
*
* @param invalidLabels
* The label doesn't meet the requirements. For information about parameter label requirements, see Working
* with parameter labels in the Amazon Web Services Systems Manager User Guide.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LabelParameterVersionResult withInvalidLabels(String... invalidLabels) {
if (this.invalidLabels == null) {
setInvalidLabels(new com.amazonaws.internal.SdkInternalList(invalidLabels.length));
}
for (String ele : invalidLabels) {
this.invalidLabels.add(ele);
}
return this;
}
/**
*
* The label doesn't meet the requirements. For information about parameter label requirements, see Working with
* parameter labels in the Amazon Web Services Systems Manager User Guide.
*
*
* @param invalidLabels
* The label doesn't meet the requirements. For information about parameter label requirements, see Working
* with parameter labels in the Amazon Web Services Systems Manager User Guide.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LabelParameterVersionResult withInvalidLabels(java.util.Collection invalidLabels) {
setInvalidLabels(invalidLabels);
return this;
}
/**
*
* The version of the parameter that has been labeled.
*
*
* @param parameterVersion
* The version of the parameter that has been labeled.
*/
public void setParameterVersion(Long parameterVersion) {
this.parameterVersion = parameterVersion;
}
/**
*
* The version of the parameter that has been labeled.
*
*
* @return The version of the parameter that has been labeled.
*/
public Long getParameterVersion() {
return this.parameterVersion;
}
/**
*
* The version of the parameter that has been labeled.
*
*
* @param parameterVersion
* The version of the parameter that has been labeled.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LabelParameterVersionResult withParameterVersion(Long parameterVersion) {
setParameterVersion(parameterVersion);
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 (getInvalidLabels() != null)
sb.append("InvalidLabels: ").append(getInvalidLabels()).append(",");
if (getParameterVersion() != null)
sb.append("ParameterVersion: ").append(getParameterVersion());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof LabelParameterVersionResult == false)
return false;
LabelParameterVersionResult other = (LabelParameterVersionResult) obj;
if (other.getInvalidLabels() == null ^ this.getInvalidLabels() == null)
return false;
if (other.getInvalidLabels() != null && other.getInvalidLabels().equals(this.getInvalidLabels()) == false)
return false;
if (other.getParameterVersion() == null ^ this.getParameterVersion() == null)
return false;
if (other.getParameterVersion() != null && other.getParameterVersion().equals(this.getParameterVersion()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getInvalidLabels() == null) ? 0 : getInvalidLabels().hashCode());
hashCode = prime * hashCode + ((getParameterVersion() == null) ? 0 : getParameterVersion().hashCode());
return hashCode;
}
@Override
public LabelParameterVersionResult clone() {
try {
return (LabelParameterVersionResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}