
com.amazonaws.services.imagebuilder.model.OutputResources 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.imagebuilder.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* The resources produced by this image.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class OutputResources implements Serializable, Cloneable, StructuredPojo {
/**
*
* The Amazon EC2 AMIs created by this image.
*
*/
private java.util.List amis;
/**
*
* Container images that the pipeline has generated and stored in the output repository.
*
*/
private java.util.List containers;
/**
*
* The Amazon EC2 AMIs created by this image.
*
*
* @return The Amazon EC2 AMIs created by this image.
*/
public java.util.List getAmis() {
return amis;
}
/**
*
* The Amazon EC2 AMIs created by this image.
*
*
* @param amis
* The Amazon EC2 AMIs created by this image.
*/
public void setAmis(java.util.Collection amis) {
if (amis == null) {
this.amis = null;
return;
}
this.amis = new java.util.ArrayList(amis);
}
/**
*
* The Amazon EC2 AMIs created by this image.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setAmis(java.util.Collection)} or {@link #withAmis(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param amis
* The Amazon EC2 AMIs created by this image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public OutputResources withAmis(Ami... amis) {
if (this.amis == null) {
setAmis(new java.util.ArrayList(amis.length));
}
for (Ami ele : amis) {
this.amis.add(ele);
}
return this;
}
/**
*
* The Amazon EC2 AMIs created by this image.
*
*
* @param amis
* The Amazon EC2 AMIs created by this image.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public OutputResources withAmis(java.util.Collection amis) {
setAmis(amis);
return this;
}
/**
*
* Container images that the pipeline has generated and stored in the output repository.
*
*
* @return Container images that the pipeline has generated and stored in the output repository.
*/
public java.util.List getContainers() {
return containers;
}
/**
*
* Container images that the pipeline has generated and stored in the output repository.
*
*
* @param containers
* Container images that the pipeline has generated and stored in the output repository.
*/
public void setContainers(java.util.Collection containers) {
if (containers == null) {
this.containers = null;
return;
}
this.containers = new java.util.ArrayList(containers);
}
/**
*
* Container images that the pipeline has generated and stored in the output repository.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setContainers(java.util.Collection)} or {@link #withContainers(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param containers
* Container images that the pipeline has generated and stored in the output repository.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public OutputResources withContainers(Container... containers) {
if (this.containers == null) {
setContainers(new java.util.ArrayList(containers.length));
}
for (Container ele : containers) {
this.containers.add(ele);
}
return this;
}
/**
*
* Container images that the pipeline has generated and stored in the output repository.
*
*
* @param containers
* Container images that the pipeline has generated and stored in the output repository.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public OutputResources withContainers(java.util.Collection containers) {
setContainers(containers);
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 (getAmis() != null)
sb.append("Amis: ").append(getAmis()).append(",");
if (getContainers() != null)
sb.append("Containers: ").append(getContainers());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof OutputResources == false)
return false;
OutputResources other = (OutputResources) obj;
if (other.getAmis() == null ^ this.getAmis() == null)
return false;
if (other.getAmis() != null && other.getAmis().equals(this.getAmis()) == false)
return false;
if (other.getContainers() == null ^ this.getContainers() == null)
return false;
if (other.getContainers() != null && other.getContainers().equals(this.getContainers()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getAmis() == null) ? 0 : getAmis().hashCode());
hashCode = prime * hashCode + ((getContainers() == null) ? 0 : getContainers().hashCode());
return hashCode;
}
@Override
public OutputResources clone() {
try {
return (OutputResources) 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.imagebuilder.model.transform.OutputResourcesMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}