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

com.pulumi.alicloud.eci.outputs.ContainerGroupInitContainer 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.ContainerGroupInitContainerEnvironmentVar;
import com.pulumi.alicloud.eci.outputs.ContainerGroupInitContainerPort;
import com.pulumi.alicloud.eci.outputs.ContainerGroupInitContainerSecurityContext;
import com.pulumi.alicloud.eci.outputs.ContainerGroupInitContainerVolumeMount;
import com.pulumi.core.annotations.CustomType;
import java.lang.Boolean;
import java.lang.Double;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class ContainerGroupInitContainer {
    /**
     * @return The arguments passed to the commands.
     * 
     */
    private @Nullable List args;
    /**
     * @return The commands run by the init container.
     * 
     */
    private @Nullable List commands;
    /**
     * @return The amount of CPU resources allocated to the container. Default value: `0`.
     * 
     */
    private @Nullable Double cpu;
    /**
     * @return The structure of environmentVars. See `environment_vars` below.
     * 
     */
    private @Nullable List environmentVars;
    /**
     * @return The number GPUs. Default value: `0`.
     * 
     */
    private @Nullable Integer gpu;
    /**
     * @return The image of the container.
     * 
     */
    private @Nullable String image;
    /**
     * @return The restart policy of the image. Default value: `IfNotPresent`. Valid values: `Always`, `IfNotPresent`, `Never`.
     * 
     */
    private @Nullable String imagePullPolicy;
    /**
     * @return The amount of memory resources allocated to the container. Default value: `0`.
     * 
     */
    private @Nullable Double memory;
    /**
     * @return The name of the mounted volume.
     * 
     */
    private @Nullable String name;
    /**
     * @return The structure of port. See `ports` below.
     * 
     */
    private @Nullable List ports;
    /**
     * @return Indicates whether the container passed the readiness probe.
     * 
     */
    private @Nullable Boolean ready;
    /**
     * @return The number of times that the container restarted.
     * 
     */
    private @Nullable Integer restartCount;
    /**
     * @return The security context of the container. See `security_context` below.
     * 
     */
    private @Nullable List securityContexts;
    /**
     * @return The structure of volumeMounts. See `volume_mounts` below.
     * 
     */
    private @Nullable List volumeMounts;
    /**
     * @return The working directory of the container.
     * 
     */
    private @Nullable String workingDir;

    private ContainerGroupInitContainer() {}
    /**
     * @return The arguments passed to the commands.
     * 
     */
    public List args() {
        return this.args == null ? List.of() : this.args;
    }
    /**
     * @return The commands run by the init container.
     * 
     */
    public List commands() {
        return this.commands == null ? List.of() : this.commands;
    }
    /**
     * @return The amount of CPU resources allocated to the container. Default value: `0`.
     * 
     */
    public Optional cpu() {
        return Optional.ofNullable(this.cpu);
    }
    /**
     * @return The structure of environmentVars. See `environment_vars` below.
     * 
     */
    public List environmentVars() {
        return this.environmentVars == null ? List.of() : this.environmentVars;
    }
    /**
     * @return The number GPUs. Default value: `0`.
     * 
     */
    public Optional gpu() {
        return Optional.ofNullable(this.gpu);
    }
    /**
     * @return The image of the container.
     * 
     */
    public Optional image() {
        return Optional.ofNullable(this.image);
    }
    /**
     * @return The restart policy of the image. Default value: `IfNotPresent`. Valid values: `Always`, `IfNotPresent`, `Never`.
     * 
     */
    public Optional imagePullPolicy() {
        return Optional.ofNullable(this.imagePullPolicy);
    }
    /**
     * @return The amount of memory resources allocated to the container. Default value: `0`.
     * 
     */
    public Optional memory() {
        return Optional.ofNullable(this.memory);
    }
    /**
     * @return The name of the mounted volume.
     * 
     */
    public Optional name() {
        return Optional.ofNullable(this.name);
    }
    /**
     * @return The structure of port. See `ports` below.
     * 
     */
    public List ports() {
        return this.ports == null ? List.of() : this.ports;
    }
    /**
     * @return Indicates whether the container passed the readiness probe.
     * 
     */
    public Optional ready() {
        return Optional.ofNullable(this.ready);
    }
    /**
     * @return The number of times that the container restarted.
     * 
     */
    public Optional restartCount() {
        return Optional.ofNullable(this.restartCount);
    }
    /**
     * @return The security context of the container. See `security_context` below.
     * 
     */
    public List securityContexts() {
        return this.securityContexts == null ? List.of() : this.securityContexts;
    }
    /**
     * @return The structure of volumeMounts. See `volume_mounts` below.
     * 
     */
    public List volumeMounts() {
        return this.volumeMounts == null ? List.of() : this.volumeMounts;
    }
    /**
     * @return The working directory of the container.
     * 
     */
    public Optional workingDir() {
        return Optional.ofNullable(this.workingDir);
    }

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

    public static Builder builder(ContainerGroupInitContainer defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable List args;
        private @Nullable List commands;
        private @Nullable Double cpu;
        private @Nullable List environmentVars;
        private @Nullable Integer gpu;
        private @Nullable String image;
        private @Nullable String imagePullPolicy;
        private @Nullable Double memory;
        private @Nullable String name;
        private @Nullable List ports;
        private @Nullable Boolean ready;
        private @Nullable Integer restartCount;
        private @Nullable List securityContexts;
        private @Nullable List volumeMounts;
        private @Nullable String workingDir;
        public Builder() {}
        public Builder(ContainerGroupInitContainer defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.args = defaults.args;
    	      this.commands = defaults.commands;
    	      this.cpu = defaults.cpu;
    	      this.environmentVars = defaults.environmentVars;
    	      this.gpu = defaults.gpu;
    	      this.image = defaults.image;
    	      this.imagePullPolicy = defaults.imagePullPolicy;
    	      this.memory = defaults.memory;
    	      this.name = defaults.name;
    	      this.ports = defaults.ports;
    	      this.ready = defaults.ready;
    	      this.restartCount = defaults.restartCount;
    	      this.securityContexts = defaults.securityContexts;
    	      this.volumeMounts = defaults.volumeMounts;
    	      this.workingDir = defaults.workingDir;
        }

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

            this.args = args;
            return this;
        }
        public Builder args(String... args) {
            return args(List.of(args));
        }
        @CustomType.Setter
        public Builder commands(@Nullable List commands) {

            this.commands = commands;
            return this;
        }
        public Builder commands(String... commands) {
            return commands(List.of(commands));
        }
        @CustomType.Setter
        public Builder cpu(@Nullable Double cpu) {

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

            this.environmentVars = environmentVars;
            return this;
        }
        public Builder environmentVars(ContainerGroupInitContainerEnvironmentVar... environmentVars) {
            return environmentVars(List.of(environmentVars));
        }
        @CustomType.Setter
        public Builder gpu(@Nullable Integer gpu) {

            this.gpu = gpu;
            return this;
        }
        @CustomType.Setter
        public Builder image(@Nullable String image) {

            this.image = image;
            return this;
        }
        @CustomType.Setter
        public Builder imagePullPolicy(@Nullable String imagePullPolicy) {

            this.imagePullPolicy = imagePullPolicy;
            return this;
        }
        @CustomType.Setter
        public Builder memory(@Nullable Double memory) {

            this.memory = memory;
            return this;
        }
        @CustomType.Setter
        public Builder name(@Nullable String name) {

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

            this.ports = ports;
            return this;
        }
        public Builder ports(ContainerGroupInitContainerPort... ports) {
            return ports(List.of(ports));
        }
        @CustomType.Setter
        public Builder ready(@Nullable Boolean ready) {

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

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

            this.securityContexts = securityContexts;
            return this;
        }
        public Builder securityContexts(ContainerGroupInitContainerSecurityContext... securityContexts) {
            return securityContexts(List.of(securityContexts));
        }
        @CustomType.Setter
        public Builder volumeMounts(@Nullable List volumeMounts) {

            this.volumeMounts = volumeMounts;
            return this;
        }
        public Builder volumeMounts(ContainerGroupInitContainerVolumeMount... volumeMounts) {
            return volumeMounts(List.of(volumeMounts));
        }
        @CustomType.Setter
        public Builder workingDir(@Nullable String workingDir) {

            this.workingDir = workingDir;
            return this;
        }
        public ContainerGroupInitContainer build() {
            final var _resultValue = new ContainerGroupInitContainer();
            _resultValue.args = args;
            _resultValue.commands = commands;
            _resultValue.cpu = cpu;
            _resultValue.environmentVars = environmentVars;
            _resultValue.gpu = gpu;
            _resultValue.image = image;
            _resultValue.imagePullPolicy = imagePullPolicy;
            _resultValue.memory = memory;
            _resultValue.name = name;
            _resultValue.ports = ports;
            _resultValue.ready = ready;
            _resultValue.restartCount = restartCount;
            _resultValue.securityContexts = securityContexts;
            _resultValue.volumeMounts = volumeMounts;
            _resultValue.workingDir = workingDir;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy