TieredCacheArgs

data class TieredCacheArgs(val cacheType: Output<String>? = null, val zoneId: Output<String>? = null) : ConvertibleToJava<TieredCacheArgs>

Provides a resource, that manages Cloudflare Tiered Cache settings. This allows you to adjust topologies for your zone.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const example = new cloudflare.TieredCache("example", {
zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
cacheType: "smart",
});
import pulumi
import pulumi_cloudflare as cloudflare
example = cloudflare.TieredCache("example",
zone_id="0da42c8d2132a9ddaf714f9e7c920711",
cache_type="smart")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var example = new Cloudflare.TieredCache("example", new()
{
ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
CacheType = "smart",
});
});
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.NewTieredCache(ctx, "example", &cloudflare.TieredCacheArgs{
ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
CacheType: pulumi.String("smart"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.TieredCache;
import com.pulumi.cloudflare.TieredCacheArgs;
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 TieredCache("example", TieredCacheArgs.builder()
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.cacheType("smart")
.build());
}
}
resources:
example:
type: cloudflare:TieredCache
properties:
zoneId: 0da42c8d2132a9ddaf714f9e7c920711
cacheType: smart

Constructors

Link copied to clipboard
constructor(cacheType: Output<String>? = null, zoneId: Output<String>? = null)

Properties

Link copied to clipboard
val cacheType: Output<String>? = null

The typed of tiered cache to utilize on the zone. Available values: generic, smart, off.

Link copied to clipboard
val zoneId: Output<String>? = null

The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.

Functions

Link copied to clipboard
open override fun toJava(): TieredCacheArgs