All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.appservice.kotlin.WindowsFunctionAppArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.appservice.kotlin

import com.pulumi.azure.appservice.WindowsFunctionAppArgs.builder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppAuthSettingsArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppAuthSettingsArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppAuthSettingsV2Args
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppAuthSettingsV2ArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppBackupArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppBackupArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppConnectionStringArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppConnectionStringArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppIdentityArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppIdentityArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppSiteConfigArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppSiteConfigArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppStickySettingsArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppStickySettingsArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppStorageAccountArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsFunctionAppStorageAccountArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.Int
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 * Manages a Windows Function App.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as azure from "@pulumi/azure";
 * const example = new azure.core.ResourceGroup("example", {
 *     name: "example-resources",
 *     location: "West Europe",
 * });
 * const exampleAccount = new azure.storage.Account("example", {
 *     name: "windowsfunctionappsa",
 *     resourceGroupName: example.name,
 *     location: example.location,
 *     accountTier: "Standard",
 *     accountReplicationType: "LRS",
 * });
 * const exampleServicePlan = new azure.appservice.ServicePlan("example", {
 *     name: "example-app-service-plan",
 *     resourceGroupName: example.name,
 *     location: example.location,
 *     osType: "Windows",
 *     skuName: "Y1",
 * });
 * const exampleWindowsFunctionApp = new azure.appservice.WindowsFunctionApp("example", {
 *     name: "example-windows-function-app",
 *     resourceGroupName: example.name,
 *     location: example.location,
 *     storageAccountName: exampleAccount.name,
 *     storageAccountAccessKey: exampleAccount.primaryAccessKey,
 *     servicePlanId: exampleServicePlan.id,
 *     siteConfig: {},
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_azure as azure
 * example = azure.core.ResourceGroup("example",
 *     name="example-resources",
 *     location="West Europe")
 * example_account = azure.storage.Account("example",
 *     name="windowsfunctionappsa",
 *     resource_group_name=example.name,
 *     location=example.location,
 *     account_tier="Standard",
 *     account_replication_type="LRS")
 * example_service_plan = azure.appservice.ServicePlan("example",
 *     name="example-app-service-plan",
 *     resource_group_name=example.name,
 *     location=example.location,
 *     os_type="Windows",
 *     sku_name="Y1")
 * example_windows_function_app = azure.appservice.WindowsFunctionApp("example",
 *     name="example-windows-function-app",
 *     resource_group_name=example.name,
 *     location=example.location,
 *     storage_account_name=example_account.name,
 *     storage_account_access_key=example_account.primary_access_key,
 *     service_plan_id=example_service_plan.id,
 *     site_config=azure.appservice.WindowsFunctionAppSiteConfigArgs())
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Azure = Pulumi.Azure;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Azure.Core.ResourceGroup("example", new()
 *     {
 *         Name = "example-resources",
 *         Location = "West Europe",
 *     });
 *     var exampleAccount = new Azure.Storage.Account("example", new()
 *     {
 *         Name = "windowsfunctionappsa",
 *         ResourceGroupName = example.Name,
 *         Location = example.Location,
 *         AccountTier = "Standard",
 *         AccountReplicationType = "LRS",
 *     });
 *     var exampleServicePlan = new Azure.AppService.ServicePlan("example", new()
 *     {
 *         Name = "example-app-service-plan",
 *         ResourceGroupName = example.Name,
 *         Location = example.Location,
 *         OsType = "Windows",
 *         SkuName = "Y1",
 *     });
 *     var exampleWindowsFunctionApp = new Azure.AppService.WindowsFunctionApp("example", new()
 *     {
 *         Name = "example-windows-function-app",
 *         ResourceGroupName = example.Name,
 *         Location = example.Location,
 *         StorageAccountName = exampleAccount.Name,
 *         StorageAccountAccessKey = exampleAccount.PrimaryAccessKey,
 *         ServicePlanId = exampleServicePlan.Id,
 *         SiteConfig = null,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appservice"
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/storage"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
 * 			Name:     pulumi.String("example-resources"),
 * 			Location: pulumi.String("West Europe"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleAccount, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
 * 			Name:                   pulumi.String("windowsfunctionappsa"),
 * 			ResourceGroupName:      example.Name,
 * 			Location:               example.Location,
 * 			AccountTier:            pulumi.String("Standard"),
 * 			AccountReplicationType: pulumi.String("LRS"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleServicePlan, err := appservice.NewServicePlan(ctx, "example", &appservice.ServicePlanArgs{
 * 			Name:              pulumi.String("example-app-service-plan"),
 * 			ResourceGroupName: example.Name,
 * 			Location:          example.Location,
 * 			OsType:            pulumi.String("Windows"),
 * 			SkuName:           pulumi.String("Y1"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = appservice.NewWindowsFunctionApp(ctx, "example", &appservice.WindowsFunctionAppArgs{
 * 			Name:                    pulumi.String("example-windows-function-app"),
 * 			ResourceGroupName:       example.Name,
 * 			Location:                example.Location,
 * 			StorageAccountName:      exampleAccount.Name,
 * 			StorageAccountAccessKey: exampleAccount.PrimaryAccessKey,
 * 			ServicePlanId:           exampleServicePlan.ID(),
 * 			SiteConfig:              nil,
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		return nil
 * 	})
 * }
 * ```
 * ```java
 * package generated_program;
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azure.core.ResourceGroup;
 * import com.pulumi.azure.core.ResourceGroupArgs;
 * import com.pulumi.azure.storage.Account;
 * import com.pulumi.azure.storage.AccountArgs;
 * import com.pulumi.azure.appservice.ServicePlan;
 * import com.pulumi.azure.appservice.ServicePlanArgs;
 * import com.pulumi.azure.appservice.WindowsFunctionApp;
 * import com.pulumi.azure.appservice.WindowsFunctionAppArgs;
 * import com.pulumi.azure.appservice.inputs.WindowsFunctionAppSiteConfigArgs;
 * import java.util.List;
 * import java.util.ArrayList;
 * import java.util.Map;
 * import java.io.File;
 * import java.nio.file.Files;
 * import java.nio.file.Paths;
 * public class App {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 *     public static void stack(Context ctx) {
 *         var example = new ResourceGroup("example", ResourceGroupArgs.builder()
 *             .name("example-resources")
 *             .location("West Europe")
 *             .build());
 *         var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
 *             .name("windowsfunctionappsa")
 *             .resourceGroupName(example.name())
 *             .location(example.location())
 *             .accountTier("Standard")
 *             .accountReplicationType("LRS")
 *             .build());
 *         var exampleServicePlan = new ServicePlan("exampleServicePlan", ServicePlanArgs.builder()
 *             .name("example-app-service-plan")
 *             .resourceGroupName(example.name())
 *             .location(example.location())
 *             .osType("Windows")
 *             .skuName("Y1")
 *             .build());
 *         var exampleWindowsFunctionApp = new WindowsFunctionApp("exampleWindowsFunctionApp", WindowsFunctionAppArgs.builder()
 *             .name("example-windows-function-app")
 *             .resourceGroupName(example.name())
 *             .location(example.location())
 *             .storageAccountName(exampleAccount.name())
 *             .storageAccountAccessKey(exampleAccount.primaryAccessKey())
 *             .servicePlanId(exampleServicePlan.id())
 *             .siteConfig()
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: azure:core:ResourceGroup
 *     properties:
 *       name: example-resources
 *       location: West Europe
 *   exampleAccount:
 *     type: azure:storage:Account
 *     name: example
 *     properties:
 *       name: windowsfunctionappsa
 *       resourceGroupName: ${example.name}
 *       location: ${example.location}
 *       accountTier: Standard
 *       accountReplicationType: LRS
 *   exampleServicePlan:
 *     type: azure:appservice:ServicePlan
 *     name: example
 *     properties:
 *       name: example-app-service-plan
 *       resourceGroupName: ${example.name}
 *       location: ${example.location}
 *       osType: Windows
 *       skuName: Y1
 *   exampleWindowsFunctionApp:
 *     type: azure:appservice:WindowsFunctionApp
 *     name: example
 *     properties:
 *       name: example-windows-function-app
 *       resourceGroupName: ${example.name}
 *       location: ${example.location}
 *       storageAccountName: ${exampleAccount.name}
 *       storageAccountAccessKey: ${exampleAccount.primaryAccessKey}
 *       servicePlanId: ${exampleServicePlan.id}
 *       siteConfig: {}
 * ```
 * 
 * ## Import
 * Windows Function Apps can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:appservice/windowsFunctionApp:WindowsFunctionApp example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.Web/sites/site1
 * ```
 * @property appSettings A map of key-value pairs for [App
 * Settings](https://docs.microsoft.com/en-us/azure/azure-functions/functions-app-settings) and custom values.
 * @property authSettings A `auth_settings` block as defined below.
 * @property authSettingsV2 A `auth_settings_v2` block as defined below.
 * @property backup A `backup` block as defined below.
 * @property builtinLoggingEnabled Should built in logging be enabled. Configures `AzureWebJobsDashboard` app setting based on the configured storage setting. Defaults to `true`.
 * @property clientCertificateEnabled Should the function app use Client Certificates.
 * @property clientCertificateExclusionPaths Paths to exclude when using client certificates, separated by ;
 * @property clientCertificateMode The mode of the Function App's client certificates requirement for incoming requests. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`. Defaults to `Optional`.
 * @property connectionStrings One or more `connection_string` blocks as defined below.
 * @property contentShareForceDisabled Should Content Share Settings be disabled. Defaults to `false`.
 * @property dailyMemoryTimeQuota The amount of memory in gigabyte-seconds that your application is allowed to consume per day. Setting this value only affects function apps under the consumption plan. Defaults to `0`.
 * @property enabled Is the Function App enabled? Defaults to `true`.
 * @property ftpPublishBasicAuthenticationEnabled Should the default FTP Basic Authentication publishing profile be enabled. Defaults to `true`.
 * @property functionsExtensionVersion The runtime version associated with the Function App. Defaults to `~4`.
 * @property httpsOnly Can the Function App only be accessed via HTTPS?. Defaults to `false`.
 * @property identity A `identity` block as defined below.
 * @property keyVaultReferenceIdentityId The User Assigned Identity ID used for accessing KeyVault secrets. The identity must be assigned to the application in the `identity` block. [For more information see - Access vaults with a user-assigned identity](https://docs.microsoft.com/azure/app-service/app-service-key-vault-references#access-vaults-with-a-user-assigned-identity)
 * @property location The Azure Region where the Windows Function App should exist. Changing this forces a new Windows Function App to be created.
 * @property name The name which should be used for this Windows Function App. Changing this forces a new Windows Function App to be created. Limit the function name to 32 characters to avoid naming collisions. For more information about [Function App naming rule](https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/resource-name-rules#microsoftweb) and [Host ID Collisions](https://github.com/Azure/azure-functions-host/wiki/Host-IDs#host-id-collisions)
 * @property publicNetworkAccessEnabled Should public network access be enabled for the Function App. Defaults to `true`.
 * @property resourceGroupName The name of the Resource Group where the Windows Function App should exist. Changing this forces a new Windows Function App to be created.
 * @property servicePlanId The ID of the App Service Plan within which to create this Function App.
 * @property siteConfig A `site_config` block as defined below.
 * @property stickySettings A `sticky_settings` block as defined below.
 * @property storageAccountAccessKey The access key which will be used to access the backend storage account for the Function App. Conflicts with `storage_uses_managed_identity`.
 * @property storageAccountName The backend storage account name which will be used by this Function App.
 * @property storageAccounts One or more `storage_account` blocks as defined below.
 * @property storageKeyVaultSecretId The Key Vault Secret ID, optionally including version, that contains the Connection String to connect to the storage account for this Function App.
 * > **NOTE:** `storage_key_vault_secret_id` cannot be used with `storage_account_name`.
 * > **NOTE:** `storage_key_vault_secret_id` used without a version will use the latest version of the secret, however, the service can take up to 24h to pick up a rotation of the latest version. See the [official docs](https://docs.microsoft.com/azure/app-service/app-service-key-vault-references#rotation) for more information.
 * @property storageUsesManagedIdentity Should the Function App use Managed Identity to access the storage account. Conflicts with `storage_account_access_key`.
 * > **NOTE:** One of `storage_account_access_key` or `storage_uses_managed_identity` must be specified when using `storage_account_name`.
 * @property tags A mapping of tags which should be assigned to the Windows Function App.
 * @property virtualNetworkSubnetId
 * @property webdeployPublishBasicAuthenticationEnabled Should the default WebDeploy Basic Authentication publishing credentials enabled. Defaults to `true`.
 * > **NOTE:** Setting this value to true will disable the ability to use `zip_deploy_file` which currently relies on the default publishing profile.
 * @property zipDeployFile The local path and filename of the Zip packaged application to deploy to this Windows Function App.
 * > **Note:** Using this value requires `WEBSITE_RUN_FROM_PACKAGE=1` to be set on the App in `app_settings`. Refer to the [Azure docs](https://learn.microsoft.com/en-us/azure/azure-functions/functions-deployment-technologies) for further details.
 */
public data class WindowsFunctionAppArgs(
    public val appSettings: Output>? = null,
    public val authSettings: Output? = null,
    public val authSettingsV2: Output? = null,
    public val backup: Output? = null,
    public val builtinLoggingEnabled: Output? = null,
    public val clientCertificateEnabled: Output? = null,
    public val clientCertificateExclusionPaths: Output? = null,
    public val clientCertificateMode: Output? = null,
    public val connectionStrings: Output>? = null,
    public val contentShareForceDisabled: Output? = null,
    public val dailyMemoryTimeQuota: Output? = null,
    public val enabled: Output? = null,
    public val ftpPublishBasicAuthenticationEnabled: Output? = null,
    public val functionsExtensionVersion: Output? = null,
    public val httpsOnly: Output? = null,
    public val identity: Output? = null,
    public val keyVaultReferenceIdentityId: Output? = null,
    public val location: Output? = null,
    public val name: Output? = null,
    public val publicNetworkAccessEnabled: Output? = null,
    public val resourceGroupName: Output? = null,
    public val servicePlanId: Output? = null,
    public val siteConfig: Output? = null,
    public val stickySettings: Output? = null,
    public val storageAccountAccessKey: Output? = null,
    public val storageAccountName: Output? = null,
    public val storageAccounts: Output>? = null,
    public val storageKeyVaultSecretId: Output? = null,
    public val storageUsesManagedIdentity: Output? = null,
    public val tags: Output>? = null,
    public val virtualNetworkSubnetId: Output? = null,
    public val webdeployPublishBasicAuthenticationEnabled: Output? = null,
    public val zipDeployFile: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.appservice.WindowsFunctionAppArgs =
        com.pulumi.azure.appservice.WindowsFunctionAppArgs.builder()
            .appSettings(
                appSettings?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.key.to(args0.value)
                    }).toMap()
                }),
            )
            .authSettings(authSettings?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .authSettingsV2(authSettingsV2?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .backup(backup?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .builtinLoggingEnabled(builtinLoggingEnabled?.applyValue({ args0 -> args0 }))
            .clientCertificateEnabled(clientCertificateEnabled?.applyValue({ args0 -> args0 }))
            .clientCertificateExclusionPaths(clientCertificateExclusionPaths?.applyValue({ args0 -> args0 }))
            .clientCertificateMode(clientCertificateMode?.applyValue({ args0 -> args0 }))
            .connectionStrings(
                connectionStrings?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            )
            .contentShareForceDisabled(contentShareForceDisabled?.applyValue({ args0 -> args0 }))
            .dailyMemoryTimeQuota(dailyMemoryTimeQuota?.applyValue({ args0 -> args0 }))
            .enabled(enabled?.applyValue({ args0 -> args0 }))
            .ftpPublishBasicAuthenticationEnabled(
                ftpPublishBasicAuthenticationEnabled?.applyValue({ args0 ->
                    args0
                }),
            )
            .functionsExtensionVersion(functionsExtensionVersion?.applyValue({ args0 -> args0 }))
            .httpsOnly(httpsOnly?.applyValue({ args0 -> args0 }))
            .identity(identity?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .keyVaultReferenceIdentityId(keyVaultReferenceIdentityId?.applyValue({ args0 -> args0 }))
            .location(location?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .publicNetworkAccessEnabled(publicNetworkAccessEnabled?.applyValue({ args0 -> args0 }))
            .resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
            .servicePlanId(servicePlanId?.applyValue({ args0 -> args0 }))
            .siteConfig(siteConfig?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .stickySettings(stickySettings?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .storageAccountAccessKey(storageAccountAccessKey?.applyValue({ args0 -> args0 }))
            .storageAccountName(storageAccountName?.applyValue({ args0 -> args0 }))
            .storageAccounts(
                storageAccounts?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            )
            .storageKeyVaultSecretId(storageKeyVaultSecretId?.applyValue({ args0 -> args0 }))
            .storageUsesManagedIdentity(storageUsesManagedIdentity?.applyValue({ args0 -> args0 }))
            .tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
            .virtualNetworkSubnetId(virtualNetworkSubnetId?.applyValue({ args0 -> args0 }))
            .webdeployPublishBasicAuthenticationEnabled(
                webdeployPublishBasicAuthenticationEnabled?.applyValue({ args0 ->
                    args0
                }),
            )
            .zipDeployFile(zipDeployFile?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [WindowsFunctionAppArgs].
 */
@PulumiTagMarker
public class WindowsFunctionAppArgsBuilder internal constructor() {
    private var appSettings: Output>? = null

    private var authSettings: Output? = null

    private var authSettingsV2: Output? = null

    private var backup: Output? = null

    private var builtinLoggingEnabled: Output? = null

    private var clientCertificateEnabled: Output? = null

    private var clientCertificateExclusionPaths: Output? = null

    private var clientCertificateMode: Output? = null

    private var connectionStrings: Output>? = null

    private var contentShareForceDisabled: Output? = null

    private var dailyMemoryTimeQuota: Output? = null

    private var enabled: Output? = null

    private var ftpPublishBasicAuthenticationEnabled: Output? = null

    private var functionsExtensionVersion: Output? = null

    private var httpsOnly: Output? = null

    private var identity: Output? = null

    private var keyVaultReferenceIdentityId: Output? = null

    private var location: Output? = null

    private var name: Output? = null

    private var publicNetworkAccessEnabled: Output? = null

    private var resourceGroupName: Output? = null

    private var servicePlanId: Output? = null

    private var siteConfig: Output? = null

    private var stickySettings: Output? = null

    private var storageAccountAccessKey: Output? = null

    private var storageAccountName: Output? = null

    private var storageAccounts: Output>? = null

    private var storageKeyVaultSecretId: Output? = null

    private var storageUsesManagedIdentity: Output? = null

    private var tags: Output>? = null

    private var virtualNetworkSubnetId: Output? = null

    private var webdeployPublishBasicAuthenticationEnabled: Output? = null

    private var zipDeployFile: Output? = null

    /**
     * @param value A map of key-value pairs for [App
   * Settings](https://docs.microsoft.com/en-us/azure/azure-functions/functions-app-settings) and custom values.
     */
    @JvmName("bnjtoksknistopfd")
    public suspend fun appSettings(`value`: Output>) {
        this.appSettings = value
    }

    /**
     * @param value A `auth_settings` block as defined below.
     */
    @JvmName("fprtpsqkykgpeffp")
    public suspend fun authSettings(`value`: Output) {
        this.authSettings = value
    }

    /**
     * @param value A `auth_settings_v2` block as defined below.
     */
    @JvmName("yfohtnvpnqusjnlc")
    public suspend fun authSettingsV2(`value`: Output) {
        this.authSettingsV2 = value
    }

    /**
     * @param value A `backup` block as defined below.
     */
    @JvmName("nleadhpftomysamn")
    public suspend fun backup(`value`: Output) {
        this.backup = value
    }

    /**
     * @param value Should built in logging be enabled. Configures `AzureWebJobsDashboard` app setting based on the configured storage setting. Defaults to `true`.
     */
    @JvmName("fwxrptiuymqykwhj")
    public suspend fun builtinLoggingEnabled(`value`: Output) {
        this.builtinLoggingEnabled = value
    }

    /**
     * @param value Should the function app use Client Certificates.
     */
    @JvmName("hhcjbbrpdivgqgxo")
    public suspend fun clientCertificateEnabled(`value`: Output) {
        this.clientCertificateEnabled = value
    }

    /**
     * @param value Paths to exclude when using client certificates, separated by ;
     */
    @JvmName("fgnmuxbfavgfprad")
    public suspend fun clientCertificateExclusionPaths(`value`: Output) {
        this.clientCertificateExclusionPaths = value
    }

    /**
     * @param value The mode of the Function App's client certificates requirement for incoming requests. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`. Defaults to `Optional`.
     */
    @JvmName("wywmftwjniajmhuw")
    public suspend fun clientCertificateMode(`value`: Output) {
        this.clientCertificateMode = value
    }

    /**
     * @param value One or more `connection_string` blocks as defined below.
     */
    @JvmName("ruxauxgftuexfnes")
    public suspend
    fun connectionStrings(`value`: Output>) {
        this.connectionStrings = value
    }

    @JvmName("barbjcgiafhdryki")
    public suspend fun connectionStrings(
        vararg
        values: Output,
    ) {
        this.connectionStrings = Output.all(values.asList())
    }

    /**
     * @param values One or more `connection_string` blocks as defined below.
     */
    @JvmName("ixpfcnhkeuuhgbwd")
    public suspend
    fun connectionStrings(values: List>) {
        this.connectionStrings = Output.all(values)
    }

    /**
     * @param value Should Content Share Settings be disabled. Defaults to `false`.
     */
    @JvmName("nwjdoijawvjpilwo")
    public suspend fun contentShareForceDisabled(`value`: Output) {
        this.contentShareForceDisabled = value
    }

    /**
     * @param value The amount of memory in gigabyte-seconds that your application is allowed to consume per day. Setting this value only affects function apps under the consumption plan. Defaults to `0`.
     */
    @JvmName("vnbmsnwnqofrjsij")
    public suspend fun dailyMemoryTimeQuota(`value`: Output) {
        this.dailyMemoryTimeQuota = value
    }

    /**
     * @param value Is the Function App enabled? Defaults to `true`.
     */
    @JvmName("nqrxumnbckaffiwl")
    public suspend fun enabled(`value`: Output) {
        this.enabled = value
    }

    /**
     * @param value Should the default FTP Basic Authentication publishing profile be enabled. Defaults to `true`.
     */
    @JvmName("bnaguealvldvpdke")
    public suspend fun ftpPublishBasicAuthenticationEnabled(`value`: Output) {
        this.ftpPublishBasicAuthenticationEnabled = value
    }

    /**
     * @param value The runtime version associated with the Function App. Defaults to `~4`.
     */
    @JvmName("vnfyxjhxmkuapkir")
    public suspend fun functionsExtensionVersion(`value`: Output) {
        this.functionsExtensionVersion = value
    }

    /**
     * @param value Can the Function App only be accessed via HTTPS?. Defaults to `false`.
     */
    @JvmName("jctvrjxhtjylhjjg")
    public suspend fun httpsOnly(`value`: Output) {
        this.httpsOnly = value
    }

    /**
     * @param value A `identity` block as defined below.
     */
    @JvmName("qmrsgkixfitrrvql")
    public suspend fun identity(`value`: Output) {
        this.identity = value
    }

    /**
     * @param value The User Assigned Identity ID used for accessing KeyVault secrets. The identity must be assigned to the application in the `identity` block. [For more information see - Access vaults with a user-assigned identity](https://docs.microsoft.com/azure/app-service/app-service-key-vault-references#access-vaults-with-a-user-assigned-identity)
     */
    @JvmName("mwqctxqsvaqtqolb")
    public suspend fun keyVaultReferenceIdentityId(`value`: Output) {
        this.keyVaultReferenceIdentityId = value
    }

    /**
     * @param value The Azure Region where the Windows Function App should exist. Changing this forces a new Windows Function App to be created.
     */
    @JvmName("xtcdcmtfmyfsidop")
    public suspend fun location(`value`: Output) {
        this.location = value
    }

    /**
     * @param value The name which should be used for this Windows Function App. Changing this forces a new Windows Function App to be created. Limit the function name to 32 characters to avoid naming collisions. For more information about [Function App naming rule](https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/resource-name-rules#microsoftweb) and [Host ID Collisions](https://github.com/Azure/azure-functions-host/wiki/Host-IDs#host-id-collisions)
     */
    @JvmName("peupnxnwweshifge")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value Should public network access be enabled for the Function App. Defaults to `true`.
     */
    @JvmName("bmqagxhewrkxkllt")
    public suspend fun publicNetworkAccessEnabled(`value`: Output) {
        this.publicNetworkAccessEnabled = value
    }

    /**
     * @param value The name of the Resource Group where the Windows Function App should exist. Changing this forces a new Windows Function App to be created.
     */
    @JvmName("stmbjxhcsphixqqc")
    public suspend fun resourceGroupName(`value`: Output) {
        this.resourceGroupName = value
    }

    /**
     * @param value The ID of the App Service Plan within which to create this Function App.
     */
    @JvmName("xfwjkceppwlmmjxb")
    public suspend fun servicePlanId(`value`: Output) {
        this.servicePlanId = value
    }

    /**
     * @param value A `site_config` block as defined below.
     */
    @JvmName("xemxowolcupntdod")
    public suspend fun siteConfig(`value`: Output) {
        this.siteConfig = value
    }

    /**
     * @param value A `sticky_settings` block as defined below.
     */
    @JvmName("gctxhwhgayhxxygn")
    public suspend fun stickySettings(`value`: Output) {
        this.stickySettings = value
    }

    /**
     * @param value The access key which will be used to access the backend storage account for the Function App. Conflicts with `storage_uses_managed_identity`.
     */
    @JvmName("egxsuwvfudocugia")
    public suspend fun storageAccountAccessKey(`value`: Output) {
        this.storageAccountAccessKey = value
    }

    /**
     * @param value The backend storage account name which will be used by this Function App.
     */
    @JvmName("prvfqpemiwmckedc")
    public suspend fun storageAccountName(`value`: Output) {
        this.storageAccountName = value
    }

    /**
     * @param value One or more `storage_account` blocks as defined below.
     */
    @JvmName("ibruwcusgacqskik")
    public suspend fun storageAccounts(`value`: Output>) {
        this.storageAccounts = value
    }

    @JvmName("nyuqhwghbonxbkhd")
    public suspend fun storageAccounts(vararg values: Output) {
        this.storageAccounts = Output.all(values.asList())
    }

    /**
     * @param values One or more `storage_account` blocks as defined below.
     */
    @JvmName("shtcnnpkybqtbwup")
    public suspend fun storageAccounts(values: List>) {
        this.storageAccounts = Output.all(values)
    }

    /**
     * @param value The Key Vault Secret ID, optionally including version, that contains the Connection String to connect to the storage account for this Function App.
     * > **NOTE:** `storage_key_vault_secret_id` cannot be used with `storage_account_name`.
     * > **NOTE:** `storage_key_vault_secret_id` used without a version will use the latest version of the secret, however, the service can take up to 24h to pick up a rotation of the latest version. See the [official docs](https://docs.microsoft.com/azure/app-service/app-service-key-vault-references#rotation) for more information.
     */
    @JvmName("ldnvaiqmeoutrxxk")
    public suspend fun storageKeyVaultSecretId(`value`: Output) {
        this.storageKeyVaultSecretId = value
    }

    /**
     * @param value Should the Function App use Managed Identity to access the storage account. Conflicts with `storage_account_access_key`.
     * > **NOTE:** One of `storage_account_access_key` or `storage_uses_managed_identity` must be specified when using `storage_account_name`.
     */
    @JvmName("dfrdpuqubuyllhkg")
    public suspend fun storageUsesManagedIdentity(`value`: Output) {
        this.storageUsesManagedIdentity = value
    }

    /**
     * @param value A mapping of tags which should be assigned to the Windows Function App.
     */
    @JvmName("ijfliitfckubnvhe")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    /**
     * @param value
     */
    @JvmName("nywylqqbmfpatpbo")
    public suspend fun virtualNetworkSubnetId(`value`: Output) {
        this.virtualNetworkSubnetId = value
    }

    /**
     * @param value Should the default WebDeploy Basic Authentication publishing credentials enabled. Defaults to `true`.
     * > **NOTE:** Setting this value to true will disable the ability to use `zip_deploy_file` which currently relies on the default publishing profile.
     */
    @JvmName("qdjmgoaffibdaiaf")
    public suspend fun webdeployPublishBasicAuthenticationEnabled(`value`: Output) {
        this.webdeployPublishBasicAuthenticationEnabled = value
    }

    /**
     * @param value The local path and filename of the Zip packaged application to deploy to this Windows Function App.
     * > **Note:** Using this value requires `WEBSITE_RUN_FROM_PACKAGE=1` to be set on the App in `app_settings`. Refer to the [Azure docs](https://learn.microsoft.com/en-us/azure/azure-functions/functions-deployment-technologies) for further details.
     */
    @JvmName("uyycioamoegitpxx")
    public suspend fun zipDeployFile(`value`: Output) {
        this.zipDeployFile = value
    }

    /**
     * @param value A map of key-value pairs for [App
   * Settings](https://docs.microsoft.com/en-us/azure/azure-functions/functions-app-settings) and custom values.
     */
    @JvmName("hjaeroowrfbuvvcw")
    public suspend fun appSettings(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.appSettings = mapped
    }

    /**
     * @param values A map of key-value pairs for [App
   * Settings](https://docs.microsoft.com/en-us/azure/azure-functions/functions-app-settings) and custom values.
     */
    @JvmName("mbbpgrpuneyaqkhr")
    public fun appSettings(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.appSettings = mapped
    }

    /**
     * @param value A `auth_settings` block as defined below.
     */
    @JvmName("ocvuuswqersmdgiu")
    public suspend fun authSettings(`value`: WindowsFunctionAppAuthSettingsArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.authSettings = mapped
    }

    /**
     * @param argument A `auth_settings` block as defined below.
     */
    @JvmName("ybmxmjhihcysldhr")
    public suspend
    fun authSettings(argument: suspend WindowsFunctionAppAuthSettingsArgsBuilder.() -> Unit) {
        val toBeMapped = WindowsFunctionAppAuthSettingsArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.authSettings = mapped
    }

    /**
     * @param value A `auth_settings_v2` block as defined below.
     */
    @JvmName("jsabyndbysfcmabv")
    public suspend fun authSettingsV2(`value`: WindowsFunctionAppAuthSettingsV2Args?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.authSettingsV2 = mapped
    }

    /**
     * @param argument A `auth_settings_v2` block as defined below.
     */
    @JvmName("uvsccstkqimewnkh")
    public suspend
    fun authSettingsV2(argument: suspend WindowsFunctionAppAuthSettingsV2ArgsBuilder.() -> Unit) {
        val toBeMapped = WindowsFunctionAppAuthSettingsV2ArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.authSettingsV2 = mapped
    }

    /**
     * @param value A `backup` block as defined below.
     */
    @JvmName("ptyklcvertodpjyg")
    public suspend fun backup(`value`: WindowsFunctionAppBackupArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.backup = mapped
    }

    /**
     * @param argument A `backup` block as defined below.
     */
    @JvmName("yanhbtgcgtwlqjtp")
    public suspend fun backup(argument: suspend WindowsFunctionAppBackupArgsBuilder.() -> Unit) {
        val toBeMapped = WindowsFunctionAppBackupArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.backup = mapped
    }

    /**
     * @param value Should built in logging be enabled. Configures `AzureWebJobsDashboard` app setting based on the configured storage setting. Defaults to `true`.
     */
    @JvmName("cxwysuqctjwmkyqt")
    public suspend fun builtinLoggingEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.builtinLoggingEnabled = mapped
    }

    /**
     * @param value Should the function app use Client Certificates.
     */
    @JvmName("ojrqvtkxlmmktetu")
    public suspend fun clientCertificateEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.clientCertificateEnabled = mapped
    }

    /**
     * @param value Paths to exclude when using client certificates, separated by ;
     */
    @JvmName("ywqnoxmcwnrwagty")
    public suspend fun clientCertificateExclusionPaths(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.clientCertificateExclusionPaths = mapped
    }

    /**
     * @param value The mode of the Function App's client certificates requirement for incoming requests. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`. Defaults to `Optional`.
     */
    @JvmName("fadsddkrmulqwtwo")
    public suspend fun clientCertificateMode(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.clientCertificateMode = mapped
    }

    /**
     * @param value One or more `connection_string` blocks as defined below.
     */
    @JvmName("iuphaioimysltcbq")
    public suspend fun connectionStrings(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.connectionStrings = mapped
    }

    /**
     * @param argument One or more `connection_string` blocks as defined below.
     */
    @JvmName("ghblqcylrygsxqsh")
    public suspend
    fun connectionStrings(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            WindowsFunctionAppConnectionStringArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.connectionStrings = mapped
    }

    /**
     * @param argument One or more `connection_string` blocks as defined below.
     */
    @JvmName("cqpqmgjfyoqfevaf")
    public suspend fun connectionStrings(
        vararg
        argument: suspend WindowsFunctionAppConnectionStringArgsBuilder.() -> Unit,
    ) {
        val toBeMapped = argument.toList().map {
            WindowsFunctionAppConnectionStringArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.connectionStrings = mapped
    }

    /**
     * @param argument One or more `connection_string` blocks as defined below.
     */
    @JvmName("hrjytjxgtsycskvv")
    public suspend
    fun connectionStrings(argument: suspend WindowsFunctionAppConnectionStringArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(
            WindowsFunctionAppConnectionStringArgsBuilder().applySuspend {
                argument()
            }.build(),
        )
        val mapped = of(toBeMapped)
        this.connectionStrings = mapped
    }

    /**
     * @param values One or more `connection_string` blocks as defined below.
     */
    @JvmName("stwnladhhvcsafaa")
    public suspend fun connectionStrings(vararg values: WindowsFunctionAppConnectionStringArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.connectionStrings = mapped
    }

    /**
     * @param value Should Content Share Settings be disabled. Defaults to `false`.
     */
    @JvmName("qemwknrhoxbulhna")
    public suspend fun contentShareForceDisabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.contentShareForceDisabled = mapped
    }

    /**
     * @param value The amount of memory in gigabyte-seconds that your application is allowed to consume per day. Setting this value only affects function apps under the consumption plan. Defaults to `0`.
     */
    @JvmName("ibpqabavhfpvhqnl")
    public suspend fun dailyMemoryTimeQuota(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.dailyMemoryTimeQuota = mapped
    }

    /**
     * @param value Is the Function App enabled? Defaults to `true`.
     */
    @JvmName("hvsuixcldsmtqwgl")
    public suspend fun enabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.enabled = mapped
    }

    /**
     * @param value Should the default FTP Basic Authentication publishing profile be enabled. Defaults to `true`.
     */
    @JvmName("mftwgkfbplwjifvr")
    public suspend fun ftpPublishBasicAuthenticationEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.ftpPublishBasicAuthenticationEnabled = mapped
    }

    /**
     * @param value The runtime version associated with the Function App. Defaults to `~4`.
     */
    @JvmName("vllnpatdvhnrvkse")
    public suspend fun functionsExtensionVersion(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.functionsExtensionVersion = mapped
    }

    /**
     * @param value Can the Function App only be accessed via HTTPS?. Defaults to `false`.
     */
    @JvmName("qrlwtlkqtshnnwwu")
    public suspend fun httpsOnly(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.httpsOnly = mapped
    }

    /**
     * @param value A `identity` block as defined below.
     */
    @JvmName("yimthyynxukxcqac")
    public suspend fun identity(`value`: WindowsFunctionAppIdentityArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.identity = mapped
    }

    /**
     * @param argument A `identity` block as defined below.
     */
    @JvmName("svctvvndcecpjybv")
    public suspend fun identity(argument: suspend WindowsFunctionAppIdentityArgsBuilder.() -> Unit) {
        val toBeMapped = WindowsFunctionAppIdentityArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.identity = mapped
    }

    /**
     * @param value The User Assigned Identity ID used for accessing KeyVault secrets. The identity must be assigned to the application in the `identity` block. [For more information see - Access vaults with a user-assigned identity](https://docs.microsoft.com/azure/app-service/app-service-key-vault-references#access-vaults-with-a-user-assigned-identity)
     */
    @JvmName("uwleqmpmwyjqwhdw")
    public suspend fun keyVaultReferenceIdentityId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.keyVaultReferenceIdentityId = mapped
    }

    /**
     * @param value The Azure Region where the Windows Function App should exist. Changing this forces a new Windows Function App to be created.
     */
    @JvmName("wfdhjbquksxumgqk")
    public suspend fun location(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.location = mapped
    }

    /**
     * @param value The name which should be used for this Windows Function App. Changing this forces a new Windows Function App to be created. Limit the function name to 32 characters to avoid naming collisions. For more information about [Function App naming rule](https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/resource-name-rules#microsoftweb) and [Host ID Collisions](https://github.com/Azure/azure-functions-host/wiki/Host-IDs#host-id-collisions)
     */
    @JvmName("fjpesvxvmlkkjnun")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value Should public network access be enabled for the Function App. Defaults to `true`.
     */
    @JvmName("rgiaoljttxnbrikj")
    public suspend fun publicNetworkAccessEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.publicNetworkAccessEnabled = mapped
    }

    /**
     * @param value The name of the Resource Group where the Windows Function App should exist. Changing this forces a new Windows Function App to be created.
     */
    @JvmName("wpagieqmrypmrxny")
    public suspend fun resourceGroupName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceGroupName = mapped
    }

    /**
     * @param value The ID of the App Service Plan within which to create this Function App.
     */
    @JvmName("kcnmoqwdttdrdfxq")
    public suspend fun servicePlanId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.servicePlanId = mapped
    }

    /**
     * @param value A `site_config` block as defined below.
     */
    @JvmName("mogibajheshpdvnr")
    public suspend fun siteConfig(`value`: WindowsFunctionAppSiteConfigArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.siteConfig = mapped
    }

    /**
     * @param argument A `site_config` block as defined below.
     */
    @JvmName("mwqhunxsfcjapqxs")
    public suspend
    fun siteConfig(argument: suspend WindowsFunctionAppSiteConfigArgsBuilder.() -> Unit) {
        val toBeMapped = WindowsFunctionAppSiteConfigArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.siteConfig = mapped
    }

    /**
     * @param value A `sticky_settings` block as defined below.
     */
    @JvmName("otssnkwroqfwxoue")
    public suspend fun stickySettings(`value`: WindowsFunctionAppStickySettingsArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.stickySettings = mapped
    }

    /**
     * @param argument A `sticky_settings` block as defined below.
     */
    @JvmName("ftqgkjtdnkqbciyu")
    public suspend
    fun stickySettings(argument: suspend WindowsFunctionAppStickySettingsArgsBuilder.() -> Unit) {
        val toBeMapped = WindowsFunctionAppStickySettingsArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.stickySettings = mapped
    }

    /**
     * @param value The access key which will be used to access the backend storage account for the Function App. Conflicts with `storage_uses_managed_identity`.
     */
    @JvmName("hiosryqejkvmfymg")
    public suspend fun storageAccountAccessKey(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.storageAccountAccessKey = mapped
    }

    /**
     * @param value The backend storage account name which will be used by this Function App.
     */
    @JvmName("jjbmypjiqhrudmhx")
    public suspend fun storageAccountName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.storageAccountName = mapped
    }

    /**
     * @param value One or more `storage_account` blocks as defined below.
     */
    @JvmName("grqtqewlqwmkqlcr")
    public suspend fun storageAccounts(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.storageAccounts = mapped
    }

    /**
     * @param argument One or more `storage_account` blocks as defined below.
     */
    @JvmName("ynyphfkqiiaeydhh")
    public suspend
    fun storageAccounts(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            WindowsFunctionAppStorageAccountArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.storageAccounts = mapped
    }

    /**
     * @param argument One or more `storage_account` blocks as defined below.
     */
    @JvmName("ucsjqxijmhhcduyr")
    public suspend fun storageAccounts(
        vararg
        argument: suspend WindowsFunctionAppStorageAccountArgsBuilder.() -> Unit,
    ) {
        val toBeMapped = argument.toList().map {
            WindowsFunctionAppStorageAccountArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.storageAccounts = mapped
    }

    /**
     * @param argument One or more `storage_account` blocks as defined below.
     */
    @JvmName("qxyhpdbyermcwhvq")
    public suspend
    fun storageAccounts(argument: suspend WindowsFunctionAppStorageAccountArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(
            WindowsFunctionAppStorageAccountArgsBuilder().applySuspend {
                argument()
            }.build(),
        )
        val mapped = of(toBeMapped)
        this.storageAccounts = mapped
    }

    /**
     * @param values One or more `storage_account` blocks as defined below.
     */
    @JvmName("xmhkvjdcpvkyayye")
    public suspend fun storageAccounts(vararg values: WindowsFunctionAppStorageAccountArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.storageAccounts = mapped
    }

    /**
     * @param value The Key Vault Secret ID, optionally including version, that contains the Connection String to connect to the storage account for this Function App.
     * > **NOTE:** `storage_key_vault_secret_id` cannot be used with `storage_account_name`.
     * > **NOTE:** `storage_key_vault_secret_id` used without a version will use the latest version of the secret, however, the service can take up to 24h to pick up a rotation of the latest version. See the [official docs](https://docs.microsoft.com/azure/app-service/app-service-key-vault-references#rotation) for more information.
     */
    @JvmName("bnsyhosfdwfcfjjy")
    public suspend fun storageKeyVaultSecretId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.storageKeyVaultSecretId = mapped
    }

    /**
     * @param value Should the Function App use Managed Identity to access the storage account. Conflicts with `storage_account_access_key`.
     * > **NOTE:** One of `storage_account_access_key` or `storage_uses_managed_identity` must be specified when using `storage_account_name`.
     */
    @JvmName("csqlwynmvsxqlbkg")
    public suspend fun storageUsesManagedIdentity(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.storageUsesManagedIdentity = mapped
    }

    /**
     * @param value A mapping of tags which should be assigned to the Windows Function App.
     */
    @JvmName("siwwaxxlfdslelaq")
    public suspend fun tags(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param values A mapping of tags which should be assigned to the Windows Function App.
     */
    @JvmName("gyjorbuvtpvmvdiq")
    public fun tags(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param value
     */
    @JvmName("plcgodrcopdyxpjq")
    public suspend fun virtualNetworkSubnetId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.virtualNetworkSubnetId = mapped
    }

    /**
     * @param value Should the default WebDeploy Basic Authentication publishing credentials enabled. Defaults to `true`.
     * > **NOTE:** Setting this value to true will disable the ability to use `zip_deploy_file` which currently relies on the default publishing profile.
     */
    @JvmName("ptgoumyhwudupjrn")
    public suspend fun webdeployPublishBasicAuthenticationEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.webdeployPublishBasicAuthenticationEnabled = mapped
    }

    /**
     * @param value The local path and filename of the Zip packaged application to deploy to this Windows Function App.
     * > **Note:** Using this value requires `WEBSITE_RUN_FROM_PACKAGE=1` to be set on the App in `app_settings`. Refer to the [Azure docs](https://learn.microsoft.com/en-us/azure/azure-functions/functions-deployment-technologies) for further details.
     */
    @JvmName("doircibaimutepau")
    public suspend fun zipDeployFile(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.zipDeployFile = mapped
    }

    internal fun build(): WindowsFunctionAppArgs = WindowsFunctionAppArgs(
        appSettings = appSettings,
        authSettings = authSettings,
        authSettingsV2 = authSettingsV2,
        backup = backup,
        builtinLoggingEnabled = builtinLoggingEnabled,
        clientCertificateEnabled = clientCertificateEnabled,
        clientCertificateExclusionPaths = clientCertificateExclusionPaths,
        clientCertificateMode = clientCertificateMode,
        connectionStrings = connectionStrings,
        contentShareForceDisabled = contentShareForceDisabled,
        dailyMemoryTimeQuota = dailyMemoryTimeQuota,
        enabled = enabled,
        ftpPublishBasicAuthenticationEnabled = ftpPublishBasicAuthenticationEnabled,
        functionsExtensionVersion = functionsExtensionVersion,
        httpsOnly = httpsOnly,
        identity = identity,
        keyVaultReferenceIdentityId = keyVaultReferenceIdentityId,
        location = location,
        name = name,
        publicNetworkAccessEnabled = publicNetworkAccessEnabled,
        resourceGroupName = resourceGroupName,
        servicePlanId = servicePlanId,
        siteConfig = siteConfig,
        stickySettings = stickySettings,
        storageAccountAccessKey = storageAccountAccessKey,
        storageAccountName = storageAccountName,
        storageAccounts = storageAccounts,
        storageKeyVaultSecretId = storageKeyVaultSecretId,
        storageUsesManagedIdentity = storageUsesManagedIdentity,
        tags = tags,
        virtualNetworkSubnetId = virtualNetworkSubnetId,
        webdeployPublishBasicAuthenticationEnabled = webdeployPublishBasicAuthenticationEnabled,
        zipDeployFile = zipDeployFile,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy