
com.pulumi.cloudflare.kotlin.RegionalTieredCacheArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin
import com.pulumi.cloudflare.RegionalTieredCacheArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Instructs Cloudflare to check a regional hub data center on the way to your upper tier.
* This can help improve performance for smart and custom tiered cache topologies.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as cloudflare from "@pulumi/cloudflare";
* const example = new cloudflare.RegionalTieredCache("example", {
* zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
* value: "on",
* });
* ```
* ```python
* import pulumi
* import pulumi_cloudflare as cloudflare
* example = cloudflare.RegionalTieredCache("example",
* zone_id="0da42c8d2132a9ddaf714f9e7c920711",
* value="on")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Cloudflare = Pulumi.Cloudflare;
* return await Deployment.RunAsync(() =>
* {
* var example = new Cloudflare.RegionalTieredCache("example", new()
* {
* ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
* Value = "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.NewRegionalTieredCache(ctx, "example", &cloudflare.RegionalTieredCacheArgs{
* ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
* Value: 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.RegionalTieredCache;
* import com.pulumi.cloudflare.RegionalTieredCacheArgs;
* 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 RegionalTieredCache("example", RegionalTieredCacheArgs.builder()
* .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
* .value("on")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: cloudflare:RegionalTieredCache
* properties:
* zoneId: 0da42c8d2132a9ddaf714f9e7c920711
* value: on
* ```
*
* ## Import
* ```sh
* $ pulumi import cloudflare:index/regionalTieredCache:RegionalTieredCache example
* ```
* @property value Value of the Regional Tiered Cache zone setting.
* @property zoneId The zone identifier to target for the resource.
*/
public data class RegionalTieredCacheArgs(
public val `value`: Output? = null,
public val zoneId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.cloudflare.RegionalTieredCacheArgs =
com.pulumi.cloudflare.RegionalTieredCacheArgs.builder()
.`value`(`value`?.applyValue({ args0 -> args0 }))
.zoneId(zoneId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [RegionalTieredCacheArgs].
*/
@PulumiTagMarker
public class RegionalTieredCacheArgsBuilder internal constructor() {
private var `value`: Output? = null
private var zoneId: Output? = null
/**
* @param value Value of the Regional Tiered Cache zone setting.
*/
@JvmName("kwcuolspjaorflwn")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value The zone identifier to target for the resource.
*/
@JvmName("pruadoouvjixaqsg")
public suspend fun zoneId(`value`: Output) {
this.zoneId = value
}
/**
* @param value Value of the Regional Tiered Cache zone setting.
*/
@JvmName("tbhjmxjaqlgsuxii")
public suspend fun `value`(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.`value` = mapped
}
/**
* @param value The zone identifier to target for the resource.
*/
@JvmName("ncbrgxwjjblskyfv")
public suspend fun zoneId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.zoneId = mapped
}
internal fun build(): RegionalTieredCacheArgs = RegionalTieredCacheArgs(
`value` = `value`,
zoneId = zoneId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy