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

com.pulumi.docker.enums.BuilderVersion 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.enums;

import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;

    /**
     * The version of the Docker builder.
     * 
     */
    @EnumType
    public enum BuilderVersion {
        /**
         * The first generation builder for Docker Daemon
         * 
         */
        BuilderV1("BuilderV1"),
        /**
         * The builder based on moby/buildkit project
         * 
         */
        BuilderBuildKit("BuilderBuildKit");

        private final String value;

        BuilderVersion(String value) {
            this.value = Objects.requireNonNull(value);
        }

        @EnumType.Converter
        public String getValue() {
            return this.value;
        }

        @Override
        public String toString() {
            return new StringJoiner(", ", "BuilderVersion[", "]")
                .add("value='" + this.value + "'")
                .toString();
        }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy