
org.cdk8s.plus23.k8s.EnvVarSource Maven / Gradle / Ivy
package org.cdk8s.plus23.k8s;
/**
* EnvVarSource represents a source for the value of an EnvVar.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.75.0 (build 63bb957)", date = "2023-02-21T09:46:03.780Z")
@software.amazon.jsii.Jsii(module = org.cdk8s.plus23.$Module.class, fqn = "cdk8s-plus-23.k8s.EnvVarSource")
@software.amazon.jsii.Jsii.Proxy(EnvVarSource.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface EnvVarSource extends software.amazon.jsii.JsiiSerializable {
/**
* Selects a key of a ConfigMap.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable org.cdk8s.plus23.k8s.ConfigMapKeySelector getConfigMapKeyRef() {
return null;
}
/**
* Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable org.cdk8s.plus23.k8s.ObjectFieldSelector getFieldRef() {
return null;
}
/**
* Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable org.cdk8s.plus23.k8s.ResourceFieldSelector getResourceFieldRef() {
return null;
}
/**
* Selects a key of a secret in the pod's namespace.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable org.cdk8s.plus23.k8s.SecretKeySelector getSecretKeyRef() {
return null;
}
/**
* @return a {@link Builder} of {@link EnvVarSource}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link EnvVarSource}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder implements software.amazon.jsii.Builder {
org.cdk8s.plus23.k8s.ConfigMapKeySelector configMapKeyRef;
org.cdk8s.plus23.k8s.ObjectFieldSelector fieldRef;
org.cdk8s.plus23.k8s.ResourceFieldSelector resourceFieldRef;
org.cdk8s.plus23.k8s.SecretKeySelector secretKeyRef;
/**
* Sets the value of {@link EnvVarSource#getConfigMapKeyRef}
* @param configMapKeyRef Selects a key of a ConfigMap.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder configMapKeyRef(org.cdk8s.plus23.k8s.ConfigMapKeySelector configMapKeyRef) {
this.configMapKeyRef = configMapKeyRef;
return this;
}
/**
* Sets the value of {@link EnvVarSource#getFieldRef}
* @param fieldRef Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder fieldRef(org.cdk8s.plus23.k8s.ObjectFieldSelector fieldRef) {
this.fieldRef = fieldRef;
return this;
}
/**
* Sets the value of {@link EnvVarSource#getResourceFieldRef}
* @param resourceFieldRef Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder resourceFieldRef(org.cdk8s.plus23.k8s.ResourceFieldSelector resourceFieldRef) {
this.resourceFieldRef = resourceFieldRef;
return this;
}
/**
* Sets the value of {@link EnvVarSource#getSecretKeyRef}
* @param secretKeyRef Selects a key of a secret in the pod's namespace.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder secretKeyRef(org.cdk8s.plus23.k8s.SecretKeySelector secretKeyRef) {
this.secretKeyRef = secretKeyRef;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link EnvVarSource}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public EnvVarSource build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link EnvVarSource}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements EnvVarSource {
private final org.cdk8s.plus23.k8s.ConfigMapKeySelector configMapKeyRef;
private final org.cdk8s.plus23.k8s.ObjectFieldSelector fieldRef;
private final org.cdk8s.plus23.k8s.ResourceFieldSelector resourceFieldRef;
private final org.cdk8s.plus23.k8s.SecretKeySelector secretKeyRef;
/**
* 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.configMapKeyRef = software.amazon.jsii.Kernel.get(this, "configMapKeyRef", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.ConfigMapKeySelector.class));
this.fieldRef = software.amazon.jsii.Kernel.get(this, "fieldRef", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.ObjectFieldSelector.class));
this.resourceFieldRef = software.amazon.jsii.Kernel.get(this, "resourceFieldRef", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.ResourceFieldSelector.class));
this.secretKeyRef = software.amazon.jsii.Kernel.get(this, "secretKeyRef", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.SecretKeySelector.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.configMapKeyRef = builder.configMapKeyRef;
this.fieldRef = builder.fieldRef;
this.resourceFieldRef = builder.resourceFieldRef;
this.secretKeyRef = builder.secretKeyRef;
}
@Override
public final org.cdk8s.plus23.k8s.ConfigMapKeySelector getConfigMapKeyRef() {
return this.configMapKeyRef;
}
@Override
public final org.cdk8s.plus23.k8s.ObjectFieldSelector getFieldRef() {
return this.fieldRef;
}
@Override
public final org.cdk8s.plus23.k8s.ResourceFieldSelector getResourceFieldRef() {
return this.resourceFieldRef;
}
@Override
public final org.cdk8s.plus23.k8s.SecretKeySelector getSecretKeyRef() {
return this.secretKeyRef;
}
@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.getConfigMapKeyRef() != null) {
data.set("configMapKeyRef", om.valueToTree(this.getConfigMapKeyRef()));
}
if (this.getFieldRef() != null) {
data.set("fieldRef", om.valueToTree(this.getFieldRef()));
}
if (this.getResourceFieldRef() != null) {
data.set("resourceFieldRef", om.valueToTree(this.getResourceFieldRef()));
}
if (this.getSecretKeyRef() != null) {
data.set("secretKeyRef", om.valueToTree(this.getSecretKeyRef()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("cdk8s-plus-23.k8s.EnvVarSource"));
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;
EnvVarSource.Jsii$Proxy that = (EnvVarSource.Jsii$Proxy) o;
if (this.configMapKeyRef != null ? !this.configMapKeyRef.equals(that.configMapKeyRef) : that.configMapKeyRef != null) return false;
if (this.fieldRef != null ? !this.fieldRef.equals(that.fieldRef) : that.fieldRef != null) return false;
if (this.resourceFieldRef != null ? !this.resourceFieldRef.equals(that.resourceFieldRef) : that.resourceFieldRef != null) return false;
return this.secretKeyRef != null ? this.secretKeyRef.equals(that.secretKeyRef) : that.secretKeyRef == null;
}
@Override
public final int hashCode() {
int result = this.configMapKeyRef != null ? this.configMapKeyRef.hashCode() : 0;
result = 31 * result + (this.fieldRef != null ? this.fieldRef.hashCode() : 0);
result = 31 * result + (this.resourceFieldRef != null ? this.resourceFieldRef.hashCode() : 0);
result = 31 * result + (this.secretKeyRef != null ? this.secretKeyRef.hashCode() : 0);
return result;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy