
com.pulumi.azurenative.streamanalytics.outputs.FunctionInputResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class FunctionInputResponse {
/**
* @return The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
*
*/
private @Nullable String dataType;
/**
* @return A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
*
*/
private @Nullable Boolean isConfigurationParameter;
private FunctionInputResponse() {}
/**
* @return The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx
*
*/
public Optional dataType() {
return Optional.ofNullable(this.dataType);
}
/**
* @return A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.
*
*/
public Optional isConfigurationParameter() {
return Optional.ofNullable(this.isConfigurationParameter);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FunctionInputResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String dataType;
private @Nullable Boolean isConfigurationParameter;
public Builder() {}
public Builder(FunctionInputResponse defaults) {
Objects.requireNonNull(defaults);
this.dataType = defaults.dataType;
this.isConfigurationParameter = defaults.isConfigurationParameter;
}
@CustomType.Setter
public Builder dataType(@Nullable String dataType) {
this.dataType = dataType;
return this;
}
@CustomType.Setter
public Builder isConfigurationParameter(@Nullable Boolean isConfigurationParameter) {
this.isConfigurationParameter = isConfigurationParameter;
return this;
}
public FunctionInputResponse build() {
final var _resultValue = new FunctionInputResponse();
_resultValue.dataType = dataType;
_resultValue.isConfigurationParameter = isConfigurationParameter;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy