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

com.pulumi.azurenative.kusto.inputs.GetDatabasePrincipalAssignmentPlainArgs 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.kusto.inputs;

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


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

    public static final GetDatabasePrincipalAssignmentPlainArgs Empty = new GetDatabasePrincipalAssignmentPlainArgs();

    /**
     * The name of the Kusto cluster.
     * 
     */
    @Import(name="clusterName", required=true)
    private String clusterName;

    /**
     * @return The name of the Kusto cluster.
     * 
     */
    public String clusterName() {
        return this.clusterName;
    }

    /**
     * The name of the database in the Kusto cluster.
     * 
     */
    @Import(name="databaseName", required=true)
    private String databaseName;

    /**
     * @return The name of the database in the Kusto cluster.
     * 
     */
    public String databaseName() {
        return this.databaseName;
    }

    /**
     * The name of the Kusto principalAssignment.
     * 
     */
    @Import(name="principalAssignmentName", required=true)
    private String principalAssignmentName;

    /**
     * @return The name of the Kusto principalAssignment.
     * 
     */
    public String principalAssignmentName() {
        return this.principalAssignmentName;
    }

    /**
     * The name of the resource group containing the Kusto cluster.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return The name of the resource group containing the Kusto cluster.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    private GetDatabasePrincipalAssignmentPlainArgs() {}

    private GetDatabasePrincipalAssignmentPlainArgs(GetDatabasePrincipalAssignmentPlainArgs $) {
        this.clusterName = $.clusterName;
        this.databaseName = $.databaseName;
        this.principalAssignmentName = $.principalAssignmentName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetDatabasePrincipalAssignmentPlainArgs $;

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

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

        /**
         * @param clusterName The name of the Kusto cluster.
         * 
         * @return builder
         * 
         */
        public Builder clusterName(String clusterName) {
            $.clusterName = clusterName;
            return this;
        }

        /**
         * @param databaseName The name of the database in the Kusto cluster.
         * 
         * @return builder
         * 
         */
        public Builder databaseName(String databaseName) {
            $.databaseName = databaseName;
            return this;
        }

        /**
         * @param principalAssignmentName The name of the Kusto principalAssignment.
         * 
         * @return builder
         * 
         */
        public Builder principalAssignmentName(String principalAssignmentName) {
            $.principalAssignmentName = principalAssignmentName;
            return this;
        }

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

        public GetDatabasePrincipalAssignmentPlainArgs build() {
            if ($.clusterName == null) {
                throw new MissingRequiredPropertyException("GetDatabasePrincipalAssignmentPlainArgs", "clusterName");
            }
            if ($.databaseName == null) {
                throw new MissingRequiredPropertyException("GetDatabasePrincipalAssignmentPlainArgs", "databaseName");
            }
            if ($.principalAssignmentName == null) {
                throw new MissingRequiredPropertyException("GetDatabasePrincipalAssignmentPlainArgs", "principalAssignmentName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetDatabasePrincipalAssignmentPlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy