org.cdk8s.plus.PathMapping Maven / Gradle / Ivy
Show all versions of cdk8s-plus Show documentation
package org.cdk8s.plus;
/**
* Maps a string key to a path within a volume.
*
* EXPERIMENTAL
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.7.0 (build 179a3a5)", date = "2020-06-29T13:29:38.508Z")
@software.amazon.jsii.Jsii(module = org.cdk8s.plus.$Module.class, fqn = "cdk8s-plus.PathMapping")
@software.amazon.jsii.Jsii.Proxy(PathMapping.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface PathMapping extends software.amazon.jsii.JsiiSerializable {
/**
* The relative path of the file to map the key to.
*
* May not be an absolute
* path. May not contain the path element '..'. May not start with the string
* '..'.
*
* EXPERIMENTAL
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.lang.String getPath();
/**
* Optional: mode bits to use on this file, must be a value between 0 and 0777.
*
* If not specified, the volume defaultMode will be used. This might be
* in conflict with other options that affect the file mode, like fsGroup, and
* the result can be other mode bits set.
*
* EXPERIMENTAL
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.lang.Number getMode() {
return null;
}
/**
* @return a {@link Builder} of {@link PathMapping}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link PathMapping}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
private java.lang.String path;
private java.lang.Number mode;
/**
* Sets the value of {@link PathMapping#getPath}
* @param path The relative path of the file to map the key to. This parameter is required.
* May not be an absolute
* path. May not contain the path element '..'. May not start with the string
* '..'.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder path(java.lang.String path) {
this.path = path;
return this;
}
/**
* Sets the value of {@link PathMapping#getMode}
* @param mode Optional: mode bits to use on this file, must be a value between 0 and 0777.
* If not specified, the volume defaultMode will be used. This might be
* in conflict with other options that affect the file mode, like fsGroup, and
* the result can be other mode bits set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder mode(java.lang.Number mode) {
this.mode = mode;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link PathMapping}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public PathMapping build() {
return new Jsii$Proxy(path, mode);
}
}
/**
* An implementation for {@link PathMapping}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements PathMapping {
private final java.lang.String path;
private final java.lang.Number mode;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.path = this.jsiiGet("path", java.lang.String.class);
this.mode = this.jsiiGet("mode", java.lang.Number.class);
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
private Jsii$Proxy(final java.lang.String path, final java.lang.Number mode) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.path = java.util.Objects.requireNonNull(path, "path is required");
this.mode = mode;
}
@Override
public java.lang.String getPath() {
return this.path;
}
@Override
public java.lang.Number getMode() {
return this.mode;
}
@Override
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
data.set("path", om.valueToTree(this.getPath()));
if (this.getMode() != null) {
data.set("mode", om.valueToTree(this.getMode()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("cdk8s-plus.PathMapping"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
PathMapping.Jsii$Proxy that = (PathMapping.Jsii$Proxy) o;
if (!path.equals(that.path)) return false;
return this.mode != null ? this.mode.equals(that.mode) : that.mode == null;
}
@Override
public int hashCode() {
int result = this.path.hashCode();
result = 31 * result + (this.mode != null ? this.mode.hashCode() : 0);
return result;
}
}
}