/**
  * The instance operating system.
  *
  * <p>Returns a reference to this object so that method calls can be chained together.
  *
  * <p><b>Constraints:</b><br>
  * <b>Allowed Values: </b>Windows
  *
  * @param platform The instance operating system.
  * @return A reference to this updated object so that method calls can be chained together.
  * @see PlatformValues
  */
 public ImportInstanceTaskDetails withPlatform(PlatformValues platform) {
   this.platform = platform.toString();
   return this;
 }
 /**
  * The instance operating system.
  *
  * <p><b>Constraints:</b><br>
  * <b>Allowed Values: </b>Windows
  *
  * @param platform The instance operating system.
  * @see PlatformValues
  */
 public void setPlatform(PlatformValues platform) {
   this.platform = platform.toString();
 }