/* * Copyright 2018-2023 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.ec2.model; import java.io.Serializable; import javax.annotation.Generated; /** *
* Information about a snapshot. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class SnapshotInfo implements Serializable, Cloneable { /** ** Description specified by the CreateSnapshotRequest that has been applied to all snapshots. *
*/ private String description; /** ** Tags associated with this snapshot. *
*/ private com.amazonaws.internal.SdkInternalList* Indicates whether the snapshot is encrypted. *
*/ private Boolean encrypted; /** ** Source volume from which this snapshot was created. *
*/ private String volumeId; /** ** Current state of the snapshot. *
*/ private String state; /** ** Size of the volume from which this snapshot was created. *
*/ private Integer volumeSize; /** ** Time this snapshot was started. This is the same for all snapshots initiated by the same request. *
*/ private java.util.Date startTime; /** ** Progress this snapshot has made towards completing. *
*/ private String progress; /** ** Account id used when creating this snapshot. *
*/ private String ownerId; /** ** Snapshot id that can be used to describe this snapshot. *
*/ private String snapshotId; /** ** The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on * Outposts in the Amazon Elastic Compute Cloud User Guide. *
*/ private String outpostArn; /** ** Reserved for future use. *
*/ private String sseType; /** ** Description specified by the CreateSnapshotRequest that has been applied to all snapshots. *
* * @param description * Description specified by the CreateSnapshotRequest that has been applied to all snapshots. */ public void setDescription(String description) { this.description = description; } /** ** Description specified by the CreateSnapshotRequest that has been applied to all snapshots. *
* * @return Description specified by the CreateSnapshotRequest that has been applied to all snapshots. */ public String getDescription() { return this.description; } /** ** Description specified by the CreateSnapshotRequest that has been applied to all snapshots. *
* * @param description * Description specified by the CreateSnapshotRequest that has been applied to all snapshots. * @return Returns a reference to this object so that method calls can be chained together. */ public SnapshotInfo withDescription(String description) { setDescription(description); return this; } /** ** Tags associated with this snapshot. *
* * @return Tags associated with this snapshot. */ public java.util.List* Tags associated with this snapshot. *
* * @param tags * Tags associated with this snapshot. */ public void setTags(java.util.Collection* Tags associated with this snapshot. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * Tags associated with this snapshot. * @return Returns a reference to this object so that method calls can be chained together. */ public SnapshotInfo withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList* Tags associated with this snapshot. *
* * @param tags * Tags associated with this snapshot. * @return Returns a reference to this object so that method calls can be chained together. */ public SnapshotInfo withTags(java.util.Collection* Indicates whether the snapshot is encrypted. *
* * @param encrypted * Indicates whether the snapshot is encrypted. */ public void setEncrypted(Boolean encrypted) { this.encrypted = encrypted; } /** ** Indicates whether the snapshot is encrypted. *
* * @return Indicates whether the snapshot is encrypted. */ public Boolean getEncrypted() { return this.encrypted; } /** ** Indicates whether the snapshot is encrypted. *
* * @param encrypted * Indicates whether the snapshot is encrypted. * @return Returns a reference to this object so that method calls can be chained together. */ public SnapshotInfo withEncrypted(Boolean encrypted) { setEncrypted(encrypted); return this; } /** ** Indicates whether the snapshot is encrypted. *
* * @return Indicates whether the snapshot is encrypted. */ public Boolean isEncrypted() { return this.encrypted; } /** ** Source volume from which this snapshot was created. *
* * @param volumeId * Source volume from which this snapshot was created. */ public void setVolumeId(String volumeId) { this.volumeId = volumeId; } /** ** Source volume from which this snapshot was created. *
* * @return Source volume from which this snapshot was created. */ public String getVolumeId() { return this.volumeId; } /** ** Source volume from which this snapshot was created. *
* * @param volumeId * Source volume from which this snapshot was created. * @return Returns a reference to this object so that method calls can be chained together. */ public SnapshotInfo withVolumeId(String volumeId) { setVolumeId(volumeId); return this; } /** ** Current state of the snapshot. *
* * @param state * Current state of the snapshot. * @see SnapshotState */ public void setState(String state) { this.state = state; } /** ** Current state of the snapshot. *
* * @return Current state of the snapshot. * @see SnapshotState */ public String getState() { return this.state; } /** ** Current state of the snapshot. *
* * @param state * Current state of the snapshot. * @return Returns a reference to this object so that method calls can be chained together. * @see SnapshotState */ public SnapshotInfo withState(String state) { setState(state); return this; } /** ** Current state of the snapshot. *
* * @param state * Current state of the snapshot. * @return Returns a reference to this object so that method calls can be chained together. * @see SnapshotState */ public SnapshotInfo withState(SnapshotState state) { this.state = state.toString(); return this; } /** ** Size of the volume from which this snapshot was created. *
* * @param volumeSize * Size of the volume from which this snapshot was created. */ public void setVolumeSize(Integer volumeSize) { this.volumeSize = volumeSize; } /** ** Size of the volume from which this snapshot was created. *
* * @return Size of the volume from which this snapshot was created. */ public Integer getVolumeSize() { return this.volumeSize; } /** ** Size of the volume from which this snapshot was created. *
* * @param volumeSize * Size of the volume from which this snapshot was created. * @return Returns a reference to this object so that method calls can be chained together. */ public SnapshotInfo withVolumeSize(Integer volumeSize) { setVolumeSize(volumeSize); return this; } /** ** Time this snapshot was started. This is the same for all snapshots initiated by the same request. *
* * @param startTime * Time this snapshot was started. This is the same for all snapshots initiated by the same request. */ public void setStartTime(java.util.Date startTime) { this.startTime = startTime; } /** ** Time this snapshot was started. This is the same for all snapshots initiated by the same request. *
* * @return Time this snapshot was started. This is the same for all snapshots initiated by the same request. */ public java.util.Date getStartTime() { return this.startTime; } /** ** Time this snapshot was started. This is the same for all snapshots initiated by the same request. *
* * @param startTime * Time this snapshot was started. This is the same for all snapshots initiated by the same request. * @return Returns a reference to this object so that method calls can be chained together. */ public SnapshotInfo withStartTime(java.util.Date startTime) { setStartTime(startTime); return this; } /** ** Progress this snapshot has made towards completing. *
* * @param progress * Progress this snapshot has made towards completing. */ public void setProgress(String progress) { this.progress = progress; } /** ** Progress this snapshot has made towards completing. *
* * @return Progress this snapshot has made towards completing. */ public String getProgress() { return this.progress; } /** ** Progress this snapshot has made towards completing. *
* * @param progress * Progress this snapshot has made towards completing. * @return Returns a reference to this object so that method calls can be chained together. */ public SnapshotInfo withProgress(String progress) { setProgress(progress); return this; } /** ** Account id used when creating this snapshot. *
* * @param ownerId * Account id used when creating this snapshot. */ public void setOwnerId(String ownerId) { this.ownerId = ownerId; } /** ** Account id used when creating this snapshot. *
* * @return Account id used when creating this snapshot. */ public String getOwnerId() { return this.ownerId; } /** ** Account id used when creating this snapshot. *
* * @param ownerId * Account id used when creating this snapshot. * @return Returns a reference to this object so that method calls can be chained together. */ public SnapshotInfo withOwnerId(String ownerId) { setOwnerId(ownerId); return this; } /** ** Snapshot id that can be used to describe this snapshot. *
* * @param snapshotId * Snapshot id that can be used to describe this snapshot. */ public void setSnapshotId(String snapshotId) { this.snapshotId = snapshotId; } /** ** Snapshot id that can be used to describe this snapshot. *
* * @return Snapshot id that can be used to describe this snapshot. */ public String getSnapshotId() { return this.snapshotId; } /** ** Snapshot id that can be used to describe this snapshot. *
* * @param snapshotId * Snapshot id that can be used to describe this snapshot. * @return Returns a reference to this object so that method calls can be chained together. */ public SnapshotInfo withSnapshotId(String snapshotId) { setSnapshotId(snapshotId); return this; } /** ** The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on * Outposts in the Amazon Elastic Compute Cloud User Guide. *
* * @param outpostArn * The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local * snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide. */ public void setOutpostArn(String outpostArn) { this.outpostArn = outpostArn; } /** ** The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on * Outposts in the Amazon Elastic Compute Cloud User Guide. *
* * @return The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local * snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide. */ public String getOutpostArn() { return this.outpostArn; } /** ** The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local snapshots on * Outposts in the Amazon Elastic Compute Cloud User Guide. *
* * @param outpostArn * The ARN of the Outpost on which the snapshot is stored. For more information, see Amazon EBS local * snapshots on Outposts in the Amazon Elastic Compute Cloud User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public SnapshotInfo withOutpostArn(String outpostArn) { setOutpostArn(outpostArn); return this; } /** ** Reserved for future use. *
* * @param sseType * Reserved for future use. * @see SSEType */ public void setSseType(String sseType) { this.sseType = sseType; } /** ** Reserved for future use. *
* * @return Reserved for future use. * @see SSEType */ public String getSseType() { return this.sseType; } /** ** Reserved for future use. *
* * @param sseType * Reserved for future use. * @return Returns a reference to this object so that method calls can be chained together. * @see SSEType */ public SnapshotInfo withSseType(String sseType) { setSseType(sseType); return this; } /** ** Reserved for future use. *
* * @param sseType * Reserved for future use. * @return Returns a reference to this object so that method calls can be chained together. * @see SSEType */ public SnapshotInfo withSseType(SSEType sseType) { this.sseType = sseType.toString(); 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 (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getEncrypted() != null) sb.append("Encrypted: ").append(getEncrypted()).append(","); if (getVolumeId() != null) sb.append("VolumeId: ").append(getVolumeId()).append(","); if (getState() != null) sb.append("State: ").append(getState()).append(","); if (getVolumeSize() != null) sb.append("VolumeSize: ").append(getVolumeSize()).append(","); if (getStartTime() != null) sb.append("StartTime: ").append(getStartTime()).append(","); if (getProgress() != null) sb.append("Progress: ").append(getProgress()).append(","); if (getOwnerId() != null) sb.append("OwnerId: ").append(getOwnerId()).append(","); if (getSnapshotId() != null) sb.append("SnapshotId: ").append(getSnapshotId()).append(","); if (getOutpostArn() != null) sb.append("OutpostArn: ").append(getOutpostArn()).append(","); if (getSseType() != null) sb.append("SseType: ").append(getSseType()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SnapshotInfo == false) return false; SnapshotInfo other = (SnapshotInfo) obj; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getEncrypted() == null ^ this.getEncrypted() == null) return false; if (other.getEncrypted() != null && other.getEncrypted().equals(this.getEncrypted()) == false) return false; if (other.getVolumeId() == null ^ this.getVolumeId() == null) return false; if (other.getVolumeId() != null && other.getVolumeId().equals(this.getVolumeId()) == false) return false; if (other.getState() == null ^ this.getState() == null) return false; if (other.getState() != null && other.getState().equals(this.getState()) == false) return false; if (other.getVolumeSize() == null ^ this.getVolumeSize() == null) return false; if (other.getVolumeSize() != null && other.getVolumeSize().equals(this.getVolumeSize()) == false) return false; if (other.getStartTime() == null ^ this.getStartTime() == null) return false; if (other.getStartTime() != null && other.getStartTime().equals(this.getStartTime()) == 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.getOwnerId() == null ^ this.getOwnerId() == null) return false; if (other.getOwnerId() != null && other.getOwnerId().equals(this.getOwnerId()) == false) return false; if (other.getSnapshotId() == null ^ this.getSnapshotId() == null) return false; if (other.getSnapshotId() != null && other.getSnapshotId().equals(this.getSnapshotId()) == false) return false; if (other.getOutpostArn() == null ^ this.getOutpostArn() == null) return false; if (other.getOutpostArn() != null && other.getOutpostArn().equals(this.getOutpostArn()) == false) return false; if (other.getSseType() == null ^ this.getSseType() == null) return false; if (other.getSseType() != null && other.getSseType().equals(this.getSseType()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getEncrypted() == null) ? 0 : getEncrypted().hashCode()); hashCode = prime * hashCode + ((getVolumeId() == null) ? 0 : getVolumeId().hashCode()); hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode()); hashCode = prime * hashCode + ((getVolumeSize() == null) ? 0 : getVolumeSize().hashCode()); hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode()); hashCode = prime * hashCode + ((getProgress() == null) ? 0 : getProgress().hashCode()); hashCode = prime * hashCode + ((getOwnerId() == null) ? 0 : getOwnerId().hashCode()); hashCode = prime * hashCode + ((getSnapshotId() == null) ? 0 : getSnapshotId().hashCode()); hashCode = prime * hashCode + ((getOutpostArn() == null) ? 0 : getOutpostArn().hashCode()); hashCode = prime * hashCode + ((getSseType() == null) ? 0 : getSseType().hashCode()); return hashCode; } @Override public SnapshotInfo clone() { try { return (SnapshotInfo) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }