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

com.pulumi.azurenative.streamanalytics.inputs.AzureMachineLearningWebServiceOutputColumnArgs Maven / Gradle / Ivy

// *** 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.azurenative.streamanalytics.inputs;

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


/**
 * Describes an output column for the Azure Machine Learning web service endpoint.
 * 
 */
public final class AzureMachineLearningWebServiceOutputColumnArgs extends com.pulumi.resources.ResourceArgs {

    public static final AzureMachineLearningWebServiceOutputColumnArgs Empty = new AzureMachineLearningWebServiceOutputColumnArgs();

    /**
     * The (Azure Machine Learning supported) data type of the output column. A list of valid  Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
     * 
     */
    @Import(name="dataType")
    private @Nullable Output dataType;

    /**
     * @return The (Azure Machine Learning supported) data type of the output column. A list of valid  Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
     * 
     */
    public Optional> dataType() {
        return Optional.ofNullable(this.dataType);
    }

    /**
     * The name of the output column.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return The name of the output column.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    private AzureMachineLearningWebServiceOutputColumnArgs() {}

    private AzureMachineLearningWebServiceOutputColumnArgs(AzureMachineLearningWebServiceOutputColumnArgs $) {
        this.dataType = $.dataType;
        this.name = $.name;
    }

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

    public static final class Builder {
        private AzureMachineLearningWebServiceOutputColumnArgs $;

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

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

        /**
         * @param dataType The (Azure Machine Learning supported) data type of the output column. A list of valid  Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
         * 
         * @return builder
         * 
         */
        public Builder dataType(@Nullable Output dataType) {
            $.dataType = dataType;
            return this;
        }

        /**
         * @param dataType The (Azure Machine Learning supported) data type of the output column. A list of valid  Azure Machine Learning data types are described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx .
         * 
         * @return builder
         * 
         */
        public Builder dataType(String dataType) {
            return dataType(Output.of(dataType));
        }

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

        /**
         * @param name The name of the output column.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        public AzureMachineLearningWebServiceOutputColumnArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy