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

com.pulumi.cloudflare.kotlin.WebAnalyticsSite.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

    public var args: WebAnalyticsSiteArgs = WebAnalyticsSiteArgs()

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

/**
 * Provides a Cloudflare Web Analytics Site resource.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as cloudflare from "@pulumi/cloudflare";
 * const example = new cloudflare.WebAnalyticsSite("example", {
 *     accountId: "f037e56e89293a057740de681ac9abbe",
 *     zoneTag: "0da42c8d2132a9ddaf714f9e7c920711",
 *     autoInstall: true,
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_cloudflare as cloudflare
 * example = cloudflare.WebAnalyticsSite("example",
 *     account_id="f037e56e89293a057740de681ac9abbe",
 *     zone_tag="0da42c8d2132a9ddaf714f9e7c920711",
 *     auto_install=True)
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Cloudflare = Pulumi.Cloudflare;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Cloudflare.WebAnalyticsSite("example", new()
 *     {
 *         AccountId = "f037e56e89293a057740de681ac9abbe",
 *         ZoneTag = "0da42c8d2132a9ddaf714f9e7c920711",
 *         AutoInstall = true,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-cloudflare/sdk/v5/go/cloudflare"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := cloudflare.NewWebAnalyticsSite(ctx, "example", &cloudflare.WebAnalyticsSiteArgs{
 * 			AccountId:   pulumi.String("f037e56e89293a057740de681ac9abbe"),
 * 			ZoneTag:     pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
 * 			AutoInstall: pulumi.Bool(true),
 * 		})
 * 		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.cloudflare.WebAnalyticsSite;
 * import com.pulumi.cloudflare.WebAnalyticsSiteArgs;
 * 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 WebAnalyticsSite("example", WebAnalyticsSiteArgs.builder()
 *             .accountId("f037e56e89293a057740de681ac9abbe")
 *             .zoneTag("0da42c8d2132a9ddaf714f9e7c920711")
 *             .autoInstall(true)
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: cloudflare:WebAnalyticsSite
 *     properties:
 *       accountId: f037e56e89293a057740de681ac9abbe
 *       zoneTag: 0da42c8d2132a9ddaf714f9e7c920711
 *       autoInstall: true
 * ```
 * 
 * ## Import
 * ```sh
 * $ pulumi import cloudflare:index/webAnalyticsSite:WebAnalyticsSite example /
 * ```
 */
public class WebAnalyticsSite internal constructor(
    override val javaResource: com.pulumi.cloudflare.WebAnalyticsSite,
) : KotlinCustomResource(javaResource, WebAnalyticsSiteMapper) {
    /**
     * The account identifier to target for the resource. **Modifying this attribute will force creation of a new resource.**
     */
    public val accountId: Output
        get() = javaResource.accountId().applyValue({ args0 -> args0 })

    /**
     * Whether Cloudflare will automatically inject the JavaScript snippet for orange-clouded sites. **Modifying this attribute will force creation of a new resource.**
     */
    public val autoInstall: Output
        get() = javaResource.autoInstall().applyValue({ args0 -> args0 })

    /**
     * The hostname to use for gray-clouded sites. Must provide only one of `zone_tag`. **Modifying this attribute will force creation of a new resource.**
     */
    public val host: Output?
        get() = javaResource.host().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })

    /**
     * The ID for the ruleset associated to this Web Analytics Site.
     */
    public val rulesetId: Output
        get() = javaResource.rulesetId().applyValue({ args0 -> args0 })

    /**
     * The Web Analytics site tag.
     */
    public val siteTag: Output
        get() = javaResource.siteTag().applyValue({ args0 -> args0 })

    /**
     * The token for the Web Analytics site.
     */
    public val siteToken: Output
        get() = javaResource.siteToken().applyValue({ args0 -> args0 })

    /**
     * The encoded JS snippet to add to your site's HTML page if auto_install is false.
     */
    public val snippet: Output
        get() = javaResource.snippet().applyValue({ args0 -> args0 })

    /**
     * The zone identifier for orange-clouded sites. Must provide only one of `host`. **Modifying this attribute will force creation of a new resource.**
     */
    public val zoneTag: Output?
        get() = javaResource.zoneTag().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
}

public object WebAnalyticsSiteMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.cloudflare.WebAnalyticsSite::class == javaResource::class

    override fun map(javaResource: Resource): WebAnalyticsSite = WebAnalyticsSite(
        javaResource as
            com.pulumi.cloudflare.WebAnalyticsSite,
    )
}

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy