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

com.pulumi.kubernetes.autoscaling.v2beta2.inputs.HorizontalPodAutoscalerConditionArgs Maven / Gradle / Ivy

There is a newer version: 4.19.0-alpha.1730750641
Show newest version
// *** 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.autoscaling.v2beta2.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.
 * 
 */
public final class HorizontalPodAutoscalerConditionArgs extends com.pulumi.resources.ResourceArgs {

    public static final HorizontalPodAutoscalerConditionArgs Empty = new HorizontalPodAutoscalerConditionArgs();

    /**
     * lastTransitionTime is the last time the condition transitioned from one status to another
     * 
     */
    @Import(name="lastTransitionTime")
    private @Nullable Output lastTransitionTime;

    /**
     * @return lastTransitionTime is the last time the condition transitioned from one status to another
     * 
     */
    public Optional> lastTransitionTime() {
        return Optional.ofNullable(this.lastTransitionTime);
    }

    /**
     * message is a human-readable explanation containing details about the transition
     * 
     */
    @Import(name="message")
    private @Nullable Output message;

    /**
     * @return message is a human-readable explanation containing details about the transition
     * 
     */
    public Optional> message() {
        return Optional.ofNullable(this.message);
    }

    /**
     * reason is the reason for the condition's last transition.
     * 
     */
    @Import(name="reason")
    private @Nullable Output reason;

    /**
     * @return reason is the reason for the condition's last transition.
     * 
     */
    public Optional> reason() {
        return Optional.ofNullable(this.reason);
    }

    /**
     * status is the status of the condition (True, False, Unknown)
     * 
     */
    @Import(name="status", required=true)
    private Output status;

    /**
     * @return status is the status of the condition (True, False, Unknown)
     * 
     */
    public Output status() {
        return this.status;
    }

    /**
     * type describes the current condition
     * 
     */
    @Import(name="type", required=true)
    private Output type;

    /**
     * @return type describes the current condition
     * 
     */
    public Output type() {
        return this.type;
    }

    private HorizontalPodAutoscalerConditionArgs() {}

    private HorizontalPodAutoscalerConditionArgs(HorizontalPodAutoscalerConditionArgs $) {
        this.lastTransitionTime = $.lastTransitionTime;
        this.message = $.message;
        this.reason = $.reason;
        this.status = $.status;
        this.type = $.type;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(HorizontalPodAutoscalerConditionArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private HorizontalPodAutoscalerConditionArgs $;

        public Builder() {
            $ = new HorizontalPodAutoscalerConditionArgs();
        }

        public Builder(HorizontalPodAutoscalerConditionArgs defaults) {
            $ = new HorizontalPodAutoscalerConditionArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param lastTransitionTime lastTransitionTime is the last time the condition transitioned from one status to another
         * 
         * @return builder
         * 
         */
        public Builder lastTransitionTime(@Nullable Output lastTransitionTime) {
            $.lastTransitionTime = lastTransitionTime;
            return this;
        }

        /**
         * @param lastTransitionTime lastTransitionTime is the last time the condition transitioned from one status to another
         * 
         * @return builder
         * 
         */
        public Builder lastTransitionTime(String lastTransitionTime) {
            return lastTransitionTime(Output.of(lastTransitionTime));
        }

        /**
         * @param message message is a human-readable explanation containing details about the transition
         * 
         * @return builder
         * 
         */
        public Builder message(@Nullable Output message) {
            $.message = message;
            return this;
        }

        /**
         * @param message message is a human-readable explanation containing details about the transition
         * 
         * @return builder
         * 
         */
        public Builder message(String message) {
            return message(Output.of(message));
        }

        /**
         * @param reason reason is the reason for the condition's last transition.
         * 
         * @return builder
         * 
         */
        public Builder reason(@Nullable Output reason) {
            $.reason = reason;
            return this;
        }

        /**
         * @param reason reason is the reason for the condition's last transition.
         * 
         * @return builder
         * 
         */
        public Builder reason(String reason) {
            return reason(Output.of(reason));
        }

        /**
         * @param status status is the status of the condition (True, False, Unknown)
         * 
         * @return builder
         * 
         */
        public Builder status(Output status) {
            $.status = status;
            return this;
        }

        /**
         * @param status status is the status of the condition (True, False, Unknown)
         * 
         * @return builder
         * 
         */
        public Builder status(String status) {
            return status(Output.of(status));
        }

        /**
         * @param type type describes the current condition
         * 
         * @return builder
         * 
         */
        public Builder type(Output type) {
            $.type = type;
            return this;
        }

        /**
         * @param type type describes the current condition
         * 
         * @return builder
         * 
         */
        public Builder type(String type) {
            return type(Output.of(type));
        }

        public HorizontalPodAutoscalerConditionArgs build() {
            if ($.status == null) {
                throw new MissingRequiredPropertyException("HorizontalPodAutoscalerConditionArgs", "status");
            }
            if ($.type == null) {
                throw new MissingRequiredPropertyException("HorizontalPodAutoscalerConditionArgs", "type");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy