com.pulumi.kubernetes.flowcontrol.v1beta1.outputs.LimitedPriorityLevelConfigurationPatch 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.v1beta1.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.kubernetes.flowcontrol.v1beta1.outputs.LimitResponsePatch;
import java.lang.Integer;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class LimitedPriorityLevelConfigurationPatch {
/**
* @return `assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level:
*
* ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )
*
* bigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30.
*
*/
private @Nullable Integer assuredConcurrencyShares;
/**
* @return `limitResponse` indicates what to do with requests that can not be executed right now
*
*/
private @Nullable LimitResponsePatch limitResponse;
private LimitedPriorityLevelConfigurationPatch() {}
/**
* @return `assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level:
*
* ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )
*
* bigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30.
*
*/
public Optional assuredConcurrencyShares() {
return Optional.ofNullable(this.assuredConcurrencyShares);
}
/**
* @return `limitResponse` indicates what to do with requests that can not be executed right now
*
*/
public Optional limitResponse() {
return Optional.ofNullable(this.limitResponse);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(LimitedPriorityLevelConfigurationPatch defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer assuredConcurrencyShares;
private @Nullable LimitResponsePatch limitResponse;
public Builder() {}
public Builder(LimitedPriorityLevelConfigurationPatch defaults) {
Objects.requireNonNull(defaults);
this.assuredConcurrencyShares = defaults.assuredConcurrencyShares;
this.limitResponse = defaults.limitResponse;
}
@CustomType.Setter
public Builder assuredConcurrencyShares(@Nullable Integer assuredConcurrencyShares) {
this.assuredConcurrencyShares = assuredConcurrencyShares;
return this;
}
@CustomType.Setter
public Builder limitResponse(@Nullable LimitResponsePatch limitResponse) {
this.limitResponse = limitResponse;
return this;
}
public LimitedPriorityLevelConfigurationPatch build() {
final var _resultValue = new LimitedPriorityLevelConfigurationPatch();
_resultValue.assuredConcurrencyShares = assuredConcurrencyShares;
_resultValue.limitResponse = limitResponse;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy