UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

84 lines (83 loc) 3.53 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Description for Gets site's Authentication / Authorization settings for apps via the V2 format * * Uses Azure REST API version 2024-04-01. * * Other available API versions: 2021-03-01, 2022-03-01, 2022-09-01, 2023-01-01, 2023-12-01, 2024-11-01. 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 function getWebAppAuthSettingsV2WithoutSecrets(args: GetWebAppAuthSettingsV2WithoutSecretsArgs, opts?: pulumi.InvokeOptions): Promise<GetWebAppAuthSettingsV2WithoutSecretsResult>; export interface GetWebAppAuthSettingsV2WithoutSecretsArgs { /** * Name of the app. */ name: string; /** * Name of the resource group to which the resource belongs. */ resourceGroupName: string; } /** * Configuration settings for the Azure App Service Authentication / Authorization V2 feature. */ export interface GetWebAppAuthSettingsV2WithoutSecretsResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The configuration settings that determines the validation flow of users using App Service Authentication/Authorization. */ readonly globalValidation?: outputs.web.GlobalValidationResponse; /** * The configuration settings of the HTTP requests for authentication and authorization requests made against App Service Authentication/Authorization. */ readonly httpSettings?: outputs.web.HttpSettingsResponse; /** * Resource Id. */ readonly id: string; /** * The configuration settings of each of the identity providers used to configure App Service Authentication/Authorization. */ readonly identityProviders?: outputs.web.IdentityProvidersResponse; /** * Kind of resource. */ readonly kind?: string; /** * The configuration settings of the login flow of users using App Service Authentication/Authorization. */ readonly login?: outputs.web.LoginResponse; /** * Resource Name. */ readonly name: string; /** * The configuration settings of the platform of App Service Authentication/Authorization. */ readonly platform?: outputs.web.AuthPlatformResponse; /** * Resource type. */ readonly type: string; } /** * Description for Gets site's Authentication / Authorization settings for apps via the V2 format * * Uses Azure REST API version 2024-04-01. * * Other available API versions: 2021-03-01, 2022-03-01, 2022-09-01, 2023-01-01, 2023-12-01, 2024-11-01. 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 function getWebAppAuthSettingsV2WithoutSecretsOutput(args: GetWebAppAuthSettingsV2WithoutSecretsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWebAppAuthSettingsV2WithoutSecretsResult>; export interface GetWebAppAuthSettingsV2WithoutSecretsOutputArgs { /** * Name of the app. */ name: pulumi.Input<string>; /** * Name of the resource group to which the resource belongs. */ resourceGroupName: pulumi.Input<string>; }