UNPKG

@kengachu-pulumi/azure-native-web

Version:

Pulumi Azure Native package for web

84 lines (83 loc) 3.58 kB
import * as pulumi from "@pulumi/pulumi"; import * as types from "./types"; /** * Description for Gets site's Authentication / Authorization settings for apps via the V2 format * * Uses Azure REST API version 2024-11-01. * * Other available API versions: 2021-03-01, 2022-03-01, 2022-09-01, 2023-01-01, 2023-12-01, 2024-04-01, 2025-03-01, 2025-05-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?: types.outputs.GlobalValidationResponse; /** * The configuration settings of the HTTP requests for authentication and authorization requests made against App Service Authentication/Authorization. */ readonly httpSettings?: types.outputs.HttpSettingsResponse; /** * Resource Id. */ readonly id: string; /** * The configuration settings of each of the identity providers used to configure App Service Authentication/Authorization. */ readonly identityProviders?: types.outputs.IdentityProvidersResponse; /** * Kind of resource. */ readonly kind?: string; /** * The configuration settings of the login flow of users using App Service Authentication/Authorization. */ readonly login?: types.outputs.LoginResponse; /** * Resource Name. */ readonly name: string; /** * The configuration settings of the platform of App Service Authentication/Authorization. */ readonly platform?: types.outputs.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-11-01. * * Other available API versions: 2021-03-01, 2022-03-01, 2022-09-01, 2023-01-01, 2023-12-01, 2024-04-01, 2025-03-01, 2025-05-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>; }