
com.pulumi.azurenative.machinelearningservices.outputs.GetFeaturesetVersionFeatureResult 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.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetFeaturesetVersionFeatureResult {
/**
* @return Specifies type
*
*/
private @Nullable String dataType;
/**
* @return Specifies description
*
*/
private @Nullable String description;
/**
* @return Specifies name
*
*/
private @Nullable String featureName;
/**
* @return Specifies tags
*
*/
private @Nullable Map tags;
private GetFeaturesetVersionFeatureResult() {}
/**
* @return Specifies type
*
*/
public Optional dataType() {
return Optional.ofNullable(this.dataType);
}
/**
* @return Specifies description
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return Specifies name
*
*/
public Optional featureName() {
return Optional.ofNullable(this.featureName);
}
/**
* @return Specifies tags
*
*/
public Map tags() {
return this.tags == null ? Map.of() : this.tags;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetFeaturesetVersionFeatureResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String dataType;
private @Nullable String description;
private @Nullable String featureName;
private @Nullable Map tags;
public Builder() {}
public Builder(GetFeaturesetVersionFeatureResult defaults) {
Objects.requireNonNull(defaults);
this.dataType = defaults.dataType;
this.description = defaults.description;
this.featureName = defaults.featureName;
this.tags = defaults.tags;
}
@CustomType.Setter
public Builder dataType(@Nullable String dataType) {
this.dataType = dataType;
return this;
}
@CustomType.Setter
public Builder description(@Nullable String description) {
this.description = description;
return this;
}
@CustomType.Setter
public Builder featureName(@Nullable String featureName) {
this.featureName = featureName;
return this;
}
@CustomType.Setter
public Builder tags(@Nullable Map tags) {
this.tags = tags;
return this;
}
public GetFeaturesetVersionFeatureResult build() {
final var _resultValue = new GetFeaturesetVersionFeatureResult();
_resultValue.dataType = dataType;
_resultValue.description = description;
_resultValue.featureName = featureName;
_resultValue.tags = tags;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy