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

com.pulumi.cloudflare.kotlin.ArgoArgs.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.

There is a newer version: 5.40.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.cloudflare.kotlin

import com.pulumi.cloudflare.ArgoArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Deprecated
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * 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 
 * ```
 * @property smartRouting Whether smart routing is enabled. Available values: `on`, `off`.
 * @property tieredCaching Whether tiered caching is enabled. Available values: `on`, `off`.
 * @property zoneId The zone identifier to target for the resource.
 */
public data class ArgoArgs(
    public val smartRouting: Output? = null,
    @Deprecated(
        message = """
  tiered_caching has been deprecated in favour of using `cloudflare.TieredCache` resource instead.
  """,
    )
    public val tieredCaching: Output? = null,
    public val zoneId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.ArgoArgs = com.pulumi.cloudflare.ArgoArgs.builder()
        .smartRouting(smartRouting?.applyValue({ args0 -> args0 }))
        .tieredCaching(tieredCaching?.applyValue({ args0 -> args0 }))
        .zoneId(zoneId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ArgoArgs].
 */
@PulumiTagMarker
public class ArgoArgsBuilder internal constructor() {
    private var smartRouting: Output? = null

    private var tieredCaching: Output? = null

    private var zoneId: Output? = null

    /**
     * @param value Whether smart routing is enabled. Available values: `on`, `off`.
     */
    @JvmName("nnuoveaobgehuvdy")
    public suspend fun smartRouting(`value`: Output) {
        this.smartRouting = value
    }

    /**
     * @param value Whether tiered caching is enabled. Available values: `on`, `off`.
     */
    @Deprecated(
        message = """
  tiered_caching has been deprecated in favour of using `cloudflare.TieredCache` resource instead.
  """,
    )
    @JvmName("vvvlvmnqmqxekrlc")
    public suspend fun tieredCaching(`value`: Output) {
        this.tieredCaching = value
    }

    /**
     * @param value The zone identifier to target for the resource.
     */
    @JvmName("nxmotbcxqvfqdbqr")
    public suspend fun zoneId(`value`: Output) {
        this.zoneId = value
    }

    /**
     * @param value Whether smart routing is enabled. Available values: `on`, `off`.
     */
    @JvmName("epdpbkepeeoanlrl")
    public suspend fun smartRouting(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.smartRouting = mapped
    }

    /**
     * @param value Whether tiered caching is enabled. Available values: `on`, `off`.
     */
    @Deprecated(
        message = """
  tiered_caching has been deprecated in favour of using `cloudflare.TieredCache` resource instead.
  """,
    )
    @JvmName("hslxyrhywmyjnxie")
    public suspend fun tieredCaching(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tieredCaching = mapped
    }

    /**
     * @param value The zone identifier to target for the resource.
     */
    @JvmName("ewqivsvpfhwvwxuq")
    public suspend fun zoneId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.zoneId = mapped
    }

    internal fun build(): ArgoArgs = ArgoArgs(
        smartRouting = smartRouting,
        tieredCaching = tieredCaching,
        zoneId = zoneId,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy