@kengachu-pulumi/azure-native-web
Version:
Pulumi Azure Native package for web
109 lines (108 loc) • 5.05 kB
TypeScript
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 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 class WebAppAuthSettingsV2WithoutSecrets extends pulumi.CustomResource {
/**
* Get an existing WebAppAuthSettingsV2WithoutSecrets 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): WebAppAuthSettingsV2WithoutSecrets;
/** @internal */
static readonly __pulumiType = "azure-native:web:WebAppAuthSettingsV2WithoutSecrets";
/**
* Returns true if the given object is an instance of WebAppAuthSettingsV2WithoutSecrets. 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 WebAppAuthSettingsV2WithoutSecrets;
/**
* 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 WebAppAuthSettingsV2WithoutSecrets 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: WebAppAuthSettingsV2WithoutSecretsArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a WebAppAuthSettingsV2WithoutSecrets resource.
*/
export interface WebAppAuthSettingsV2WithoutSecretsArgs {
/**
* 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>;
}