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

com.pulumi.azurenative.web.kotlin.WebAppScmAllowedSlot.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.web.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 [WebAppScmAllowedSlot].
 */
@PulumiTagMarker
public class WebAppScmAllowedSlotResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: WebAppScmAllowedSlotArgs = WebAppScmAllowedSlotArgs()

    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 WebAppScmAllowedSlotArgsBuilder.() -> Unit) {
        val builder = WebAppScmAllowedSlotArgsBuilder()
        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(): WebAppScmAllowedSlot {
        val builtJavaResource = com.pulumi.azurenative.web.WebAppScmAllowedSlot(
            this.name,
            this.args.toJava(),
            this.opts.toJava(),
        )
        return WebAppScmAllowedSlot(builtJavaResource)
    }
}

/**
 * Publishing Credentials Policies parameters.
 * Azure REST API version: 2023-12-01.
 * Other available API versions: 2020-12-01, 2021-01-01, 2021-01-15, 2021-02-01, 2021-03-01, 2022-03-01, 2022-09-01, 2023-01-01.
 * ## Example Usage
 * ### Update SCM Allowed
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using AzureNative = Pulumi.AzureNative;
 * return await Deployment.RunAsync(() =>
 * {
 *     var webAppScmAllowedSlot = new AzureNative.Web.WebAppScmAllowedSlot("webAppScmAllowedSlot", new()
 *     {
 *         Allow = true,
 *         Name = "testSite",
 *         ResourceGroupName = "rg",
 *         Slot = "stage",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	web "github.com/pulumi/pulumi-azure-native-sdk/web/v2"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := web.NewWebAppScmAllowedSlot(ctx, "webAppScmAllowedSlot", &web.WebAppScmAllowedSlotArgs{
 * 			Allow:             pulumi.Bool(true),
 * 			Name:              pulumi.String("testSite"),
 * 			ResourceGroupName: pulumi.String("rg"),
 * 			Slot:              pulumi.String("stage"),
 * 		})
 * 		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.azurenative.web.WebAppScmAllowedSlot;
 * import com.pulumi.azurenative.web.WebAppScmAllowedSlotArgs;
 * 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 webAppScmAllowedSlot = new WebAppScmAllowedSlot("webAppScmAllowedSlot", WebAppScmAllowedSlotArgs.builder()
 *             .allow(true)
 *             .name("testSite")
 *             .resourceGroupName("rg")
 *             .slot("stage")
 *             .build());
 *     }
 * }
 * ```
 * ## Import
 * An existing resource can be imported using its type token, name, and identifier, e.g.
 * ```sh
 * $ pulumi import azure-native:web:WebAppScmAllowedSlot myresource1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/slots/{slot}/basicPublishingCredentialsPolicies/scm
 * ```
 */
public class WebAppScmAllowedSlot internal constructor(
    override val javaResource: com.pulumi.azurenative.web.WebAppScmAllowedSlot,
) : KotlinCustomResource(javaResource, WebAppScmAllowedSlotMapper) {
    /**
     * true to allow access to a publishing method; otherwise, false.
     */
    public val allow: Output
        get() = javaResource.allow().applyValue({ args0 -> args0 })

    /**
     * Kind of resource.
     */
    public val kind: Output?
        get() = javaResource.kind().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })

    /**
     * Resource Name.
     */
    public val name: Output
        get() = javaResource.name().applyValue({ args0 -> args0 })

    /**
     * Resource type.
     */
    public val type: Output
        get() = javaResource.type().applyValue({ args0 -> args0 })
}

public object WebAppScmAllowedSlotMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.azurenative.web.WebAppScmAllowedSlot::class == javaResource::class

    override fun map(javaResource: Resource): WebAppScmAllowedSlot = WebAppScmAllowedSlot(
        javaResource
            as com.pulumi.azurenative.web.WebAppScmAllowedSlot,
    )
}

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy