WebAnalyticsRuleArgs

data class WebAnalyticsRuleArgs(val accountId: Output<String>? = null, val host: Output<String>? = null, val inclusive: Output<Boolean>? = null, val isPaused: Output<Boolean>? = null, val paths: Output<List<String>>? = null, val rulesetId: Output<String>? = null) : ConvertibleToJava<WebAnalyticsRuleArgs>

Provides a Cloudflare Web Analytics Rule resource.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const example = new cloudflare.WebAnalyticsSite("example", {
accountId: "f037e56e89293a057740de681ac9abbe",
zoneTag: "0da42c8d2132a9ddaf714f9e7c920711",
autoInstall: true,
});
const exampleWebAnalyticsRule = new cloudflare.WebAnalyticsRule("example", {
accountId: "f037e56e89293a057740de681ac9abbe",
rulesetId: example.rulesetId,
host: "*",
paths: ["/excluded"],
inclusive: false,
isPaused: false,
}, {
dependsOn: [example],
});
import pulumi
import pulumi_cloudflare as cloudflare
example = cloudflare.WebAnalyticsSite("example",
account_id="f037e56e89293a057740de681ac9abbe",
zone_tag="0da42c8d2132a9ddaf714f9e7c920711",
auto_install=True)
example_web_analytics_rule = cloudflare.WebAnalyticsRule("example",
account_id="f037e56e89293a057740de681ac9abbe",
ruleset_id=example.ruleset_id,
host="*",
paths=["/excluded"],
inclusive=False,
is_paused=False,
opts = pulumi.ResourceOptions(depends_on=[example]))
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var example = new Cloudflare.WebAnalyticsSite("example", new()
{
AccountId = "f037e56e89293a057740de681ac9abbe",
ZoneTag = "0da42c8d2132a9ddaf714f9e7c920711",
AutoInstall = true,
});
var exampleWebAnalyticsRule = new Cloudflare.WebAnalyticsRule("example", new()
{
AccountId = "f037e56e89293a057740de681ac9abbe",
RulesetId = example.RulesetId,
Host = "*",
Paths = new[]
{
"/excluded",
},
Inclusive = false,
IsPaused = false,
}, new CustomResourceOptions
{
DependsOn =
{
example,
},
});
});
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 {
example, err := cloudflare.NewWebAnalyticsSite(ctx, "example", &cloudflare.WebAnalyticsSiteArgs{
AccountId: pulumi.String("f037e56e89293a057740de681ac9abbe"),
ZoneTag: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
AutoInstall: pulumi.Bool(true),
})
if err != nil {
return err
}
_, err = cloudflare.NewWebAnalyticsRule(ctx, "example", &cloudflare.WebAnalyticsRuleArgs{
AccountId: pulumi.String("f037e56e89293a057740de681ac9abbe"),
RulesetId: example.RulesetId,
Host: pulumi.String("*"),
Paths: pulumi.StringArray{
pulumi.String("/excluded"),
},
Inclusive: pulumi.Bool(false),
IsPaused: pulumi.Bool(false),
}, pulumi.DependsOn([]pulumi.Resource{
example,
}))
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.WebAnalyticsSite;
import com.pulumi.cloudflare.WebAnalyticsSiteArgs;
import com.pulumi.cloudflare.WebAnalyticsRule;
import com.pulumi.cloudflare.WebAnalyticsRuleArgs;
import com.pulumi.resources.CustomResourceOptions;
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 WebAnalyticsSite("example", WebAnalyticsSiteArgs.builder()
.accountId("f037e56e89293a057740de681ac9abbe")
.zoneTag("0da42c8d2132a9ddaf714f9e7c920711")
.autoInstall(true)
.build());
var exampleWebAnalyticsRule = new WebAnalyticsRule("exampleWebAnalyticsRule", WebAnalyticsRuleArgs.builder()
.accountId("f037e56e89293a057740de681ac9abbe")
.rulesetId(example.rulesetId())
.host("*")
.paths("/excluded")
.inclusive(false)
.isPaused(false)
.build(), CustomResourceOptions.builder()
.dependsOn(example)
.build());
}
}
resources:
example:
type: cloudflare:WebAnalyticsSite
properties:
accountId: f037e56e89293a057740de681ac9abbe
zoneTag: 0da42c8d2132a9ddaf714f9e7c920711
autoInstall: true
exampleWebAnalyticsRule:
type: cloudflare:WebAnalyticsRule
name: example
properties:
accountId: f037e56e89293a057740de681ac9abbe
rulesetId: ${example.rulesetId}
host: '*'
paths:
- /excluded
inclusive: false
isPaused: false
options:
dependsOn:
- ${example}

Import

$ pulumi import cloudflare:index/webAnalyticsRule:WebAnalyticsRule example <account_id>/<ruleset_id>/<rule_id>

Constructors

Link copied to clipboard
constructor(accountId: Output<String>? = null, host: Output<String>? = null, inclusive: Output<Boolean>? = null, isPaused: Output<Boolean>? = null, paths: Output<List<String>>? = null, rulesetId: Output<String>? = null)

Properties

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

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

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

The host to apply the rule to.

Link copied to clipboard
val inclusive: Output<Boolean>? = null

Whether the rule includes or excludes the matched traffic from being measured in Web Analytics.

Link copied to clipboard
val isPaused: Output<Boolean>? = null

Whether the rule is paused or not.

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

A list of paths to apply the rule to.

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

The Web Analytics ruleset id. Modifying this attribute will force creation of a new resource.

Functions

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