com.pulumi.kubernetes.flowcontrol.v1beta3.inputs.ExemptPriorityLevelConfigurationPatchArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kubernetes Show documentation
Show all versions of kubernetes Show documentation
A Pulumi package for creating and managing Kubernetes resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.kubernetes.flowcontrol.v1beta3.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Integer;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* ExemptPriorityLevelConfiguration describes the configurable aspects of the handling of exempt requests. In the mandatory exempt configuration object the values in the fields here can be modified by authorized users, unlike the rest of the `spec`.
*
*/
public final class ExemptPriorityLevelConfigurationPatchArgs extends com.pulumi.resources.ResourceArgs {
public static final ExemptPriorityLevelConfigurationPatchArgs Empty = new ExemptPriorityLevelConfigurationPatchArgs();
/**
* `lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. This value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.
*
* LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
*
*/
@Import(name="lendablePercent")
private @Nullable Output lendablePercent;
/**
* @return `lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels. This value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow from this level, known as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.
*
* LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy