
org.cdk8s.plus31.k8s.FlockerVolumeSource Maven / Gradle / Ivy
package org.cdk8s.plus31.k8s;
/**
* Represents a Flocker volume mounted by the Flocker agent.
*
* One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.104.0 (build e79254c)", date = "2024-10-12T12:14:17.521Z")
@software.amazon.jsii.Jsii(module = org.cdk8s.plus31.$Module.class, fqn = "cdk8s-plus-31.k8s.FlockerVolumeSource")
@software.amazon.jsii.Jsii.Proxy(FlockerVolumeSource.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface FlockerVolumeSource extends software.amazon.jsii.JsiiSerializable {
/**
* datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getDatasetName() {
return null;
}
/**
* datasetUUID is the UUID of the dataset.
*
* This is unique identifier of a Flocker dataset
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getDatasetUuid() {
return null;
}
/**
* @return a {@link Builder} of {@link FlockerVolumeSource}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link FlockerVolumeSource}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.String datasetName;
java.lang.String datasetUuid;
/**
* Sets the value of {@link FlockerVolumeSource#getDatasetName}
* @param datasetName datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder datasetName(java.lang.String datasetName) {
this.datasetName = datasetName;
return this;
}
/**
* Sets the value of {@link FlockerVolumeSource#getDatasetUuid}
* @param datasetUuid datasetUUID is the UUID of the dataset.
* This is unique identifier of a Flocker dataset
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder datasetUuid(java.lang.String datasetUuid) {
this.datasetUuid = datasetUuid;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link FlockerVolumeSource}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public FlockerVolumeSource build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link FlockerVolumeSource}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements FlockerVolumeSource {
private final java.lang.String datasetName;
private final java.lang.String datasetUuid;
/**
* 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.datasetName = software.amazon.jsii.Kernel.get(this, "datasetName", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.datasetUuid = software.amazon.jsii.Kernel.get(this, "datasetUuid", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final Builder builder) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.datasetName = builder.datasetName;
this.datasetUuid = builder.datasetUuid;
}
@Override
public final java.lang.String getDatasetName() {
return this.datasetName;
}
@Override
public final java.lang.String getDatasetUuid() {
return this.datasetUuid;
}
@Override
@software.amazon.jsii.Internal
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();
if (this.getDatasetName() != null) {
data.set("datasetName", om.valueToTree(this.getDatasetName()));
}
if (this.getDatasetUuid() != null) {
data.set("datasetUuid", om.valueToTree(this.getDatasetUuid()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("cdk8s-plus-31.k8s.FlockerVolumeSource"));
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 final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
FlockerVolumeSource.Jsii$Proxy that = (FlockerVolumeSource.Jsii$Proxy) o;
if (this.datasetName != null ? !this.datasetName.equals(that.datasetName) : that.datasetName != null) return false;
return this.datasetUuid != null ? this.datasetUuid.equals(that.datasetUuid) : that.datasetUuid == null;
}
@Override
public final int hashCode() {
int result = this.datasetName != null ? this.datasetName.hashCode() : 0;
result = 31 * result + (this.datasetUuid != null ? this.datasetUuid.hashCode() : 0);
return result;
}
}
}