
com.pulumi.azurenative.machinelearningservices.outputs.MLTableJobOutputResponse 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.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 MLTableJobOutputResponse {
/**
* @return Description for the output.
*
*/
private @Nullable String description;
/**
* @return Enum to determine the Job Output Type.
* Expected value is 'mltable'.
*
*/
private String jobOutputType;
/**
* @return Output Asset Delivery Mode.
*
*/
private @Nullable String mode;
/**
* @return Output Asset URI.
*
*/
private @Nullable String uri;
private MLTableJobOutputResponse() {}
/**
* @return Description for the output.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return Enum to determine the Job Output Type.
* Expected value is 'mltable'.
*
*/
public String jobOutputType() {
return this.jobOutputType;
}
/**
* @return Output Asset Delivery Mode.
*
*/
public Optional mode() {
return Optional.ofNullable(this.mode);
}
/**
* @return Output Asset URI.
*
*/
public Optional uri() {
return Optional.ofNullable(this.uri);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(MLTableJobOutputResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String description;
private String jobOutputType;
private @Nullable String mode;
private @Nullable String uri;
public Builder() {}
public Builder(MLTableJobOutputResponse defaults) {
Objects.requireNonNull(defaults);
this.description = defaults.description;
this.jobOutputType = defaults.jobOutputType;
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 jobOutputType(String jobOutputType) {
if (jobOutputType == null) {
throw new MissingRequiredPropertyException("MLTableJobOutputResponse", "jobOutputType");
}
this.jobOutputType = jobOutputType;
return this;
}
@CustomType.Setter
public Builder mode(@Nullable String mode) {
this.mode = mode;
return this;
}
@CustomType.Setter
public Builder uri(@Nullable String uri) {
this.uri = uri;
return this;
}
public MLTableJobOutputResponse build() {
final var _resultValue = new MLTableJobOutputResponse();
_resultValue.description = description;
_resultValue.jobOutputType = jobOutputType;
_resultValue.mode = mode;
_resultValue.uri = uri;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy