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

org.cdk8s.plus23.k8s.LimitRangeItem Maven / Gradle / Ivy

package org.cdk8s.plus23.k8s;

/**
 * LimitRangeItem defines a min/max usage limit for any resource that matches on kind.
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.75.0 (build 63bb957)", date = "2023-02-21T09:46:03.981Z")
@software.amazon.jsii.Jsii(module = org.cdk8s.plus23.$Module.class, fqn = "cdk8s-plus-23.k8s.LimitRangeItem")
@software.amazon.jsii.Jsii.Proxy(LimitRangeItem.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface LimitRangeItem extends software.amazon.jsii.JsiiSerializable {

    /**
     * Type of resource that this limit applies to.
     * 

* Possible enum values: *

*

    *
  • "Container" Limit that applies to all containers in a namespace
  • *
  • "PersistentVolumeClaim" Limit that applies to all persistent volume claims in a namespace
  • *
  • "Pod" Limit that applies to all pods in a namespace
  • *
*/ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @org.jetbrains.annotations.NotNull org.cdk8s.plus23.k8s.IoK8SApiCoreV1LimitRangeItemType getType(); /** * Default resource requirement limit value by resource name if resource limit is omitted. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable java.util.Map getDefaultValue() { return null; } /** * DefaultRequest is the default resource requirement request value by resource name if resource request is omitted. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable java.util.Map getDefaultRequest() { return null; } /** * Max usage constraints on this kind by resource name. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable java.util.Map getMax() { return null; } /** * MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; *

* this represents the max burst for the named resource. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable java.util.Map getMaxLimitRequestRatio() { return null; } /** * Min usage constraints on this kind by resource name. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) default @org.jetbrains.annotations.Nullable java.util.Map getMin() { return null; } /** * @return a {@link Builder} of {@link LimitRangeItem} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) static Builder builder() { return new Builder(); } /** * A builder for {@link LimitRangeItem} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public static final class Builder implements software.amazon.jsii.Builder { org.cdk8s.plus23.k8s.IoK8SApiCoreV1LimitRangeItemType type; java.util.Map defaultValue; java.util.Map defaultRequest; java.util.Map max; java.util.Map maxLimitRequestRatio; java.util.Map min; /** * Sets the value of {@link LimitRangeItem#getType} * @param type Type of resource that this limit applies to. This parameter is required. * Possible enum values: *

*

    *
  • "Container" Limit that applies to all containers in a namespace
  • *
  • "PersistentVolumeClaim" Limit that applies to all persistent volume claims in a namespace
  • *
  • "Pod" Limit that applies to all pods in a namespace
  • *
* @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder type(org.cdk8s.plus23.k8s.IoK8SApiCoreV1LimitRangeItemType type) { this.type = type; return this; } /** * Sets the value of {@link LimitRangeItem#getDefaultValue} * @param defaultValue Default resource requirement limit value by resource name if resource limit is omitted. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @SuppressWarnings("unchecked") public Builder defaultValue(java.util.Map defaultValue) { this.defaultValue = (java.util.Map)defaultValue; return this; } /** * Sets the value of {@link LimitRangeItem#getDefaultRequest} * @param defaultRequest DefaultRequest is the default resource requirement request value by resource name if resource request is omitted. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @SuppressWarnings("unchecked") public Builder defaultRequest(java.util.Map defaultRequest) { this.defaultRequest = (java.util.Map)defaultRequest; return this; } /** * Sets the value of {@link LimitRangeItem#getMax} * @param max Max usage constraints on this kind by resource name. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @SuppressWarnings("unchecked") public Builder max(java.util.Map max) { this.max = (java.util.Map)max; return this; } /** * Sets the value of {@link LimitRangeItem#getMaxLimitRequestRatio} * @param maxLimitRequestRatio MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value;. * this represents the max burst for the named resource. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @SuppressWarnings("unchecked") public Builder maxLimitRequestRatio(java.util.Map maxLimitRequestRatio) { this.maxLimitRequestRatio = (java.util.Map)maxLimitRequestRatio; return this; } /** * Sets the value of {@link LimitRangeItem#getMin} * @param min Min usage constraints on this kind by resource name. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @SuppressWarnings("unchecked") public Builder min(java.util.Map min) { this.min = (java.util.Map)min; return this; } /** * Builds the configured instance. * @return a new instance of {@link LimitRangeItem} * @throws NullPointerException if any required attribute was not provided */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @Override public LimitRangeItem build() { return new Jsii$Proxy(this); } } /** * An implementation for {@link LimitRangeItem} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @software.amazon.jsii.Internal final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements LimitRangeItem { private final org.cdk8s.plus23.k8s.IoK8SApiCoreV1LimitRangeItemType type; private final java.util.Map defaultValue; private final java.util.Map defaultRequest; private final java.util.Map max; private final java.util.Map maxLimitRequestRatio; private final java.util.Map min; /** * 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.type = software.amazon.jsii.Kernel.get(this, "type", software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.IoK8SApiCoreV1LimitRangeItemType.class)); this.defaultValue = software.amazon.jsii.Kernel.get(this, "default", software.amazon.jsii.NativeType.mapOf(software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.Quantity.class))); this.defaultRequest = software.amazon.jsii.Kernel.get(this, "defaultRequest", software.amazon.jsii.NativeType.mapOf(software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.Quantity.class))); this.max = software.amazon.jsii.Kernel.get(this, "max", software.amazon.jsii.NativeType.mapOf(software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.Quantity.class))); this.maxLimitRequestRatio = software.amazon.jsii.Kernel.get(this, "maxLimitRequestRatio", software.amazon.jsii.NativeType.mapOf(software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.Quantity.class))); this.min = software.amazon.jsii.Kernel.get(this, "min", software.amazon.jsii.NativeType.mapOf(software.amazon.jsii.NativeType.forClass(org.cdk8s.plus23.k8s.Quantity.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.type = java.util.Objects.requireNonNull(builder.type, "type is required"); this.defaultValue = (java.util.Map)builder.defaultValue; this.defaultRequest = (java.util.Map)builder.defaultRequest; this.max = (java.util.Map)builder.max; this.maxLimitRequestRatio = (java.util.Map)builder.maxLimitRequestRatio; this.min = (java.util.Map)builder.min; } @Override public final org.cdk8s.plus23.k8s.IoK8SApiCoreV1LimitRangeItemType getType() { return this.type; } @Override public final java.util.Map getDefaultValue() { return this.defaultValue; } @Override public final java.util.Map getDefaultRequest() { return this.defaultRequest; } @Override public final java.util.Map getMax() { return this.max; } @Override public final java.util.Map getMaxLimitRequestRatio() { return this.maxLimitRequestRatio; } @Override public final java.util.Map getMin() { return this.min; } @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("type", om.valueToTree(this.getType())); if (this.getDefaultValue() != null) { data.set("default", om.valueToTree(this.getDefaultValue())); } if (this.getDefaultRequest() != null) { data.set("defaultRequest", om.valueToTree(this.getDefaultRequest())); } if (this.getMax() != null) { data.set("max", om.valueToTree(this.getMax())); } if (this.getMaxLimitRequestRatio() != null) { data.set("maxLimitRequestRatio", om.valueToTree(this.getMaxLimitRequestRatio())); } if (this.getMin() != null) { data.set("min", om.valueToTree(this.getMin())); } 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.LimitRangeItem")); 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; LimitRangeItem.Jsii$Proxy that = (LimitRangeItem.Jsii$Proxy) o; if (!type.equals(that.type)) return false; if (this.defaultValue != null ? !this.defaultValue.equals(that.defaultValue) : that.defaultValue != null) return false; if (this.defaultRequest != null ? !this.defaultRequest.equals(that.defaultRequest) : that.defaultRequest != null) return false; if (this.max != null ? !this.max.equals(that.max) : that.max != null) return false; if (this.maxLimitRequestRatio != null ? !this.maxLimitRequestRatio.equals(that.maxLimitRequestRatio) : that.maxLimitRequestRatio != null) return false; return this.min != null ? this.min.equals(that.min) : that.min == null; } @Override public final int hashCode() { int result = this.type.hashCode(); result = 31 * result + (this.defaultValue != null ? this.defaultValue.hashCode() : 0); result = 31 * result + (this.defaultRequest != null ? this.defaultRequest.hashCode() : 0); result = 31 * result + (this.max != null ? this.max.hashCode() : 0); result = 31 * result + (this.maxLimitRequestRatio != null ? this.maxLimitRequestRatio.hashCode() : 0); result = 31 * result + (this.min != null ? this.min.hashCode() : 0); return result; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy