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

com.pulumi.cloudflare.kotlin.Argo.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.Deprecated
import kotlin.String
import kotlin.Suppress
import kotlin.Unit

/**
 * Builder for [Argo].
 */
@PulumiTagMarker
public class ArgoResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: ArgoArgs = ArgoArgs()

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

/**
 * Cloudflare Argo controls the routing to your origin and tiered
 * caching options to speed up your website browsing experience.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as cloudflare from "@pulumi/cloudflare";
 * const example = new cloudflare.Argo("example", {
 *     zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
 *     tieredCaching: "on",
 *     smartRouting: "on",
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_cloudflare as cloudflare
 * example = cloudflare.Argo("example",
 *     zone_id="0da42c8d2132a9ddaf714f9e7c920711",
 *     tiered_caching="on",
 *     smart_routing="on")
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Cloudflare = Pulumi.Cloudflare;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Cloudflare.Argo("example", new()
 *     {
 *         ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
 *         TieredCaching = "on",
 *         SmartRouting = "on",
 *     });
 * });
 * ```
 * ```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.NewArgo(ctx, "example", &cloudflare.ArgoArgs{
 * 			ZoneId:        pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
 * 			TieredCaching: pulumi.String("on"),
 * 			SmartRouting:  pulumi.String("on"),
 * 		})
 * 		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.Argo;
 * import com.pulumi.cloudflare.ArgoArgs;
 * 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 Argo("example", ArgoArgs.builder()
 *             .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
 *             .tieredCaching("on")
 *             .smartRouting("on")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: cloudflare:Argo
 *     properties:
 *       zoneId: 0da42c8d2132a9ddaf714f9e7c920711
 *       tieredCaching: on
 *       smartRouting: on
 * ```
 * 
 * ## Import
 * ```sh
 * $ pulumi import cloudflare:index/argo:Argo example 
 * ```
 */
public class Argo internal constructor(
    override val javaResource: com.pulumi.cloudflare.Argo,
) : KotlinCustomResource(javaResource, ArgoMapper) {
    /**
     * Whether smart routing is enabled. Available values: `on`, `off`.
     */
    public val smartRouting: Output?
        get() = javaResource.smartRouting().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * Whether tiered caching is enabled. Available values: `on`, `off`.
     */
    @Deprecated(
        message = """
  tiered_caching has been deprecated in favour of using `cloudflare.TieredCache` resource instead.
  """,
    )
    public val tieredCaching: Output?
        get() = javaResource.tieredCaching().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * The zone identifier to target for the resource.
     */
    public val zoneId: Output
        get() = javaResource.zoneId().applyValue({ args0 -> args0 })
}

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy