1. Packages
  2. Cloudflare Provider
  3. API Docs
  4. getPageShieldScriptsList
Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi

cloudflare.getPageShieldScriptsList

Explore with Pulumi AI

cloudflare logo
Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cloudflare from "@pulumi/cloudflare";
    
    const examplePageShieldScriptsList = cloudflare.getPageShieldScriptsList({
        zoneId: "023e105f4ecef8ad9ca31a8372d0c353",
        direction: "asc",
        excludeUrls: "blog.cloudflare.com,www.example",
        "export": "csv",
        hosts: "blog.cloudflare.com,www.example*,*cloudflare.com",
        orderBy: "first_seen_at",
        page: "2",
        pageUrl: "example.com/page,*/checkout,example.com/*,*checkout*",
        perPage: 100,
        prioritizeMalicious: true,
        status: "active,inactive",
        urls: "blog.cloudflare.com,www.example",
    });
    
    import pulumi
    import pulumi_cloudflare as cloudflare
    
    example_page_shield_scripts_list = cloudflare.get_page_shield_scripts_list(zone_id="023e105f4ecef8ad9ca31a8372d0c353",
        direction="asc",
        exclude_urls="blog.cloudflare.com,www.example",
        export="csv",
        hosts="blog.cloudflare.com,www.example*,*cloudflare.com",
        order_by="first_seen_at",
        page="2",
        page_url="example.com/page,*/checkout,example.com/*,*checkout*",
        per_page=100,
        prioritize_malicious=True,
        status="active,inactive",
        urls="blog.cloudflare.com,www.example")
    
    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.LookupPageShieldScriptsList(ctx, &cloudflare.LookupPageShieldScriptsListArgs{
    			ZoneId:              "023e105f4ecef8ad9ca31a8372d0c353",
    			Direction:           pulumi.StringRef("asc"),
    			ExcludeUrls:         pulumi.StringRef("blog.cloudflare.com,www.example"),
    			Export:              pulumi.StringRef("csv"),
    			Hosts:               pulumi.StringRef("blog.cloudflare.com,www.example*,*cloudflare.com"),
    			OrderBy:             pulumi.StringRef("first_seen_at"),
    			Page:                pulumi.StringRef("2"),
    			PageUrl:             pulumi.StringRef("example.com/page,*/checkout,example.com/*,*checkout*"),
    			PerPage:             pulumi.Float64Ref(100),
    			PrioritizeMalicious: pulumi.BoolRef(true),
    			Status:              pulumi.StringRef("active,inactive"),
    			Urls:                pulumi.StringRef("blog.cloudflare.com,www.example"),
    		}, 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 examplePageShieldScriptsList = Cloudflare.GetPageShieldScriptsList.Invoke(new()
        {
            ZoneId = "023e105f4ecef8ad9ca31a8372d0c353",
            Direction = "asc",
            ExcludeUrls = "blog.cloudflare.com,www.example",
            Export = "csv",
            Hosts = "blog.cloudflare.com,www.example*,*cloudflare.com",
            OrderBy = "first_seen_at",
            Page = "2",
            PageUrl = "example.com/page,*/checkout,example.com/*,*checkout*",
            PerPage = 100,
            PrioritizeMalicious = true,
            Status = "active,inactive",
            Urls = "blog.cloudflare.com,www.example",
        });
    
    });
    
    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.GetPageShieldScriptsListArgs;
    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 examplePageShieldScriptsList = CloudflareFunctions.getPageShieldScriptsList(GetPageShieldScriptsListArgs.builder()
                .zoneId("023e105f4ecef8ad9ca31a8372d0c353")
                .direction("asc")
                .excludeUrls("blog.cloudflare.com,www.example")
                .export("csv")
                .hosts("blog.cloudflare.com,www.example*,*cloudflare.com")
                .orderBy("first_seen_at")
                .page("2")
                .pageUrl("example.com/page,*/checkout,example.com/*,*checkout*")
                .perPage(100)
                .prioritizeMalicious(true)
                .status("active,inactive")
                .urls("blog.cloudflare.com,www.example")
                .build());
    
        }
    }
    
    variables:
      examplePageShieldScriptsList:
        fn::invoke:
          function: cloudflare:getPageShieldScriptsList
          arguments:
            zoneId: 023e105f4ecef8ad9ca31a8372d0c353
            direction: asc
            excludeUrls: blog.cloudflare.com,www.example
            export: csv
            hosts: blog.cloudflare.com,www.example*,*cloudflare.com
            orderBy: first_seen_at
            page: '2'
            pageUrl: example.com/page,*/checkout,example.com/*,*checkout*
            perPage: 100
            prioritizeMalicious: true
            status: active,inactive
            urls: blog.cloudflare.com,www.example
    

    Using getPageShieldScriptsList

    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 getPageShieldScriptsList(args: GetPageShieldScriptsListArgs, opts?: InvokeOptions): Promise<GetPageShieldScriptsListResult>
    function getPageShieldScriptsListOutput(args: GetPageShieldScriptsListOutputArgs, opts?: InvokeOptions): Output<GetPageShieldScriptsListResult>
    def get_page_shield_scripts_list(direction: Optional[str] = None,
                                     exclude_cdn_cgi: Optional[bool] = None,
                                     exclude_duplicates: Optional[bool] = None,
                                     exclude_urls: Optional[str] = None,
                                     export: Optional[str] = None,
                                     hosts: Optional[str] = None,
                                     max_items: Optional[int] = None,
                                     order_by: Optional[str] = None,
                                     page: Optional[str] = None,
                                     page_url: Optional[str] = None,
                                     per_page: Optional[float] = None,
                                     prioritize_malicious: Optional[bool] = None,
                                     status: Optional[str] = None,
                                     urls: Optional[str] = None,
                                     zone_id: Optional[str] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetPageShieldScriptsListResult
    def get_page_shield_scripts_list_output(direction: Optional[pulumi.Input[str]] = None,
                                     exclude_cdn_cgi: Optional[pulumi.Input[bool]] = None,
                                     exclude_duplicates: Optional[pulumi.Input[bool]] = None,
                                     exclude_urls: Optional[pulumi.Input[str]] = None,
                                     export: Optional[pulumi.Input[str]] = None,
                                     hosts: Optional[pulumi.Input[str]] = None,
                                     max_items: Optional[pulumi.Input[int]] = None,
                                     order_by: Optional[pulumi.Input[str]] = None,
                                     page: Optional[pulumi.Input[str]] = None,
                                     page_url: Optional[pulumi.Input[str]] = None,
                                     per_page: Optional[pulumi.Input[float]] = None,
                                     prioritize_malicious: Optional[pulumi.Input[bool]] = None,
                                     status: Optional[pulumi.Input[str]] = None,
                                     urls: Optional[pulumi.Input[str]] = None,
                                     zone_id: Optional[pulumi.Input[str]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetPageShieldScriptsListResult]
    func LookupPageShieldScriptsList(ctx *Context, args *LookupPageShieldScriptsListArgs, opts ...InvokeOption) (*LookupPageShieldScriptsListResult, error)
    func LookupPageShieldScriptsListOutput(ctx *Context, args *LookupPageShieldScriptsListOutputArgs, opts ...InvokeOption) LookupPageShieldScriptsListResultOutput

    > Note: This function is named LookupPageShieldScriptsList in the Go SDK.

    public static class GetPageShieldScriptsList 
    {
        public static Task<GetPageShieldScriptsListResult> InvokeAsync(GetPageShieldScriptsListArgs args, InvokeOptions? opts = null)
        public static Output<GetPageShieldScriptsListResult> Invoke(GetPageShieldScriptsListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPageShieldScriptsListResult> getPageShieldScriptsList(GetPageShieldScriptsListArgs args, InvokeOptions options)
    public static Output<GetPageShieldScriptsListResult> getPageShieldScriptsList(GetPageShieldScriptsListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: cloudflare:index/getPageShieldScriptsList:getPageShieldScriptsList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ZoneId string
    Identifier
    Direction string
    The direction used to sort returned scripts. Available values: "asc", "desc".
    ExcludeCdnCgi bool
    When true, excludes scripts seen in a /cdn-cgi path from the returned scripts. The default value is true.
    ExcludeDuplicates bool
    When true, excludes duplicate scripts. We consider a script duplicate of another if their javascript content matches and they share the same url host and zone hostname. In such case, we return the most recent script for the URL host and zone hostname combination.
    ExcludeUrls string
    Excludes scripts whose URL contains one of the URL-encoded URLs separated by commas.
    Export string
    Export the list of scripts as a file. Available values: "csv".
    Hosts string
    Includes scripts that match one or more URL-encoded hostnames separated by commas.
    MaxItems int
    OrderBy string
    Page string
    PageUrl string
    PerPage double
    PrioritizeMalicious bool
    Status string
    Urls string
    ZoneId string
    Identifier
    Direction string
    The direction used to sort returned scripts. Available values: "asc", "desc".
    ExcludeCdnCgi bool
    When true, excludes scripts seen in a /cdn-cgi path from the returned scripts. The default value is true.
    ExcludeDuplicates bool
    When true, excludes duplicate scripts. We consider a script duplicate of another if their javascript content matches and they share the same url host and zone hostname. In such case, we return the most recent script for the URL host and zone hostname combination.
    ExcludeUrls string
    Excludes scripts whose URL contains one of the URL-encoded URLs separated by commas.
    Export string
    Export the list of scripts as a file. Available values: "csv".
    Hosts string
    Includes scripts that match one or more URL-encoded hostnames separated by commas.
    MaxItems int
    OrderBy string
    Page string
    PageUrl string
    PerPage float64
    PrioritizeMalicious bool
    Status string
    Urls string
    zoneId String
    Identifier
    direction String
    The direction used to sort returned scripts. Available values: "asc", "desc".
    excludeCdnCgi Boolean
    When true, excludes scripts seen in a /cdn-cgi path from the returned scripts. The default value is true.
    excludeDuplicates Boolean
    When true, excludes duplicate scripts. We consider a script duplicate of another if their javascript content matches and they share the same url host and zone hostname. In such case, we return the most recent script for the URL host and zone hostname combination.
    excludeUrls String
    Excludes scripts whose URL contains one of the URL-encoded URLs separated by commas.
    export String
    Export the list of scripts as a file. Available values: "csv".
    hosts String
    Includes scripts that match one or more URL-encoded hostnames separated by commas.
    maxItems Integer
    orderBy String
    page String
    pageUrl String
    perPage Double
    prioritizeMalicious Boolean
    status String
    urls String
    zoneId string
    Identifier
    direction string
    The direction used to sort returned scripts. Available values: "asc", "desc".
    excludeCdnCgi boolean
    When true, excludes scripts seen in a /cdn-cgi path from the returned scripts. The default value is true.
    excludeDuplicates boolean
    When true, excludes duplicate scripts. We consider a script duplicate of another if their javascript content matches and they share the same url host and zone hostname. In such case, we return the most recent script for the URL host and zone hostname combination.
    excludeUrls string
    Excludes scripts whose URL contains one of the URL-encoded URLs separated by commas.
    export string
    Export the list of scripts as a file. Available values: "csv".
    hosts string
    Includes scripts that match one or more URL-encoded hostnames separated by commas.
    maxItems number
    orderBy string
    page string
    pageUrl string
    perPage number
    prioritizeMalicious boolean
    status string
    urls string
    zone_id str
    Identifier
    direction str
    The direction used to sort returned scripts. Available values: "asc", "desc".
    exclude_cdn_cgi bool
    When true, excludes scripts seen in a /cdn-cgi path from the returned scripts. The default value is true.
    exclude_duplicates bool
    When true, excludes duplicate scripts. We consider a script duplicate of another if their javascript content matches and they share the same url host and zone hostname. In such case, we return the most recent script for the URL host and zone hostname combination.
    exclude_urls str
    Excludes scripts whose URL contains one of the URL-encoded URLs separated by commas.
    export str
    Export the list of scripts as a file. Available values: "csv".
    hosts str
    Includes scripts that match one or more URL-encoded hostnames separated by commas.
    max_items int
    order_by str
    page str
    page_url str
    per_page float
    prioritize_malicious bool
    status str
    urls str
    zoneId String
    Identifier
    direction String
    The direction used to sort returned scripts. Available values: "asc", "desc".
    excludeCdnCgi Boolean
    When true, excludes scripts seen in a /cdn-cgi path from the returned scripts. The default value is true.
    excludeDuplicates Boolean
    When true, excludes duplicate scripts. We consider a script duplicate of another if their javascript content matches and they share the same url host and zone hostname. In such case, we return the most recent script for the URL host and zone hostname combination.
    excludeUrls String
    Excludes scripts whose URL contains one of the URL-encoded URLs separated by commas.
    export String
    Export the list of scripts as a file. Available values: "csv".
    hosts String
    Includes scripts that match one or more URL-encoded hostnames separated by commas.
    maxItems Number
    orderBy String
    page String
    pageUrl String
    perPage Number
    prioritizeMalicious Boolean
    status String
    urls String

    getPageShieldScriptsList Result

    The following output properties are available:

    ExcludeCdnCgi bool
    When true, excludes scripts seen in a /cdn-cgi path from the returned scripts. The default value is true.
    ExcludeDuplicates bool
    When true, excludes duplicate scripts. We consider a script duplicate of another if their javascript content matches and they share the same url host and zone hostname. In such case, we return the most recent script for the URL host and zone hostname combination.
    Id string
    The provider-assigned unique ID for this managed resource.
    Results List<GetPageShieldScriptsListResult>
    ZoneId string
    Identifier
    Direction string
    The direction used to sort returned scripts. Available values: "asc", "desc".
    ExcludeUrls string
    Excludes scripts whose URL contains one of the URL-encoded URLs separated by commas.
    Export string
    Export the list of scripts as a file. Available values: "csv".
    Hosts string
    Includes scripts that match one or more URL-encoded hostnames separated by commas.
    MaxItems int
    OrderBy string
    Page string
    PageUrl string
    PerPage double
    PrioritizeMalicious bool
    Status string
    Urls string
    ExcludeCdnCgi bool
    When true, excludes scripts seen in a /cdn-cgi path from the returned scripts. The default value is true.
    ExcludeDuplicates bool
    When true, excludes duplicate scripts. We consider a script duplicate of another if their javascript content matches and they share the same url host and zone hostname. In such case, we return the most recent script for the URL host and zone hostname combination.
    Id string
    The provider-assigned unique ID for this managed resource.
    Results []GetPageShieldScriptsListResult
    ZoneId string
    Identifier
    Direction string
    The direction used to sort returned scripts. Available values: "asc", "desc".
    ExcludeUrls string
    Excludes scripts whose URL contains one of the URL-encoded URLs separated by commas.
    Export string
    Export the list of scripts as a file. Available values: "csv".
    Hosts string
    Includes scripts that match one or more URL-encoded hostnames separated by commas.
    MaxItems int
    OrderBy string
    Page string
    PageUrl string
    PerPage float64
    PrioritizeMalicious bool
    Status string
    Urls string
    excludeCdnCgi Boolean
    When true, excludes scripts seen in a /cdn-cgi path from the returned scripts. The default value is true.
    excludeDuplicates Boolean
    When true, excludes duplicate scripts. We consider a script duplicate of another if their javascript content matches and they share the same url host and zone hostname. In such case, we return the most recent script for the URL host and zone hostname combination.
    id String
    The provider-assigned unique ID for this managed resource.
    results List<GetPageShieldScriptsListResult>
    zoneId String
    Identifier
    direction String
    The direction used to sort returned scripts. Available values: "asc", "desc".
    excludeUrls String
    Excludes scripts whose URL contains one of the URL-encoded URLs separated by commas.
    export String
    Export the list of scripts as a file. Available values: "csv".
    hosts String
    Includes scripts that match one or more URL-encoded hostnames separated by commas.
    maxItems Integer
    orderBy String
    page String
    pageUrl String
    perPage Double
    prioritizeMalicious Boolean
    status String
    urls String
    excludeCdnCgi boolean
    When true, excludes scripts seen in a /cdn-cgi path from the returned scripts. The default value is true.
    excludeDuplicates boolean
    When true, excludes duplicate scripts. We consider a script duplicate of another if their javascript content matches and they share the same url host and zone hostname. In such case, we return the most recent script for the URL host and zone hostname combination.
    id string
    The provider-assigned unique ID for this managed resource.
    results GetPageShieldScriptsListResult[]
    zoneId string
    Identifier
    direction string
    The direction used to sort returned scripts. Available values: "asc", "desc".
    excludeUrls string
    Excludes scripts whose URL contains one of the URL-encoded URLs separated by commas.
    export string
    Export the list of scripts as a file. Available values: "csv".
    hosts string
    Includes scripts that match one or more URL-encoded hostnames separated by commas.
    maxItems number
    orderBy string
    page string
    pageUrl string
    perPage number
    prioritizeMalicious boolean
    status string
    urls string
    exclude_cdn_cgi bool
    When true, excludes scripts seen in a /cdn-cgi path from the returned scripts. The default value is true.
    exclude_duplicates bool
    When true, excludes duplicate scripts. We consider a script duplicate of another if their javascript content matches and they share the same url host and zone hostname. In such case, we return the most recent script for the URL host and zone hostname combination.
    id str
    The provider-assigned unique ID for this managed resource.
    results Sequence[GetPageShieldScriptsListResult]
    zone_id str
    Identifier
    direction str
    The direction used to sort returned scripts. Available values: "asc", "desc".
    exclude_urls str
    Excludes scripts whose URL contains one of the URL-encoded URLs separated by commas.
    export str
    Export the list of scripts as a file. Available values: "csv".
    hosts str
    Includes scripts that match one or more URL-encoded hostnames separated by commas.
    max_items int
    order_by str
    page str
    page_url str
    per_page float
    prioritize_malicious bool
    status str
    urls str
    excludeCdnCgi Boolean
    When true, excludes scripts seen in a /cdn-cgi path from the returned scripts. The default value is true.
    excludeDuplicates Boolean
    When true, excludes duplicate scripts. We consider a script duplicate of another if their javascript content matches and they share the same url host and zone hostname. In such case, we return the most recent script for the URL host and zone hostname combination.
    id String
    The provider-assigned unique ID for this managed resource.
    results List<Property Map>
    zoneId String
    Identifier
    direction String
    The direction used to sort returned scripts. Available values: "asc", "desc".
    excludeUrls String
    Excludes scripts whose URL contains one of the URL-encoded URLs separated by commas.
    export String
    Export the list of scripts as a file. Available values: "csv".
    hosts String
    Includes scripts that match one or more URL-encoded hostnames separated by commas.
    maxItems Number
    orderBy String
    page String
    pageUrl String
    perPage Number
    prioritizeMalicious Boolean
    status String
    urls String

    Supporting Types

    GetPageShieldScriptsListResult

    AddedAt string
    CryptominingScore int
    The cryptomining score of the JavaScript content.
    DataflowScore int
    The dataflow score of the JavaScript content.
    DomainReportedMalicious bool
    FetchedAt string
    The timestamp of when the script was last fetched.
    FirstPageUrl string
    FirstSeenAt string
    Hash string
    The computed hash of the analyzed script.
    Host string
    Id string
    Identifier
    JsIntegrityScore int
    The integrity score of the JavaScript content.
    LastSeenAt string
    MagecartScore int
    The magecart score of the JavaScript content.
    MaliciousDomainCategories List<string>
    MaliciousUrlCategories List<string>
    MalwareScore int
    The malware score of the JavaScript content.
    ObfuscationScore int
    The obfuscation score of the JavaScript content.
    PageUrls List<string>
    Url string
    UrlContainsCdnCgiPath bool
    UrlReportedMalicious bool
    AddedAt string
    CryptominingScore int
    The cryptomining score of the JavaScript content.
    DataflowScore int
    The dataflow score of the JavaScript content.
    DomainReportedMalicious bool
    FetchedAt string
    The timestamp of when the script was last fetched.
    FirstPageUrl string
    FirstSeenAt string
    Hash string
    The computed hash of the analyzed script.
    Host string
    Id string
    Identifier
    JsIntegrityScore int
    The integrity score of the JavaScript content.
    LastSeenAt string
    MagecartScore int
    The magecart score of the JavaScript content.
    MaliciousDomainCategories []string
    MaliciousUrlCategories []string
    MalwareScore int
    The malware score of the JavaScript content.
    ObfuscationScore int
    The obfuscation score of the JavaScript content.
    PageUrls []string
    Url string
    UrlContainsCdnCgiPath bool
    UrlReportedMalicious bool
    addedAt String
    cryptominingScore Integer
    The cryptomining score of the JavaScript content.
    dataflowScore Integer
    The dataflow score of the JavaScript content.
    domainReportedMalicious Boolean
    fetchedAt String
    The timestamp of when the script was last fetched.
    firstPageUrl String
    firstSeenAt String
    hash String
    The computed hash of the analyzed script.
    host String
    id String
    Identifier
    jsIntegrityScore Integer
    The integrity score of the JavaScript content.
    lastSeenAt String
    magecartScore Integer
    The magecart score of the JavaScript content.
    maliciousDomainCategories List<String>
    maliciousUrlCategories List<String>
    malwareScore Integer
    The malware score of the JavaScript content.
    obfuscationScore Integer
    The obfuscation score of the JavaScript content.
    pageUrls List<String>
    url String
    urlContainsCdnCgiPath Boolean
    urlReportedMalicious Boolean
    addedAt string
    cryptominingScore number
    The cryptomining score of the JavaScript content.
    dataflowScore number
    The dataflow score of the JavaScript content.
    domainReportedMalicious boolean
    fetchedAt string
    The timestamp of when the script was last fetched.
    firstPageUrl string
    firstSeenAt string
    hash string
    The computed hash of the analyzed script.
    host string
    id string
    Identifier
    jsIntegrityScore number
    The integrity score of the JavaScript content.
    lastSeenAt string
    magecartScore number
    The magecart score of the JavaScript content.
    maliciousDomainCategories string[]
    maliciousUrlCategories string[]
    malwareScore number
    The malware score of the JavaScript content.
    obfuscationScore number
    The obfuscation score of the JavaScript content.
    pageUrls string[]
    url string
    urlContainsCdnCgiPath boolean
    urlReportedMalicious boolean
    added_at str
    cryptomining_score int
    The cryptomining score of the JavaScript content.
    dataflow_score int
    The dataflow score of the JavaScript content.
    domain_reported_malicious bool
    fetched_at str
    The timestamp of when the script was last fetched.
    first_page_url str
    first_seen_at str
    hash str
    The computed hash of the analyzed script.
    host str
    id str
    Identifier
    js_integrity_score int
    The integrity score of the JavaScript content.
    last_seen_at str
    magecart_score int
    The magecart score of the JavaScript content.
    malicious_domain_categories Sequence[str]
    malicious_url_categories Sequence[str]
    malware_score int
    The malware score of the JavaScript content.
    obfuscation_score int
    The obfuscation score of the JavaScript content.
    page_urls Sequence[str]
    url str
    url_contains_cdn_cgi_path bool
    url_reported_malicious bool
    addedAt String
    cryptominingScore Number
    The cryptomining score of the JavaScript content.
    dataflowScore Number
    The dataflow score of the JavaScript content.
    domainReportedMalicious Boolean
    fetchedAt String
    The timestamp of when the script was last fetched.
    firstPageUrl String
    firstSeenAt String
    hash String
    The computed hash of the analyzed script.
    host String
    id String
    Identifier
    jsIntegrityScore Number
    The integrity score of the JavaScript content.
    lastSeenAt String
    magecartScore Number
    The magecart score of the JavaScript content.
    maliciousDomainCategories List<String>
    maliciousUrlCategories List<String>
    malwareScore Number
    The malware score of the JavaScript content.
    obfuscationScore Number
    The obfuscation score of the JavaScript content.
    pageUrls List<String>
    url String
    urlContainsCdnCgiPath Boolean
    urlReportedMalicious Boolean

    Package Details

    Repository
    Cloudflare pulumi/pulumi-cloudflare
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the cloudflare Terraform Provider.
    cloudflare logo
    Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi