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

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

    public static final GetManagedPrivateEndpointArgs Empty = new GetManagedPrivateEndpointArgs();

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

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

    /**
     * The name of the managed private endpoint.
     * 
     */
    @Import(name="managedPrivateEndpointName", required=true)
    private Output managedPrivateEndpointName;

    /**
     * @return The name of the managed private endpoint.
     * 
     */
    public Output managedPrivateEndpointName() {
        return this.managedPrivateEndpointName;
    }

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

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

    private GetManagedPrivateEndpointArgs() {}

    private GetManagedPrivateEndpointArgs(GetManagedPrivateEndpointArgs $) {
        this.clusterName = $.clusterName;
        this.managedPrivateEndpointName = $.managedPrivateEndpointName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetManagedPrivateEndpointArgs $;

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

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

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

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

        /**
         * @param managedPrivateEndpointName The name of the managed private endpoint.
         * 
         * @return builder
         * 
         */
        public Builder managedPrivateEndpointName(Output managedPrivateEndpointName) {
            $.managedPrivateEndpointName = managedPrivateEndpointName;
            return this;
        }

        /**
         * @param managedPrivateEndpointName The name of the managed private endpoint.
         * 
         * @return builder
         * 
         */
        public Builder managedPrivateEndpointName(String managedPrivateEndpointName) {
            return managedPrivateEndpointName(Output.of(managedPrivateEndpointName));
        }

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy