
com.pulumi.azure.appservice.kotlin.SlotCustomHostnameBinding.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.appservice.kotlin
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
/**
* Builder for [SlotCustomHostnameBinding].
*/
@PulumiTagMarker
public class SlotCustomHostnameBindingResourceBuilder internal constructor() {
public var name: String? = null
public var args: SlotCustomHostnameBindingArgs = SlotCustomHostnameBindingArgs()
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 SlotCustomHostnameBindingArgsBuilder.() -> Unit) {
val builder = SlotCustomHostnameBindingArgsBuilder()
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(): SlotCustomHostnameBinding {
val builtJavaResource =
com.pulumi.azure.appservice.SlotCustomHostnameBinding(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return SlotCustomHostnameBinding(builtJavaResource)
}
}
/**
* Manages a Hostname Binding within an App Service Slot.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const example = new azure.core.ResourceGroup("example", {
* name: "some-resource-group",
* location: "West Europe",
* });
* const examplePlan = new azure.appservice.Plan("example", {
* name: "some-app-service-plan",
* location: example.location,
* resourceGroupName: example.name,
* sku: {
* tier: "Standard",
* size: "S1",
* },
* });
* const exampleAppService = new azure.appservice.AppService("example", {
* name: "some-app-service",
* location: example.location,
* resourceGroupName: example.name,
* appServicePlanId: examplePlan.id,
* });
* const exampleSlot = new azure.appservice.Slot("example", {
* name: "staging",
* location: example.location,
* resourceGroupName: example.name,
* appServiceName: exampleAppService.name,
* appServicePlanId: examplePlan.id,
* });
* const exampleSlotCustomHostnameBinding = new azure.appservice.SlotCustomHostnameBinding("example", {
* appServiceSlotId: exampleSlot.id,
* hostname: "www.mywebsite.com",
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="some-resource-group",
* location="West Europe")
* example_plan = azure.appservice.Plan("example",
* name="some-app-service-plan",
* location=example.location,
* resource_group_name=example.name,
* sku={
* "tier": "Standard",
* "size": "S1",
* })
* example_app_service = azure.appservice.AppService("example",
* name="some-app-service",
* location=example.location,
* resource_group_name=example.name,
* app_service_plan_id=example_plan.id)
* example_slot = azure.appservice.Slot("example",
* name="staging",
* location=example.location,
* resource_group_name=example.name,
* app_service_name=example_app_service.name,
* app_service_plan_id=example_plan.id)
* example_slot_custom_hostname_binding = azure.appservice.SlotCustomHostnameBinding("example",
* app_service_slot_id=example_slot.id,
* hostname="www.mywebsite.com")
* ```
* ```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 = "some-resource-group",
* Location = "West Europe",
* });
* var examplePlan = new Azure.AppService.Plan("example", new()
* {
* Name = "some-app-service-plan",
* 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 = "some-app-service",
* Location = example.Location,
* ResourceGroupName = example.Name,
* AppServicePlanId = examplePlan.Id,
* });
* var exampleSlot = new Azure.AppService.Slot("example", new()
* {
* Name = "staging",
* Location = example.Location,
* ResourceGroupName = example.Name,
* AppServiceName = exampleAppService.Name,
* AppServicePlanId = examplePlan.Id,
* });
* var exampleSlotCustomHostnameBinding = new Azure.AppService.SlotCustomHostnameBinding("example", new()
* {
* AppServiceSlotId = exampleSlot.Id,
* Hostname = "www.mywebsite.com",
* });
* });
* ```
* ```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("some-resource-group"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* examplePlan, err := appservice.NewPlan(ctx, "example", &appservice.PlanArgs{
* Name: pulumi.String("some-app-service-plan"),
* Location: example.Location,
* ResourceGroupName: example.Name,
* Sku: &appservice.PlanSkuArgs{
* Tier: pulumi.String("Standard"),
* Size: pulumi.String("S1"),
* },
* })
* if err != nil {
* return err
* }
* exampleAppService, err := appservice.NewAppService(ctx, "example", &appservice.AppServiceArgs{
* Name: pulumi.String("some-app-service"),
* Location: example.Location,
* ResourceGroupName: example.Name,
* AppServicePlanId: examplePlan.ID(),
* })
* if err != nil {
* return err
* }
* exampleSlot, err := appservice.NewSlot(ctx, "example", &appservice.SlotArgs{
* Name: pulumi.String("staging"),
* Location: example.Location,
* ResourceGroupName: example.Name,
* AppServiceName: exampleAppService.Name,
* AppServicePlanId: examplePlan.ID(),
* })
* if err != nil {
* return err
* }
* _, err = appservice.NewSlotCustomHostnameBinding(ctx, "example", &appservice.SlotCustomHostnameBindingArgs{
* AppServiceSlotId: exampleSlot.ID(),
* Hostname: pulumi.String("www.mywebsite.com"),
* })
* 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.Slot;
* import com.pulumi.azure.appservice.SlotArgs;
* import com.pulumi.azure.appservice.SlotCustomHostnameBinding;
* import com.pulumi.azure.appservice.SlotCustomHostnameBindingArgs;
* 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("some-resource-group")
* .location("West Europe")
* .build());
* var examplePlan = new Plan("examplePlan", PlanArgs.builder()
* .name("some-app-service-plan")
* .location(example.location())
* .resourceGroupName(example.name())
* .sku(PlanSkuArgs.builder()
* .tier("Standard")
* .size("S1")
* .build())
* .build());
* var exampleAppService = new AppService("exampleAppService", AppServiceArgs.builder()
* .name("some-app-service")
* .location(example.location())
* .resourceGroupName(example.name())
* .appServicePlanId(examplePlan.id())
* .build());
* var exampleSlot = new Slot("exampleSlot", SlotArgs.builder()
* .name("staging")
* .location(example.location())
* .resourceGroupName(example.name())
* .appServiceName(exampleAppService.name())
* .appServicePlanId(examplePlan.id())
* .build());
* var exampleSlotCustomHostnameBinding = new SlotCustomHostnameBinding("exampleSlotCustomHostnameBinding", SlotCustomHostnameBindingArgs.builder()
* .appServiceSlotId(exampleSlot.id())
* .hostname("www.mywebsite.com")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: some-resource-group
* location: West Europe
* examplePlan:
* type: azure:appservice:Plan
* name: example
* properties:
* name: some-app-service-plan
* location: ${example.location}
* resourceGroupName: ${example.name}
* sku:
* tier: Standard
* size: S1
* exampleAppService:
* type: azure:appservice:AppService
* name: example
* properties:
* name: some-app-service
* location: ${example.location}
* resourceGroupName: ${example.name}
* appServicePlanId: ${examplePlan.id}
* exampleSlot:
* type: azure:appservice:Slot
* name: example
* properties:
* name: staging
* location: ${example.location}
* resourceGroupName: ${example.name}
* appServiceName: ${exampleAppService.name}
* appServicePlanId: ${examplePlan.id}
* exampleSlotCustomHostnameBinding:
* type: azure:appservice:SlotCustomHostnameBinding
* name: example
* properties:
* appServiceSlotId: ${exampleSlot.id}
* hostname: www.mywebsite.com
* ```
*
* ## Import
* App Service Custom Hostname Bindings can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:appservice/slotCustomHostnameBinding:SlotCustomHostnameBinding mywebsite /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Web/sites/instance1/slots/staging/hostNameBindings/mywebsite.com
* ```
*/
public class SlotCustomHostnameBinding internal constructor(
override val javaResource: com.pulumi.azure.appservice.SlotCustomHostnameBinding,
) : KotlinCustomResource(javaResource, SlotCustomHostnameBindingMapper) {
/**
* The ID of the App Service Slot. Changing this forces a new resource to be created.
*/
public val appServiceSlotId: Output
get() = javaResource.appServiceSlotId().applyValue({ args0 -> args0 })
/**
* Specifies the Custom Hostname to use for the App Service, example `www.example.com`. Changing this forces a new resource to be created.
* > **NOTE:** A CNAME needs to be configured from this Hostname to the Azure Website - otherwise Azure will reject the Hostname Binding.
*/
public val hostname: Output
get() = javaResource.hostname().applyValue({ args0 -> args0 })
/**
* The SSL type. Possible values are `IpBasedEnabled` and `SniEnabled`. Changing this forces a new resource to be created.
*/
public val sslState: Output
get() = javaResource.sslState().applyValue({ args0 -> args0 })
/**
* The SSL certificate thumbprint. Changing this forces a new resource to be created.
* > **NOTE:** `thumbprint` must be specified when `ssl_state` is set.
*/
public val thumbprint: Output
get() = javaResource.thumbprint().applyValue({ args0 -> args0 })
/**
* The virtual IP address assigned to the hostname if IP based SSL is enabled.
*/
public val virtualIp: Output
get() = javaResource.virtualIp().applyValue({ args0 -> args0 })
}
public object SlotCustomHostnameBindingMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azure.appservice.SlotCustomHostnameBinding::class == javaResource::class
override fun map(javaResource: Resource): SlotCustomHostnameBinding =
SlotCustomHostnameBinding(
javaResource as
com.pulumi.azure.appservice.SlotCustomHostnameBinding,
)
}
/**
* @see [SlotCustomHostnameBinding].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [SlotCustomHostnameBinding].
*/
public suspend fun slotCustomHostnameBinding(
name: String,
block: suspend SlotCustomHostnameBindingResourceBuilder.() -> Unit,
): SlotCustomHostnameBinding {
val builder = SlotCustomHostnameBindingResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [SlotCustomHostnameBinding].
* @param name The _unique_ name of the resulting resource.
*/
public fun slotCustomHostnameBinding(name: String): SlotCustomHostnameBinding {
val builder = SlotCustomHostnameBindingResourceBuilder()
builder.name(name)
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy