com.pulumi.azure.machinelearning.outputs.WorkspaceFeatureStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.machinelearning.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 WorkspaceFeatureStore {
/**
* @return The version of Spark runtime.
*
*/
private @Nullable String computerSparkRuntimeVersion;
/**
* @return The name of offline store connection.
*
*/
private @Nullable String offlineConnectionName;
/**
* @return The name of online store connection.
*
* > **Note:** `feature_store` must be set when`kind` is `FeatureStore`
*
*/
private @Nullable String onlineConnectionName;
private WorkspaceFeatureStore() {}
/**
* @return The version of Spark runtime.
*
*/
public Optional computerSparkRuntimeVersion() {
return Optional.ofNullable(this.computerSparkRuntimeVersion);
}
/**
* @return The name of offline store connection.
*
*/
public Optional offlineConnectionName() {
return Optional.ofNullable(this.offlineConnectionName);
}
/**
* @return The name of online store connection.
*
* > **Note:** `feature_store` must be set when`kind` is `FeatureStore`
*
*/
public Optional onlineConnectionName() {
return Optional.ofNullable(this.onlineConnectionName);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WorkspaceFeatureStore defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String computerSparkRuntimeVersion;
private @Nullable String offlineConnectionName;
private @Nullable String onlineConnectionName;
public Builder() {}
public Builder(WorkspaceFeatureStore defaults) {
Objects.requireNonNull(defaults);
this.computerSparkRuntimeVersion = defaults.computerSparkRuntimeVersion;
this.offlineConnectionName = defaults.offlineConnectionName;
this.onlineConnectionName = defaults.onlineConnectionName;
}
@CustomType.Setter
public Builder computerSparkRuntimeVersion(@Nullable String computerSparkRuntimeVersion) {
this.computerSparkRuntimeVersion = computerSparkRuntimeVersion;
return this;
}
@CustomType.Setter
public Builder offlineConnectionName(@Nullable String offlineConnectionName) {
this.offlineConnectionName = offlineConnectionName;
return this;
}
@CustomType.Setter
public Builder onlineConnectionName(@Nullable String onlineConnectionName) {
this.onlineConnectionName = onlineConnectionName;
return this;
}
public WorkspaceFeatureStore build() {
final var _resultValue = new WorkspaceFeatureStore();
_resultValue.computerSparkRuntimeVersion = computerSparkRuntimeVersion;
_resultValue.offlineConnectionName = offlineConnectionName;
_resultValue.onlineConnectionName = onlineConnectionName;
return _resultValue;
}
}
}