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

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

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.appservice.kotlin

import com.pulumi.azure.appservice.WindowsWebAppSlotArgs.builder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotAuthSettingsArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotAuthSettingsArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotAuthSettingsV2Args
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotAuthSettingsV2ArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotBackupArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotBackupArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotConnectionStringArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotConnectionStringArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotIdentityArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotIdentityArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotLogsArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotLogsArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotSiteConfigArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotSiteConfigArgsBuilder
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotStorageAccountArgs
import com.pulumi.azure.appservice.kotlin.inputs.WindowsWebAppSlotStorageAccountArgsBuilder
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.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 Web 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 exampleServicePlan = new azure.appservice.ServicePlan("example", {
 *     name: "example-plan",
 *     resourceGroupName: example.name,
 *     location: example.location,
 *     osType: "Windows",
 *     skuName: "P1v2",
 * });
 * const exampleWindowsWebApp = new azure.appservice.WindowsWebApp("example", {
 *     name: "example-windows-web-app",
 *     resourceGroupName: example.name,
 *     location: exampleServicePlan.location,
 *     servicePlanId: exampleServicePlan.id,
 *     siteConfig: {},
 * });
 * const exampleWindowsWebAppSlot = new azure.appservice.WindowsWebAppSlot("example", {
 *     name: "example-slot",
 *     appServiceId: exampleWindowsWebApp.id,
 *     siteConfig: {},
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_azure as azure
 * example = azure.core.ResourceGroup("example",
 *     name="example-resources",
 *     location="West Europe")
 * example_service_plan = azure.appservice.ServicePlan("example",
 *     name="example-plan",
 *     resource_group_name=example.name,
 *     location=example.location,
 *     os_type="Windows",
 *     sku_name="P1v2")
 * example_windows_web_app = azure.appservice.WindowsWebApp("example",
 *     name="example-windows-web-app",
 *     resource_group_name=example.name,
 *     location=example_service_plan.location,
 *     service_plan_id=example_service_plan.id,
 *     site_config={})
 * example_windows_web_app_slot = azure.appservice.WindowsWebAppSlot("example",
 *     name="example-slot",
 *     app_service_id=example_windows_web_app.id,
 *     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 exampleServicePlan = new Azure.AppService.ServicePlan("example", new()
 *     {
 *         Name = "example-plan",
 *         ResourceGroupName = example.Name,
 *         Location = example.Location,
 *         OsType = "Windows",
 *         SkuName = "P1v2",
 *     });
 *     var exampleWindowsWebApp = new Azure.AppService.WindowsWebApp("example", new()
 *     {
 *         Name = "example-windows-web-app",
 *         ResourceGroupName = example.Name,
 *         Location = exampleServicePlan.Location,
 *         ServicePlanId = exampleServicePlan.Id,
 *         SiteConfig = null,
 *     });
 *     var exampleWindowsWebAppSlot = new Azure.AppService.WindowsWebAppSlot("example", new()
 *     {
 *         Name = "example-slot",
 *         AppServiceId = exampleWindowsWebApp.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/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
 * 		}
 * 		exampleServicePlan, err := appservice.NewServicePlan(ctx, "example", &appservice.ServicePlanArgs{
 * 			Name:              pulumi.String("example-plan"),
 * 			ResourceGroupName: example.Name,
 * 			Location:          example.Location,
 * 			OsType:            pulumi.String("Windows"),
 * 			SkuName:           pulumi.String("P1v2"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleWindowsWebApp, err := appservice.NewWindowsWebApp(ctx, "example", &appservice.WindowsWebAppArgs{
 * 			Name:              pulumi.String("example-windows-web-app"),
 * 			ResourceGroupName: example.Name,
 * 			Location:          exampleServicePlan.Location,
 * 			ServicePlanId:     exampleServicePlan.ID(),
 * 			SiteConfig:        nil,
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = appservice.NewWindowsWebAppSlot(ctx, "example", &appservice.WindowsWebAppSlotArgs{
 * 			Name:         pulumi.String("example-slot"),
 * 			AppServiceId: exampleWindowsWebApp.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.appservice.ServicePlan;
 * import com.pulumi.azure.appservice.ServicePlanArgs;
 * import com.pulumi.azure.appservice.WindowsWebApp;
 * import com.pulumi.azure.appservice.WindowsWebAppArgs;
 * import com.pulumi.azure.appservice.inputs.WindowsWebAppSiteConfigArgs;
 * import com.pulumi.azure.appservice.WindowsWebAppSlot;
 * import com.pulumi.azure.appservice.WindowsWebAppSlotArgs;
 * import com.pulumi.azure.appservice.inputs.WindowsWebAppSlotSiteConfigArgs;
 * 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 exampleServicePlan = new ServicePlan("exampleServicePlan", ServicePlanArgs.builder()
 *             .name("example-plan")
 *             .resourceGroupName(example.name())
 *             .location(example.location())
 *             .osType("Windows")
 *             .skuName("P1v2")
 *             .build());
 *         var exampleWindowsWebApp = new WindowsWebApp("exampleWindowsWebApp", WindowsWebAppArgs.builder()
 *             .name("example-windows-web-app")
 *             .resourceGroupName(example.name())
 *             .location(exampleServicePlan.location())
 *             .servicePlanId(exampleServicePlan.id())
 *             .siteConfig()
 *             .build());
 *         var exampleWindowsWebAppSlot = new WindowsWebAppSlot("exampleWindowsWebAppSlot", WindowsWebAppSlotArgs.builder()
 *             .name("example-slot")
 *             .appServiceId(exampleWindowsWebApp.id())
 *             .siteConfig()
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: azure:core:ResourceGroup
 *     properties:
 *       name: example-resources
 *       location: West Europe
 *   exampleServicePlan:
 *     type: azure:appservice:ServicePlan
 *     name: example
 *     properties:
 *       name: example-plan
 *       resourceGroupName: ${example.name}
 *       location: ${example.location}
 *       osType: Windows
 *       skuName: P1v2
 *   exampleWindowsWebApp:
 *     type: azure:appservice:WindowsWebApp
 *     name: example
 *     properties:
 *       name: example-windows-web-app
 *       resourceGroupName: ${example.name}
 *       location: ${exampleServicePlan.location}
 *       servicePlanId: ${exampleServicePlan.id}
 *       siteConfig: {}
 *   exampleWindowsWebAppSlot:
 *     type: azure:appservice:WindowsWebAppSlot
 *     name: example
 *     properties:
 *       name: example-slot
 *       appServiceId: ${exampleWindowsWebApp.id}
 *       siteConfig: {}
 * ```
 * 
 * ## Import
 * Windows Web Apps can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:appservice/windowsWebAppSlot:WindowsWebAppSlot example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.Web/sites/site1/slots/slot1
 * ```
 * @property appServiceId The ID of the Windows Web App this Deployment Slot will be part of. Changing this forces a new Windows Web App to be created.
 * @property appSettings A map of key-value pairs of App Settings.
 * @property authSettings An `auth_settings` block as defined below.
 * @property authSettingsV2 An `auth_settings_v2` block as defined below.
 * @property backup A `backup` block as defined below.
 * @property clientAffinityEnabled Should Client Affinity be enabled?
 * @property clientCertificateEnabled Should Client Certificates be enabled?
 * @property clientCertificateExclusionPaths Paths to exclude when using client certificates, separated by ;
 * @property clientCertificateMode The Client Certificate mode. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`. This property has no effect when `client_cert_enabled` is `false`. Defaults to `Required`.
 * @property connectionStrings One or more `connection_string` blocks as defined below.
 * @property enabled Should the Windows Web App Slot be enabled? Defaults to `true`.
 * @property ftpPublishBasicAuthenticationEnabled Should the default FTP Basic Authentication publishing profile be enabled. Defaults to `true`.
 * @property httpsOnly Should the Windows Web App Slot require HTTPS connections. Defaults to `false`.
 * @property identity An `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 logs A `logs` block as defined below.
 * @property name
 * @property publicNetworkAccessEnabled Should public network access be enabled for the Web App. Defaults to `true`.
 * @property servicePlanId The ID of the Service Plan in which to run this slot. If not specified the same Service Plan as the Windows Web App will be used.
 * > **Note:** `service_plan_id` should only be specified if it differs from the Service Plan of the associated Windows Web App.
 * @property siteConfig A `site_config` block as defined below.
 * @property storageAccounts One or more `storage_account` blocks as defined below.
 * > **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://docs.microsoft.com/en-us/azure/app-service/deploy-run-package) for further details.
 * @property tags A mapping of tags which should be assigned to the Windows Web App Slot.
 * @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 Web App.
 */
public data class WindowsWebAppSlotArgs(
    public val appServiceId: Output? = null,
    public val appSettings: Output>? = null,
    public val authSettings: Output? = null,
    public val authSettingsV2: Output? = null,
    public val backup: Output? = null,
    public val clientAffinityEnabled: Output? = null,
    public val clientCertificateEnabled: Output? = null,
    public val clientCertificateExclusionPaths: Output? = null,
    public val clientCertificateMode: Output? = null,
    public val connectionStrings: Output>? = null,
    public val enabled: Output? = null,
    public val ftpPublishBasicAuthenticationEnabled: Output? = null,
    public val httpsOnly: Output? = null,
    public val identity: Output? = null,
    public val keyVaultReferenceIdentityId: Output? = null,
    public val logs: Output? = null,
    public val name: Output? = null,
    public val publicNetworkAccessEnabled: Output? = null,
    public val servicePlanId: Output? = null,
    public val siteConfig: Output? = null,
    public val storageAccounts: 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.WindowsWebAppSlotArgs =
        com.pulumi.azure.appservice.WindowsWebAppSlotArgs.builder()
            .appServiceId(appServiceId?.applyValue({ args0 -> args0 }))
            .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() }) }))
            .clientAffinityEnabled(clientAffinityEnabled?.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()
                        })
                    })
                }),
            )
            .enabled(enabled?.applyValue({ args0 -> args0 }))
            .ftpPublishBasicAuthenticationEnabled(
                ftpPublishBasicAuthenticationEnabled?.applyValue({ args0 ->
                    args0
                }),
            )
            .httpsOnly(httpsOnly?.applyValue({ args0 -> args0 }))
            .identity(identity?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .keyVaultReferenceIdentityId(keyVaultReferenceIdentityId?.applyValue({ args0 -> args0 }))
            .logs(logs?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .name(name?.applyValue({ args0 -> args0 }))
            .publicNetworkAccessEnabled(publicNetworkAccessEnabled?.applyValue({ args0 -> args0 }))
            .servicePlanId(servicePlanId?.applyValue({ args0 -> args0 }))
            .siteConfig(siteConfig?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .storageAccounts(
                storageAccounts?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            )
            .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 [WindowsWebAppSlotArgs].
 */
@PulumiTagMarker
public class WindowsWebAppSlotArgsBuilder internal constructor() {
    private var appServiceId: Output? = null

    private var appSettings: Output>? = null

    private var authSettings: Output? = null

    private var authSettingsV2: Output? = null

    private var backup: Output? = null

    private var clientAffinityEnabled: Output? = null

    private var clientCertificateEnabled: Output? = null

    private var clientCertificateExclusionPaths: Output? = null

    private var clientCertificateMode: Output? = null

    private var connectionStrings: Output>? = null

    private var enabled: Output? = null

    private var ftpPublishBasicAuthenticationEnabled: Output? = null

    private var httpsOnly: Output? = null

    private var identity: Output? = null

    private var keyVaultReferenceIdentityId: Output? = null

    private var logs: Output? = null

    private var name: Output? = null

    private var publicNetworkAccessEnabled: Output? = null

    private var servicePlanId: Output? = null

    private var siteConfig: Output? = null

    private var storageAccounts: Output>? = null

    private var tags: Output>? = null

    private var virtualNetworkSubnetId: Output? = null

    private var webdeployPublishBasicAuthenticationEnabled: Output? = null

    private var zipDeployFile: Output? = null

    /**
     * @param value The ID of the Windows Web App this Deployment Slot will be part of. Changing this forces a new Windows Web App to be created.
     */
    @JvmName("bjtgquudsljspssj")
    public suspend fun appServiceId(`value`: Output) {
        this.appServiceId = value
    }

    /**
     * @param value A map of key-value pairs of App Settings.
     */
    @JvmName("mppkujybjjkxbvfk")
    public suspend fun appSettings(`value`: Output>) {
        this.appSettings = value
    }

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

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

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

    /**
     * @param value Should Client Affinity be enabled?
     */
    @JvmName("kgvskflaxykynlpc")
    public suspend fun clientAffinityEnabled(`value`: Output) {
        this.clientAffinityEnabled = value
    }

    /**
     * @param value Should Client Certificates be enabled?
     */
    @JvmName("ghshdtyunpypqjsl")
    public suspend fun clientCertificateEnabled(`value`: Output) {
        this.clientCertificateEnabled = value
    }

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

    /**
     * @param value The Client Certificate mode. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`. This property has no effect when `client_cert_enabled` is `false`. Defaults to `Required`.
     */
    @JvmName("usbdmcmvalnoijwp")
    public suspend fun clientCertificateMode(`value`: Output) {
        this.clientCertificateMode = value
    }

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

    @JvmName("yldlqlkjhjgxcilc")
    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("vybwxxchuwhxlmmd")
    public suspend fun connectionStrings(values: List>) {
        this.connectionStrings = Output.all(values)
    }

    /**
     * @param value Should the Windows Web App Slot be enabled? Defaults to `true`.
     */
    @JvmName("xvqtgvxtmgeltmkv")
    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("cnmxxcdnhouubyue")
    public suspend fun ftpPublishBasicAuthenticationEnabled(`value`: Output) {
        this.ftpPublishBasicAuthenticationEnabled = value
    }

    /**
     * @param value Should the Windows Web App Slot require HTTPS connections. Defaults to `false`.
     */
    @JvmName("amgymfbcgqglqyaw")
    public suspend fun httpsOnly(`value`: Output) {
        this.httpsOnly = value
    }

    /**
     * @param value An `identity` block as defined below.
     */
    @JvmName("gfqtvvvibmabqwyd")
    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("ckutmghqghvwfysr")
    public suspend fun keyVaultReferenceIdentityId(`value`: Output) {
        this.keyVaultReferenceIdentityId = value
    }

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

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

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

    /**
     * @param value The ID of the Service Plan in which to run this slot. If not specified the same Service Plan as the Windows Web App will be used.
     * > **Note:** `service_plan_id` should only be specified if it differs from the Service Plan of the associated Windows Web App.
     */
    @JvmName("gddbpiihteodmfxd")
    public suspend fun servicePlanId(`value`: Output) {
        this.servicePlanId = value
    }

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

    /**
     * @param value One or more `storage_account` blocks as defined below.
     * > **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://docs.microsoft.com/en-us/azure/app-service/deploy-run-package) for further details.
     */
    @JvmName("vagfrnltjbhattye")
    public suspend fun storageAccounts(`value`: Output>) {
        this.storageAccounts = value
    }

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

    /**
     * @param values One or more `storage_account` blocks as defined below.
     * > **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://docs.microsoft.com/en-us/azure/app-service/deploy-run-package) for further details.
     */
    @JvmName("fjangulsvxbfcqvq")
    public suspend fun storageAccounts(values: List>) {
        this.storageAccounts = Output.all(values)
    }

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

    /**
     * @param value
     */
    @JvmName("fqawhhavktayxmdo")
    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("mvmpnctghbgdeboo")
    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 Web App.
     */
    @JvmName("lhlnsuceidklkvrb")
    public suspend fun zipDeployFile(`value`: Output) {
        this.zipDeployFile = value
    }

    /**
     * @param value The ID of the Windows Web App this Deployment Slot will be part of. Changing this forces a new Windows Web App to be created.
     */
    @JvmName("tjsfkmptsycawcbr")
    public suspend fun appServiceId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.appServiceId = mapped
    }

    /**
     * @param value A map of key-value pairs of App Settings.
     */
    @JvmName("qtkjjnsjgqyvwdeh")
    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 of App Settings.
     */
    @JvmName("wajbplewteuwtiua")
    public fun appSettings(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.appSettings = mapped
    }

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

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

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

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

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

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

    /**
     * @param value Should Client Affinity be enabled?
     */
    @JvmName("syreprwicihmlhvv")
    public suspend fun clientAffinityEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.clientAffinityEnabled = mapped
    }

    /**
     * @param value Should Client Certificates be enabled?
     */
    @JvmName("datmhtpedskmwped")
    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("qwijyswejyadpuin")
    public suspend fun clientCertificateExclusionPaths(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.clientCertificateExclusionPaths = mapped
    }

    /**
     * @param value The Client Certificate mode. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`. This property has no effect when `client_cert_enabled` is `false`. Defaults to `Required`.
     */
    @JvmName("fippubsvrklumtqj")
    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("qsvbiyifawftqvoc")
    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("xmkgenqvfbcfipyr")
    public suspend fun connectionStrings(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            WindowsWebAppSlotConnectionStringArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.connectionStrings = mapped
    }

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

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

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

    /**
     * @param value Should the Windows Web App Slot be enabled? Defaults to `true`.
     */
    @JvmName("viwtorhupalrgqvc")
    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("pxyllawbetkvlitu")
    public suspend fun ftpPublishBasicAuthenticationEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.ftpPublishBasicAuthenticationEnabled = mapped
    }

    /**
     * @param value Should the Windows Web App Slot require HTTPS connections. Defaults to `false`.
     */
    @JvmName("wwfryoshdmfxkvcq")
    public suspend fun httpsOnly(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.httpsOnly = mapped
    }

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

    /**
     * @param argument An `identity` block as defined below.
     */
    @JvmName("ehoddeltctlbwpho")
    public suspend fun identity(argument: suspend WindowsWebAppSlotIdentityArgsBuilder.() -> Unit) {
        val toBeMapped = WindowsWebAppSlotIdentityArgsBuilder().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("epkmfvqantaebnfq")
    public suspend fun keyVaultReferenceIdentityId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.keyVaultReferenceIdentityId = mapped
    }

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

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

    /**
     * @param value
     */
    @JvmName("miryepxfrxlehyhw")
    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 Web App. Defaults to `true`.
     */
    @JvmName("tojdmpatiyagpiny")
    public suspend fun publicNetworkAccessEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.publicNetworkAccessEnabled = mapped
    }

    /**
     * @param value The ID of the Service Plan in which to run this slot. If not specified the same Service Plan as the Windows Web App will be used.
     * > **Note:** `service_plan_id` should only be specified if it differs from the Service Plan of the associated Windows Web App.
     */
    @JvmName("ufjeywfdwdnvorvt")
    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("tcwdasjvtypqdtml")
    public suspend fun siteConfig(`value`: WindowsWebAppSlotSiteConfigArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.siteConfig = mapped
    }

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

    /**
     * @param value One or more `storage_account` blocks as defined below.
     * > **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://docs.microsoft.com/en-us/azure/app-service/deploy-run-package) for further details.
     */
    @JvmName("twuwycxdoibllvoc")
    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.
     * > **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://docs.microsoft.com/en-us/azure/app-service/deploy-run-package) for further details.
     */
    @JvmName("imuwqsudgswlgetn")
    public suspend fun storageAccounts(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            WindowsWebAppSlotStorageAccountArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.storageAccounts = mapped
    }

    /**
     * @param argument One or more `storage_account` blocks as defined below.
     * > **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://docs.microsoft.com/en-us/azure/app-service/deploy-run-package) for further details.
     */
    @JvmName("gbycdmxnksxcfilj")
    public suspend fun storageAccounts(vararg argument: suspend WindowsWebAppSlotStorageAccountArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            WindowsWebAppSlotStorageAccountArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.storageAccounts = mapped
    }

    /**
     * @param argument One or more `storage_account` blocks as defined below.
     * > **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://docs.microsoft.com/en-us/azure/app-service/deploy-run-package) for further details.
     */
    @JvmName("dxxpsucyirldqhlu")
    public suspend fun storageAccounts(argument: suspend WindowsWebAppSlotStorageAccountArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(
            WindowsWebAppSlotStorageAccountArgsBuilder().applySuspend {
                argument()
            }.build(),
        )
        val mapped = of(toBeMapped)
        this.storageAccounts = mapped
    }

    /**
     * @param values One or more `storage_account` blocks as defined below.
     * > **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://docs.microsoft.com/en-us/azure/app-service/deploy-run-package) for further details.
     */
    @JvmName("syhpxildvpmnvvih")
    public suspend fun storageAccounts(vararg values: WindowsWebAppSlotStorageAccountArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.storageAccounts = mapped
    }

    /**
     * @param value A mapping of tags which should be assigned to the Windows Web App Slot.
     */
    @JvmName("iwjulncxsdaiacjg")
    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 Web App Slot.
     */
    @JvmName("ppvkbvgrcycqhiwm")
    public fun tags(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param value
     */
    @JvmName("dskrvyqhatqjfnsx")
    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("jjtotlqkltplumwe")
    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 Web App.
     */
    @JvmName("tafuhqocvaaglglr")
    public suspend fun zipDeployFile(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.zipDeployFile = mapped
    }

    internal fun build(): WindowsWebAppSlotArgs = WindowsWebAppSlotArgs(
        appServiceId = appServiceId,
        appSettings = appSettings,
        authSettings = authSettings,
        authSettingsV2 = authSettingsV2,
        backup = backup,
        clientAffinityEnabled = clientAffinityEnabled,
        clientCertificateEnabled = clientCertificateEnabled,
        clientCertificateExclusionPaths = clientCertificateExclusionPaths,
        clientCertificateMode = clientCertificateMode,
        connectionStrings = connectionStrings,
        enabled = enabled,
        ftpPublishBasicAuthenticationEnabled = ftpPublishBasicAuthenticationEnabled,
        httpsOnly = httpsOnly,
        identity = identity,
        keyVaultReferenceIdentityId = keyVaultReferenceIdentityId,
        logs = logs,
        name = name,
        publicNetworkAccessEnabled = publicNetworkAccessEnabled,
        servicePlanId = servicePlanId,
        siteConfig = siteConfig,
        storageAccounts = storageAccounts,
        tags = tags,
        virtualNetworkSubnetId = virtualNetworkSubnetId,
        webdeployPublishBasicAuthenticationEnabled = webdeployPublishBasicAuthenticationEnabled,
        zipDeployFile = zipDeployFile,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy