import * as pulumi from "@pulumi/pulumi";
import * as types from "./types";
/**
 * Configuration settings for the Azure App Service Authentication / Authorization V2 feature.
 *
 * Uses Azure REST API version 2021-02-01. In version 2.x of the Azure Native provider, it used API version 2021-02-01.
 *
 * Other available API versions: 2020-06-01, 2020-09-01, 2020-10-01, 2020-12-01, 2021-01-01, 2021-01-15. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native web [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
 */
export declare class WebAppAuthSettingsV2Slot extends pulumi.CustomResource {
    /**
     * Get an existing WebAppAuthSettingsV2Slot resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): WebAppAuthSettingsV2Slot;
    /** @internal */
    static readonly __pulumiType = "azure-native:web:WebAppAuthSettingsV2Slot";
    /**
     * Returns true if the given object is an instance of WebAppAuthSettingsV2Slot.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is WebAppAuthSettingsV2Slot;
    /**
     * The Azure API version of the resource.
     */
    readonly azureApiVersion: pulumi.Output<string>;
    /**
     * The configuration settings that determines the validation flow of users using App Service Authentication/Authorization.
     */
    readonly globalValidation: pulumi.Output<types.outputs.GlobalValidationResponse | undefined>;
    /**
     * The configuration settings of the HTTP requests for authentication and authorization requests made against App Service Authentication/Authorization.
     */
    readonly httpSettings: pulumi.Output<types.outputs.HttpSettingsResponse | undefined>;
    /**
     * The configuration settings of each of the identity providers used to configure App Service Authentication/Authorization.
     */
    readonly identityProviders: pulumi.Output<types.outputs.IdentityProvidersResponse | undefined>;
    /**
     * Kind of resource.
     */
    readonly kind: pulumi.Output<string | undefined>;
    /**
     * The configuration settings of the login flow of users using App Service Authentication/Authorization.
     */
    readonly login: pulumi.Output<types.outputs.LoginResponse | undefined>;
    /**
     * Resource Name.
     */
    readonly name: pulumi.Output<string>;
    /**
     * The configuration settings of the platform of App Service Authentication/Authorization.
     */
    readonly platform: pulumi.Output<types.outputs.AuthPlatformResponse | undefined>;
    /**
     * Resource type.
     */
    readonly type: pulumi.Output<string>;
    /**
     * Create a WebAppAuthSettingsV2Slot resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: WebAppAuthSettingsV2SlotArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a WebAppAuthSettingsV2Slot resource.
 */
export interface WebAppAuthSettingsV2SlotArgs {
    /**
     * The configuration settings that determines the validation flow of users using App Service Authentication/Authorization.
     */
    globalValidation?: pulumi.Input<types.inputs.GlobalValidationArgs>;
    /**
     * The configuration settings of the HTTP requests for authentication and authorization requests made against App Service Authentication/Authorization.
     */
    httpSettings?: pulumi.Input<types.inputs.HttpSettingsArgs>;
    /**
     * The configuration settings of each of the identity providers used to configure App Service Authentication/Authorization.
     */
    identityProviders?: pulumi.Input<types.inputs.IdentityProvidersArgs>;
    /**
     * Kind of resource.
     */
    kind?: pulumi.Input<string>;
    /**
     * The configuration settings of the login flow of users using App Service Authentication/Authorization.
     */
    login?: pulumi.Input<types.inputs.LoginArgs>;
    /**
     * Name of web app.
     */
    name: pulumi.Input<string>;
    /**
     * The configuration settings of the platform of App Service Authentication/Authorization.
     */
    platform?: pulumi.Input<types.inputs.AuthPlatformArgs>;
    /**
     * Name of the resource group to which the resource belongs.
     */
    resourceGroupName: pulumi.Input<string>;
    /**
     * Name of web app slot. If not specified then will default to production slot.
     */
    slot: pulumi.Input<string>;
}
