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

cloudflare.ObservatoryScheduledTest

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 exampleObservatoryScheduledTest = new cloudflare.ObservatoryScheduledTest("example_observatory_scheduled_test", {
        zoneId: "023e105f4ecef8ad9ca31a8372d0c353",
        url: "example.com",
    });
    
    import pulumi
    import pulumi_cloudflare as cloudflare
    
    example_observatory_scheduled_test = cloudflare.ObservatoryScheduledTest("example_observatory_scheduled_test",
        zone_id="023e105f4ecef8ad9ca31a8372d0c353",
        url="example.com")
    
    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.NewObservatoryScheduledTest(ctx, "example_observatory_scheduled_test", &cloudflare.ObservatoryScheduledTestArgs{
    			ZoneId: pulumi.String("023e105f4ecef8ad9ca31a8372d0c353"),
    			Url:    pulumi.String("example.com"),
    		})
    		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 exampleObservatoryScheduledTest = new Cloudflare.ObservatoryScheduledTest("example_observatory_scheduled_test", new()
        {
            ZoneId = "023e105f4ecef8ad9ca31a8372d0c353",
            Url = "example.com",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.cloudflare.ObservatoryScheduledTest;
    import com.pulumi.cloudflare.ObservatoryScheduledTestArgs;
    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 exampleObservatoryScheduledTest = new ObservatoryScheduledTest("exampleObservatoryScheduledTest", ObservatoryScheduledTestArgs.builder()
                .zoneId("023e105f4ecef8ad9ca31a8372d0c353")
                .url("example.com")
                .build());
    
        }
    }
    
    resources:
      exampleObservatoryScheduledTest:
        type: cloudflare:ObservatoryScheduledTest
        name: example_observatory_scheduled_test
        properties:
          zoneId: 023e105f4ecef8ad9ca31a8372d0c353
          url: example.com
    

    Create ObservatoryScheduledTest Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ObservatoryScheduledTest(name: string, args: ObservatoryScheduledTestArgs, opts?: CustomResourceOptions);
    @overload
    def ObservatoryScheduledTest(resource_name: str,
                                 args: ObservatoryScheduledTestArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObservatoryScheduledTest(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 url: Optional[str] = None,
                                 zone_id: Optional[str] = None)
    func NewObservatoryScheduledTest(ctx *Context, name string, args ObservatoryScheduledTestArgs, opts ...ResourceOption) (*ObservatoryScheduledTest, error)
    public ObservatoryScheduledTest(string name, ObservatoryScheduledTestArgs args, CustomResourceOptions? opts = null)
    public ObservatoryScheduledTest(String name, ObservatoryScheduledTestArgs args)
    public ObservatoryScheduledTest(String name, ObservatoryScheduledTestArgs args, CustomResourceOptions options)
    
    type: cloudflare:ObservatoryScheduledTest
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ObservatoryScheduledTestArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ObservatoryScheduledTestArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ObservatoryScheduledTestArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObservatoryScheduledTestArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObservatoryScheduledTestArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var observatoryScheduledTestResource = new Cloudflare.ObservatoryScheduledTest("observatoryScheduledTestResource", new()
    {
        Url = "string",
        ZoneId = "string",
    });
    
    example, err := cloudflare.NewObservatoryScheduledTest(ctx, "observatoryScheduledTestResource", &cloudflare.ObservatoryScheduledTestArgs{
    	Url:    pulumi.String("string"),
    	ZoneId: pulumi.String("string"),
    })
    
    var observatoryScheduledTestResource = new ObservatoryScheduledTest("observatoryScheduledTestResource", ObservatoryScheduledTestArgs.builder()
        .url("string")
        .zoneId("string")
        .build());
    
    observatory_scheduled_test_resource = cloudflare.ObservatoryScheduledTest("observatoryScheduledTestResource",
        url="string",
        zone_id="string")
    
    const observatoryScheduledTestResource = new cloudflare.ObservatoryScheduledTest("observatoryScheduledTestResource", {
        url: "string",
        zoneId: "string",
    });
    
    type: cloudflare:ObservatoryScheduledTest
    properties:
        url: string
        zoneId: string
    

    ObservatoryScheduledTest Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ObservatoryScheduledTest resource accepts the following input properties:

    Url string
    A URL.
    ZoneId string
    Identifier.
    Url string
    A URL.
    ZoneId string
    Identifier.
    url String
    A URL.
    zoneId String
    Identifier.
    url string
    A URL.
    zoneId string
    Identifier.
    url str
    A URL.
    zone_id str
    Identifier.
    url String
    A URL.
    zoneId String
    Identifier.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObservatoryScheduledTest resource produces the following output properties:

    Frequency string
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    Id string
    The provider-assigned unique ID for this managed resource.
    Region string
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    Schedule ObservatoryScheduledTestSchedule
    The test schedule.
    Test ObservatoryScheduledTestTest
    Frequency string
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    Id string
    The provider-assigned unique ID for this managed resource.
    Region string
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    Schedule ObservatoryScheduledTestSchedule
    The test schedule.
    Test ObservatoryScheduledTestTest
    frequency String
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    id String
    The provider-assigned unique ID for this managed resource.
    region String
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    schedule ObservatoryScheduledTestSchedule
    The test schedule.
    test ObservatoryScheduledTestTest
    frequency string
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    id string
    The provider-assigned unique ID for this managed resource.
    region string
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    schedule ObservatoryScheduledTestSchedule
    The test schedule.
    test ObservatoryScheduledTestTest
    frequency str
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    id str
    The provider-assigned unique ID for this managed resource.
    region str
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    schedule ObservatoryScheduledTestSchedule
    The test schedule.
    test ObservatoryScheduledTestTest
    frequency String
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    id String
    The provider-assigned unique ID for this managed resource.
    region String
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    schedule Property Map
    The test schedule.
    test Property Map

    Look up Existing ObservatoryScheduledTest Resource

    Get an existing ObservatoryScheduledTest resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ObservatoryScheduledTestState, opts?: CustomResourceOptions): ObservatoryScheduledTest
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            frequency: Optional[str] = None,
            region: Optional[str] = None,
            schedule: Optional[ObservatoryScheduledTestScheduleArgs] = None,
            test: Optional[ObservatoryScheduledTestTestArgs] = None,
            url: Optional[str] = None,
            zone_id: Optional[str] = None) -> ObservatoryScheduledTest
    func GetObservatoryScheduledTest(ctx *Context, name string, id IDInput, state *ObservatoryScheduledTestState, opts ...ResourceOption) (*ObservatoryScheduledTest, error)
    public static ObservatoryScheduledTest Get(string name, Input<string> id, ObservatoryScheduledTestState? state, CustomResourceOptions? opts = null)
    public static ObservatoryScheduledTest get(String name, Output<String> id, ObservatoryScheduledTestState state, CustomResourceOptions options)
    resources:  _:    type: cloudflare:ObservatoryScheduledTest    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Frequency string
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    Region string
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    Schedule ObservatoryScheduledTestSchedule
    The test schedule.
    Test ObservatoryScheduledTestTest
    Url string
    A URL.
    ZoneId string
    Identifier.
    Frequency string
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    Region string
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    Schedule ObservatoryScheduledTestScheduleArgs
    The test schedule.
    Test ObservatoryScheduledTestTestArgs
    Url string
    A URL.
    ZoneId string
    Identifier.
    frequency String
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    region String
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    schedule ObservatoryScheduledTestSchedule
    The test schedule.
    test ObservatoryScheduledTestTest
    url String
    A URL.
    zoneId String
    Identifier.
    frequency string
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    region string
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    schedule ObservatoryScheduledTestSchedule
    The test schedule.
    test ObservatoryScheduledTestTest
    url string
    A URL.
    zoneId string
    Identifier.
    frequency str
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    region str
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    schedule ObservatoryScheduledTestScheduleArgs
    The test schedule.
    test ObservatoryScheduledTestTestArgs
    url str
    A URL.
    zone_id str
    Identifier.
    frequency String
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    region String
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    schedule Property Map
    The test schedule.
    test Property Map
    url String
    A URL.
    zoneId String
    Identifier.

    Supporting Types

    ObservatoryScheduledTestSchedule, ObservatoryScheduledTestScheduleArgs

    Frequency string
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    Region string
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    Url string
    A URL.
    Frequency string
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    Region string
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    Url string
    A URL.
    frequency String
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    region String
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    url String
    A URL.
    frequency string
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    region string
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    url string
    A URL.
    frequency str
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    region str
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    url str
    A URL.
    frequency String
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    region String
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    url String
    A URL.

    ObservatoryScheduledTestTest, ObservatoryScheduledTestTestArgs

    Date string
    DesktopReport ObservatoryScheduledTestTestDesktopReport
    The Lighthouse report.
    Id string
    UUID.
    MobileReport ObservatoryScheduledTestTestMobileReport
    The Lighthouse report.
    Region ObservatoryScheduledTestTestRegion
    A test region with a label.
    ScheduleFrequency string
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    Url string
    A URL.
    Date string
    DesktopReport ObservatoryScheduledTestTestDesktopReport
    The Lighthouse report.
    Id string
    UUID.
    MobileReport ObservatoryScheduledTestTestMobileReport
    The Lighthouse report.
    Region ObservatoryScheduledTestTestRegion
    A test region with a label.
    ScheduleFrequency string
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    Url string
    A URL.
    date String
    desktopReport ObservatoryScheduledTestTestDesktopReport
    The Lighthouse report.
    id String
    UUID.
    mobileReport ObservatoryScheduledTestTestMobileReport
    The Lighthouse report.
    region ObservatoryScheduledTestTestRegion
    A test region with a label.
    scheduleFrequency String
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    url String
    A URL.
    date string
    desktopReport ObservatoryScheduledTestTestDesktopReport
    The Lighthouse report.
    id string
    UUID.
    mobileReport ObservatoryScheduledTestTestMobileReport
    The Lighthouse report.
    region ObservatoryScheduledTestTestRegion
    A test region with a label.
    scheduleFrequency string
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    url string
    A URL.
    date str
    desktop_report ObservatoryScheduledTestTestDesktopReport
    The Lighthouse report.
    id str
    UUID.
    mobile_report ObservatoryScheduledTestTestMobileReport
    The Lighthouse report.
    region ObservatoryScheduledTestTestRegion
    A test region with a label.
    schedule_frequency str
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    url str
    A URL.
    date String
    desktopReport Property Map
    The Lighthouse report.
    id String
    UUID.
    mobileReport Property Map
    The Lighthouse report.
    region Property Map
    A test region with a label.
    scheduleFrequency String
    The frequency of the test. Available values: "DAILY", "WEEKLY".
    url String
    A URL.

    ObservatoryScheduledTestTestDesktopReport, ObservatoryScheduledTestTestDesktopReportArgs

    Cls double
    Cumulative Layout Shift.
    DeviceType string
    The type of device. Available values: "DESKTOP", "MOBILE".
    Error ObservatoryScheduledTestTestDesktopReportError
    Fcp double
    First Contentful Paint.
    JsonReportUrl string
    The URL to the full Lighthouse JSON report.
    Lcp double
    Largest Contentful Paint.
    PerformanceScore double
    The Lighthouse performance score.
    Si double
    Speed Index.
    State string
    The state of the Lighthouse report. Available values: "RUNNING", "COMPLETE", "FAILED".
    Tbt double
    Total Blocking Time.
    Ttfb double
    Time To First Byte.
    Tti double
    Time To Interactive.
    Cls float64
    Cumulative Layout Shift.
    DeviceType string
    The type of device. Available values: "DESKTOP", "MOBILE".
    Error ObservatoryScheduledTestTestDesktopReportError
    Fcp float64
    First Contentful Paint.
    JsonReportUrl string
    The URL to the full Lighthouse JSON report.
    Lcp float64
    Largest Contentful Paint.
    PerformanceScore float64
    The Lighthouse performance score.
    Si float64
    Speed Index.
    State string
    The state of the Lighthouse report. Available values: "RUNNING", "COMPLETE", "FAILED".
    Tbt float64
    Total Blocking Time.
    Ttfb float64
    Time To First Byte.
    Tti float64
    Time To Interactive.
    cls Double
    Cumulative Layout Shift.
    deviceType String
    The type of device. Available values: "DESKTOP", "MOBILE".
    error ObservatoryScheduledTestTestDesktopReportError
    fcp Double
    First Contentful Paint.
    jsonReportUrl String
    The URL to the full Lighthouse JSON report.
    lcp Double
    Largest Contentful Paint.
    performanceScore Double
    The Lighthouse performance score.
    si Double
    Speed Index.
    state String
    The state of the Lighthouse report. Available values: "RUNNING", "COMPLETE", "FAILED".
    tbt Double
    Total Blocking Time.
    ttfb Double
    Time To First Byte.
    tti Double
    Time To Interactive.
    cls number
    Cumulative Layout Shift.
    deviceType string
    The type of device. Available values: "DESKTOP", "MOBILE".
    error ObservatoryScheduledTestTestDesktopReportError
    fcp number
    First Contentful Paint.
    jsonReportUrl string
    The URL to the full Lighthouse JSON report.
    lcp number
    Largest Contentful Paint.
    performanceScore number
    The Lighthouse performance score.
    si number
    Speed Index.
    state string
    The state of the Lighthouse report. Available values: "RUNNING", "COMPLETE", "FAILED".
    tbt number
    Total Blocking Time.
    ttfb number
    Time To First Byte.
    tti number
    Time To Interactive.
    cls float
    Cumulative Layout Shift.
    device_type str
    The type of device. Available values: "DESKTOP", "MOBILE".
    error ObservatoryScheduledTestTestDesktopReportError
    fcp float
    First Contentful Paint.
    json_report_url str
    The URL to the full Lighthouse JSON report.
    lcp float
    Largest Contentful Paint.
    performance_score float
    The Lighthouse performance score.
    si float
    Speed Index.
    state str
    The state of the Lighthouse report. Available values: "RUNNING", "COMPLETE", "FAILED".
    tbt float
    Total Blocking Time.
    ttfb float
    Time To First Byte.
    tti float
    Time To Interactive.
    cls Number
    Cumulative Layout Shift.
    deviceType String
    The type of device. Available values: "DESKTOP", "MOBILE".
    error Property Map
    fcp Number
    First Contentful Paint.
    jsonReportUrl String
    The URL to the full Lighthouse JSON report.
    lcp Number
    Largest Contentful Paint.
    performanceScore Number
    The Lighthouse performance score.
    si Number
    Speed Index.
    state String
    The state of the Lighthouse report. Available values: "RUNNING", "COMPLETE", "FAILED".
    tbt Number
    Total Blocking Time.
    ttfb Number
    Time To First Byte.
    tti Number
    Time To Interactive.

    ObservatoryScheduledTestTestDesktopReportError, ObservatoryScheduledTestTestDesktopReportErrorArgs

    Code string
    The error code of the Lighthouse result. Available values: "NOTREACHABLE", "DNSFAILURE", "NOTHTML", "LIGHTHOUSETIMEOUT", "UNKNOWN".
    Detail string
    Detailed error message.
    FinalDisplayedUrl string
    The final URL displayed to the user.
    Code string
    The error code of the Lighthouse result. Available values: "NOTREACHABLE", "DNSFAILURE", "NOTHTML", "LIGHTHOUSETIMEOUT", "UNKNOWN".
    Detail string
    Detailed error message.
    FinalDisplayedUrl string
    The final URL displayed to the user.
    code String
    The error code of the Lighthouse result. Available values: "NOTREACHABLE", "DNSFAILURE", "NOTHTML", "LIGHTHOUSETIMEOUT", "UNKNOWN".
    detail String
    Detailed error message.
    finalDisplayedUrl String
    The final URL displayed to the user.
    code string
    The error code of the Lighthouse result. Available values: "NOTREACHABLE", "DNSFAILURE", "NOTHTML", "LIGHTHOUSETIMEOUT", "UNKNOWN".
    detail string
    Detailed error message.
    finalDisplayedUrl string
    The final URL displayed to the user.
    code str
    The error code of the Lighthouse result. Available values: "NOTREACHABLE", "DNSFAILURE", "NOTHTML", "LIGHTHOUSETIMEOUT", "UNKNOWN".
    detail str
    Detailed error message.
    final_displayed_url str
    The final URL displayed to the user.
    code String
    The error code of the Lighthouse result. Available values: "NOTREACHABLE", "DNSFAILURE", "NOTHTML", "LIGHTHOUSETIMEOUT", "UNKNOWN".
    detail String
    Detailed error message.
    finalDisplayedUrl String
    The final URL displayed to the user.

    ObservatoryScheduledTestTestMobileReport, ObservatoryScheduledTestTestMobileReportArgs

    Cls double
    Cumulative Layout Shift.
    DeviceType string
    The type of device. Available values: "DESKTOP", "MOBILE".
    Error ObservatoryScheduledTestTestMobileReportError
    Fcp double
    First Contentful Paint.
    JsonReportUrl string
    The URL to the full Lighthouse JSON report.
    Lcp double
    Largest Contentful Paint.
    PerformanceScore double
    The Lighthouse performance score.
    Si double
    Speed Index.
    State string
    The state of the Lighthouse report. Available values: "RUNNING", "COMPLETE", "FAILED".
    Tbt double
    Total Blocking Time.
    Ttfb double
    Time To First Byte.
    Tti double
    Time To Interactive.
    Cls float64
    Cumulative Layout Shift.
    DeviceType string
    The type of device. Available values: "DESKTOP", "MOBILE".
    Error ObservatoryScheduledTestTestMobileReportError
    Fcp float64
    First Contentful Paint.
    JsonReportUrl string
    The URL to the full Lighthouse JSON report.
    Lcp float64
    Largest Contentful Paint.
    PerformanceScore float64
    The Lighthouse performance score.
    Si float64
    Speed Index.
    State string
    The state of the Lighthouse report. Available values: "RUNNING", "COMPLETE", "FAILED".
    Tbt float64
    Total Blocking Time.
    Ttfb float64
    Time To First Byte.
    Tti float64
    Time To Interactive.
    cls Double
    Cumulative Layout Shift.
    deviceType String
    The type of device. Available values: "DESKTOP", "MOBILE".
    error ObservatoryScheduledTestTestMobileReportError
    fcp Double
    First Contentful Paint.
    jsonReportUrl String
    The URL to the full Lighthouse JSON report.
    lcp Double
    Largest Contentful Paint.
    performanceScore Double
    The Lighthouse performance score.
    si Double
    Speed Index.
    state String
    The state of the Lighthouse report. Available values: "RUNNING", "COMPLETE", "FAILED".
    tbt Double
    Total Blocking Time.
    ttfb Double
    Time To First Byte.
    tti Double
    Time To Interactive.
    cls number
    Cumulative Layout Shift.
    deviceType string
    The type of device. Available values: "DESKTOP", "MOBILE".
    error ObservatoryScheduledTestTestMobileReportError
    fcp number
    First Contentful Paint.
    jsonReportUrl string
    The URL to the full Lighthouse JSON report.
    lcp number
    Largest Contentful Paint.
    performanceScore number
    The Lighthouse performance score.
    si number
    Speed Index.
    state string
    The state of the Lighthouse report. Available values: "RUNNING", "COMPLETE", "FAILED".
    tbt number
    Total Blocking Time.
    ttfb number
    Time To First Byte.
    tti number
    Time To Interactive.
    cls float
    Cumulative Layout Shift.
    device_type str
    The type of device. Available values: "DESKTOP", "MOBILE".
    error ObservatoryScheduledTestTestMobileReportError
    fcp float
    First Contentful Paint.
    json_report_url str
    The URL to the full Lighthouse JSON report.
    lcp float
    Largest Contentful Paint.
    performance_score float
    The Lighthouse performance score.
    si float
    Speed Index.
    state str
    The state of the Lighthouse report. Available values: "RUNNING", "COMPLETE", "FAILED".
    tbt float
    Total Blocking Time.
    ttfb float
    Time To First Byte.
    tti float
    Time To Interactive.
    cls Number
    Cumulative Layout Shift.
    deviceType String
    The type of device. Available values: "DESKTOP", "MOBILE".
    error Property Map
    fcp Number
    First Contentful Paint.
    jsonReportUrl String
    The URL to the full Lighthouse JSON report.
    lcp Number
    Largest Contentful Paint.
    performanceScore Number
    The Lighthouse performance score.
    si Number
    Speed Index.
    state String
    The state of the Lighthouse report. Available values: "RUNNING", "COMPLETE", "FAILED".
    tbt Number
    Total Blocking Time.
    ttfb Number
    Time To First Byte.
    tti Number
    Time To Interactive.

    ObservatoryScheduledTestTestMobileReportError, ObservatoryScheduledTestTestMobileReportErrorArgs

    Code string
    The error code of the Lighthouse result. Available values: "NOTREACHABLE", "DNSFAILURE", "NOTHTML", "LIGHTHOUSETIMEOUT", "UNKNOWN".
    Detail string
    Detailed error message.
    FinalDisplayedUrl string
    The final URL displayed to the user.
    Code string
    The error code of the Lighthouse result. Available values: "NOTREACHABLE", "DNSFAILURE", "NOTHTML", "LIGHTHOUSETIMEOUT", "UNKNOWN".
    Detail string
    Detailed error message.
    FinalDisplayedUrl string
    The final URL displayed to the user.
    code String
    The error code of the Lighthouse result. Available values: "NOTREACHABLE", "DNSFAILURE", "NOTHTML", "LIGHTHOUSETIMEOUT", "UNKNOWN".
    detail String
    Detailed error message.
    finalDisplayedUrl String
    The final URL displayed to the user.
    code string
    The error code of the Lighthouse result. Available values: "NOTREACHABLE", "DNSFAILURE", "NOTHTML", "LIGHTHOUSETIMEOUT", "UNKNOWN".
    detail string
    Detailed error message.
    finalDisplayedUrl string
    The final URL displayed to the user.
    code str
    The error code of the Lighthouse result. Available values: "NOTREACHABLE", "DNSFAILURE", "NOTHTML", "LIGHTHOUSETIMEOUT", "UNKNOWN".
    detail str
    Detailed error message.
    final_displayed_url str
    The final URL displayed to the user.
    code String
    The error code of the Lighthouse result. Available values: "NOTREACHABLE", "DNSFAILURE", "NOTHTML", "LIGHTHOUSETIMEOUT", "UNKNOWN".
    detail String
    Detailed error message.
    finalDisplayedUrl String
    The final URL displayed to the user.

    ObservatoryScheduledTestTestRegion, ObservatoryScheduledTestTestRegionArgs

    Label string
    Value string
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    Label string
    Value string
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    label String
    value String
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    label string
    value string
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    label str
    value str
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".
    label String
    value String
    A test region. Available values: "asia-east1", "asia-northeast1", "asia-northeast2", "asia-south1", "asia-southeast1", "australia-southeast1", "europe-north1", "europe-southwest1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west8", "europe-west9", "me-west1", "southamerica-east1", "us-central1", "us-east1", "us-east4", "us-south1", "us-west1".

    Import

    $ pulumi import cloudflare:index/observatoryScheduledTest:ObservatoryScheduledTest example '<zone_id>/<url>'
    

    To learn more about importing existing cloud resources, see Importing resources.

    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