Class CloneResponse

java.lang.Object
com.parallels.jenkins.api.dto.CloneResponse

public class CloneResponse extends Object
Response body from PUT /api/v1/machines/{id}/clone.
 {
   "id":     "<string>",
   "status": "<string>",
   "error":  "<string>"
 }
 
id is the new clone's VM ID. error is non-empty when the service reports a partial failure.
  • Constructor Details

    • CloneResponse

      public CloneResponse()
  • Method Details

    • getId

      public String getId()
    • setId

      public void setId(String id)
    • getStatus

      public String getStatus()
    • setStatus

      public void setStatus(String status)
    • getError

      public String getError()
    • setError

      public void setError(String error)