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

com.pulumi.azure.appservice.kotlin.WindowsFunctionAppSlot.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.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.appservice.kotlin

import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotAuthSettings
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotAuthSettingsV2
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotBackup
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotConnectionString
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotIdentity
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotSiteConfig
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotSiteCredential
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotStorageAccount
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotAuthSettings.Companion.toKotlin as windowsFunctionAppSlotAuthSettingsToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotAuthSettingsV2.Companion.toKotlin as windowsFunctionAppSlotAuthSettingsV2ToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotBackup.Companion.toKotlin as windowsFunctionAppSlotBackupToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotConnectionString.Companion.toKotlin as windowsFunctionAppSlotConnectionStringToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotIdentity.Companion.toKotlin as windowsFunctionAppSlotIdentityToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotSiteConfig.Companion.toKotlin as windowsFunctionAppSlotSiteConfigToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotSiteCredential.Companion.toKotlin as windowsFunctionAppSlotSiteCredentialToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsFunctionAppSlotStorageAccount.Companion.toKotlin as windowsFunctionAppSlotStorageAccountToKotlin

/**
 * Builder for [WindowsFunctionAppSlot].
 */
@PulumiTagMarker
public class WindowsFunctionAppSlotResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: WindowsFunctionAppSlotArgs = WindowsFunctionAppSlotArgs()

    public var opts: CustomResourceOptions = CustomResourceOptions()

    /**
     * @param name The _unique_ name of the resulting resource.
     */
    public fun name(`value`: String) {
        this.name = value
    }

    /**
     * @param block The arguments to use to populate this resource's properties.
     */
    public suspend fun args(block: suspend WindowsFunctionAppSlotArgsBuilder.() -> Unit) {
        val builder = WindowsFunctionAppSlotArgsBuilder()
        block(builder)
        this.args = builder.build()
    }

    /**
     * @param block A bag of options that control this resource's behavior.
     */
    public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
        this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
    }

    internal fun build(): WindowsFunctionAppSlot {
        val builtJavaResource =
            com.pulumi.azure.appservice.WindowsFunctionAppSlot(
                this.name,
                this.args.toJava(),
                this.opts.toJava(),
            )
        return WindowsFunctionAppSlot(builtJavaResource)
    }
}

/**
 * Manages a Windows Function App Slot.
 * ## 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,
 *     servicePlanId: exampleServicePlan.id,
 *     siteConfig: {},
 * });
 * const exampleWindowsFunctionAppSlot = new azure.appservice.WindowsFunctionAppSlot("example", {
 *     name: "example-slot",
 *     functionAppId: exampleWindowsFunctionApp.id,
 *     storageAccountName: exampleAccount.name,
 *     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,
 *     service_plan_id=example_service_plan.id,
 *     site_config={})
 * example_windows_function_app_slot = azure.appservice.WindowsFunctionAppSlot("example",
 *     name="example-slot",
 *     function_app_id=example_windows_function_app.id,
 *     storage_account_name=example_account.name,
 *     site_config={})
 * ```
 * ```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,
 *         ServicePlanId = exampleServicePlan.Id,
 *         SiteConfig = null,
 *     });
 *     var exampleWindowsFunctionAppSlot = new Azure.AppService.WindowsFunctionAppSlot("example", new()
 *     {
 *         Name = "example-slot",
 *         FunctionAppId = exampleWindowsFunctionApp.Id,
 *         StorageAccountName = exampleAccount.Name,
 *         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
 * 		}
 * 		exampleWindowsFunctionApp, err := appservice.NewWindowsFunctionApp(ctx, "example", &appservice.WindowsFunctionAppArgs{
 * 			Name:               pulumi.String("example-windows-function-app"),
 * 			ResourceGroupName:  example.Name,
 * 			Location:           example.Location,
 * 			StorageAccountName: exampleAccount.Name,
 * 			ServicePlanId:      exampleServicePlan.ID(),
 * 			SiteConfig:         nil,
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = appservice.NewWindowsFunctionAppSlot(ctx, "example", &appservice.WindowsFunctionAppSlotArgs{
 * 			Name:               pulumi.String("example-slot"),
 * 			FunctionAppId:      exampleWindowsFunctionApp.ID(),
 * 			StorageAccountName: exampleAccount.Name,
 * 			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 com.pulumi.azure.appservice.WindowsFunctionAppSlot;
 * import com.pulumi.azure.appservice.WindowsFunctionAppSlotArgs;
 * import com.pulumi.azure.appservice.inputs.WindowsFunctionAppSlotSiteConfigArgs;
 * 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())
 *             .servicePlanId(exampleServicePlan.id())
 *             .siteConfig()
 *             .build());
 *         var exampleWindowsFunctionAppSlot = new WindowsFunctionAppSlot("exampleWindowsFunctionAppSlot", WindowsFunctionAppSlotArgs.builder()
 *             .name("example-slot")
 *             .functionAppId(exampleWindowsFunctionApp.id())
 *             .storageAccountName(exampleAccount.name())
 *             .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}
 *       servicePlanId: ${exampleServicePlan.id}
 *       siteConfig: {}
 *   exampleWindowsFunctionAppSlot:
 *     type: azure:appservice:WindowsFunctionAppSlot
 *     name: example
 *     properties:
 *       name: example-slot
 *       functionAppId: ${exampleWindowsFunctionApp.id}
 *       storageAccountName: ${exampleAccount.name}
 *       siteConfig: {}
 * ```
 * 
 * ## Import
 * A Windows Function App Slot can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:appservice/windowsFunctionAppSlot:WindowsFunctionAppSlot example "/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.Web/sites/site1/slots/slot1"
 * ```
 */
public class WindowsFunctionAppSlot internal constructor(
    override val javaResource: com.pulumi.azure.appservice.WindowsFunctionAppSlot,
) : KotlinCustomResource(javaResource, WindowsFunctionAppSlotMapper) {
    /**
     * A map of key-value pairs for [App Settings](https://docs.microsoft.com/azure/azure-functions/functions-app-settings) and custom values.
     */
    public val appSettings: Output>?
        get() = javaResource.appSettings().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.key.to(args0.value)
                }).toMap()
            }).orElse(null)
        })

    /**
     * an `auth_settings` block as detailed below.
     */
    public val authSettings: Output?
        get() = javaResource.authSettings().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    windowsFunctionAppSlotAuthSettingsToKotlin(args0)
                })
            }).orElse(null)
        })

    /**
     * an `auth_settings_v2` block as detailed below.
     */
    public val authSettingsV2: Output?
        get() = javaResource.authSettingsV2().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 -> windowsFunctionAppSlotAuthSettingsV2ToKotlin(args0) })
            }).orElse(null)
        })

    /**
     * a `backup` block as detailed below.
     */
    public val backup: Output?
        get() = javaResource.backup().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    windowsFunctionAppSlotBackupToKotlin(args0)
                })
            }).orElse(null)
        })

    /**
     * Should built-in logging be enabled. Configures `AzureWebJobsDashboard` app setting based on the configured storage setting. Defaults to `true`.
     */
    public val builtinLoggingEnabled: Output?
        get() = javaResource.builtinLoggingEnabled().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * Should the Function App Slot use Client Certificates.
     */
    public val clientCertificateEnabled: Output?
        get() = javaResource.clientCertificateEnabled().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * Paths to exclude when using client certificates, separated by ;
     */
    public val clientCertificateExclusionPaths: Output?
        get() = javaResource.clientCertificateExclusionPaths().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * The mode of the Function App Slot's client certificates requirement for incoming requests. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`. Defaults to `Optional`.
     */
    public val clientCertificateMode: Output?
        get() = javaResource.clientCertificateMode().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * a `connection_string` block as detailed below.
     */
    public val connectionStrings: Output>?
        get() = javaResource.connectionStrings().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.let({ args0 ->
                        windowsFunctionAppSlotConnectionStringToKotlin(args0)
                    })
                })
            }).orElse(null)
        })

    /**
     * Force disable the content share settings.
     */
    public val contentShareForceDisabled: Output?
        get() = javaResource.contentShareForceDisabled().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * The identifier used by App Service to perform domain ownership verification via DNS TXT record.
     */
    public val customDomainVerificationId: Output
        get() = javaResource.customDomainVerificationId().applyValue({ args0 -> args0 })

    /**
     * The amount of memory in gigabyte-seconds that your application is allowed to consume per day. Setting this value only affects function apps in Consumption Plans. Defaults to `0`.
     */
    public val dailyMemoryTimeQuota: Output?
        get() = javaResource.dailyMemoryTimeQuota().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * The default hostname of the Windows Function App Slot.
     */
    public val defaultHostname: Output
        get() = javaResource.defaultHostname().applyValue({ args0 -> args0 })

    /**
     * Is the Windows Function App Slot enabled. Defaults to `true`.
     */
    public val enabled: Output?
        get() = javaResource.enabled().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })

    /**
     * Should the default FTP Basic Authentication publishing profile be enabled. Defaults to `true`.
     */
    public val ftpPublishBasicAuthenticationEnabled: Output?
        get() = javaResource.ftpPublishBasicAuthenticationEnabled().applyValue({ args0 ->
            args0.map({ args0 -> args0 }).orElse(null)
        })

    /**
     * The name of the Windows Function App this Slot is a member of. Changing this forces a new resource to be created.
     */
    public val functionAppId: Output
        get() = javaResource.functionAppId().applyValue({ args0 -> args0 })

    /**
     * The runtime version associated with the Function App Slot. Defaults to `~4`.
     */
    public val functionsExtensionVersion: Output?
        get() = javaResource.functionsExtensionVersion().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * The ID of the App Service Environment used by Function App Slot.
     */
    public val hostingEnvironmentId: Output
        get() = javaResource.hostingEnvironmentId().applyValue({ args0 -> args0 })

    /**
     * Can the Function App Slot only be accessed via HTTPS?. Defaults to `false`.
     */
    public val httpsOnly: Output?
        get() = javaResource.httpsOnly().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })

    /**
     * an `identity` block as detailed below.
     */
    public val identity: Output?
        get() = javaResource.identity().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    windowsFunctionAppSlotIdentityToKotlin(args0)
                })
            }).orElse(null)
        })

    /**
     * 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)
     */
    public val keyVaultReferenceIdentityId: Output
        get() = javaResource.keyVaultReferenceIdentityId().applyValue({ args0 -> args0 })

    /**
     * The Kind value for this Windows Function App Slot.
     */
    public val kind: Output
        get() = javaResource.kind().applyValue({ args0 -> args0 })

    /**
     * Specifies the name of the Windows Function App Slot. Changing this forces a new resource to be created.
     */
    public val name: Output
        get() = javaResource.name().applyValue({ args0 -> args0 })

    /**
     * A list of outbound IP addresses. For example `["52.23.25.3", "52.143.43.12"]`.
     */
    public val outboundIpAddressLists: Output>
        get() = javaResource.outboundIpAddressLists().applyValue({ args0 -> args0.map({ args0 -> args0 }) })

    /**
     * A comma separated list of outbound IP addresses as a string. For example `52.23.25.3,52.143.43.12`.
     */
    public val outboundIpAddresses: Output
        get() = javaResource.outboundIpAddresses().applyValue({ args0 -> args0 })

    /**
     * A list of possible outbound IP addresses, not all of which are necessarily in use. This is a superset of `outbound_ip_address_list`. For example `["52.23.25.3", "52.143.43.12"]`.
     */
    public val possibleOutboundIpAddressLists: Output>
        get() = javaResource.possibleOutboundIpAddressLists().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            })
        })

    /**
     * A comma separated list of possible outbound IP addresses as a string. For example `52.23.25.3,52.143.43.12,52.143.43.17`. This is a superset of `outbound_ip_addresses`. For example `["52.23.25.3", "52.143.43.12","52.143.43.17"]`.
     */
    public val possibleOutboundIpAddresses: Output
        get() = javaResource.possibleOutboundIpAddresses().applyValue({ args0 -> args0 })

    /**
     * Should public network access be enabled for the Function App. Defaults to `true`.
     */
    public val publicNetworkAccessEnabled: Output?
        get() = javaResource.publicNetworkAccessEnabled().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * The ID of the Service Plan in which to run this slot. If not specified the same Service Plan as the Windows Function App will be used.
     */
    public val servicePlanId: Output?
        get() = javaResource.servicePlanId().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * a `site_config` block as detailed below.
     */
    public val siteConfig: Output
        get() = javaResource.siteConfig().applyValue({ args0 ->
            args0.let({ args0 ->
                windowsFunctionAppSlotSiteConfigToKotlin(args0)
            })
        })

    /**
     * A `site_credential` block as defined below.
     */
    public val siteCredentials: Output>
        get() = javaResource.siteCredentials().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 -> windowsFunctionAppSlotSiteCredentialToKotlin(args0) })
            })
        })

    /**
     * The access key which will be used to access the storage account for the Function App Slot.
     */
    public val storageAccountAccessKey: Output?
        get() = javaResource.storageAccountAccessKey().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * The backend storage account name which will be used by this Function App Slot.
     */
    public val storageAccountName: Output?
        get() = javaResource.storageAccountName().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * One or more `storage_account` blocks as defined below.
     */
    public val storageAccounts: Output>?
        get() = javaResource.storageAccounts().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.let({ args0 ->
                        windowsFunctionAppSlotStorageAccountToKotlin(args0)
                    })
                })
            }).orElse(null)
        })

    /**
     * The Key Vault Secret ID, optionally including version, that contains the Connection String to connect to the storage account for this Function App Slot.
     * > **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.
     */
    public val storageKeyVaultSecretId: Output?
        get() = javaResource.storageKeyVaultSecretId().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * Should the Function App Slot use its Managed Identity to access storage.
     * > **NOTE:** One of `storage_account_access_key` or `storage_uses_managed_identity` must be specified when using `storage_account_name`.
     */
    public val storageUsesManagedIdentity: Output?
        get() = javaResource.storageUsesManagedIdentity().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * A mapping of tags which should be assigned to the Windows Function App Slot.
     */
    public val tags: Output>?
        get() = javaResource.tags().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.key.to(args0.value)
                }).toMap()
            }).orElse(null)
        })

    public val virtualNetworkSubnetId: Output?
        get() = javaResource.virtualNetworkSubnetId().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * Should the default WebDeploy Basic Authentication publishing credentials enabled. Defaults to `true`.
     */
    public val webdeployPublishBasicAuthenticationEnabled: Output?
        get() = javaResource.webdeployPublishBasicAuthenticationEnabled().applyValue({ args0 ->
            args0.map({ args0 -> args0 }).orElse(null)
        })
}

public object WindowsFunctionAppSlotMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.azure.appservice.WindowsFunctionAppSlot::class == javaResource::class

    override fun map(javaResource: Resource): WindowsFunctionAppSlot =
        WindowsFunctionAppSlot(javaResource as com.pulumi.azure.appservice.WindowsFunctionAppSlot)
}

/**
 * @see [WindowsFunctionAppSlot].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [WindowsFunctionAppSlot].
 */
public suspend fun windowsFunctionAppSlot(
    name: String,
    block: suspend WindowsFunctionAppSlotResourceBuilder.() -> Unit,
): WindowsFunctionAppSlot {
    val builder = WindowsFunctionAppSlotResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [WindowsFunctionAppSlot].
 * @param name The _unique_ name of the resulting resource.
 */
public fun windowsFunctionAppSlot(name: String): WindowsFunctionAppSlot {
    val builder = WindowsFunctionAppSlotResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy