
io.fabric8.docker.api.model.MountPoint Maven / Gradle / Ivy
package io.fabric8.docker.api.model;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
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.docker.api.model.Doneable;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.Inline;
import lombok.EqualsAndHashCode;
import lombok.ToString;
/**
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"Destination",
"Driver",
"Mode",
"Name",
"RW",
"Source"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = true, validationEnabled = true, generateBuilderPackage = true, builderPackage = "io.fabric8.docker.api.builder", inline = {
@Inline(type = Doneable.class, prefix = "Doneable", value = "done")
})
public class MountPoint implements Serializable
{
/**
*
*
*/
@JsonProperty("Destination")
private String Destination;
/**
*
*
*/
@JsonProperty("Driver")
private String Driver;
/**
*
*
*/
@JsonProperty("Mode")
private String Mode;
/**
*
*
*/
@JsonProperty("Name")
private String Name;
/**
*
*
*/
@JsonProperty("RW")
private Boolean RW;
/**
*
*
*/
@JsonProperty("Source")
private String Source;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public MountPoint() {
}
/**
*
* @param Destination
* @param RW
* @param Mode
* @param Driver
* @param Source
* @param Name
*/
public MountPoint(String Destination, String Driver, String Mode, String Name, Boolean RW, String Source) {
this.Destination = Destination;
this.Driver = Driver;
this.Mode = Mode;
this.Name = Name;
this.RW = RW;
this.Source = Source;
}
/**
*
*
* @return
* The Destination
*/
@JsonProperty("Destination")
public String getDestination() {
return Destination;
}
/**
*
*
* @param Destination
* The Destination
*/
@JsonProperty("Destination")
public void setDestination(String Destination) {
this.Destination = Destination;
}
/**
*
*
* @return
* The Driver
*/
@JsonProperty("Driver")
public String getDriver() {
return Driver;
}
/**
*
*
* @param Driver
* The Driver
*/
@JsonProperty("Driver")
public void setDriver(String Driver) {
this.Driver = Driver;
}
/**
*
*
* @return
* The Mode
*/
@JsonProperty("Mode")
public String getMode() {
return Mode;
}
/**
*
*
* @param Mode
* The Mode
*/
@JsonProperty("Mode")
public void setMode(String Mode) {
this.Mode = Mode;
}
/**
*
*
* @return
* The Name
*/
@JsonProperty("Name")
public String getName() {
return Name;
}
/**
*
*
* @param Name
* The Name
*/
@JsonProperty("Name")
public void setName(String Name) {
this.Name = Name;
}
/**
*
*
* @return
* The RW
*/
@JsonProperty("RW")
public Boolean getRW() {
return RW;
}
/**
*
*
* @param RW
* The RW
*/
@JsonProperty("RW")
public void setRW(Boolean RW) {
this.RW = RW;
}
/**
*
*
* @return
* The Source
*/
@JsonProperty("Source")
public String getSource() {
return Source;
}
/**
*
*
* @param Source
* The Source
*/
@JsonProperty("Source")
public void setSource(String Source) {
this.Source = Source;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy