All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.machinelearning.inputs.WorkspaceFeatureStoreArgs Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 6.10.0-alpha.1731737215
Show newest version
// *** 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.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class WorkspaceFeatureStoreArgs extends com.pulumi.resources.ResourceArgs {

    public static final WorkspaceFeatureStoreArgs Empty = new WorkspaceFeatureStoreArgs();

    /**
     * The version of Spark runtime.
     * 
     */
    @Import(name="computerSparkRuntimeVersion")
    private @Nullable Output computerSparkRuntimeVersion;

    /**
     * @return The version of Spark runtime.
     * 
     */
    public Optional> computerSparkRuntimeVersion() {
        return Optional.ofNullable(this.computerSparkRuntimeVersion);
    }

    /**
     * The name of offline store connection.
     * 
     */
    @Import(name="offlineConnectionName")
    private @Nullable Output offlineConnectionName;

    /**
     * @return The name of offline store connection.
     * 
     */
    public Optional> offlineConnectionName() {
        return Optional.ofNullable(this.offlineConnectionName);
    }

    /**
     * The name of online store connection.
     * 
     * > **Note:** `feature_store` must be set when`kind` is `FeatureStore`
     * 
     */
    @Import(name="onlineConnectionName")
    private @Nullable Output onlineConnectionName;

    /**
     * @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);
    }

    private WorkspaceFeatureStoreArgs() {}

    private WorkspaceFeatureStoreArgs(WorkspaceFeatureStoreArgs $) {
        this.computerSparkRuntimeVersion = $.computerSparkRuntimeVersion;
        this.offlineConnectionName = $.offlineConnectionName;
        this.onlineConnectionName = $.onlineConnectionName;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(WorkspaceFeatureStoreArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private WorkspaceFeatureStoreArgs $;

        public Builder() {
            $ = new WorkspaceFeatureStoreArgs();
        }

        public Builder(WorkspaceFeatureStoreArgs defaults) {
            $ = new WorkspaceFeatureStoreArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param computerSparkRuntimeVersion The version of Spark runtime.
         * 
         * @return builder
         * 
         */
        public Builder computerSparkRuntimeVersion(@Nullable Output computerSparkRuntimeVersion) {
            $.computerSparkRuntimeVersion = computerSparkRuntimeVersion;
            return this;
        }

        /**
         * @param computerSparkRuntimeVersion The version of Spark runtime.
         * 
         * @return builder
         * 
         */
        public Builder computerSparkRuntimeVersion(String computerSparkRuntimeVersion) {
            return computerSparkRuntimeVersion(Output.of(computerSparkRuntimeVersion));
        }

        /**
         * @param offlineConnectionName The name of offline store connection.
         * 
         * @return builder
         * 
         */
        public Builder offlineConnectionName(@Nullable Output offlineConnectionName) {
            $.offlineConnectionName = offlineConnectionName;
            return this;
        }

        /**
         * @param offlineConnectionName The name of offline store connection.
         * 
         * @return builder
         * 
         */
        public Builder offlineConnectionName(String offlineConnectionName) {
            return offlineConnectionName(Output.of(offlineConnectionName));
        }

        /**
         * @param onlineConnectionName The name of online store connection.
         * 
         * > **Note:** `feature_store` must be set when`kind` is `FeatureStore`
         * 
         * @return builder
         * 
         */
        public Builder onlineConnectionName(@Nullable Output onlineConnectionName) {
            $.onlineConnectionName = onlineConnectionName;
            return this;
        }

        /**
         * @param onlineConnectionName The name of online store connection.
         * 
         * > **Note:** `feature_store` must be set when`kind` is `FeatureStore`
         * 
         * @return builder
         * 
         */
        public Builder onlineConnectionName(String onlineConnectionName) {
            return onlineConnectionName(Output.of(onlineConnectionName));
        }

        public WorkspaceFeatureStoreArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy