All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.fabric8.openshift.api.model.miscellaneous.metal3.v1alpha1.RootDeviceHints Maven / Gradle / Ivy
package io.fabric8.openshift.api.model.miscellaneous.metal3.v1alpha1;
import java.util.HashMap;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.fabric8.kubernetes.api.model.Container;
import io.fabric8.kubernetes.api.model.IntOrString;
import io.fabric8.kubernetes.api.model.KubernetesResource;
import io.fabric8.kubernetes.api.model.LabelSelector;
import io.fabric8.kubernetes.api.model.LocalObjectReference;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import io.fabric8.kubernetes.api.model.ObjectReference;
import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
import io.fabric8.kubernetes.api.model.PodTemplateSpec;
import io.fabric8.kubernetes.api.model.ResourceRequirements;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.BuildableReference;
import lombok.EqualsAndHashCode;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.Accessors;
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"apiVersion",
"kind",
"metadata",
"deviceName",
"hctl",
"minSizeGigabytes",
"model",
"rotational",
"serialNumber",
"vendor",
"wwn",
"wwnVendorExtension",
"wwnWithExtension"
})
@ToString
@EqualsAndHashCode
@Setter
@Accessors(prefix = {
"_",
""
})
@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = false, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", refs = {
@BuildableReference(ObjectMeta.class),
@BuildableReference(LabelSelector.class),
@BuildableReference(Container.class),
@BuildableReference(PodTemplateSpec.class),
@BuildableReference(ResourceRequirements.class),
@BuildableReference(IntOrString.class),
@BuildableReference(ObjectReference.class),
@BuildableReference(LocalObjectReference.class),
@BuildableReference(PersistentVolumeClaim.class)
})
public class RootDeviceHints implements KubernetesResource
{
@JsonProperty("deviceName")
private String deviceName;
@JsonProperty("hctl")
private String hctl;
@JsonProperty("minSizeGigabytes")
private Integer minSizeGigabytes;
@JsonProperty("model")
private String model;
@JsonProperty("rotational")
private Boolean rotational;
@JsonProperty("serialNumber")
private String serialNumber;
@JsonProperty("vendor")
private String vendor;
@JsonProperty("wwn")
private String wwn;
@JsonProperty("wwnVendorExtension")
private String wwnVendorExtension;
@JsonProperty("wwnWithExtension")
private String wwnWithExtension;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public RootDeviceHints() {
}
/**
*
* @param wwnVendorExtension
* @param hctl
* @param serialNumber
* @param vendor
* @param wwnWithExtension
* @param model
* @param rotational
* @param deviceName
* @param minSizeGigabytes
* @param wwn
*/
public RootDeviceHints(String deviceName, String hctl, Integer minSizeGigabytes, String model, Boolean rotational, String serialNumber, String vendor, String wwn, String wwnVendorExtension, String wwnWithExtension) {
super();
this.deviceName = deviceName;
this.hctl = hctl;
this.minSizeGigabytes = minSizeGigabytes;
this.model = model;
this.rotational = rotational;
this.serialNumber = serialNumber;
this.vendor = vendor;
this.wwn = wwn;
this.wwnVendorExtension = wwnVendorExtension;
this.wwnWithExtension = wwnWithExtension;
}
@JsonProperty("deviceName")
public String getDeviceName() {
return deviceName;
}
@JsonProperty("deviceName")
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
@JsonProperty("hctl")
public String getHctl() {
return hctl;
}
@JsonProperty("hctl")
public void setHctl(String hctl) {
this.hctl = hctl;
}
@JsonProperty("minSizeGigabytes")
public Integer getMinSizeGigabytes() {
return minSizeGigabytes;
}
@JsonProperty("minSizeGigabytes")
public void setMinSizeGigabytes(Integer minSizeGigabytes) {
this.minSizeGigabytes = minSizeGigabytes;
}
@JsonProperty("model")
public String getModel() {
return model;
}
@JsonProperty("model")
public void setModel(String model) {
this.model = model;
}
@JsonProperty("rotational")
public Boolean getRotational() {
return rotational;
}
@JsonProperty("rotational")
public void setRotational(Boolean rotational) {
this.rotational = rotational;
}
@JsonProperty("serialNumber")
public String getSerialNumber() {
return serialNumber;
}
@JsonProperty("serialNumber")
public void setSerialNumber(String serialNumber) {
this.serialNumber = serialNumber;
}
@JsonProperty("vendor")
public String getVendor() {
return vendor;
}
@JsonProperty("vendor")
public void setVendor(String vendor) {
this.vendor = vendor;
}
@JsonProperty("wwn")
public String getWwn() {
return wwn;
}
@JsonProperty("wwn")
public void setWwn(String wwn) {
this.wwn = wwn;
}
@JsonProperty("wwnVendorExtension")
public String getWwnVendorExtension() {
return wwnVendorExtension;
}
@JsonProperty("wwnVendorExtension")
public void setWwnVendorExtension(String wwnVendorExtension) {
this.wwnVendorExtension = wwnVendorExtension;
}
@JsonProperty("wwnWithExtension")
public String getWwnWithExtension() {
return wwnWithExtension;
}
@JsonProperty("wwnWithExtension")
public void setWwnWithExtension(String wwnWithExtension) {
this.wwnWithExtension = wwnWithExtension;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}