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

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

// *** 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.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


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

    public static final GetConnectionRaiPolicyArgs Empty = new GetConnectionRaiPolicyArgs();

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

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

    /**
     * Name of the Rai Policy.
     * 
     */
    @Import(name="raiPolicyName", required=true)
    private Output raiPolicyName;

    /**
     * @return Name of the Rai Policy.
     * 
     */
    public Output raiPolicyName() {
        return this.raiPolicyName;
    }

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

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

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

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

    private GetConnectionRaiPolicyArgs() {}

    private GetConnectionRaiPolicyArgs(GetConnectionRaiPolicyArgs $) {
        this.connectionName = $.connectionName;
        this.raiPolicyName = $.raiPolicyName;
        this.resourceGroupName = $.resourceGroupName;
        this.workspaceName = $.workspaceName;
    }

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

    public static final class Builder {
        private GetConnectionRaiPolicyArgs $;

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

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

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

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

        /**
         * @param raiPolicyName Name of the Rai Policy.
         * 
         * @return builder
         * 
         */
        public Builder raiPolicyName(Output raiPolicyName) {
            $.raiPolicyName = raiPolicyName;
            return this;
        }

        /**
         * @param raiPolicyName Name of the Rai Policy.
         * 
         * @return builder
         * 
         */
        public Builder raiPolicyName(String raiPolicyName) {
            return raiPolicyName(Output.of(raiPolicyName));
        }

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

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

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

        /**
         * @param workspaceName Azure Machine Learning Workspace Name
         * 
         * @return builder
         * 
         */
        public Builder workspaceName(String workspaceName) {
            return workspaceName(Output.of(workspaceName));
        }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy