com.amazonaws.services.directory.model.Snapshot Maven / Gradle / Ivy
Show all versions of aws-java-sdk-directory 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.directory.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Describes a directory snapshot.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class Snapshot implements Serializable, Cloneable, StructuredPojo {
/**
*
* The directory identifier.
*
*/
private String directoryId;
/**
*
* The snapshot identifier.
*
*/
private String snapshotId;
/**
*
* The snapshot type.
*
*/
private String type;
/**
*
* The descriptive name of the snapshot.
*
*/
private String name;
/**
*
* The snapshot status.
*
*/
private String status;
/**
*
* The date and time that the snapshot was taken.
*
*/
private java.util.Date startTime;
/**
*
* The directory identifier.
*
*
* @param directoryId
* The directory identifier.
*/
public void setDirectoryId(String directoryId) {
this.directoryId = directoryId;
}
/**
*
* The directory identifier.
*
*
* @return The directory identifier.
*/
public String getDirectoryId() {
return this.directoryId;
}
/**
*
* The directory identifier.
*
*
* @param directoryId
* The directory identifier.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withDirectoryId(String directoryId) {
setDirectoryId(directoryId);
return this;
}
/**
*
* The snapshot identifier.
*
*
* @param snapshotId
* The snapshot identifier.
*/
public void setSnapshotId(String snapshotId) {
this.snapshotId = snapshotId;
}
/**
*
* The snapshot identifier.
*
*
* @return The snapshot identifier.
*/
public String getSnapshotId() {
return this.snapshotId;
}
/**
*
* The snapshot identifier.
*
*
* @param snapshotId
* The snapshot identifier.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withSnapshotId(String snapshotId) {
setSnapshotId(snapshotId);
return this;
}
/**
*
* The snapshot type.
*
*
* @param type
* The snapshot type.
* @see SnapshotType
*/
public void setType(String type) {
this.type = type;
}
/**
*
* The snapshot type.
*
*
* @return The snapshot type.
* @see SnapshotType
*/
public String getType() {
return this.type;
}
/**
*
* The snapshot type.
*
*
* @param type
* The snapshot type.
* @return Returns a reference to this object so that method calls can be chained together.
* @see SnapshotType
*/
public Snapshot withType(String type) {
setType(type);
return this;
}
/**
*
* The snapshot type.
*
*
* @param type
* The snapshot type.
* @see SnapshotType
*/
public void setType(SnapshotType type) {
withType(type);
}
/**
*
* The snapshot type.
*
*
* @param type
* The snapshot type.
* @return Returns a reference to this object so that method calls can be chained together.
* @see SnapshotType
*/
public Snapshot withType(SnapshotType type) {
this.type = type.toString();
return this;
}
/**
*
* The descriptive name of the snapshot.
*
*
* @param name
* The descriptive name of the snapshot.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The descriptive name of the snapshot.
*
*
* @return The descriptive name of the snapshot.
*/
public String getName() {
return this.name;
}
/**
*
* The descriptive name of the snapshot.
*
*
* @param name
* The descriptive name of the snapshot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withName(String name) {
setName(name);
return this;
}
/**
*
* The snapshot status.
*
*
* @param status
* The snapshot status.
* @see SnapshotStatus
*/
public void setStatus(String status) {
this.status = status;
}
/**
*
* The snapshot status.
*
*
* @return The snapshot status.
* @see SnapshotStatus
*/
public String getStatus() {
return this.status;
}
/**
*
* The snapshot status.
*
*
* @param status
* The snapshot status.
* @return Returns a reference to this object so that method calls can be chained together.
* @see SnapshotStatus
*/
public Snapshot withStatus(String status) {
setStatus(status);
return this;
}
/**
*
* The snapshot status.
*
*
* @param status
* The snapshot status.
* @see SnapshotStatus
*/
public void setStatus(SnapshotStatus status) {
withStatus(status);
}
/**
*
* The snapshot status.
*
*
* @param status
* The snapshot status.
* @return Returns a reference to this object so that method calls can be chained together.
* @see SnapshotStatus
*/
public Snapshot withStatus(SnapshotStatus status) {
this.status = status.toString();
return this;
}
/**
*
* The date and time that the snapshot was taken.
*
*
* @param startTime
* The date and time that the snapshot was taken.
*/
public void setStartTime(java.util.Date startTime) {
this.startTime = startTime;
}
/**
*
* The date and time that the snapshot was taken.
*
*
* @return The date and time that the snapshot was taken.
*/
public java.util.Date getStartTime() {
return this.startTime;
}
/**
*
* The date and time that the snapshot was taken.
*
*
* @param startTime
* The date and time that the snapshot was taken.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Snapshot withStartTime(java.util.Date startTime) {
setStartTime(startTime);
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 (getDirectoryId() != null)
sb.append("DirectoryId: ").append(getDirectoryId()).append(",");
if (getSnapshotId() != null)
sb.append("SnapshotId: ").append(getSnapshotId()).append(",");
if (getType() != null)
sb.append("Type: ").append(getType()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getStatus() != null)
sb.append("Status: ").append(getStatus()).append(",");
if (getStartTime() != null)
sb.append("StartTime: ").append(getStartTime());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof Snapshot == false)
return false;
Snapshot other = (Snapshot) obj;
if (other.getDirectoryId() == null ^ this.getDirectoryId() == null)
return false;
if (other.getDirectoryId() != null && other.getDirectoryId().equals(this.getDirectoryId()) == 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.getType() == null ^ this.getType() == null)
return false;
if (other.getType() != null && other.getType().equals(this.getType()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == false)
return false;
if (other.getStatus() == null ^ this.getStatus() == null)
return false;
if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false)
return false;
if (other.getStartTime() == null ^ this.getStartTime() == null)
return false;
if (other.getStartTime() != null && other.getStartTime().equals(this.getStartTime()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDirectoryId() == null) ? 0 : getDirectoryId().hashCode());
hashCode = prime * hashCode + ((getSnapshotId() == null) ? 0 : getSnapshotId().hashCode());
hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode());
return hashCode;
}
@Override
public Snapshot clone() {
try {
return (Snapshot) 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.directory.model.transform.SnapshotMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}