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

com.pulumi.azure.appservice.inputs.LinuxWebAppSlotAuthSettingsV2AzureStaticWebAppV2Args Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
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.azure.appservice.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 LinuxWebAppSlotAuthSettingsV2AzureStaticWebAppV2Args extends com.pulumi.resources.ResourceArgs {

    public static final LinuxWebAppSlotAuthSettingsV2AzureStaticWebAppV2Args Empty = new LinuxWebAppSlotAuthSettingsV2AzureStaticWebAppV2Args();

    /**
     * The ID of the Client to use to authenticate with Azure Static Web App Authentication.
     * 
     */
    @Import(name="clientId", required=true)
    private Output clientId;

    /**
     * @return The ID of the Client to use to authenticate with Azure Static Web App Authentication.
     * 
     */
    public Output clientId() {
        return this.clientId;
    }

    private LinuxWebAppSlotAuthSettingsV2AzureStaticWebAppV2Args() {}

    private LinuxWebAppSlotAuthSettingsV2AzureStaticWebAppV2Args(LinuxWebAppSlotAuthSettingsV2AzureStaticWebAppV2Args $) {
        this.clientId = $.clientId;
    }

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

    public static final class Builder {
        private LinuxWebAppSlotAuthSettingsV2AzureStaticWebAppV2Args $;

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

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

        /**
         * @param clientId The ID of the Client to use to authenticate with Azure Static Web App Authentication.
         * 
         * @return builder
         * 
         */
        public Builder clientId(Output clientId) {
            $.clientId = clientId;
            return this;
        }

        /**
         * @param clientId The ID of the Client to use to authenticate with Azure Static Web App Authentication.
         * 
         * @return builder
         * 
         */
        public Builder clientId(String clientId) {
            return clientId(Output.of(clientId));
        }

        public LinuxWebAppSlotAuthSettingsV2AzureStaticWebAppV2Args build() {
            if ($.clientId == null) {
                throw new MissingRequiredPropertyException("LinuxWebAppSlotAuthSettingsV2AzureStaticWebAppV2Args", "clientId");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy