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

com.pulumi.docker.ServiceArgs Maven / Gradle / Ivy

There is a newer version: 4.7.0-alpha.1705607229+34a07055
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.docker;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.docker.inputs.ServiceAuthArgs;
import com.pulumi.docker.inputs.ServiceConvergeConfigArgs;
import com.pulumi.docker.inputs.ServiceEndpointSpecArgs;
import com.pulumi.docker.inputs.ServiceLabelArgs;
import com.pulumi.docker.inputs.ServiceModeArgs;
import com.pulumi.docker.inputs.ServiceRollbackConfigArgs;
import com.pulumi.docker.inputs.ServiceTaskSpecArgs;
import com.pulumi.docker.inputs.ServiceUpdateConfigArgs;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class ServiceArgs extends com.pulumi.resources.ResourceArgs {

    public static final ServiceArgs Empty = new ServiceArgs();

    /**
     * Configuration for the authentication for pulling the images of the service
     * 
     */
    @Import(name="auth")
    private @Nullable Output auth;

    /**
     * @return Configuration for the authentication for pulling the images of the service
     * 
     */
    public Optional> auth() {
        return Optional.ofNullable(this.auth);
    }

    /**
     * A configuration to ensure that a service converges aka reaches the desired that of all task up and running
     * 
     */
    @Import(name="convergeConfig")
    private @Nullable Output convergeConfig;

    /**
     * @return A configuration to ensure that a service converges aka reaches the desired that of all task up and running
     * 
     */
    public Optional> convergeConfig() {
        return Optional.ofNullable(this.convergeConfig);
    }

    /**
     * Properties that can be configured to access and load balance a service
     * 
     */
    @Import(name="endpointSpec")
    private @Nullable Output endpointSpec;

    /**
     * @return Properties that can be configured to access and load balance a service
     * 
     */
    public Optional> endpointSpec() {
        return Optional.ofNullable(this.endpointSpec);
    }

    /**
     * User-defined key/value metadata
     * 
     */
    @Import(name="labels")
    private @Nullable Output> labels;

    /**
     * @return User-defined key/value metadata
     * 
     */
    public Optional>> labels() {
        return Optional.ofNullable(this.labels);
    }

    /**
     * Scheduling mode for the service
     * 
     */
    @Import(name="mode")
    private @Nullable Output mode;

    /**
     * @return Scheduling mode for the service
     * 
     */
    public Optional> mode() {
        return Optional.ofNullable(this.mode);
    }

    /**
     * Name of the service
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Name of the service
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * Specification for the rollback strategy of the service
     * 
     */
    @Import(name="rollbackConfig")
    private @Nullable Output rollbackConfig;

    /**
     * @return Specification for the rollback strategy of the service
     * 
     */
    public Optional> rollbackConfig() {
        return Optional.ofNullable(this.rollbackConfig);
    }

    /**
     * User modifiable task configuration
     * 
     */
    @Import(name="taskSpec", required=true)
    private Output taskSpec;

    /**
     * @return User modifiable task configuration
     * 
     */
    public Output taskSpec() {
        return this.taskSpec;
    }

    /**
     * Specification for the update strategy of the service
     * 
     */
    @Import(name="updateConfig")
    private @Nullable Output updateConfig;

    /**
     * @return Specification for the update strategy of the service
     * 
     */
    public Optional> updateConfig() {
        return Optional.ofNullable(this.updateConfig);
    }

    private ServiceArgs() {}

    private ServiceArgs(ServiceArgs $) {
        this.auth = $.auth;
        this.convergeConfig = $.convergeConfig;
        this.endpointSpec = $.endpointSpec;
        this.labels = $.labels;
        this.mode = $.mode;
        this.name = $.name;
        this.rollbackConfig = $.rollbackConfig;
        this.taskSpec = $.taskSpec;
        this.updateConfig = $.updateConfig;
    }

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

    public static final class Builder {
        private ServiceArgs $;

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

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

        /**
         * @param auth Configuration for the authentication for pulling the images of the service
         * 
         * @return builder
         * 
         */
        public Builder auth(@Nullable Output auth) {
            $.auth = auth;
            return this;
        }

        /**
         * @param auth Configuration for the authentication for pulling the images of the service
         * 
         * @return builder
         * 
         */
        public Builder auth(ServiceAuthArgs auth) {
            return auth(Output.of(auth));
        }

        /**
         * @param convergeConfig A configuration to ensure that a service converges aka reaches the desired that of all task up and running
         * 
         * @return builder
         * 
         */
        public Builder convergeConfig(@Nullable Output convergeConfig) {
            $.convergeConfig = convergeConfig;
            return this;
        }

        /**
         * @param convergeConfig A configuration to ensure that a service converges aka reaches the desired that of all task up and running
         * 
         * @return builder
         * 
         */
        public Builder convergeConfig(ServiceConvergeConfigArgs convergeConfig) {
            return convergeConfig(Output.of(convergeConfig));
        }

        /**
         * @param endpointSpec Properties that can be configured to access and load balance a service
         * 
         * @return builder
         * 
         */
        public Builder endpointSpec(@Nullable Output endpointSpec) {
            $.endpointSpec = endpointSpec;
            return this;
        }

        /**
         * @param endpointSpec Properties that can be configured to access and load balance a service
         * 
         * @return builder
         * 
         */
        public Builder endpointSpec(ServiceEndpointSpecArgs endpointSpec) {
            return endpointSpec(Output.of(endpointSpec));
        }

        /**
         * @param labels User-defined key/value metadata
         * 
         * @return builder
         * 
         */
        public Builder labels(@Nullable Output> labels) {
            $.labels = labels;
            return this;
        }

        /**
         * @param labels User-defined key/value metadata
         * 
         * @return builder
         * 
         */
        public Builder labels(List labels) {
            return labels(Output.of(labels));
        }

        /**
         * @param labels User-defined key/value metadata
         * 
         * @return builder
         * 
         */
        public Builder labels(ServiceLabelArgs... labels) {
            return labels(List.of(labels));
        }

        /**
         * @param mode Scheduling mode for the service
         * 
         * @return builder
         * 
         */
        public Builder mode(@Nullable Output mode) {
            $.mode = mode;
            return this;
        }

        /**
         * @param mode Scheduling mode for the service
         * 
         * @return builder
         * 
         */
        public Builder mode(ServiceModeArgs mode) {
            return mode(Output.of(mode));
        }

        /**
         * @param name Name of the service
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Name of the service
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param rollbackConfig Specification for the rollback strategy of the service
         * 
         * @return builder
         * 
         */
        public Builder rollbackConfig(@Nullable Output rollbackConfig) {
            $.rollbackConfig = rollbackConfig;
            return this;
        }

        /**
         * @param rollbackConfig Specification for the rollback strategy of the service
         * 
         * @return builder
         * 
         */
        public Builder rollbackConfig(ServiceRollbackConfigArgs rollbackConfig) {
            return rollbackConfig(Output.of(rollbackConfig));
        }

        /**
         * @param taskSpec User modifiable task configuration
         * 
         * @return builder
         * 
         */
        public Builder taskSpec(Output taskSpec) {
            $.taskSpec = taskSpec;
            return this;
        }

        /**
         * @param taskSpec User modifiable task configuration
         * 
         * @return builder
         * 
         */
        public Builder taskSpec(ServiceTaskSpecArgs taskSpec) {
            return taskSpec(Output.of(taskSpec));
        }

        /**
         * @param updateConfig Specification for the update strategy of the service
         * 
         * @return builder
         * 
         */
        public Builder updateConfig(@Nullable Output updateConfig) {
            $.updateConfig = updateConfig;
            return this;
        }

        /**
         * @param updateConfig Specification for the update strategy of the service
         * 
         * @return builder
         * 
         */
        public Builder updateConfig(ServiceUpdateConfigArgs updateConfig) {
            return updateConfig(Output.of(updateConfig));
        }

        public ServiceArgs build() {
            if ($.taskSpec == null) {
                throw new MissingRequiredPropertyException("ServiceArgs", "taskSpec");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy