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

org.cdk8s.plus22.ContainerProps Maven / Gradle / Ivy

package org.cdk8s.plus22;

/**
 * Properties for creating a container.
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.47.0 (build 86d2c33)", date = "2021-12-08T00:16:55.084Z")
@software.amazon.jsii.Jsii(module = org.cdk8s.plus22.$Module.class, fqn = "cdk8s-plus-22.ContainerProps")
@software.amazon.jsii.Jsii.Proxy(ContainerProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface ContainerProps extends software.amazon.jsii.JsiiSerializable {

    /**
     * Docker image name.
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
    @org.jetbrains.annotations.NotNull java.lang.String getImage();

    /**
     * Arguments to the entrypoint. The docker image's CMD is used if `command` is not provided.
     * 

* Variable references $(VAR_NAME) are expanded using the container's * environment. If a variable cannot be resolved, the reference in the input * string will be unchanged. The $(VAR_NAME) syntax can be escaped with a * double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, * regardless of whether the variable exists or not. *

* Cannot be updated. *

* Default: [] *

* @see https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable java.util.List getArgs() { return null; } /** * Entrypoint array. *

* Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. * If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). * Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. * More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell *

* Default: - The docker image's ENTRYPOINT. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable java.util.List getCommand() { return null; } /** * List of environment variables to set in the container. *

* Cannot be updated. *

* Default: - No environment variables. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable java.util.Map getEnv() { return null; } /** * Image pull policy for this container. *

* Default: ImagePullPolicy.ALWAYS */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable org.cdk8s.plus22.ImagePullPolicy getImagePullPolicy() { return null; } /** * Periodic probe of container liveness. *

* Container will be restarted if the probe fails. *

* Default: - no liveness probe is defined */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable org.cdk8s.plus22.Probe getLiveness() { return null; } /** * Name of the container specified as a DNS_LABEL. *

* Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. *

* Default: 'main' */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable java.lang.String getName() { return null; } /** * Number of port to expose on the pod's IP address. *

* This must be a valid port number, 0 < x < 65536. *

* Default: - No port is exposed. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable java.lang.Number getPort() { return null; } /** * Determines when the container is ready to serve traffic. *

* Default: - no readiness probe is defined */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable org.cdk8s.plus22.Probe getReadiness() { return null; } /** * StartupProbe indicates that the Pod has successfully initialized. *

* If specified, no other probes are executed until this completes successfully *

* Default: - no startup probe is defined. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable org.cdk8s.plus22.Probe getStartup() { return null; } /** * Pod volumes to mount into the container's filesystem. *

* Cannot be updated. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable java.util.List getVolumeMounts() { return null; } /** * Container's working directory. *

* If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. *

* Default: - The container runtime's default. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable java.lang.String getWorkingDir() { return null; } /** * @return a {@link Builder} of {@link ContainerProps} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) static Builder builder() { return new Builder(); } /** * A builder for {@link ContainerProps} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public static final class Builder implements software.amazon.jsii.Builder { java.lang.String image; java.util.List args; java.util.List command; java.util.Map env; org.cdk8s.plus22.ImagePullPolicy imagePullPolicy; org.cdk8s.plus22.Probe liveness; java.lang.String name; java.lang.Number port; org.cdk8s.plus22.Probe readiness; org.cdk8s.plus22.Probe startup; java.util.List volumeMounts; java.lang.String workingDir; /** * Sets the value of {@link ContainerProps#getImage} * @param image Docker image name. This parameter is required. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder image(java.lang.String image) { this.image = image; return this; } /** * Sets the value of {@link ContainerProps#getArgs} * @param args Arguments to the entrypoint. The docker image's CMD is used if `command` is not provided. * Variable references $(VAR_NAME) are expanded using the container's * environment. If a variable cannot be resolved, the reference in the input * string will be unchanged. The $(VAR_NAME) syntax can be escaped with a * double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, * regardless of whether the variable exists or not. *

* Cannot be updated. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder args(java.util.List args) { this.args = args; return this; } /** * Sets the value of {@link ContainerProps#getCommand} * @param command Entrypoint array. * Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. * If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). * Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. * More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder command(java.util.List command) { this.command = command; return this; } /** * Sets the value of {@link ContainerProps#getEnv} * @param env List of environment variables to set in the container. * Cannot be updated. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @SuppressWarnings("unchecked") public Builder env(java.util.Map env) { this.env = (java.util.Map)env; return this; } /** * Sets the value of {@link ContainerProps#getImagePullPolicy} * @param imagePullPolicy Image pull policy for this container. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder imagePullPolicy(org.cdk8s.plus22.ImagePullPolicy imagePullPolicy) { this.imagePullPolicy = imagePullPolicy; return this; } /** * Sets the value of {@link ContainerProps#getLiveness} * @param liveness Periodic probe of container liveness. * Container will be restarted if the probe fails. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder liveness(org.cdk8s.plus22.Probe liveness) { this.liveness = liveness; return this; } /** * Sets the value of {@link ContainerProps#getName} * @param name Name of the container specified as a DNS_LABEL. * Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder name(java.lang.String name) { this.name = name; return this; } /** * Sets the value of {@link ContainerProps#getPort} * @param port Number of port to expose on the pod's IP address. * This must be a valid port number, 0 < x < 65536. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder port(java.lang.Number port) { this.port = port; return this; } /** * Sets the value of {@link ContainerProps#getReadiness} * @param readiness Determines when the container is ready to serve traffic. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder readiness(org.cdk8s.plus22.Probe readiness) { this.readiness = readiness; return this; } /** * Sets the value of {@link ContainerProps#getStartup} * @param startup StartupProbe indicates that the Pod has successfully initialized. * If specified, no other probes are executed until this completes successfully * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder startup(org.cdk8s.plus22.Probe startup) { this.startup = startup; return this; } /** * Sets the value of {@link ContainerProps#getVolumeMounts} * @param volumeMounts Pod volumes to mount into the container's filesystem. * Cannot be updated. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @SuppressWarnings("unchecked") public Builder volumeMounts(java.util.List volumeMounts) { this.volumeMounts = (java.util.List)volumeMounts; return this; } /** * Sets the value of {@link ContainerProps#getWorkingDir} * @param workingDir Container's working directory. * If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder workingDir(java.lang.String workingDir) { this.workingDir = workingDir; return this; } /** * Builds the configured instance. * @return a new instance of {@link ContainerProps} * @throws NullPointerException if any required attribute was not provided */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @Override public ContainerProps build() { return new Jsii$Proxy(this); } } /** * An implementation for {@link ContainerProps} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @software.amazon.jsii.Internal final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements ContainerProps { private final java.lang.String image; private final java.util.List args; private final java.util.List command; private final java.util.Map env; private final org.cdk8s.plus22.ImagePullPolicy imagePullPolicy; private final org.cdk8s.plus22.Probe liveness; private final java.lang.String name; private final java.lang.Number port; private final org.cdk8s.plus22.Probe readiness; private final org.cdk8s.plus22.Probe startup; private final java.util.List volumeMounts; private final java.lang.String workingDir; /** * 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.image = software.amazon.jsii.Kernel.get(this, "image", software.amazon.jsii.NativeType.forClass(java.lang.String.class)); this.args = software.amazon.jsii.Kernel.get(this, "args", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(java.lang.String.class))); this.command = software.amazon.jsii.Kernel.get(this, "command", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(java.lang.String.class))); this.env = software.amazon.jsii.Kernel.get(this, "env", software.amazon.jsii.NativeType.mapOf(software.amazon.jsii.NativeType.forClass(org.cdk8s.plus22.EnvValue.class))); this.imagePullPolicy = software.amazon.jsii.Kernel.get(this, "imagePullPolicy", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus22.ImagePullPolicy.class)); this.liveness = software.amazon.jsii.Kernel.get(this, "liveness", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus22.Probe.class)); this.name = software.amazon.jsii.Kernel.get(this, "name", software.amazon.jsii.NativeType.forClass(java.lang.String.class)); this.port = software.amazon.jsii.Kernel.get(this, "port", software.amazon.jsii.NativeType.forClass(java.lang.Number.class)); this.readiness = software.amazon.jsii.Kernel.get(this, "readiness", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus22.Probe.class)); this.startup = software.amazon.jsii.Kernel.get(this, "startup", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus22.Probe.class)); this.volumeMounts = software.amazon.jsii.Kernel.get(this, "volumeMounts", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(org.cdk8s.plus22.VolumeMount.class))); this.workingDir = software.amazon.jsii.Kernel.get(this, "workingDir", software.amazon.jsii.NativeType.forClass(java.lang.String.class)); } /** * Constructor that initializes the object based on literal property values passed by the {@link Builder}. */ @SuppressWarnings("unchecked") protected Jsii$Proxy(final Builder builder) { super(software.amazon.jsii.JsiiObject.InitializationMode.JSII); this.image = java.util.Objects.requireNonNull(builder.image, "image is required"); this.args = builder.args; this.command = builder.command; this.env = (java.util.Map)builder.env; this.imagePullPolicy = builder.imagePullPolicy; this.liveness = builder.liveness; this.name = builder.name; this.port = builder.port; this.readiness = builder.readiness; this.startup = builder.startup; this.volumeMounts = (java.util.List)builder.volumeMounts; this.workingDir = builder.workingDir; } @Override public final java.lang.String getImage() { return this.image; } @Override public final java.util.List getArgs() { return this.args; } @Override public final java.util.List getCommand() { return this.command; } @Override public final java.util.Map getEnv() { return this.env; } @Override public final org.cdk8s.plus22.ImagePullPolicy getImagePullPolicy() { return this.imagePullPolicy; } @Override public final org.cdk8s.plus22.Probe getLiveness() { return this.liveness; } @Override public final java.lang.String getName() { return this.name; } @Override public final java.lang.Number getPort() { return this.port; } @Override public final org.cdk8s.plus22.Probe getReadiness() { return this.readiness; } @Override public final org.cdk8s.plus22.Probe getStartup() { return this.startup; } @Override public final java.util.List getVolumeMounts() { return this.volumeMounts; } @Override public final java.lang.String getWorkingDir() { return this.workingDir; } @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("image", om.valueToTree(this.getImage())); if (this.getArgs() != null) { data.set("args", om.valueToTree(this.getArgs())); } if (this.getCommand() != null) { data.set("command", om.valueToTree(this.getCommand())); } if (this.getEnv() != null) { data.set("env", om.valueToTree(this.getEnv())); } if (this.getImagePullPolicy() != null) { data.set("imagePullPolicy", om.valueToTree(this.getImagePullPolicy())); } if (this.getLiveness() != null) { data.set("liveness", om.valueToTree(this.getLiveness())); } if (this.getName() != null) { data.set("name", om.valueToTree(this.getName())); } if (this.getPort() != null) { data.set("port", om.valueToTree(this.getPort())); } if (this.getReadiness() != null) { data.set("readiness", om.valueToTree(this.getReadiness())); } if (this.getStartup() != null) { data.set("startup", om.valueToTree(this.getStartup())); } if (this.getVolumeMounts() != null) { data.set("volumeMounts", om.valueToTree(this.getVolumeMounts())); } if (this.getWorkingDir() != null) { data.set("workingDir", om.valueToTree(this.getWorkingDir())); } final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode(); struct.set("fqn", om.valueToTree("cdk8s-plus-22.ContainerProps")); 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; ContainerProps.Jsii$Proxy that = (ContainerProps.Jsii$Proxy) o; if (!image.equals(that.image)) return false; if (this.args != null ? !this.args.equals(that.args) : that.args != null) return false; if (this.command != null ? !this.command.equals(that.command) : that.command != null) return false; if (this.env != null ? !this.env.equals(that.env) : that.env != null) return false; if (this.imagePullPolicy != null ? !this.imagePullPolicy.equals(that.imagePullPolicy) : that.imagePullPolicy != null) return false; if (this.liveness != null ? !this.liveness.equals(that.liveness) : that.liveness != null) return false; if (this.name != null ? !this.name.equals(that.name) : that.name != null) return false; if (this.port != null ? !this.port.equals(that.port) : that.port != null) return false; if (this.readiness != null ? !this.readiness.equals(that.readiness) : that.readiness != null) return false; if (this.startup != null ? !this.startup.equals(that.startup) : that.startup != null) return false; if (this.volumeMounts != null ? !this.volumeMounts.equals(that.volumeMounts) : that.volumeMounts != null) return false; return this.workingDir != null ? this.workingDir.equals(that.workingDir) : that.workingDir == null; } @Override public final int hashCode() { int result = this.image.hashCode(); result = 31 * result + (this.args != null ? this.args.hashCode() : 0); result = 31 * result + (this.command != null ? this.command.hashCode() : 0); result = 31 * result + (this.env != null ? this.env.hashCode() : 0); result = 31 * result + (this.imagePullPolicy != null ? this.imagePullPolicy.hashCode() : 0); result = 31 * result + (this.liveness != null ? this.liveness.hashCode() : 0); result = 31 * result + (this.name != null ? this.name.hashCode() : 0); result = 31 * result + (this.port != null ? this.port.hashCode() : 0); result = 31 * result + (this.readiness != null ? this.readiness.hashCode() : 0); result = 31 * result + (this.startup != null ? this.startup.hashCode() : 0); result = 31 * result + (this.volumeMounts != null ? this.volumeMounts.hashCode() : 0); result = 31 * result + (this.workingDir != null ? this.workingDir.hashCode() : 0); return result; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy