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 exampleWebAnalyticsSites = cloudflare.getWebAnalyticsSites({
accountId: "023e105f4ecef8ad9ca31a8372d0c353",
orderBy: "host",
});
import pulumi
import pulumi_cloudflare as cloudflare
example_web_analytics_sites = cloudflare.get_web_analytics_sites(account_id="023e105f4ecef8ad9ca31a8372d0c353",
order_by="host")
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.LookupWebAnalyticsSites(ctx, &cloudflare.LookupWebAnalyticsSitesArgs{
AccountId: "023e105f4ecef8ad9ca31a8372d0c353",
OrderBy: pulumi.StringRef("host"),
}, 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 exampleWebAnalyticsSites = Cloudflare.GetWebAnalyticsSites.Invoke(new()
{
AccountId = "023e105f4ecef8ad9ca31a8372d0c353",
OrderBy = "host",
});
});
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.GetWebAnalyticsSitesArgs;
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 exampleWebAnalyticsSites = CloudflareFunctions.getWebAnalyticsSites(GetWebAnalyticsSitesArgs.builder()
.accountId("023e105f4ecef8ad9ca31a8372d0c353")
.orderBy("host")
.build());
}
}
variables:
exampleWebAnalyticsSites:
fn::invoke:
function: cloudflare:getWebAnalyticsSites
arguments:
accountId: 023e105f4ecef8ad9ca31a8372d0c353
orderBy: host
Using getWebAnalyticsSites
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 getWebAnalyticsSites(args: GetWebAnalyticsSitesArgs, opts?: InvokeOptions): Promise<GetWebAnalyticsSitesResult>
function getWebAnalyticsSitesOutput(args: GetWebAnalyticsSitesOutputArgs, opts?: InvokeOptions): Output<GetWebAnalyticsSitesResult>def get_web_analytics_sites(account_id: Optional[str] = None,
max_items: Optional[int] = None,
order_by: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetWebAnalyticsSitesResult
def get_web_analytics_sites_output(account_id: Optional[pulumi.Input[str]] = None,
max_items: Optional[pulumi.Input[int]] = None,
order_by: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetWebAnalyticsSitesResult]func LookupWebAnalyticsSites(ctx *Context, args *LookupWebAnalyticsSitesArgs, opts ...InvokeOption) (*LookupWebAnalyticsSitesResult, error)
func LookupWebAnalyticsSitesOutput(ctx *Context, args *LookupWebAnalyticsSitesOutputArgs, opts ...InvokeOption) LookupWebAnalyticsSitesResultOutput> Note: This function is named LookupWebAnalyticsSites in the Go SDK.
public static class GetWebAnalyticsSites
{
public static Task<GetWebAnalyticsSitesResult> InvokeAsync(GetWebAnalyticsSitesArgs args, InvokeOptions? opts = null)
public static Output<GetWebAnalyticsSitesResult> Invoke(GetWebAnalyticsSitesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetWebAnalyticsSitesResult> getWebAnalyticsSites(GetWebAnalyticsSitesArgs args, InvokeOptions options)
public static Output<GetWebAnalyticsSitesResult> getWebAnalyticsSites(GetWebAnalyticsSitesArgs args, InvokeOptions options)
fn::invoke:
function: cloudflare:index/getWebAnalyticsSites:getWebAnalyticsSites
arguments:
# arguments dictionaryThe following arguments are supported:
- account_
id str - Identifier.
- max_
items int - Max items to fetch, default: 1000
- order_
by str - The property used to sort the list of results. Available values: "host", "created".
getWebAnalyticsSites Result
The following output properties are available:
- Account
Id string - Identifier.
- Id string
- The provider-assigned unique ID for this managed resource.
- Results
List<Get
Web Analytics Sites Result> - The items returned by the data source
- Max
Items int - Max items to fetch, default: 1000
- Order
By string - The property used to sort the list of results. Available values: "host", "created".
- Account
Id string - Identifier.
- Id string
- The provider-assigned unique ID for this managed resource.
- Results
[]Get
Web Analytics Sites Result - The items returned by the data source
- Max
Items int - Max items to fetch, default: 1000
- Order
By string - The property used to sort the list of results. Available values: "host", "created".
- account
Id String - Identifier.
- id String
- The provider-assigned unique ID for this managed resource.
- results
List<Get
Web Analytics Sites Result> - The items returned by the data source
- max
Items Integer - Max items to fetch, default: 1000
- order
By String - The property used to sort the list of results. Available values: "host", "created".
- account
Id string - Identifier.
- id string
- The provider-assigned unique ID for this managed resource.
- results
Get
Web Analytics Sites Result[] - The items returned by the data source
- max
Items number - Max items to fetch, default: 1000
- order
By string - The property used to sort the list of results. Available values: "host", "created".
- account_
id str - Identifier.
- id str
- The provider-assigned unique ID for this managed resource.
- results
Sequence[Get
Web Analytics Sites Result] - The items returned by the data source
- max_
items int - Max items to fetch, default: 1000
- order_
by str - The property used to sort the list of results. Available values: "host", "created".
- account
Id String - Identifier.
- id String
- The provider-assigned unique ID for this managed resource.
- results List<Property Map>
- The items returned by the data source
- max
Items Number - Max items to fetch, default: 1000
- order
By String - The property used to sort the list of results. Available values: "host", "created".
Supporting Types
GetWebAnalyticsSitesResult
- Auto
Install bool - If enabled, the JavaScript snippet is automatically injected for orange-clouded sites.
- Created string
- Id string
- The Web Analytics site identifier.
- Rules
List<Get
Web Analytics Sites Result Rule> - A list of rules.
- Ruleset
Get
Web Analytics Sites Result Ruleset - Site
Tag string - The Web Analytics site identifier.
- Site
Token string - The Web Analytics site token.
- Snippet string
- Encoded JavaScript snippet.
- Auto
Install bool - If enabled, the JavaScript snippet is automatically injected for orange-clouded sites.
- Created string
- Id string
- The Web Analytics site identifier.
- Rules
[]Get
Web Analytics Sites Result Rule - A list of rules.
- Ruleset
Get
Web Analytics Sites Result Ruleset - Site
Tag string - The Web Analytics site identifier.
- Site
Token string - The Web Analytics site token.
- Snippet string
- Encoded JavaScript snippet.
- auto
Install Boolean - If enabled, the JavaScript snippet is automatically injected for orange-clouded sites.
- created String
- id String
- The Web Analytics site identifier.
- rules
List<Get
Web Analytics Sites Result Rule> - A list of rules.
- ruleset
Get
Web Analytics Sites Result Ruleset - site
Tag String - The Web Analytics site identifier.
- site
Token String - The Web Analytics site token.
- snippet String
- Encoded JavaScript snippet.
- auto
Install boolean - If enabled, the JavaScript snippet is automatically injected for orange-clouded sites.
- created string
- id string
- The Web Analytics site identifier.
- rules
Get
Web Analytics Sites Result Rule[] - A list of rules.
- ruleset
Get
Web Analytics Sites Result Ruleset - site
Tag string - The Web Analytics site identifier.
- site
Token string - The Web Analytics site token.
- snippet string
- Encoded JavaScript snippet.
- auto_
install bool - If enabled, the JavaScript snippet is automatically injected for orange-clouded sites.
- created str
- id str
- The Web Analytics site identifier.
- rules
Sequence[Get
Web Analytics Sites Result Rule] - A list of rules.
- ruleset
Get
Web Analytics Sites Result Ruleset - site_
tag str - The Web Analytics site identifier.
- site_
token str - The Web Analytics site token.
- snippet str
- Encoded JavaScript snippet.
- auto
Install Boolean - If enabled, the JavaScript snippet is automatically injected for orange-clouded sites.
- created String
- id String
- The Web Analytics site identifier.
- rules List<Property Map>
- A list of rules.
- ruleset Property Map
- site
Tag String - The Web Analytics site identifier.
- site
Token String - The Web Analytics site token.
- snippet String
- Encoded JavaScript snippet.
GetWebAnalyticsSitesResultRule
- Created string
- Host string
- The hostname the rule will be applied to.
- Id string
- The Web Analytics rule identifier.
- Inclusive bool
- Whether the rule includes or excludes traffic from being measured.
- Is
Paused bool - Whether the rule is paused or not.
- Paths List<string>
- The paths the rule will be applied to.
- Priority double
- Created string
- Host string
- The hostname the rule will be applied to.
- Id string
- The Web Analytics rule identifier.
- Inclusive bool
- Whether the rule includes or excludes traffic from being measured.
- Is
Paused bool - Whether the rule is paused or not.
- Paths []string
- The paths the rule will be applied to.
- Priority float64
- created String
- host String
- The hostname the rule will be applied to.
- id String
- The Web Analytics rule identifier.
- inclusive Boolean
- Whether the rule includes or excludes traffic from being measured.
- is
Paused Boolean - Whether the rule is paused or not.
- paths List<String>
- The paths the rule will be applied to.
- priority Double
- created string
- host string
- The hostname the rule will be applied to.
- id string
- The Web Analytics rule identifier.
- inclusive boolean
- Whether the rule includes or excludes traffic from being measured.
- is
Paused boolean - Whether the rule is paused or not.
- paths string[]
- The paths the rule will be applied to.
- priority number
- created String
- host String
- The hostname the rule will be applied to.
- id String
- The Web Analytics rule identifier.
- inclusive Boolean
- Whether the rule includes or excludes traffic from being measured.
- is
Paused Boolean - Whether the rule is paused or not.
- paths List<String>
- The paths the rule will be applied to.
- priority Number
GetWebAnalyticsSitesResultRuleset
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
