Viewing docs for Cloudflare v6.13.0
published on Wednesday, Jan 21, 2026 by Pulumi
published on Wednesday, Jan 21, 2026 by Pulumi
Viewing docs for Cloudflare v6.13.0
published on Wednesday, Jan 21, 2026 by Pulumi
published on Wednesday, Jan 21, 2026 by Pulumi
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleArgoTieredCaching = cloudflare.getArgoTieredCaching({
zoneId: "023e105f4ecef8ad9ca31a8372d0c353",
});
import pulumi
import pulumi_cloudflare as cloudflare
example_argo_tiered_caching = cloudflare.get_argo_tiered_caching(zone_id="023e105f4ecef8ad9ca31a8372d0c353")
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.LookupArgoTieredCaching(ctx, &cloudflare.LookupArgoTieredCachingArgs{
ZoneId: "023e105f4ecef8ad9ca31a8372d0c353",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var exampleArgoTieredCaching = Cloudflare.GetArgoTieredCaching.Invoke(new()
{
ZoneId = "023e105f4ecef8ad9ca31a8372d0c353",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.CloudflareFunctions;
import com.pulumi.cloudflare.inputs.GetArgoTieredCachingArgs;
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) {
final var exampleArgoTieredCaching = CloudflareFunctions.getArgoTieredCaching(GetArgoTieredCachingArgs.builder()
.zoneId("023e105f4ecef8ad9ca31a8372d0c353")
.build());
}
}
variables:
exampleArgoTieredCaching:
fn::invoke:
function: cloudflare:getArgoTieredCaching
arguments:
zoneId: 023e105f4ecef8ad9ca31a8372d0c353
Using getArgoTieredCaching
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getArgoTieredCaching(args: GetArgoTieredCachingArgs, opts?: InvokeOptions): Promise<GetArgoTieredCachingResult>
function getArgoTieredCachingOutput(args: GetArgoTieredCachingOutputArgs, opts?: InvokeOptions): Output<GetArgoTieredCachingResult>def get_argo_tiered_caching(zone_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetArgoTieredCachingResult
def get_argo_tiered_caching_output(zone_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetArgoTieredCachingResult]func LookupArgoTieredCaching(ctx *Context, args *LookupArgoTieredCachingArgs, opts ...InvokeOption) (*LookupArgoTieredCachingResult, error)
func LookupArgoTieredCachingOutput(ctx *Context, args *LookupArgoTieredCachingOutputArgs, opts ...InvokeOption) LookupArgoTieredCachingResultOutput> Note: This function is named LookupArgoTieredCaching in the Go SDK.
public static class GetArgoTieredCaching
{
public static Task<GetArgoTieredCachingResult> InvokeAsync(GetArgoTieredCachingArgs args, InvokeOptions? opts = null)
public static Output<GetArgoTieredCachingResult> Invoke(GetArgoTieredCachingInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetArgoTieredCachingResult> getArgoTieredCaching(GetArgoTieredCachingArgs args, InvokeOptions options)
public static Output<GetArgoTieredCachingResult> getArgoTieredCaching(GetArgoTieredCachingArgs args, InvokeOptions options)
fn::invoke:
function: cloudflare:index/getArgoTieredCaching:getArgoTieredCaching
arguments:
# arguments dictionaryThe following arguments are supported:
- Zone
Id string - Identifier.
- Zone
Id string - Identifier.
- zone
Id String - Identifier.
- zone
Id string - Identifier.
- zone_
id str - Identifier.
- zone
Id String - Identifier.
getArgoTieredCaching Result
The following output properties are available:
- Editable bool
- Whether the setting is editable.
- Id string
- Identifier.
- Modified
On string - Last time this setting was modified.
- Value string
- Value of the Tiered Cache zone setting. Available values: "on", "off".
- Zone
Id string - Identifier.
- Editable bool
- Whether the setting is editable.
- Id string
- Identifier.
- Modified
On string - Last time this setting was modified.
- Value string
- Value of the Tiered Cache zone setting. Available values: "on", "off".
- Zone
Id string - Identifier.
- editable Boolean
- Whether the setting is editable.
- id String
- Identifier.
- modified
On String - Last time this setting was modified.
- value String
- Value of the Tiered Cache zone setting. Available values: "on", "off".
- zone
Id String - Identifier.
- editable boolean
- Whether the setting is editable.
- id string
- Identifier.
- modified
On string - Last time this setting was modified.
- value string
- Value of the Tiered Cache zone setting. Available values: "on", "off".
- zone
Id string - Identifier.
- editable bool
- Whether the setting is editable.
- id str
- Identifier.
- modified_
on str - Last time this setting was modified.
- value str
- Value of the Tiered Cache zone setting. Available values: "on", "off".
- zone_
id str - Identifier.
- editable Boolean
- Whether the setting is editable.
- id String
- Identifier.
- modified
On String - Last time this setting was modified.
- value String
- Value of the Tiered Cache zone setting. Available values: "on", "off".
- zone
Id String - Identifier.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflareTerraform Provider.
Viewing docs for Cloudflare v6.13.0
published on Wednesday, Jan 21, 2026 by Pulumi
published on Wednesday, Jan 21, 2026 by Pulumi
