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

com.pulumi.azurenative.aadiam.inputs.GetPrivateLinkForAzureAdPlainArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.aadiam.inputs;

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


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

    public static final GetPrivateLinkForAzureAdPlainArgs Empty = new GetPrivateLinkForAzureAdPlainArgs();

    /**
     * The name of the private link policy in Azure AD.
     * 
     */
    @Import(name="policyName", required=true)
    private String policyName;

    /**
     * @return The name of the private link policy in Azure AD.
     * 
     */
    public String policyName() {
        return this.policyName;
    }

    /**
     * Name of an Azure resource group.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return Name of an Azure resource group.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    private GetPrivateLinkForAzureAdPlainArgs() {}

    private GetPrivateLinkForAzureAdPlainArgs(GetPrivateLinkForAzureAdPlainArgs $) {
        this.policyName = $.policyName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetPrivateLinkForAzureAdPlainArgs $;

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

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

        /**
         * @param policyName The name of the private link policy in Azure AD.
         * 
         * @return builder
         * 
         */
        public Builder policyName(String policyName) {
            $.policyName = policyName;
            return this;
        }

        /**
         * @param resourceGroupName Name of an Azure resource group.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        public GetPrivateLinkForAzureAdPlainArgs build() {
            if ($.policyName == null) {
                throw new MissingRequiredPropertyException("GetPrivateLinkForAzureAdPlainArgs", "policyName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetPrivateLinkForAzureAdPlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy