
com.pulumi.azurenative.machinelearningservices.outputs.LabelingDataConfigurationResponse 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 java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class LabelingDataConfigurationResponse {
/**
* @return Resource Id of the data asset to perform labeling.
*
*/
private @Nullable String dataId;
/**
* @return Indicates whether to enable incremental data refresh.
*
*/
private @Nullable String incrementalDataRefresh;
private LabelingDataConfigurationResponse() {}
/**
* @return Resource Id of the data asset to perform labeling.
*
*/
public Optional dataId() {
return Optional.ofNullable(this.dataId);
}
/**
* @return Indicates whether to enable incremental data refresh.
*
*/
public Optional incrementalDataRefresh() {
return Optional.ofNullable(this.incrementalDataRefresh);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(LabelingDataConfigurationResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String dataId;
private @Nullable String incrementalDataRefresh;
public Builder() {}
public Builder(LabelingDataConfigurationResponse defaults) {
Objects.requireNonNull(defaults);
this.dataId = defaults.dataId;
this.incrementalDataRefresh = defaults.incrementalDataRefresh;
}
@CustomType.Setter
public Builder dataId(@Nullable String dataId) {
this.dataId = dataId;
return this;
}
@CustomType.Setter
public Builder incrementalDataRefresh(@Nullable String incrementalDataRefresh) {
this.incrementalDataRefresh = incrementalDataRefresh;
return this;
}
public LabelingDataConfigurationResponse build() {
final var _resultValue = new LabelingDataConfigurationResponse();
_resultValue.dataId = dataId;
_resultValue.incrementalDataRefresh = incrementalDataRefresh;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy