All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.azure.appservice.kotlin.StaticSite.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.appservice.kotlin
import com.pulumi.azure.appservice.kotlin.outputs.StaticSiteIdentity
import com.pulumi.azure.appservice.kotlin.outputs.StaticSiteIdentity.Companion.toKotlin
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.Map
/**
* Builder for [StaticSite].
*/
@PulumiTagMarker
public class StaticSiteResourceBuilder internal constructor() {
public var name: String? = null
public var args: StaticSiteArgs = StaticSiteArgs()
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 StaticSiteArgsBuilder.() -> Unit) {
val builder = StaticSiteArgsBuilder()
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(): StaticSite {
val builtJavaResource = com.pulumi.azure.appservice.StaticSite(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return StaticSite(builtJavaResource)
}
}
/**
* Manages an App Service Static Site.
* > **NOTE:** The `azure.appservice.StaticSite` resource is deprecated in favour of `azure.appservice.StaticWebApp` and will be removed in a future major release.
* ->**NOTE:** After the Static Site is provisioned, you'll need to associate your target repository, which contains your web app, to the Static Site, by following the [Azure Static Site document](https://docs.microsoft.com/azure/static-web-apps/github-actions-workflow).
* ## 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 exampleStaticSite = new azure.appservice.StaticSite("example", {
* name: "example",
* resourceGroupName: example.name,
* location: example.location,
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="example-resources",
* location="West Europe")
* example_static_site = azure.appservice.StaticSite("example",
* name="example",
* resource_group_name=example.name,
* location=example.location)
* ```
* ```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 exampleStaticSite = new Azure.AppService.StaticSite("example", new()
* {
* Name = "example",
* ResourceGroupName = example.Name,
* Location = example.Location,
* });
* });
* ```
* ```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
* }
* _, err = appservice.NewStaticSite(ctx, "example", &appservice.StaticSiteArgs{
* Name: pulumi.String("example"),
* ResourceGroupName: example.Name,
* Location: example.Location,
* })
* 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.StaticSite;
* import com.pulumi.azure.appservice.StaticSiteArgs;
* 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 exampleStaticSite = new StaticSite("exampleStaticSite", StaticSiteArgs.builder()
* .name("example")
* .resourceGroupName(example.name())
* .location(example.location())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: example-resources
* location: West Europe
* exampleStaticSite:
* type: azure:appservice:StaticSite
* name: example
* properties:
* name: example
* resourceGroupName: ${example.name}
* location: ${example.location}
* ```
*
* ## Import
* Static Web Apps can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:appservice/staticSite:StaticSite example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Web/staticSites/my-static-site1
* ```
*/
public class StaticSite internal constructor(
override val javaResource: com.pulumi.azure.appservice.StaticSite,
) : KotlinCustomResource(javaResource, StaticSiteMapper) {
/**
* The API key of this Static Web App, which is used for later interacting with this Static Web App from other clients, e.g. GitHub Action.
*/
public val apiKey: Output
get() = javaResource.apiKey().applyValue({ args0 -> args0 })
/**
* A key-value pair of App Settings.
*/
public val appSettings: Output>?
get() = javaResource.appSettings().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
}).orElse(null)
})
/**
* The default host name of the Static Web App.
*/
public val defaultHostName: Output
get() = javaResource.defaultHostName().applyValue({ args0 -> args0 })
/**
* An `identity` block as defined below.
*/
public val identity: Output?
get() = javaResource.identity().applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
toKotlin(args0)
})
}).orElse(null)
})
/**
* The Azure Region where the Static Web App should exist. Changing this forces a new Static Web App to be created.
*/
public val location: Output
get() = javaResource.location().applyValue({ args0 -> args0 })
/**
* The name which should be used for this Static Web App. Changing this forces a new Static Web App to be created.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* The name of the Resource Group where the Static Web App should exist. Changing this forces a new Static Web App to be created.
*/
public val resourceGroupName: Output
get() = javaResource.resourceGroupName().applyValue({ args0 -> args0 })
/**
* Specifies the SKU size of the Static Web App. Possible values are `Free` or `Standard`. Defaults to `Free`.
*/
public val skuSize: Output?
get() = javaResource.skuSize().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* Specifies the SKU tier of the Static Web App. Possible values are `Free` or `Standard`. Defaults to `Free`.
*/
public val skuTier: Output?
get() = javaResource.skuTier().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* 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 StaticSiteMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azure.appservice.StaticSite::class == javaResource::class
override fun map(javaResource: Resource): StaticSite = StaticSite(
javaResource as
com.pulumi.azure.appservice.StaticSite,
)
}
/**
* @see [StaticSite].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [StaticSite].
*/
public suspend fun staticSite(name: String, block: suspend StaticSiteResourceBuilder.() -> Unit): StaticSite {
val builder = StaticSiteResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [StaticSite].
* @param name The _unique_ name of the resulting resource.
*/
public fun staticSite(name: String): StaticSite {
val builder = StaticSiteResourceBuilder()
builder.name(name)
return builder.build()
}