com.amazonaws.services.storagegateway.model.Tape Maven / Gradle / Ivy
Show all versions of aws-java-sdk-storagegateway Show documentation
/*
* Copyright 2013-2018 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.storagegateway.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Describes a virtual tape object.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class Tape implements Serializable, Cloneable, StructuredPojo {
/**
*
* The Amazon Resource Name (ARN) of the virtual tape.
*
*/
private String tapeARN;
/**
*
* The barcode that identifies a specific virtual tape.
*
*/
private String tapeBarcode;
/**
*
* The date the virtual tape was created.
*
*/
private java.util.Date tapeCreatedDate;
/**
*
* The size, in bytes, of the virtual tape capacity.
*
*/
private Long tapeSizeInBytes;
/**
*
* The current state of the virtual tape.
*
*/
private String tapeStatus;
/**
*
* The virtual tape library (VTL) device that the virtual tape is associated with.
*
*/
private String vTLDevice;
/**
*
* For archiving virtual tapes, indicates how much data remains to be uploaded before archiving is complete.
*
*
* Range: 0 (not started) to 100 (complete).
*
*/
private Double progress;
/**
*
* The size, in bytes, of data stored on the virtual tape.
*
*
*
* This value is not available for tapes created prior to May 13, 2015.
*
*
*/
private Long tapeUsedInBytes;
private String kMSKey;
/**
*
* The Amazon Resource Name (ARN) of the virtual tape.
*
*
* @param tapeARN
* The Amazon Resource Name (ARN) of the virtual tape.
*/
public void setTapeARN(String tapeARN) {
this.tapeARN = tapeARN;
}
/**
*
* The Amazon Resource Name (ARN) of the virtual tape.
*
*
* @return The Amazon Resource Name (ARN) of the virtual tape.
*/
public String getTapeARN() {
return this.tapeARN;
}
/**
*
* The Amazon Resource Name (ARN) of the virtual tape.
*
*
* @param tapeARN
* The Amazon Resource Name (ARN) of the virtual tape.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Tape withTapeARN(String tapeARN) {
setTapeARN(tapeARN);
return this;
}
/**
*
* The barcode that identifies a specific virtual tape.
*
*
* @param tapeBarcode
* The barcode that identifies a specific virtual tape.
*/
public void setTapeBarcode(String tapeBarcode) {
this.tapeBarcode = tapeBarcode;
}
/**
*
* The barcode that identifies a specific virtual tape.
*
*
* @return The barcode that identifies a specific virtual tape.
*/
public String getTapeBarcode() {
return this.tapeBarcode;
}
/**
*
* The barcode that identifies a specific virtual tape.
*
*
* @param tapeBarcode
* The barcode that identifies a specific virtual tape.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Tape withTapeBarcode(String tapeBarcode) {
setTapeBarcode(tapeBarcode);
return this;
}
/**
*
* The date the virtual tape was created.
*
*
* @param tapeCreatedDate
* The date the virtual tape was created.
*/
public void setTapeCreatedDate(java.util.Date tapeCreatedDate) {
this.tapeCreatedDate = tapeCreatedDate;
}
/**
*
* The date the virtual tape was created.
*
*
* @return The date the virtual tape was created.
*/
public java.util.Date getTapeCreatedDate() {
return this.tapeCreatedDate;
}
/**
*
* The date the virtual tape was created.
*
*
* @param tapeCreatedDate
* The date the virtual tape was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Tape withTapeCreatedDate(java.util.Date tapeCreatedDate) {
setTapeCreatedDate(tapeCreatedDate);
return this;
}
/**
*
* The size, in bytes, of the virtual tape capacity.
*
*
* @param tapeSizeInBytes
* The size, in bytes, of the virtual tape capacity.
*/
public void setTapeSizeInBytes(Long tapeSizeInBytes) {
this.tapeSizeInBytes = tapeSizeInBytes;
}
/**
*
* The size, in bytes, of the virtual tape capacity.
*
*
* @return The size, in bytes, of the virtual tape capacity.
*/
public Long getTapeSizeInBytes() {
return this.tapeSizeInBytes;
}
/**
*
* The size, in bytes, of the virtual tape capacity.
*
*
* @param tapeSizeInBytes
* The size, in bytes, of the virtual tape capacity.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Tape withTapeSizeInBytes(Long tapeSizeInBytes) {
setTapeSizeInBytes(tapeSizeInBytes);
return this;
}
/**
*
* The current state of the virtual tape.
*
*
* @param tapeStatus
* The current state of the virtual tape.
*/
public void setTapeStatus(String tapeStatus) {
this.tapeStatus = tapeStatus;
}
/**
*
* The current state of the virtual tape.
*
*
* @return The current state of the virtual tape.
*/
public String getTapeStatus() {
return this.tapeStatus;
}
/**
*
* The current state of the virtual tape.
*
*
* @param tapeStatus
* The current state of the virtual tape.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Tape withTapeStatus(String tapeStatus) {
setTapeStatus(tapeStatus);
return this;
}
/**
*
* The virtual tape library (VTL) device that the virtual tape is associated with.
*
*
* @param vTLDevice
* The virtual tape library (VTL) device that the virtual tape is associated with.
*/
public void setVTLDevice(String vTLDevice) {
this.vTLDevice = vTLDevice;
}
/**
*
* The virtual tape library (VTL) device that the virtual tape is associated with.
*
*
* @return The virtual tape library (VTL) device that the virtual tape is associated with.
*/
public String getVTLDevice() {
return this.vTLDevice;
}
/**
*
* The virtual tape library (VTL) device that the virtual tape is associated with.
*
*
* @param vTLDevice
* The virtual tape library (VTL) device that the virtual tape is associated with.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Tape withVTLDevice(String vTLDevice) {
setVTLDevice(vTLDevice);
return this;
}
/**
*
* For archiving virtual tapes, indicates how much data remains to be uploaded before archiving is complete.
*
*
* Range: 0 (not started) to 100 (complete).
*
*
* @param progress
* For archiving virtual tapes, indicates how much data remains to be uploaded before archiving is
* complete.
*
* Range: 0 (not started) to 100 (complete).
*/
public void setProgress(Double progress) {
this.progress = progress;
}
/**
*
* For archiving virtual tapes, indicates how much data remains to be uploaded before archiving is complete.
*
*
* Range: 0 (not started) to 100 (complete).
*
*
* @return For archiving virtual tapes, indicates how much data remains to be uploaded before archiving is
* complete.
*
* Range: 0 (not started) to 100 (complete).
*/
public Double getProgress() {
return this.progress;
}
/**
*
* For archiving virtual tapes, indicates how much data remains to be uploaded before archiving is complete.
*
*
* Range: 0 (not started) to 100 (complete).
*
*
* @param progress
* For archiving virtual tapes, indicates how much data remains to be uploaded before archiving is
* complete.
*
* Range: 0 (not started) to 100 (complete).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Tape withProgress(Double progress) {
setProgress(progress);
return this;
}
/**
*
* The size, in bytes, of data stored on the virtual tape.
*
*
*
* This value is not available for tapes created prior to May 13, 2015.
*
*
*
* @param tapeUsedInBytes
* The size, in bytes, of data stored on the virtual tape.
*
* This value is not available for tapes created prior to May 13, 2015.
*
*/
public void setTapeUsedInBytes(Long tapeUsedInBytes) {
this.tapeUsedInBytes = tapeUsedInBytes;
}
/**
*
* The size, in bytes, of data stored on the virtual tape.
*
*
*
* This value is not available for tapes created prior to May 13, 2015.
*
*
*
* @return The size, in bytes, of data stored on the virtual tape.
*
* This value is not available for tapes created prior to May 13, 2015.
*
*/
public Long getTapeUsedInBytes() {
return this.tapeUsedInBytes;
}
/**
*
* The size, in bytes, of data stored on the virtual tape.
*
*
*
* This value is not available for tapes created prior to May 13, 2015.
*
*
*
* @param tapeUsedInBytes
* The size, in bytes, of data stored on the virtual tape.
*
* This value is not available for tapes created prior to May 13, 2015.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Tape withTapeUsedInBytes(Long tapeUsedInBytes) {
setTapeUsedInBytes(tapeUsedInBytes);
return this;
}
/**
* @param kMSKey
*/
public void setKMSKey(String kMSKey) {
this.kMSKey = kMSKey;
}
/**
* @return
*/
public String getKMSKey() {
return this.kMSKey;
}
/**
* @param kMSKey
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Tape withKMSKey(String kMSKey) {
setKMSKey(kMSKey);
return this;
}
/**
* Returns a string representation of this object; useful for testing and debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getTapeARN() != null)
sb.append("TapeARN: ").append(getTapeARN()).append(",");
if (getTapeBarcode() != null)
sb.append("TapeBarcode: ").append(getTapeBarcode()).append(",");
if (getTapeCreatedDate() != null)
sb.append("TapeCreatedDate: ").append(getTapeCreatedDate()).append(",");
if (getTapeSizeInBytes() != null)
sb.append("TapeSizeInBytes: ").append(getTapeSizeInBytes()).append(",");
if (getTapeStatus() != null)
sb.append("TapeStatus: ").append(getTapeStatus()).append(",");
if (getVTLDevice() != null)
sb.append("VTLDevice: ").append(getVTLDevice()).append(",");
if (getProgress() != null)
sb.append("Progress: ").append(getProgress()).append(",");
if (getTapeUsedInBytes() != null)
sb.append("TapeUsedInBytes: ").append(getTapeUsedInBytes()).append(",");
if (getKMSKey() != null)
sb.append("KMSKey: ").append(getKMSKey());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof Tape == false)
return false;
Tape other = (Tape) obj;
if (other.getTapeARN() == null ^ this.getTapeARN() == null)
return false;
if (other.getTapeARN() != null && other.getTapeARN().equals(this.getTapeARN()) == false)
return false;
if (other.getTapeBarcode() == null ^ this.getTapeBarcode() == null)
return false;
if (other.getTapeBarcode() != null && other.getTapeBarcode().equals(this.getTapeBarcode()) == false)
return false;
if (other.getTapeCreatedDate() == null ^ this.getTapeCreatedDate() == null)
return false;
if (other.getTapeCreatedDate() != null && other.getTapeCreatedDate().equals(this.getTapeCreatedDate()) == false)
return false;
if (other.getTapeSizeInBytes() == null ^ this.getTapeSizeInBytes() == null)
return false;
if (other.getTapeSizeInBytes() != null && other.getTapeSizeInBytes().equals(this.getTapeSizeInBytes()) == false)
return false;
if (other.getTapeStatus() == null ^ this.getTapeStatus() == null)
return false;
if (other.getTapeStatus() != null && other.getTapeStatus().equals(this.getTapeStatus()) == false)
return false;
if (other.getVTLDevice() == null ^ this.getVTLDevice() == null)
return false;
if (other.getVTLDevice() != null && other.getVTLDevice().equals(this.getVTLDevice()) == false)
return false;
if (other.getProgress() == null ^ this.getProgress() == null)
return false;
if (other.getProgress() != null && other.getProgress().equals(this.getProgress()) == false)
return false;
if (other.getTapeUsedInBytes() == null ^ this.getTapeUsedInBytes() == null)
return false;
if (other.getTapeUsedInBytes() != null && other.getTapeUsedInBytes().equals(this.getTapeUsedInBytes()) == false)
return false;
if (other.getKMSKey() == null ^ this.getKMSKey() == null)
return false;
if (other.getKMSKey() != null && other.getKMSKey().equals(this.getKMSKey()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getTapeARN() == null) ? 0 : getTapeARN().hashCode());
hashCode = prime * hashCode + ((getTapeBarcode() == null) ? 0 : getTapeBarcode().hashCode());
hashCode = prime * hashCode + ((getTapeCreatedDate() == null) ? 0 : getTapeCreatedDate().hashCode());
hashCode = prime * hashCode + ((getTapeSizeInBytes() == null) ? 0 : getTapeSizeInBytes().hashCode());
hashCode = prime * hashCode + ((getTapeStatus() == null) ? 0 : getTapeStatus().hashCode());
hashCode = prime * hashCode + ((getVTLDevice() == null) ? 0 : getVTLDevice().hashCode());
hashCode = prime * hashCode + ((getProgress() == null) ? 0 : getProgress().hashCode());
hashCode = prime * hashCode + ((getTapeUsedInBytes() == null) ? 0 : getTapeUsedInBytes().hashCode());
hashCode = prime * hashCode + ((getKMSKey() == null) ? 0 : getKMSKey().hashCode());
return hashCode;
}
@Override
public Tape clone() {
try {
return (Tape) 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.storagegateway.model.transform.TapeMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}