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

org.finra.herd.sdk.model.EmrClusterEbsBlockDevice Maven / Gradle / Ivy

There is a newer version: 0.160.0
Show newest version
/*
 * herd-external
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * OpenAPI spec version: 0.125.0
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package org.finra.herd.sdk.model;

import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.finra.herd.sdk.model.EmrClusterVolumeSpecification;

/**
 * EmrClusterEbsBlockDevice
 */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class EmrClusterEbsBlockDevice {
  @JsonProperty("volumeSpecification")
  private EmrClusterVolumeSpecification volumeSpecification = null;

  @JsonProperty("device")
  private String device = null;

  @JsonProperty("volumesPerInstance")
  private Integer volumesPerInstance = null;

  public EmrClusterEbsBlockDevice volumeSpecification(EmrClusterVolumeSpecification volumeSpecification) {
    this.volumeSpecification = volumeSpecification;
    return this;
  }

   /**
   * Get volumeSpecification
   * @return volumeSpecification
  **/
  @ApiModelProperty(value = "")
  public EmrClusterVolumeSpecification getVolumeSpecification() {
    return volumeSpecification;
  }

  public void setVolumeSpecification(EmrClusterVolumeSpecification volumeSpecification) {
    this.volumeSpecification = volumeSpecification;
  }

  public EmrClusterEbsBlockDevice device(String device) {
    this.device = device;
    return this;
  }

   /**
   * The device name that is exposed to the instance, such as /dev/sdh.                
   * @return device
  **/
  @ApiModelProperty(value = "The device name that is exposed to the instance, such as /dev/sdh.                ")
  public String getDevice() {
    return device;
  }

  public void setDevice(String device) {
    this.device = device;
  }

  public EmrClusterEbsBlockDevice volumesPerInstance(Integer volumesPerInstance) {
    this.volumesPerInstance = volumesPerInstance;
    return this;
  }

   /**
   * Number of EBS volumes with a specific volume configuration that will be associated with every instance in the instance group                
   * @return volumesPerInstance
  **/
  @ApiModelProperty(value = "Number of EBS volumes with a specific volume configuration that will be associated with every instance in the instance group                ")
  public Integer getVolumesPerInstance() {
    return volumesPerInstance;
  }

  public void setVolumesPerInstance(Integer volumesPerInstance) {
    this.volumesPerInstance = volumesPerInstance;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    EmrClusterEbsBlockDevice emrClusterEbsBlockDevice = (EmrClusterEbsBlockDevice) o;
    return Objects.equals(this.volumeSpecification, emrClusterEbsBlockDevice.volumeSpecification) &&
        Objects.equals(this.device, emrClusterEbsBlockDevice.device) &&
        Objects.equals(this.volumesPerInstance, emrClusterEbsBlockDevice.volumesPerInstance);
  }

  @Override
  public int hashCode() {
    return Objects.hash(volumeSpecification, device, volumesPerInstance);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class EmrClusterEbsBlockDevice {\n");
    
    sb.append("    volumeSpecification: ").append(toIndentedString(volumeSpecification)).append("\n");
    sb.append("    device: ").append(toIndentedString(device)).append("\n");
    sb.append("    volumesPerInstance: ").append(toIndentedString(volumesPerInstance)).append("\n");
    sb.append("}");
    return sb.toString();
  }

  /**
   * Convert the given object to string with each line indented by 4 spaces
   * (except the first line).
   */
  private String toIndentedString(java.lang.Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy