All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.servermigration.model.ReplicationRun Maven / Gradle / Ivy

/*
 * Copyright 2014-2019 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.servermigration.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Represents a replication run. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ReplicationRun implements Serializable, Cloneable, StructuredPojo { /** *

* The identifier of the replication run. *

*/ private String replicationRunId; /** *

* The state of the replication run. *

*/ private String state; /** *

* The type of replication run. *

*/ private String type; /** *

* Details of the current stage of the replication run. *

*/ private ReplicationRunStageDetails stageDetails; /** *

* The description of the current status of the replication job. *

*/ private String statusMessage; /** *

* The identifier of the Amazon Machine Image (AMI) from the replication run. *

*/ private String amiId; /** *

* The start time of the next replication run. *

*/ private java.util.Date scheduledStartTime; /** *

* The completion time of the last replication run. *

*/ private java.util.Date completedTime; /** *

* The description of the replication run. *

*/ private String description; /** *

* Whether the replication run should produce encrypted AMI or not. See also KmsKeyId below. *

*/ private Boolean encrypted; /** *

* KMS key ID for replication jobs that produce encrypted AMIs. Can be any of the following: *

*
    *
  • *

    * KMS key ID *

    *
  • *
  • *

    * KMS key alias *

    *
  • *
  • *

    * ARN referring to KMS key ID *

    *
  • *
  • *

    * ARN referring to KMS key alias *

    *
  • *
*

* If encrypted is true but a KMS key id is not specified, the customer's default KMS key for EBS is used. *

*/ private String kmsKeyId; /** *

* The identifier of the replication run. *

* * @param replicationRunId * The identifier of the replication run. */ public void setReplicationRunId(String replicationRunId) { this.replicationRunId = replicationRunId; } /** *

* The identifier of the replication run. *

* * @return The identifier of the replication run. */ public String getReplicationRunId() { return this.replicationRunId; } /** *

* The identifier of the replication run. *

* * @param replicationRunId * The identifier of the replication run. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicationRun withReplicationRunId(String replicationRunId) { setReplicationRunId(replicationRunId); return this; } /** *

* The state of the replication run. *

* * @param state * The state of the replication run. * @see ReplicationRunState */ public void setState(String state) { this.state = state; } /** *

* The state of the replication run. *

* * @return The state of the replication run. * @see ReplicationRunState */ public String getState() { return this.state; } /** *

* The state of the replication run. *

* * @param state * The state of the replication run. * @return Returns a reference to this object so that method calls can be chained together. * @see ReplicationRunState */ public ReplicationRun withState(String state) { setState(state); return this; } /** *

* The state of the replication run. *

* * @param state * The state of the replication run. * @see ReplicationRunState */ public void setState(ReplicationRunState state) { withState(state); } /** *

* The state of the replication run. *

* * @param state * The state of the replication run. * @return Returns a reference to this object so that method calls can be chained together. * @see ReplicationRunState */ public ReplicationRun withState(ReplicationRunState state) { this.state = state.toString(); return this; } /** *

* The type of replication run. *

* * @param type * The type of replication run. * @see ReplicationRunType */ public void setType(String type) { this.type = type; } /** *

* The type of replication run. *

* * @return The type of replication run. * @see ReplicationRunType */ public String getType() { return this.type; } /** *

* The type of replication run. *

* * @param type * The type of replication run. * @return Returns a reference to this object so that method calls can be chained together. * @see ReplicationRunType */ public ReplicationRun withType(String type) { setType(type); return this; } /** *

* The type of replication run. *

* * @param type * The type of replication run. * @see ReplicationRunType */ public void setType(ReplicationRunType type) { withType(type); } /** *

* The type of replication run. *

* * @param type * The type of replication run. * @return Returns a reference to this object so that method calls can be chained together. * @see ReplicationRunType */ public ReplicationRun withType(ReplicationRunType type) { this.type = type.toString(); return this; } /** *

* Details of the current stage of the replication run. *

* * @param stageDetails * Details of the current stage of the replication run. */ public void setStageDetails(ReplicationRunStageDetails stageDetails) { this.stageDetails = stageDetails; } /** *

* Details of the current stage of the replication run. *

* * @return Details of the current stage of the replication run. */ public ReplicationRunStageDetails getStageDetails() { return this.stageDetails; } /** *

* Details of the current stage of the replication run. *

* * @param stageDetails * Details of the current stage of the replication run. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicationRun withStageDetails(ReplicationRunStageDetails stageDetails) { setStageDetails(stageDetails); return this; } /** *

* The description of the current status of the replication job. *

* * @param statusMessage * The description of the current status of the replication job. */ public void setStatusMessage(String statusMessage) { this.statusMessage = statusMessage; } /** *

* The description of the current status of the replication job. *

* * @return The description of the current status of the replication job. */ public String getStatusMessage() { return this.statusMessage; } /** *

* The description of the current status of the replication job. *

* * @param statusMessage * The description of the current status of the replication job. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicationRun withStatusMessage(String statusMessage) { setStatusMessage(statusMessage); return this; } /** *

* The identifier of the Amazon Machine Image (AMI) from the replication run. *

* * @param amiId * The identifier of the Amazon Machine Image (AMI) from the replication run. */ public void setAmiId(String amiId) { this.amiId = amiId; } /** *

* The identifier of the Amazon Machine Image (AMI) from the replication run. *

* * @return The identifier of the Amazon Machine Image (AMI) from the replication run. */ public String getAmiId() { return this.amiId; } /** *

* The identifier of the Amazon Machine Image (AMI) from the replication run. *

* * @param amiId * The identifier of the Amazon Machine Image (AMI) from the replication run. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicationRun withAmiId(String amiId) { setAmiId(amiId); return this; } /** *

* The start time of the next replication run. *

* * @param scheduledStartTime * The start time of the next replication run. */ public void setScheduledStartTime(java.util.Date scheduledStartTime) { this.scheduledStartTime = scheduledStartTime; } /** *

* The start time of the next replication run. *

* * @return The start time of the next replication run. */ public java.util.Date getScheduledStartTime() { return this.scheduledStartTime; } /** *

* The start time of the next replication run. *

* * @param scheduledStartTime * The start time of the next replication run. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicationRun withScheduledStartTime(java.util.Date scheduledStartTime) { setScheduledStartTime(scheduledStartTime); return this; } /** *

* The completion time of the last replication run. *

* * @param completedTime * The completion time of the last replication run. */ public void setCompletedTime(java.util.Date completedTime) { this.completedTime = completedTime; } /** *

* The completion time of the last replication run. *

* * @return The completion time of the last replication run. */ public java.util.Date getCompletedTime() { return this.completedTime; } /** *

* The completion time of the last replication run. *

* * @param completedTime * The completion time of the last replication run. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicationRun withCompletedTime(java.util.Date completedTime) { setCompletedTime(completedTime); return this; } /** *

* The description of the replication run. *

* * @param description * The description of the replication run. */ public void setDescription(String description) { this.description = description; } /** *

* The description of the replication run. *

* * @return The description of the replication run. */ public String getDescription() { return this.description; } /** *

* The description of the replication run. *

* * @param description * The description of the replication run. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicationRun withDescription(String description) { setDescription(description); return this; } /** *

* Whether the replication run should produce encrypted AMI or not. See also KmsKeyId below. *

* * @param encrypted * Whether the replication run should produce encrypted AMI or not. See also KmsKeyId below. */ public void setEncrypted(Boolean encrypted) { this.encrypted = encrypted; } /** *

* Whether the replication run should produce encrypted AMI or not. See also KmsKeyId below. *

* * @return Whether the replication run should produce encrypted AMI or not. See also KmsKeyId below. */ public Boolean getEncrypted() { return this.encrypted; } /** *

* Whether the replication run should produce encrypted AMI or not. See also KmsKeyId below. *

* * @param encrypted * Whether the replication run should produce encrypted AMI or not. See also KmsKeyId below. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicationRun withEncrypted(Boolean encrypted) { setEncrypted(encrypted); return this; } /** *

* Whether the replication run should produce encrypted AMI or not. See also KmsKeyId below. *

* * @return Whether the replication run should produce encrypted AMI or not. See also KmsKeyId below. */ public Boolean isEncrypted() { return this.encrypted; } /** *

* KMS key ID for replication jobs that produce encrypted AMIs. Can be any of the following: *

*
    *
  • *

    * KMS key ID *

    *
  • *
  • *

    * KMS key alias *

    *
  • *
  • *

    * ARN referring to KMS key ID *

    *
  • *
  • *

    * ARN referring to KMS key alias *

    *
  • *
*

* If encrypted is true but a KMS key id is not specified, the customer's default KMS key for EBS is used. *

* * @param kmsKeyId * KMS key ID for replication jobs that produce encrypted AMIs. Can be any of the following:

*
    *
  • *

    * KMS key ID *

    *
  • *
  • *

    * KMS key alias *

    *
  • *
  • *

    * ARN referring to KMS key ID *

    *
  • *
  • *

    * ARN referring to KMS key alias *

    *
  • *
*

* If encrypted is true but a KMS key id is not specified, the customer's default KMS key for EBS is * used. */ public void setKmsKeyId(String kmsKeyId) { this.kmsKeyId = kmsKeyId; } /** *

* KMS key ID for replication jobs that produce encrypted AMIs. Can be any of the following: *

*
    *
  • *

    * KMS key ID *

    *
  • *
  • *

    * KMS key alias *

    *
  • *
  • *

    * ARN referring to KMS key ID *

    *
  • *
  • *

    * ARN referring to KMS key alias *

    *
  • *
*

* If encrypted is true but a KMS key id is not specified, the customer's default KMS key for EBS is used. *

* * @return KMS key ID for replication jobs that produce encrypted AMIs. Can be any of the following:

*
    *
  • *

    * KMS key ID *

    *
  • *
  • *

    * KMS key alias *

    *
  • *
  • *

    * ARN referring to KMS key ID *

    *
  • *
  • *

    * ARN referring to KMS key alias *

    *
  • *
*

* If encrypted is true but a KMS key id is not specified, the customer's default KMS key for EBS is * used. */ public String getKmsKeyId() { return this.kmsKeyId; } /** *

* KMS key ID for replication jobs that produce encrypted AMIs. Can be any of the following: *

*
    *
  • *

    * KMS key ID *

    *
  • *
  • *

    * KMS key alias *

    *
  • *
  • *

    * ARN referring to KMS key ID *

    *
  • *
  • *

    * ARN referring to KMS key alias *

    *
  • *
*

* If encrypted is true but a KMS key id is not specified, the customer's default KMS key for EBS is used. *

* * @param kmsKeyId * KMS key ID for replication jobs that produce encrypted AMIs. Can be any of the following:

*
    *
  • *

    * KMS key ID *

    *
  • *
  • *

    * KMS key alias *

    *
  • *
  • *

    * ARN referring to KMS key ID *

    *
  • *
  • *

    * ARN referring to KMS key alias *

    *
  • *
*

* If encrypted is true but a KMS key id is not specified, the customer's default KMS key for EBS is * used. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicationRun withKmsKeyId(String kmsKeyId) { setKmsKeyId(kmsKeyId); 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 (getReplicationRunId() != null) sb.append("ReplicationRunId: ").append(getReplicationRunId()).append(","); if (getState() != null) sb.append("State: ").append(getState()).append(","); if (getType() != null) sb.append("Type: ").append(getType()).append(","); if (getStageDetails() != null) sb.append("StageDetails: ").append(getStageDetails()).append(","); if (getStatusMessage() != null) sb.append("StatusMessage: ").append(getStatusMessage()).append(","); if (getAmiId() != null) sb.append("AmiId: ").append(getAmiId()).append(","); if (getScheduledStartTime() != null) sb.append("ScheduledStartTime: ").append(getScheduledStartTime()).append(","); if (getCompletedTime() != null) sb.append("CompletedTime: ").append(getCompletedTime()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getEncrypted() != null) sb.append("Encrypted: ").append(getEncrypted()).append(","); if (getKmsKeyId() != null) sb.append("KmsKeyId: ").append(getKmsKeyId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ReplicationRun == false) return false; ReplicationRun other = (ReplicationRun) obj; if (other.getReplicationRunId() == null ^ this.getReplicationRunId() == null) return false; if (other.getReplicationRunId() != null && other.getReplicationRunId().equals(this.getReplicationRunId()) == 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.getType() == null ^ this.getType() == null) return false; if (other.getType() != null && other.getType().equals(this.getType()) == false) return false; if (other.getStageDetails() == null ^ this.getStageDetails() == null) return false; if (other.getStageDetails() != null && other.getStageDetails().equals(this.getStageDetails()) == false) return false; if (other.getStatusMessage() == null ^ this.getStatusMessage() == null) return false; if (other.getStatusMessage() != null && other.getStatusMessage().equals(this.getStatusMessage()) == false) return false; if (other.getAmiId() == null ^ this.getAmiId() == null) return false; if (other.getAmiId() != null && other.getAmiId().equals(this.getAmiId()) == false) return false; if (other.getScheduledStartTime() == null ^ this.getScheduledStartTime() == null) return false; if (other.getScheduledStartTime() != null && other.getScheduledStartTime().equals(this.getScheduledStartTime()) == false) return false; if (other.getCompletedTime() == null ^ this.getCompletedTime() == null) return false; if (other.getCompletedTime() != null && other.getCompletedTime().equals(this.getCompletedTime()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == 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.getKmsKeyId() == null ^ this.getKmsKeyId() == null) return false; if (other.getKmsKeyId() != null && other.getKmsKeyId().equals(this.getKmsKeyId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getReplicationRunId() == null) ? 0 : getReplicationRunId().hashCode()); hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode()); hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode()); hashCode = prime * hashCode + ((getStageDetails() == null) ? 0 : getStageDetails().hashCode()); hashCode = prime * hashCode + ((getStatusMessage() == null) ? 0 : getStatusMessage().hashCode()); hashCode = prime * hashCode + ((getAmiId() == null) ? 0 : getAmiId().hashCode()); hashCode = prime * hashCode + ((getScheduledStartTime() == null) ? 0 : getScheduledStartTime().hashCode()); hashCode = prime * hashCode + ((getCompletedTime() == null) ? 0 : getCompletedTime().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getEncrypted() == null) ? 0 : getEncrypted().hashCode()); hashCode = prime * hashCode + ((getKmsKeyId() == null) ? 0 : getKmsKeyId().hashCode()); return hashCode; } @Override public ReplicationRun clone() { try { return (ReplicationRun) 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.servermigration.model.transform.ReplicationRunMarshaller.getInstance().marshall(this, protocolMarshaller); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy