
com.pulumi.azurenative.machinelearningservices.outputs.FeaturestoreEntityVersionResponse 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.azurenative.machinelearningservices.outputs.AutoDeleteSettingResponse;
import com.pulumi.azurenative.machinelearningservices.outputs.IndexColumnResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class FeaturestoreEntityVersionResponse {
/**
* @return Specifies the lifecycle setting of managed data asset.
*
*/
private @Nullable AutoDeleteSettingResponse autoDeleteSetting;
/**
* @return The asset description text.
*
*/
private @Nullable String description;
/**
* @return Specifies index columns
*
*/
private @Nullable List indexColumns;
/**
* @return If the name version are system generated (anonymous registration). For types where Stage is defined, when Stage is provided it will be used to populate IsAnonymous
*
*/
private @Nullable Boolean isAnonymous;
/**
* @return Is the asset archived? For types where Stage is defined, when Stage is provided it will be used to populate IsArchived
*
*/
private @Nullable Boolean isArchived;
/**
* @return The asset property dictionary.
*
*/
private @Nullable Map properties;
/**
* @return Provisioning state for the featurestore entity version.
*
*/
private String provisioningState;
/**
* @return Specifies the asset stage
*
*/
private @Nullable String stage;
/**
* @return Tag dictionary. Tags can be added, removed, and updated.
*
*/
private @Nullable Map tags;
private FeaturestoreEntityVersionResponse() {}
/**
* @return Specifies the lifecycle setting of managed data asset.
*
*/
public Optional autoDeleteSetting() {
return Optional.ofNullable(this.autoDeleteSetting);
}
/**
* @return The asset description text.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return Specifies index columns
*
*/
public List indexColumns() {
return this.indexColumns == null ? List.of() : this.indexColumns;
}
/**
* @return If the name version are system generated (anonymous registration). For types where Stage is defined, when Stage is provided it will be used to populate IsAnonymous
*
*/
public Optional isAnonymous() {
return Optional.ofNullable(this.isAnonymous);
}
/**
* @return Is the asset archived? For types where Stage is defined, when Stage is provided it will be used to populate IsArchived
*
*/
public Optional isArchived() {
return Optional.ofNullable(this.isArchived);
}
/**
* @return The asset property dictionary.
*
*/
public Map properties() {
return this.properties == null ? Map.of() : this.properties;
}
/**
* @return Provisioning state for the featurestore entity version.
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return Specifies the asset stage
*
*/
public Optional stage() {
return Optional.ofNullable(this.stage);
}
/**
* @return Tag dictionary. Tags can be added, removed, and updated.
*
*/
public Map tags() {
return this.tags == null ? Map.of() : this.tags;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FeaturestoreEntityVersionResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable AutoDeleteSettingResponse autoDeleteSetting;
private @Nullable String description;
private @Nullable List indexColumns;
private @Nullable Boolean isAnonymous;
private @Nullable Boolean isArchived;
private @Nullable Map properties;
private String provisioningState;
private @Nullable String stage;
private @Nullable Map tags;
public Builder() {}
public Builder(FeaturestoreEntityVersionResponse defaults) {
Objects.requireNonNull(defaults);
this.autoDeleteSetting = defaults.autoDeleteSetting;
this.description = defaults.description;
this.indexColumns = defaults.indexColumns;
this.isAnonymous = defaults.isAnonymous;
this.isArchived = defaults.isArchived;
this.properties = defaults.properties;
this.provisioningState = defaults.provisioningState;
this.stage = defaults.stage;
this.tags = defaults.tags;
}
@CustomType.Setter
public Builder autoDeleteSetting(@Nullable AutoDeleteSettingResponse autoDeleteSetting) {
this.autoDeleteSetting = autoDeleteSetting;
return this;
}
@CustomType.Setter
public Builder description(@Nullable String description) {
this.description = description;
return this;
}
@CustomType.Setter
public Builder indexColumns(@Nullable List indexColumns) {
this.indexColumns = indexColumns;
return this;
}
public Builder indexColumns(IndexColumnResponse... indexColumns) {
return indexColumns(List.of(indexColumns));
}
@CustomType.Setter
public Builder isAnonymous(@Nullable Boolean isAnonymous) {
this.isAnonymous = isAnonymous;
return this;
}
@CustomType.Setter
public Builder isArchived(@Nullable Boolean isArchived) {
this.isArchived = isArchived;
return this;
}
@CustomType.Setter
public Builder properties(@Nullable Map properties) {
this.properties = properties;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("FeaturestoreEntityVersionResponse", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder stage(@Nullable String stage) {
this.stage = stage;
return this;
}
@CustomType.Setter
public Builder tags(@Nullable Map tags) {
this.tags = tags;
return this;
}
public FeaturestoreEntityVersionResponse build() {
final var _resultValue = new FeaturestoreEntityVersionResponse();
_resultValue.autoDeleteSetting = autoDeleteSetting;
_resultValue.description = description;
_resultValue.indexColumns = indexColumns;
_resultValue.isAnonymous = isAnonymous;
_resultValue.isArchived = isArchived;
_resultValue.properties = properties;
_resultValue.provisioningState = provisioningState;
_resultValue.stage = stage;
_resultValue.tags = tags;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy