![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.streamanalytics.outputs.FunctionJavaScriptUDFInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.streamanalytics.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class FunctionJavaScriptUDFInput {
/**
* @return Is this input parameter a configuration parameter? Defaults to `false`.
*
*/
private @Nullable Boolean configurationParameter;
/**
* @return The Data Type for the Input Argument of this JavaScript Function. Possible values include `array`, `any`, `bigint`, `datetime`, `float`, `nvarchar(max)` and `record`.
*
*/
private String type;
private FunctionJavaScriptUDFInput() {}
/**
* @return Is this input parameter a configuration parameter? Defaults to `false`.
*
*/
public Optional configurationParameter() {
return Optional.ofNullable(this.configurationParameter);
}
/**
* @return The Data Type for the Input Argument of this JavaScript Function. Possible values include `array`, `any`, `bigint`, `datetime`, `float`, `nvarchar(max)` and `record`.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FunctionJavaScriptUDFInput defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Boolean configurationParameter;
private String type;
public Builder() {}
public Builder(FunctionJavaScriptUDFInput defaults) {
Objects.requireNonNull(defaults);
this.configurationParameter = defaults.configurationParameter;
this.type = defaults.type;
}
@CustomType.Setter
public Builder configurationParameter(@Nullable Boolean configurationParameter) {
this.configurationParameter = configurationParameter;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("FunctionJavaScriptUDFInput", "type");
}
this.type = type;
return this;
}
public FunctionJavaScriptUDFInput build() {
final var _resultValue = new FunctionJavaScriptUDFInput();
_resultValue.configurationParameter = configurationParameter;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy