com.pulumi.azure.appservice.kotlin.WindowsWebAppSlot.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.appservice.kotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotAuthSettings
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotAuthSettingsV2
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotBackup
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotConnectionString
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotIdentity
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotLogs
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotSiteConfig
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotSiteCredential
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotStorageAccount
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.WindowsWebAppSlotAuthSettings.Companion.toKotlin as windowsWebAppSlotAuthSettingsToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotAuthSettingsV2.Companion.toKotlin as windowsWebAppSlotAuthSettingsV2ToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotBackup.Companion.toKotlin as windowsWebAppSlotBackupToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotConnectionString.Companion.toKotlin as windowsWebAppSlotConnectionStringToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotIdentity.Companion.toKotlin as windowsWebAppSlotIdentityToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotLogs.Companion.toKotlin as windowsWebAppSlotLogsToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotSiteConfig.Companion.toKotlin as windowsWebAppSlotSiteConfigToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotSiteCredential.Companion.toKotlin as windowsWebAppSlotSiteCredentialToKotlin
import com.pulumi.azure.appservice.kotlin.outputs.WindowsWebAppSlotStorageAccount.Companion.toKotlin as windowsWebAppSlotStorageAccountToKotlin
/**
* Builder for [WindowsWebAppSlot].
*/
@PulumiTagMarker
public class WindowsWebAppSlotResourceBuilder internal constructor() {
public var name: String? = null
public var args: WindowsWebAppSlotArgs = WindowsWebAppSlotArgs()
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 WindowsWebAppSlotArgsBuilder.() -> Unit) {
val builder = WindowsWebAppSlotArgsBuilder()
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(): WindowsWebAppSlot {
val builtJavaResource = com.pulumi.azure.appservice.WindowsWebAppSlot(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return WindowsWebAppSlot(builtJavaResource)
}
}
/**
* 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=azure.appservice.WindowsWebAppSiteConfigArgs())
* example_windows_web_app_slot = azure.appservice.WindowsWebAppSlot("example",
* name="example-slot",
* app_service_id=example_windows_web_app.id,
* site_config=azure.appservice.WindowsWebAppSlotSiteConfigArgs())
* ```
* ```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
* ```
*/
public class WindowsWebAppSlot internal constructor(
override val javaResource: com.pulumi.azure.appservice.WindowsWebAppSlot,
) : KotlinCustomResource(javaResource, WindowsWebAppSlotMapper) {
/**
* 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.
*/
public val appServiceId: Output
get() = javaResource.appServiceId().applyValue({ args0 -> args0 })
/**
* A map of key-value pairs of App Settings.
*/
public val appSettings: Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy