com.amazonaws.services.panorama.model.PackageVersionOutputConfig Maven / Gradle / Ivy
Show all versions of aws-java-sdk-panorama 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.panorama.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* A package version output configuration.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class PackageVersionOutputConfig implements Serializable, Cloneable, StructuredPojo {
/**
*
* Indicates that the version is recommended for all users.
*
*/
private Boolean markLatest;
/**
*
* The output's package name.
*
*/
private String packageName;
/**
*
* The output's package version.
*
*/
private String packageVersion;
/**
*
* Indicates that the version is recommended for all users.
*
*
* @param markLatest
* Indicates that the version is recommended for all users.
*/
public void setMarkLatest(Boolean markLatest) {
this.markLatest = markLatest;
}
/**
*
* Indicates that the version is recommended for all users.
*
*
* @return Indicates that the version is recommended for all users.
*/
public Boolean getMarkLatest() {
return this.markLatest;
}
/**
*
* Indicates that the version is recommended for all users.
*
*
* @param markLatest
* Indicates that the version is recommended for all users.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PackageVersionOutputConfig withMarkLatest(Boolean markLatest) {
setMarkLatest(markLatest);
return this;
}
/**
*
* Indicates that the version is recommended for all users.
*
*
* @return Indicates that the version is recommended for all users.
*/
public Boolean isMarkLatest() {
return this.markLatest;
}
/**
*
* The output's package name.
*
*
* @param packageName
* The output's package name.
*/
public void setPackageName(String packageName) {
this.packageName = packageName;
}
/**
*
* The output's package name.
*
*
* @return The output's package name.
*/
public String getPackageName() {
return this.packageName;
}
/**
*
* The output's package name.
*
*
* @param packageName
* The output's package name.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PackageVersionOutputConfig withPackageName(String packageName) {
setPackageName(packageName);
return this;
}
/**
*
* The output's package version.
*
*
* @param packageVersion
* The output's package version.
*/
public void setPackageVersion(String packageVersion) {
this.packageVersion = packageVersion;
}
/**
*
* The output's package version.
*
*
* @return The output's package version.
*/
public String getPackageVersion() {
return this.packageVersion;
}
/**
*
* The output's package version.
*
*
* @param packageVersion
* The output's package version.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PackageVersionOutputConfig withPackageVersion(String packageVersion) {
setPackageVersion(packageVersion);
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 (getMarkLatest() != null)
sb.append("MarkLatest: ").append(getMarkLatest()).append(",");
if (getPackageName() != null)
sb.append("PackageName: ").append(getPackageName()).append(",");
if (getPackageVersion() != null)
sb.append("PackageVersion: ").append(getPackageVersion());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof PackageVersionOutputConfig == false)
return false;
PackageVersionOutputConfig other = (PackageVersionOutputConfig) obj;
if (other.getMarkLatest() == null ^ this.getMarkLatest() == null)
return false;
if (other.getMarkLatest() != null && other.getMarkLatest().equals(this.getMarkLatest()) == false)
return false;
if (other.getPackageName() == null ^ this.getPackageName() == null)
return false;
if (other.getPackageName() != null && other.getPackageName().equals(this.getPackageName()) == false)
return false;
if (other.getPackageVersion() == null ^ this.getPackageVersion() == null)
return false;
if (other.getPackageVersion() != null && other.getPackageVersion().equals(this.getPackageVersion()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getMarkLatest() == null) ? 0 : getMarkLatest().hashCode());
hashCode = prime * hashCode + ((getPackageName() == null) ? 0 : getPackageName().hashCode());
hashCode = prime * hashCode + ((getPackageVersion() == null) ? 0 : getPackageVersion().hashCode());
return hashCode;
}
@Override
public PackageVersionOutputConfig clone() {
try {
return (PackageVersionOutputConfig) 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.panorama.model.transform.PackageVersionOutputConfigMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}