
com.pulumi.azurenative.machinelearningservices.outputs.DeltaModelCurrentStateResponse 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 java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class DeltaModelCurrentStateResponse {
/**
* @return Gets or sets Count of instances with model.
*
*/
private @Nullable Integer count;
/**
* @return Gets or sets sample of instances with model.
*
*/
private @Nullable String sampleInstanceID;
/**
* @return Gets or sets status.
*
*/
private @Nullable String status;
private DeltaModelCurrentStateResponse() {}
/**
* @return Gets or sets Count of instances with model.
*
*/
public Optional count() {
return Optional.ofNullable(this.count);
}
/**
* @return Gets or sets sample of instances with model.
*
*/
public Optional sampleInstanceID() {
return Optional.ofNullable(this.sampleInstanceID);
}
/**
* @return Gets or sets status.
*
*/
public Optional status() {
return Optional.ofNullable(this.status);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DeltaModelCurrentStateResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer count;
private @Nullable String sampleInstanceID;
private @Nullable String status;
public Builder() {}
public Builder(DeltaModelCurrentStateResponse defaults) {
Objects.requireNonNull(defaults);
this.count = defaults.count;
this.sampleInstanceID = defaults.sampleInstanceID;
this.status = defaults.status;
}
@CustomType.Setter
public Builder count(@Nullable Integer count) {
this.count = count;
return this;
}
@CustomType.Setter
public Builder sampleInstanceID(@Nullable String sampleInstanceID) {
this.sampleInstanceID = sampleInstanceID;
return this;
}
@CustomType.Setter
public Builder status(@Nullable String status) {
this.status = status;
return this;
}
public DeltaModelCurrentStateResponse build() {
final var _resultValue = new DeltaModelCurrentStateResponse();
_resultValue.count = count;
_resultValue.sampleInstanceID = sampleInstanceID;
_resultValue.status = status;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy