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

com.pulumi.alicloud.eci.outputs.ContainerGroupContainerReadinessProbe Maven / Gradle / Ivy

There is a newer version: 3.63.0-alpha.1727424957
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.alicloud.eci.outputs;

import com.pulumi.alicloud.eci.outputs.ContainerGroupContainerReadinessProbeExec;
import com.pulumi.alicloud.eci.outputs.ContainerGroupContainerReadinessProbeHttpGet;
import com.pulumi.alicloud.eci.outputs.ContainerGroupContainerReadinessProbeTcpSocket;
import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class ContainerGroupContainerReadinessProbe {
    /**
     * @return Health check using command line method. See `exec` below.
     * 
     */
    private @Nullable List execs;
    /**
     * @return Threshold for the number of checks that are determined to have failed since the last successful check (must be consecutive failures), default is 3.
     * 
     */
    private @Nullable Integer failureThreshold;
    /**
     * @return Health check using HTTP request method. See `http_get` below.
     * 
     * > **NOTE:** When you configure `readiness_probe`, you can select only one of the `exec`, `tcp_socket`, `http_get`.
     * 
     */
    private @Nullable List httpGets;
    /**
     * @return Check the time to start execution, calculated from the completion of container startup.
     * 
     */
    private @Nullable Integer initialDelaySeconds;
    /**
     * @return Buffer time for the program to handle operations before closing.
     * 
     */
    private @Nullable Integer periodSeconds;
    /**
     * @return The check count threshold for re-identifying successful checks since the last failed check (must be consecutive successes), default is 1. Current must be 1.
     * 
     */
    private @Nullable Integer successThreshold;
    /**
     * @return Health check using TCP socket method. See `tcp_socket` below.
     * 
     */
    private @Nullable List tcpSockets;
    /**
     * @return Check the timeout, the default is 1 second, the minimum is 1 second.
     * 
     */
    private @Nullable Integer timeoutSeconds;

    private ContainerGroupContainerReadinessProbe() {}
    /**
     * @return Health check using command line method. See `exec` below.
     * 
     */
    public List execs() {
        return this.execs == null ? List.of() : this.execs;
    }
    /**
     * @return Threshold for the number of checks that are determined to have failed since the last successful check (must be consecutive failures), default is 3.
     * 
     */
    public Optional failureThreshold() {
        return Optional.ofNullable(this.failureThreshold);
    }
    /**
     * @return Health check using HTTP request method. See `http_get` below.
     * 
     * > **NOTE:** When you configure `readiness_probe`, you can select only one of the `exec`, `tcp_socket`, `http_get`.
     * 
     */
    public List httpGets() {
        return this.httpGets == null ? List.of() : this.httpGets;
    }
    /**
     * @return Check the time to start execution, calculated from the completion of container startup.
     * 
     */
    public Optional initialDelaySeconds() {
        return Optional.ofNullable(this.initialDelaySeconds);
    }
    /**
     * @return Buffer time for the program to handle operations before closing.
     * 
     */
    public Optional periodSeconds() {
        return Optional.ofNullable(this.periodSeconds);
    }
    /**
     * @return The check count threshold for re-identifying successful checks since the last failed check (must be consecutive successes), default is 1. Current must be 1.
     * 
     */
    public Optional successThreshold() {
        return Optional.ofNullable(this.successThreshold);
    }
    /**
     * @return Health check using TCP socket method. See `tcp_socket` below.
     * 
     */
    public List tcpSockets() {
        return this.tcpSockets == null ? List.of() : this.tcpSockets;
    }
    /**
     * @return Check the timeout, the default is 1 second, the minimum is 1 second.
     * 
     */
    public Optional timeoutSeconds() {
        return Optional.ofNullable(this.timeoutSeconds);
    }

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

    public static Builder builder(ContainerGroupContainerReadinessProbe defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable List execs;
        private @Nullable Integer failureThreshold;
        private @Nullable List httpGets;
        private @Nullable Integer initialDelaySeconds;
        private @Nullable Integer periodSeconds;
        private @Nullable Integer successThreshold;
        private @Nullable List tcpSockets;
        private @Nullable Integer timeoutSeconds;
        public Builder() {}
        public Builder(ContainerGroupContainerReadinessProbe defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.execs = defaults.execs;
    	      this.failureThreshold = defaults.failureThreshold;
    	      this.httpGets = defaults.httpGets;
    	      this.initialDelaySeconds = defaults.initialDelaySeconds;
    	      this.periodSeconds = defaults.periodSeconds;
    	      this.successThreshold = defaults.successThreshold;
    	      this.tcpSockets = defaults.tcpSockets;
    	      this.timeoutSeconds = defaults.timeoutSeconds;
        }

        @CustomType.Setter
        public Builder execs(@Nullable List execs) {

            this.execs = execs;
            return this;
        }
        public Builder execs(ContainerGroupContainerReadinessProbeExec... execs) {
            return execs(List.of(execs));
        }
        @CustomType.Setter
        public Builder failureThreshold(@Nullable Integer failureThreshold) {

            this.failureThreshold = failureThreshold;
            return this;
        }
        @CustomType.Setter
        public Builder httpGets(@Nullable List httpGets) {

            this.httpGets = httpGets;
            return this;
        }
        public Builder httpGets(ContainerGroupContainerReadinessProbeHttpGet... httpGets) {
            return httpGets(List.of(httpGets));
        }
        @CustomType.Setter
        public Builder initialDelaySeconds(@Nullable Integer initialDelaySeconds) {

            this.initialDelaySeconds = initialDelaySeconds;
            return this;
        }
        @CustomType.Setter
        public Builder periodSeconds(@Nullable Integer periodSeconds) {

            this.periodSeconds = periodSeconds;
            return this;
        }
        @CustomType.Setter
        public Builder successThreshold(@Nullable Integer successThreshold) {

            this.successThreshold = successThreshold;
            return this;
        }
        @CustomType.Setter
        public Builder tcpSockets(@Nullable List tcpSockets) {

            this.tcpSockets = tcpSockets;
            return this;
        }
        public Builder tcpSockets(ContainerGroupContainerReadinessProbeTcpSocket... tcpSockets) {
            return tcpSockets(List.of(tcpSockets));
        }
        @CustomType.Setter
        public Builder timeoutSeconds(@Nullable Integer timeoutSeconds) {

            this.timeoutSeconds = timeoutSeconds;
            return this;
        }
        public ContainerGroupContainerReadinessProbe build() {
            final var _resultValue = new ContainerGroupContainerReadinessProbe();
            _resultValue.execs = execs;
            _resultValue.failureThreshold = failureThreshold;
            _resultValue.httpGets = httpGets;
            _resultValue.initialDelaySeconds = initialDelaySeconds;
            _resultValue.periodSeconds = periodSeconds;
            _resultValue.successThreshold = successThreshold;
            _resultValue.tcpSockets = tcpSockets;
            _resultValue.timeoutSeconds = timeoutSeconds;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy