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

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

There is a newer version: 2.89.2
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.azurenative.streamanalytics.inputs;

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


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

    public static final AzureMachineLearningWebServiceInputColumnArgs Empty = new AzureMachineLearningWebServiceInputColumnArgs();

    /**
     * The (Azure Machine Learning supported) data type of the input 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 input 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 zero based index of the function parameter this input maps to.
     * 
     */
    @Import(name="mapTo")
    private @Nullable Output mapTo;

    /**
     * @return The zero based index of the function parameter this input maps to.
     * 
     */
    public Optional> mapTo() {
        return Optional.ofNullable(this.mapTo);
    }

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

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

    private AzureMachineLearningWebServiceInputColumnArgs() {}

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

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

    public static final class Builder {
        private AzureMachineLearningWebServiceInputColumnArgs $;

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

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

        /**
         * @param dataType The (Azure Machine Learning supported) data type of the input 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 input 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 mapTo The zero based index of the function parameter this input maps to.
         * 
         * @return builder
         * 
         */
        public Builder mapTo(@Nullable Output mapTo) {
            $.mapTo = mapTo;
            return this;
        }

        /**
         * @param mapTo The zero based index of the function parameter this input maps to.
         * 
         * @return builder
         * 
         */
        public Builder mapTo(Integer mapTo) {
            return mapTo(Output.of(mapTo));
        }

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

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

        public AzureMachineLearningWebServiceInputColumnArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy