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

com.pulumi.azurenative.machinelearningservices.inputs.GetConnectionRaiBlocklistItemPlainArgs 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 GetConnectionRaiBlocklistItemPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetConnectionRaiBlocklistItemPlainArgs Empty = new GetConnectionRaiBlocklistItemPlainArgs();

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

    /**
     * The name of the RaiBlocklist.
     * 
     */
    @Import(name="raiBlocklistName", required=true)
    private String raiBlocklistName;

    /**
     * @return The name of the RaiBlocklist.
     * 
     */
    public String raiBlocklistName() {
        return this.raiBlocklistName;
    }

    /**
     * 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 GetConnectionRaiBlocklistItemPlainArgs() {}

    private GetConnectionRaiBlocklistItemPlainArgs(GetConnectionRaiBlocklistItemPlainArgs $) {
        this.connectionName = $.connectionName;
        this.raiBlocklistName = $.raiBlocklistName;
        this.resourceGroupName = $.resourceGroupName;
        this.workspaceName = $.workspaceName;
    }

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

    public static final class Builder {
        private GetConnectionRaiBlocklistItemPlainArgs $;

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

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

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

        /**
         * @param raiBlocklistName The name of the RaiBlocklist.
         * 
         * @return builder
         * 
         */
        public Builder raiBlocklistName(String raiBlocklistName) {
            $.raiBlocklistName = raiBlocklistName;
            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 GetConnectionRaiBlocklistItemPlainArgs build() {
            if ($.connectionName == null) {
                throw new MissingRequiredPropertyException("GetConnectionRaiBlocklistItemPlainArgs", "connectionName");
            }
            if ($.raiBlocklistName == null) {
                throw new MissingRequiredPropertyException("GetConnectionRaiBlocklistItemPlainArgs", "raiBlocklistName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetConnectionRaiBlocklistItemPlainArgs", "resourceGroupName");
            }
            if ($.workspaceName == null) {
                throw new MissingRequiredPropertyException("GetConnectionRaiBlocklistItemPlainArgs", "workspaceName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy