cloudflare.ObservatoryScheduledTest
Explore with Pulumi AI
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:
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
Observatory
Scheduled Test Schedule - The test schedule.
- Test
Observatory
Scheduled Test Test
- 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
Observatory
Scheduled Test Schedule - The test schedule.
- Test
Observatory
Scheduled Test Test
- 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
Observatory
Scheduled Test Schedule - The test schedule.
- test
Observatory
Scheduled Test Test
- 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
Observatory
Scheduled Test Schedule - The test schedule.
- test
Observatory
Scheduled Test Test
- 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
Observatory
Scheduled Test Schedule - The test schedule.
- test
Observatory
Scheduled Test Test
- 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.
- 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
Observatory
Scheduled Test Schedule - The test schedule.
- Test
Observatory
Scheduled Test Test - Url string
- A URL.
- Zone
Id 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
Observatory
Scheduled Test Schedule Args - The test schedule.
- Test
Observatory
Scheduled Test Test Args - Url string
- A URL.
- Zone
Id 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
Observatory
Scheduled Test Schedule - The test schedule.
- test
Observatory
Scheduled Test Test - url String
- A URL.
- zone
Id 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
Observatory
Scheduled Test Schedule - The test schedule.
- test
Observatory
Scheduled Test Test - url string
- A URL.
- zone
Id 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
Observatory
Scheduled Test Schedule Args - The test schedule.
- test
Observatory
Scheduled Test Test Args - 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.
- zone
Id 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
- Desktop
Report ObservatoryScheduled Test Test Desktop Report - The Lighthouse report.
- Id string
- UUID.
- Mobile
Report ObservatoryScheduled Test Test Mobile Report - The Lighthouse report.
- Region
Observatory
Scheduled Test Test Region - A test region with a label.
- Schedule
Frequency string - The frequency of the test. Available values: "DAILY", "WEEKLY".
- Url string
- A URL.
- Date string
- Desktop
Report ObservatoryScheduled Test Test Desktop Report - The Lighthouse report.
- Id string
- UUID.
- Mobile
Report ObservatoryScheduled Test Test Mobile Report - The Lighthouse report.
- Region
Observatory
Scheduled Test Test Region - A test region with a label.
- Schedule
Frequency string - The frequency of the test. Available values: "DAILY", "WEEKLY".
- Url string
- A URL.
- date String
- desktop
Report ObservatoryScheduled Test Test Desktop Report - The Lighthouse report.
- id String
- UUID.
- mobile
Report ObservatoryScheduled Test Test Mobile Report - The Lighthouse report.
- region
Observatory
Scheduled Test Test Region - A test region with a label.
- schedule
Frequency String - The frequency of the test. Available values: "DAILY", "WEEKLY".
- url String
- A URL.
- date string
- desktop
Report ObservatoryScheduled Test Test Desktop Report - The Lighthouse report.
- id string
- UUID.
- mobile
Report ObservatoryScheduled Test Test Mobile Report - The Lighthouse report.
- region
Observatory
Scheduled Test Test Region - A test region with a label.
- schedule
Frequency string - The frequency of the test. Available values: "DAILY", "WEEKLY".
- url string
- A URL.
- date str
- desktop_
report ObservatoryScheduled Test Test Desktop Report - The Lighthouse report.
- id str
- UUID.
- mobile_
report ObservatoryScheduled Test Test Mobile Report - The Lighthouse report.
- region
Observatory
Scheduled Test Test Region - A test region with a label.
- schedule_
frequency str - The frequency of the test. Available values: "DAILY", "WEEKLY".
- url str
- A URL.
- date String
- desktop
Report Property Map - The Lighthouse report.
- id String
- UUID.
- mobile
Report Property Map - The Lighthouse report.
- region Property Map
- A test region with a label.
- schedule
Frequency String - The frequency of the test. Available values: "DAILY", "WEEKLY".
- url String
- A URL.
ObservatoryScheduledTestTestDesktopReport, ObservatoryScheduledTestTestDesktopReportArgs
- Cls double
- Cumulative Layout Shift.
- Device
Type string - The type of device. Available values: "DESKTOP", "MOBILE".
- Error
Observatory
Scheduled Test Test Desktop Report Error - Fcp double
- First Contentful Paint.
- Json
Report stringUrl - The URL to the full Lighthouse JSON report.
- Lcp double
- Largest Contentful Paint.
- Performance
Score 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.
- Device
Type string - The type of device. Available values: "DESKTOP", "MOBILE".
- Error
Observatory
Scheduled Test Test Desktop Report Error - Fcp float64
- First Contentful Paint.
- Json
Report stringUrl - The URL to the full Lighthouse JSON report.
- Lcp float64
- Largest Contentful Paint.
- Performance
Score 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.
- device
Type String - The type of device. Available values: "DESKTOP", "MOBILE".
- error
Observatory
Scheduled Test Test Desktop Report Error - fcp Double
- First Contentful Paint.
- json
Report StringUrl - The URL to the full Lighthouse JSON report.
- lcp Double
- Largest Contentful Paint.
- performance
Score 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.
- device
Type string - The type of device. Available values: "DESKTOP", "MOBILE".
- error
Observatory
Scheduled Test Test Desktop Report Error - fcp number
- First Contentful Paint.
- json
Report stringUrl - The URL to the full Lighthouse JSON report.
- lcp number
- Largest Contentful Paint.
- performance
Score 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
Observatory
Scheduled Test Test Desktop Report Error - fcp float
- First Contentful Paint.
- json_
report_ strurl - 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.
- device
Type String - The type of device. Available values: "DESKTOP", "MOBILE".
- error Property Map
- fcp Number
- First Contentful Paint.
- json
Report StringUrl - The URL to the full Lighthouse JSON report.
- lcp Number
- Largest Contentful Paint.
- performance
Score 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.
- Final
Displayed stringUrl - 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.
- Final
Displayed stringUrl - 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.
- final
Displayed StringUrl - 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.
- final
Displayed stringUrl - 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_ strurl - 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.
- final
Displayed StringUrl - The final URL displayed to the user.
ObservatoryScheduledTestTestMobileReport, ObservatoryScheduledTestTestMobileReportArgs
- Cls double
- Cumulative Layout Shift.
- Device
Type string - The type of device. Available values: "DESKTOP", "MOBILE".
- Error
Observatory
Scheduled Test Test Mobile Report Error - Fcp double
- First Contentful Paint.
- Json
Report stringUrl - The URL to the full Lighthouse JSON report.
- Lcp double
- Largest Contentful Paint.
- Performance
Score 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.
- Device
Type string - The type of device. Available values: "DESKTOP", "MOBILE".
- Error
Observatory
Scheduled Test Test Mobile Report Error - Fcp float64
- First Contentful Paint.
- Json
Report stringUrl - The URL to the full Lighthouse JSON report.
- Lcp float64
- Largest Contentful Paint.
- Performance
Score 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.
- device
Type String - The type of device. Available values: "DESKTOP", "MOBILE".
- error
Observatory
Scheduled Test Test Mobile Report Error - fcp Double
- First Contentful Paint.
- json
Report StringUrl - The URL to the full Lighthouse JSON report.
- lcp Double
- Largest Contentful Paint.
- performance
Score 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.
- device
Type string - The type of device. Available values: "DESKTOP", "MOBILE".
- error
Observatory
Scheduled Test Test Mobile Report Error - fcp number
- First Contentful Paint.
- json
Report stringUrl - The URL to the full Lighthouse JSON report.
- lcp number
- Largest Contentful Paint.
- performance
Score 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
Observatory
Scheduled Test Test Mobile Report Error - fcp float
- First Contentful Paint.
- json_
report_ strurl - 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.
- device
Type String - The type of device. Available values: "DESKTOP", "MOBILE".
- error Property Map
- fcp Number
- First Contentful Paint.
- json
Report StringUrl - The URL to the full Lighthouse JSON report.
- lcp Number
- Largest Contentful Paint.
- performance
Score 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.
- Final
Displayed stringUrl - 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.
- Final
Displayed stringUrl - 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.
- final
Displayed StringUrl - 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.
- final
Displayed stringUrl - 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_ strurl - 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.
- final
Displayed StringUrl - 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.