@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 4.9 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* 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 WebAppAuthSettingsV2 extends pulumi.CustomResource {
/**
* Get an existing WebAppAuthSettingsV2 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): WebAppAuthSettingsV2;
/**
* Returns true if the given object is an instance of WebAppAuthSettingsV2. 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 WebAppAuthSettingsV2;
/**
* 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<outputs.web.GlobalValidationResponse | undefined>;
/**
* The configuration settings of the HTTP requests for authentication and authorization requests made against App Service Authentication/Authorization.
*/
readonly httpSettings: pulumi.Output<outputs.web.HttpSettingsResponse | undefined>;
/**
* The configuration settings of each of the identity providers used to configure App Service Authentication/Authorization.
*/
readonly identityProviders: pulumi.Output<outputs.web.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<outputs.web.LoginResponse | undefined>;
/**
* Resource Name.
*/
readonly name: pulumi.Output<string>;
/**
* The configuration settings of the platform of App Service Authentication/Authorization.
*/
readonly platform: pulumi.Output<outputs.web.AuthPlatformResponse | undefined>;
/**
* Resource type.
*/
readonly type: pulumi.Output<string>;
/**
* Create a WebAppAuthSettingsV2 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: WebAppAuthSettingsV2Args, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a WebAppAuthSettingsV2 resource.
*/
export interface WebAppAuthSettingsV2Args {
/**
* The configuration settings that determines the validation flow of users using App Service Authentication/Authorization.
*/
globalValidation?: pulumi.Input<inputs.web.GlobalValidationArgs>;
/**
* The configuration settings of the HTTP requests for authentication and authorization requests made against App Service Authentication/Authorization.
*/
httpSettings?: pulumi.Input<inputs.web.HttpSettingsArgs>;
/**
* The configuration settings of each of the identity providers used to configure App Service Authentication/Authorization.
*/
identityProviders?: pulumi.Input<inputs.web.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<inputs.web.LoginArgs>;
/**
* Name of web app.
*/
name: pulumi.Input<string>;
/**
* The configuration settings of the platform of App Service Authentication/Authorization.
*/
platform?: pulumi.Input<inputs.web.AuthPlatformArgs>;
/**
* Name of the resource group to which the resource belongs.
*/
resourceGroupName: pulumi.Input<string>;
}