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

com.pulumi.azurenative.machinelearningservices.inputs.GetFeaturesetVersionFeaturePlainArgs Maven / Gradle / Ivy

There is a newer version: 2.82.0
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.azurenative.machinelearningservices.inputs;

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


public final class GetFeaturesetVersionFeaturePlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetFeaturesetVersionFeaturePlainArgs Empty = new GetFeaturesetVersionFeaturePlainArgs();

    /**
     * Specifies name of the feature.
     * 
     */
    @Import(name="featureName")
    private @Nullable String featureName;

    /**
     * @return Specifies name of the feature.
     * 
     */
    public Optional featureName() {
        return Optional.ofNullable(this.featureName);
    }

    /**
     * Feature set name. This is case-sensitive.
     * 
     */
    @Import(name="name", required=true)
    private String name;

    /**
     * @return Feature set name. This is case-sensitive.
     * 
     */
    public String name() {
        return this.name;
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * Feature set version identifier. This is case-sensitive.
     * 
     */
    @Import(name="version", required=true)
    private String version;

    /**
     * @return Feature set version identifier. This is case-sensitive.
     * 
     */
    public String version() {
        return this.version;
    }

    /**
     * Name of Azure Machine Learning workspace.
     * 
     */
    @Import(name="workspaceName", required=true)
    private String workspaceName;

    /**
     * @return Name of Azure Machine Learning workspace.
     * 
     */
    public String workspaceName() {
        return this.workspaceName;
    }

    private GetFeaturesetVersionFeaturePlainArgs() {}

    private GetFeaturesetVersionFeaturePlainArgs(GetFeaturesetVersionFeaturePlainArgs $) {
        this.featureName = $.featureName;
        this.name = $.name;
        this.resourceGroupName = $.resourceGroupName;
        this.version = $.version;
        this.workspaceName = $.workspaceName;
    }

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

    public static final class Builder {
        private GetFeaturesetVersionFeaturePlainArgs $;

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

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

        /**
         * @param featureName Specifies name of the feature.
         * 
         * @return builder
         * 
         */
        public Builder featureName(@Nullable String featureName) {
            $.featureName = featureName;
            return this;
        }

        /**
         * @param name Feature set name. This is case-sensitive.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            $.name = name;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param version Feature set version identifier. This is case-sensitive.
         * 
         * @return builder
         * 
         */
        public Builder version(String version) {
            $.version = version;
            return this;
        }

        /**
         * @param workspaceName Name of Azure Machine Learning workspace.
         * 
         * @return builder
         * 
         */
        public Builder workspaceName(String workspaceName) {
            $.workspaceName = workspaceName;
            return this;
        }

        public GetFeaturesetVersionFeaturePlainArgs build() {
            if ($.name == null) {
                throw new MissingRequiredPropertyException("GetFeaturesetVersionFeaturePlainArgs", "name");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetFeaturesetVersionFeaturePlainArgs", "resourceGroupName");
            }
            if ($.version == null) {
                throw new MissingRequiredPropertyException("GetFeaturesetVersionFeaturePlainArgs", "version");
            }
            if ($.workspaceName == null) {
                throw new MissingRequiredPropertyException("GetFeaturesetVersionFeaturePlainArgs", "workspaceName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy