com.pulumi.kubernetes.policy.v1.inputs.PodDisruptionBudgetStatusArgs 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.policy.v1.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import com.pulumi.kubernetes.meta.v1.inputs.ConditionArgs;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.
*
*/
public final class PodDisruptionBudgetStatusArgs extends com.pulumi.resources.ResourceArgs {
public static final PodDisruptionBudgetStatusArgs Empty = new PodDisruptionBudgetStatusArgs();
/**
* Conditions contain conditions for PDB. The disruption controller sets the DisruptionAllowed condition. The following are known values for the reason field (additional reasons could be added in the future): - SyncFailed: The controller encountered an error and wasn't able to compute
* the number of allowed disruptions. Therefore no disruptions are
* allowed and the status of the condition will be False.
* - InsufficientPods: The number of pods are either at or below the number
* required by the PodDisruptionBudget. No disruptions are
* allowed and the status of the condition will be False.
* - SufficientPods: There are more pods than required by the PodDisruptionBudget.
* The condition will be True, and the number of allowed
* disruptions are provided by the disruptionsAllowed property.
*
*/
@Import(name="conditions")
private @Nullable Output> conditions;
/**
* @return Conditions contain conditions for PDB. The disruption controller sets the DisruptionAllowed condition. The following are known values for the reason field (additional reasons could be added in the future): - SyncFailed: The controller encountered an error and wasn't able to compute
* the number of allowed disruptions. Therefore no disruptions are
* allowed and the status of the condition will be False.
* - InsufficientPods: The number of pods are either at or below the number
* required by the PodDisruptionBudget. No disruptions are
* allowed and the status of the condition will be False.
* - SufficientPods: There are more pods than required by the PodDisruptionBudget.
* The condition will be True, and the number of allowed
* disruptions are provided by the disruptionsAllowed property.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy