
com.pulumi.azurenative.streamanalytics.outputs.AzureMachineLearningWebServiceInputColumnResponse 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.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class AzureMachineLearningWebServiceInputColumnResponse {
/**
* @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 .
*
*/
private @Nullable String dataType;
/**
* @return The zero based index of the function parameter this input maps to.
*
*/
private @Nullable Integer mapTo;
/**
* @return The name of the input column.
*
*/
private @Nullable String name;
private AzureMachineLearningWebServiceInputColumnResponse() {}
/**
* @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);
}
/**
* @return The zero based index of the function parameter this input maps to.
*
*/
public Optional mapTo() {
return Optional.ofNullable(this.mapTo);
}
/**
* @return The name of the input column.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AzureMachineLearningWebServiceInputColumnResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String dataType;
private @Nullable Integer mapTo;
private @Nullable String name;
public Builder() {}
public Builder(AzureMachineLearningWebServiceInputColumnResponse defaults) {
Objects.requireNonNull(defaults);
this.dataType = defaults.dataType;
this.mapTo = defaults.mapTo;
this.name = defaults.name;
}
@CustomType.Setter
public Builder dataType(@Nullable String dataType) {
this.dataType = dataType;
return this;
}
@CustomType.Setter
public Builder mapTo(@Nullable Integer mapTo) {
this.mapTo = mapTo;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
public AzureMachineLearningWebServiceInputColumnResponse build() {
final var _resultValue = new AzureMachineLearningWebServiceInputColumnResponse();
_resultValue.dataType = dataType;
_resultValue.mapTo = mapTo;
_resultValue.name = name;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy