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

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

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

package com.pulumi.azure.appservice.kotlin

import com.pulumi.azure.appservice.kotlin.outputs.AppServiceAuthSettings
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceBackup
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceConnectionString
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceIdentity
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceLogs
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceSiteConfig
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceSiteCredential
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceSourceControl
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceStorageAccount
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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceAuthSettings.Companion.toKotlin as appServiceAuthSettingsToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceBackup.Companion.toKotlin as appServiceBackupToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceConnectionString.Companion.toKotlin as appServiceConnectionStringToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceIdentity.Companion.toKotlin as appServiceIdentityToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceLogs.Companion.toKotlin as appServiceLogsToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceSiteConfig.Companion.toKotlin as appServiceSiteConfigToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceSiteCredential.Companion.toKotlin as appServiceSiteCredentialToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceSourceControl.Companion.toKotlin as appServiceSourceControlToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.AppServiceStorageAccount.Companion.toKotlin as appServiceStorageAccountToKotlin

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

    public var args: AppServiceArgs = AppServiceArgs()

    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 AppServiceArgsBuilder.() -> Unit) {
        val builder = AppServiceArgsBuilder()
        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(): AppService {
        val builtJavaResource = com.pulumi.azure.appservice.AppService(
            this.name,
            this.args.toJava(),
            this.opts.toJava(),
        )
        return AppService(builtJavaResource)
    }
}

/**
 * Manages an App Service (within an App Service Plan).
 * !> **NOTE:** This resource has been deprecated in version 5.0 of the provider and will be removed in version 6.0. Please use `azure.appservice.LinuxWebApp` resources instead.
 * > **Note:** When using Slots - the `app_settings`, `connection_string` and `site_config` blocks on the `azure.appservice.AppService` resource will be overwritten when promoting a Slot using the `azure.appservice.ActiveSlot` resource.
 * ## Example Usage
 * This example provisions a Windows App Service.
 * 
 * ```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 examplePlan = new azure.appservice.Plan("example", {
 *     name: "example-appserviceplan",
 *     location: example.location,
 *     resourceGroupName: example.name,
 *     sku: {
 *         tier: "Standard",
 *         size: "S1",
 *     },
 * });
 * const exampleAppService = new azure.appservice.AppService("example", {
 *     name: "example-app-service",
 *     location: example.location,
 *     resourceGroupName: example.name,
 *     appServicePlanId: examplePlan.id,
 *     siteConfig: {
 *         dotnetFrameworkVersion: "v4.0",
 *         scmType: "LocalGit",
 *     },
 *     appSettings: {
 *         SOME_KEY: "some-value",
 *     },
 *     connectionStrings: [{
 *         name: "Database",
 *         type: "SQLServer",
 *         value: "Server=some-server.mydomain.com;Integrated Security=SSPI",
 *     }],
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_azure as azure
 * example = azure.core.ResourceGroup("example",
 *     name="example-resources",
 *     location="West Europe")
 * example_plan = azure.appservice.Plan("example",
 *     name="example-appserviceplan",
 *     location=example.location,
 *     resource_group_name=example.name,
 *     sku=azure.appservice.PlanSkuArgs(
 *         tier="Standard",
 *         size="S1",
 *     ))
 * example_app_service = azure.appservice.AppService("example",
 *     name="example-app-service",
 *     location=example.location,
 *     resource_group_name=example.name,
 *     app_service_plan_id=example_plan.id,
 *     site_config=azure.appservice.AppServiceSiteConfigArgs(
 *         dotnet_framework_version="v4.0",
 *         scm_type="LocalGit",
 *     ),
 *     app_settings={
 *         "SOME_KEY": "some-value",
 *     },
 *     connection_strings=[azure.appservice.AppServiceConnectionStringArgs(
 *         name="Database",
 *         type="SQLServer",
 *         value="Server=some-server.mydomain.com;Integrated Security=SSPI",
 *     )])
 * ```
 * ```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 examplePlan = new Azure.AppService.Plan("example", new()
 *     {
 *         Name = "example-appserviceplan",
 *         Location = example.Location,
 *         ResourceGroupName = example.Name,
 *         Sku = new Azure.AppService.Inputs.PlanSkuArgs
 *         {
 *             Tier = "Standard",
 *             Size = "S1",
 *         },
 *     });
 *     var exampleAppService = new Azure.AppService.AppService("example", new()
 *     {
 *         Name = "example-app-service",
 *         Location = example.Location,
 *         ResourceGroupName = example.Name,
 *         AppServicePlanId = examplePlan.Id,
 *         SiteConfig = new Azure.AppService.Inputs.AppServiceSiteConfigArgs
 *         {
 *             DotnetFrameworkVersion = "v4.0",
 *             ScmType = "LocalGit",
 *         },
 *         AppSettings =
 *         {
 *             { "SOME_KEY", "some-value" },
 *         },
 *         ConnectionStrings = new[]
 *         {
 *             new Azure.AppService.Inputs.AppServiceConnectionStringArgs
 *             {
 *                 Name = "Database",
 *                 Type = "SQLServer",
 *                 Value = "Server=some-server.mydomain.com;Integrated Security=SSPI",
 *             },
 *         },
 *     });
 * });
 * ```
 * ```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
 * 		}
 * 		examplePlan, err := appservice.NewPlan(ctx, "example", &appservice.PlanArgs{
 * 			Name:              pulumi.String("example-appserviceplan"),
 * 			Location:          example.Location,
 * 			ResourceGroupName: example.Name,
 * 			Sku: &appservice.PlanSkuArgs{
 * 				Tier: pulumi.String("Standard"),
 * 				Size: pulumi.String("S1"),
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = appservice.NewAppService(ctx, "example", &appservice.AppServiceArgs{
 * 			Name:              pulumi.String("example-app-service"),
 * 			Location:          example.Location,
 * 			ResourceGroupName: example.Name,
 * 			AppServicePlanId:  examplePlan.ID(),
 * 			SiteConfig: &appservice.AppServiceSiteConfigArgs{
 * 				DotnetFrameworkVersion: pulumi.String("v4.0"),
 * 				ScmType:                pulumi.String("LocalGit"),
 * 			},
 * 			AppSettings: pulumi.StringMap{
 * 				"SOME_KEY": pulumi.String("some-value"),
 * 			},
 * 			ConnectionStrings: appservice.AppServiceConnectionStringArray{
 * 				&appservice.AppServiceConnectionStringArgs{
 * 					Name:  pulumi.String("Database"),
 * 					Type:  pulumi.String("SQLServer"),
 * 					Value: pulumi.String("Server=some-server.mydomain.com;Integrated Security=SSPI"),
 * 				},
 * 			},
 * 		})
 * 		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.Plan;
 * import com.pulumi.azure.appservice.PlanArgs;
 * import com.pulumi.azure.appservice.inputs.PlanSkuArgs;
 * import com.pulumi.azure.appservice.AppService;
 * import com.pulumi.azure.appservice.AppServiceArgs;
 * import com.pulumi.azure.appservice.inputs.AppServiceSiteConfigArgs;
 * import com.pulumi.azure.appservice.inputs.AppServiceConnectionStringArgs;
 * 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 examplePlan = new Plan("examplePlan", PlanArgs.builder()
 *             .name("example-appserviceplan")
 *             .location(example.location())
 *             .resourceGroupName(example.name())
 *             .sku(PlanSkuArgs.builder()
 *                 .tier("Standard")
 *                 .size("S1")
 *                 .build())
 *             .build());
 *         var exampleAppService = new AppService("exampleAppService", AppServiceArgs.builder()
 *             .name("example-app-service")
 *             .location(example.location())
 *             .resourceGroupName(example.name())
 *             .appServicePlanId(examplePlan.id())
 *             .siteConfig(AppServiceSiteConfigArgs.builder()
 *                 .dotnetFrameworkVersion("v4.0")
 *                 .scmType("LocalGit")
 *                 .build())
 *             .appSettings(Map.of("SOME_KEY", "some-value"))
 *             .connectionStrings(AppServiceConnectionStringArgs.builder()
 *                 .name("Database")
 *                 .type("SQLServer")
 *                 .value("Server=some-server.mydomain.com;Integrated Security=SSPI")
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: azure:core:ResourceGroup
 *     properties:
 *       name: example-resources
 *       location: West Europe
 *   examplePlan:
 *     type: azure:appservice:Plan
 *     name: example
 *     properties:
 *       name: example-appserviceplan
 *       location: ${example.location}
 *       resourceGroupName: ${example.name}
 *       sku:
 *         tier: Standard
 *         size: S1
 *   exampleAppService:
 *     type: azure:appservice:AppService
 *     name: example
 *     properties:
 *       name: example-app-service
 *       location: ${example.location}
 *       resourceGroupName: ${example.name}
 *       appServicePlanId: ${examplePlan.id}
 *       siteConfig:
 *         dotnetFrameworkVersion: v4.0
 *         scmType: LocalGit
 *       appSettings:
 *         SOME_KEY: some-value
 *       connectionStrings:
 *         - name: Database
 *           type: SQLServer
 *           value: Server=some-server.mydomain.com;Integrated Security=SSPI
 * ```
 * 
 * ## Import
 * App Services can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:appservice/appService:AppService instance1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Web/sites/instance1
 * ```
 */
public class AppService internal constructor(
    override val javaResource: com.pulumi.azure.appservice.AppService,
) : KotlinCustomResource(javaResource, AppServiceMapper) {
    /**
     * The ID of the App Service Plan within which to create this App Service.
     */
    public val appServicePlanId: Output
        get() = javaResource.appServicePlanId().applyValue({ args0 -> args0 })

    /**
     * A key-value pair of App Settings.
     */
    public val appSettings: Output>
        get() = javaResource.appSettings().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.key.to(args0.value)
            }).toMap()
        })

    /**
     * A `auth_settings` block as defined below.
     */
    public val authSettings: Output
        get() = javaResource.authSettings().applyValue({ args0 ->
            args0.let({ args0 ->
                appServiceAuthSettingsToKotlin(args0)
            })
        })

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

    /**
     * Should the App Service send session affinity cookies, which route client requests in the same session to the same instance?
     */
    public val clientAffinityEnabled: Output?
        get() = javaResource.clientAffinityEnabled().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * Does the App Service require client certificates for incoming requests? Defaults to `false`.
     */
    public val clientCertEnabled: Output?
        get() = javaResource.clientCertEnabled().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * Mode of client certificates for this App Service. Possible values are `Required`, `Optional` and `OptionalInteractiveUser`. If this parameter is set, `client_cert_enabled` must be set to `true`, otherwise this parameter is ignored.
     */
    public val clientCertMode: Output
        get() = javaResource.clientCertMode().applyValue({ args0 -> args0 })

    /**
     * One or more `connection_string` blocks as defined below.
     */
    public val connectionStrings: Output>
        get() = javaResource.connectionStrings().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 -> appServiceConnectionStringToKotlin(args0) })
            })
        })

    /**
     * An 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 Default Hostname associated with the App Service - such as `mysite.azurewebsites.net`
     */
    public val defaultSiteHostname: Output
        get() = javaResource.defaultSiteHostname().applyValue({ args0 -> args0 })

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

    /**
     * Can the App Service 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 defined below.
     */
    public val identity: Output?
        get() = javaResource.identity().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    appServiceIdentityToKotlin(args0)
                })
            }).orElse(null)
        })

    /**
     * The User Assigned Identity Id used for looking up KeyVault secrets. The identity must be assigned to the application. [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 })

    /**
     * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
     */
    public val location: Output
        get() = javaResource.location().applyValue({ args0 -> args0 })

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

    /**
     * Specifies the name of the App Service. 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 - such as `["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 - such as `52.23.25.3,52.143.43.12`
     */
    public val outboundIpAddresses: Output
        get() = javaResource.outboundIpAddresses().applyValue({ args0 -> args0 })

    /**
     * A list of outbound IP addresses - such as `["52.23.25.3", "52.143.43.12", "52.143.43.17"]` - not all of which are necessarily in use. Superset of `outbound_ip_address_list`.
     */
    public val possibleOutboundIpAddressLists: Output>
        get() = javaResource.possibleOutboundIpAddressLists().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            })
        })

    /**
     * A comma separated list of outbound IP addresses - such as `52.23.25.3,52.143.43.12,52.143.43.17` - not all of which are necessarily in use. Superset of `outbound_ip_addresses`.
     */
    public val possibleOutboundIpAddresses: Output
        get() = javaResource.possibleOutboundIpAddresses().applyValue({ args0 -> args0 })

    /**
     * The name of the resource group in which to create the App Service. Changing this forces a new resource to be created.
     */
    public val resourceGroupName: Output
        get() = javaResource.resourceGroupName().applyValue({ args0 -> args0 })

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

    /**
     * A `site_credential` block as defined below, which contains the site-level credentials used to publish to this App Service.
     */
    public val siteCredentials: Output>
        get() = javaResource.siteCredentials().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 -> appServiceSiteCredentialToKotlin(args0) })
            })
        })

    /**
     * A `source_control` block as defined below.
     */
    public val sourceControl: Output
        get() = javaResource.sourceControl().applyValue({ args0 ->
            args0.let({ args0 ->
                appServiceSourceControlToKotlin(args0)
            })
        })

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

    /**
     * A mapping of tags to assign to the resource.
     */
    public val tags: Output>?
        get() = javaResource.tags().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.key.to(args0.value)
                }).toMap()
            }).orElse(null)
        })
}

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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy