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

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

There is a newer version: 2.89.2
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;


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

    public static final GetConnectionDeploymentPlainArgs Empty = new GetConnectionDeploymentPlainArgs();

    /**
     * Friendly name of the workspace connection
     * 
     */
    @Import(name="connectionName", required=true)
    private String connectionName;

    /**
     * @return Friendly name of the workspace connection
     * 
     */
    public String connectionName() {
        return this.connectionName;
    }

    /**
     * Name of the deployment resource
     * 
     */
    @Import(name="deploymentName", required=true)
    private String deploymentName;

    /**
     * @return Name of the deployment resource
     * 
     */
    public String deploymentName() {
        return this.deploymentName;
    }

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

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

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

    private GetConnectionDeploymentPlainArgs() {}

    private GetConnectionDeploymentPlainArgs(GetConnectionDeploymentPlainArgs $) {
        this.connectionName = $.connectionName;
        this.deploymentName = $.deploymentName;
        this.resourceGroupName = $.resourceGroupName;
        this.workspaceName = $.workspaceName;
    }

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

    public static final class Builder {
        private GetConnectionDeploymentPlainArgs $;

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

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

        /**
         * @param connectionName Friendly name of the workspace connection
         * 
         * @return builder
         * 
         */
        public Builder connectionName(String connectionName) {
            $.connectionName = connectionName;
            return this;
        }

        /**
         * @param deploymentName Name of the deployment resource
         * 
         * @return builder
         * 
         */
        public Builder deploymentName(String deploymentName) {
            $.deploymentName = deploymentName;
            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 workspaceName Azure Machine Learning Workspace Name
         * 
         * @return builder
         * 
         */
        public Builder workspaceName(String workspaceName) {
            $.workspaceName = workspaceName;
            return this;
        }

        public GetConnectionDeploymentPlainArgs build() {
            if ($.connectionName == null) {
                throw new MissingRequiredPropertyException("GetConnectionDeploymentPlainArgs", "connectionName");
            }
            if ($.deploymentName == null) {
                throw new MissingRequiredPropertyException("GetConnectionDeploymentPlainArgs", "deploymentName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetConnectionDeploymentPlainArgs", "resourceGroupName");
            }
            if ($.workspaceName == null) {
                throw new MissingRequiredPropertyException("GetConnectionDeploymentPlainArgs", "workspaceName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy