
com.pulumi.azurenative.machinelearningservices.outputs.MLFlowModelJobInputResponse 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.machinelearningservices.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class MLFlowModelJobInputResponse {
/**
* @return Description for the input.
*
*/
private @Nullable String description;
/**
* @return Enum to determine the Job Input Type.
* Expected value is 'mlflow_model'.
*
*/
private String jobInputType;
/**
* @return Input Asset Delivery Mode.
*
*/
private @Nullable String mode;
/**
* @return [Required] Input Asset URI.
*
*/
private String uri;
private MLFlowModelJobInputResponse() {}
/**
* @return Description for the input.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return Enum to determine the Job Input Type.
* Expected value is 'mlflow_model'.
*
*/
public String jobInputType() {
return this.jobInputType;
}
/**
* @return Input Asset Delivery Mode.
*
*/
public Optional mode() {
return Optional.ofNullable(this.mode);
}
/**
* @return [Required] Input Asset URI.
*
*/
public String uri() {
return this.uri;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(MLFlowModelJobInputResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String description;
private String jobInputType;
private @Nullable String mode;
private String uri;
public Builder() {}
public Builder(MLFlowModelJobInputResponse defaults) {
Objects.requireNonNull(defaults);
this.description = defaults.description;
this.jobInputType = defaults.jobInputType;
this.mode = defaults.mode;
this.uri = defaults.uri;
}
@CustomType.Setter
public Builder description(@Nullable String description) {
this.description = description;
return this;
}
@CustomType.Setter
public Builder jobInputType(String jobInputType) {
if (jobInputType == null) {
throw new MissingRequiredPropertyException("MLFlowModelJobInputResponse", "jobInputType");
}
this.jobInputType = jobInputType;
return this;
}
@CustomType.Setter
public Builder mode(@Nullable String mode) {
this.mode = mode;
return this;
}
@CustomType.Setter
public Builder uri(String uri) {
if (uri == null) {
throw new MissingRequiredPropertyException("MLFlowModelJobInputResponse", "uri");
}
this.uri = uri;
return this;
}
public MLFlowModelJobInputResponse build() {
final var _resultValue = new MLFlowModelJobInputResponse();
_resultValue.description = description;
_resultValue.jobInputType = jobInputType;
_resultValue.mode = mode;
_resultValue.uri = uri;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy