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

org.cdk8s.plus31.k8s.VolumeAttachmentSpec Maven / Gradle / Ivy

package org.cdk8s.plus31.k8s;

/**
 * VolumeAttachmentSpec is the specification of a VolumeAttachment request.
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.104.0 (build e79254c)", date = "2024-10-12T12:14:17.755Z")
@software.amazon.jsii.Jsii(module = org.cdk8s.plus31.$Module.class, fqn = "cdk8s-plus-31.k8s.VolumeAttachmentSpec")
@software.amazon.jsii.Jsii.Proxy(VolumeAttachmentSpec.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface VolumeAttachmentSpec extends software.amazon.jsii.JsiiSerializable {

    /**
     * attacher indicates the name of the volume driver that MUST handle this request.
     * 

* This is the name returned by GetPluginName(). */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @org.jetbrains.annotations.NotNull java.lang.String getAttacher(); /** * nodeName represents the node that the volume should be attached to. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @org.jetbrains.annotations.NotNull java.lang.String getNodeName(); /** * source represents the volume that should be attached. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @org.jetbrains.annotations.NotNull org.cdk8s.plus31.k8s.VolumeAttachmentSource getSource(); /** * @return a {@link Builder} of {@link VolumeAttachmentSpec} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) static Builder builder() { return new Builder(); } /** * A builder for {@link VolumeAttachmentSpec} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public static final class Builder implements software.amazon.jsii.Builder { java.lang.String attacher; java.lang.String nodeName; org.cdk8s.plus31.k8s.VolumeAttachmentSource source; /** * Sets the value of {@link VolumeAttachmentSpec#getAttacher} * @param attacher attacher indicates the name of the volume driver that MUST handle this request. This parameter is required. * This is the name returned by GetPluginName(). * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder attacher(java.lang.String attacher) { this.attacher = attacher; return this; } /** * Sets the value of {@link VolumeAttachmentSpec#getNodeName} * @param nodeName nodeName represents the node that the volume should be attached to. This parameter is required. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder nodeName(java.lang.String nodeName) { this.nodeName = nodeName; return this; } /** * Sets the value of {@link VolumeAttachmentSpec#getSource} * @param source source represents the volume that should be attached. This parameter is required. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder source(org.cdk8s.plus31.k8s.VolumeAttachmentSource source) { this.source = source; return this; } /** * Builds the configured instance. * @return a new instance of {@link VolumeAttachmentSpec} * @throws NullPointerException if any required attribute was not provided */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @Override public VolumeAttachmentSpec build() { return new Jsii$Proxy(this); } } /** * An implementation for {@link VolumeAttachmentSpec} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @software.amazon.jsii.Internal final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements VolumeAttachmentSpec { private final java.lang.String attacher; private final java.lang.String nodeName; private final org.cdk8s.plus31.k8s.VolumeAttachmentSource source; /** * 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.attacher = software.amazon.jsii.Kernel.get(this, "attacher", software.amazon.jsii.NativeType.forClass(java.lang.String.class)); this.nodeName = software.amazon.jsii.Kernel.get(this, "nodeName", software.amazon.jsii.NativeType.forClass(java.lang.String.class)); this.source = software.amazon.jsii.Kernel.get(this, "source", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus31.k8s.VolumeAttachmentSource.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.attacher = java.util.Objects.requireNonNull(builder.attacher, "attacher is required"); this.nodeName = java.util.Objects.requireNonNull(builder.nodeName, "nodeName is required"); this.source = java.util.Objects.requireNonNull(builder.source, "source is required"); } @Override public final java.lang.String getAttacher() { return this.attacher; } @Override public final java.lang.String getNodeName() { return this.nodeName; } @Override public final org.cdk8s.plus31.k8s.VolumeAttachmentSource getSource() { return this.source; } @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(); data.set("attacher", om.valueToTree(this.getAttacher())); data.set("nodeName", om.valueToTree(this.getNodeName())); data.set("source", om.valueToTree(this.getSource())); 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.VolumeAttachmentSpec")); 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; VolumeAttachmentSpec.Jsii$Proxy that = (VolumeAttachmentSpec.Jsii$Proxy) o; if (!attacher.equals(that.attacher)) return false; if (!nodeName.equals(that.nodeName)) return false; return this.source.equals(that.source); } @Override public final int hashCode() { int result = this.attacher.hashCode(); result = 31 * result + (this.nodeName.hashCode()); result = 31 * result + (this.source.hashCode()); return result; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy