import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class BrowserMonitor extends pulumi.CustomResource { /** * Get an existing BrowserMonitor resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: BrowserMonitorState, opts?: pulumi.CustomResourceOptions): BrowserMonitor; /** * Returns true if the given object is an instance of BrowserMonitor. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is BrowserMonitor; /** * The anomaly detection configuration. */ readonly anomalyDetection: pulumi.Output; /** * The monitor is enabled (`true`) or disabled (`false`). */ readonly enabled: pulumi.Output; /** * The frequency of the monitor, in minutes. */ readonly frequency: pulumi.Output; /** * The key performance metrics configuration */ readonly keyPerformanceMetrics: pulumi.Output; /** * A list of locations from which the monitor is executed. * * To specify a location, use its entity ID. */ readonly locations: pulumi.Output; /** * A set of manually assigned applications. */ readonly manuallyAssignedApps: pulumi.Output; /** * The name of the monitor. */ readonly name: pulumi.Output; /** * The Browser Script */ readonly script: pulumi.Output; /** * A set of tags assigned to the monitor. * * You can specify only the value of the tag here and the `CONTEXTLESS` context and source 'USER' will be added automatically. */ readonly tags: pulumi.Output; /** * Create a BrowserMonitor resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: BrowserMonitorArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering BrowserMonitor resources. */ export interface BrowserMonitorState { /** * The anomaly detection configuration. */ anomalyDetection?: pulumi.Input; /** * The monitor is enabled (`true`) or disabled (`false`). */ enabled?: pulumi.Input; /** * The frequency of the monitor, in minutes. */ frequency?: pulumi.Input; /** * The key performance metrics configuration */ keyPerformanceMetrics?: pulumi.Input; /** * A list of locations from which the monitor is executed. * * To specify a location, use its entity ID. */ locations?: pulumi.Input[]>; /** * A set of manually assigned applications. */ manuallyAssignedApps?: pulumi.Input[]>; /** * The name of the monitor. */ name?: pulumi.Input; /** * The Browser Script */ script?: pulumi.Input; /** * A set of tags assigned to the monitor. * * You can specify only the value of the tag here and the `CONTEXTLESS` context and source 'USER' will be added automatically. */ tags?: pulumi.Input[]>; } /** * The set of arguments for constructing a BrowserMonitor resource. */ export interface BrowserMonitorArgs { /** * The anomaly detection configuration. */ anomalyDetection?: pulumi.Input; /** * The monitor is enabled (`true`) or disabled (`false`). */ enabled?: pulumi.Input; /** * The frequency of the monitor, in minutes. */ frequency: pulumi.Input; /** * The key performance metrics configuration */ keyPerformanceMetrics: pulumi.Input; /** * A list of locations from which the monitor is executed. * * To specify a location, use its entity ID. */ locations?: pulumi.Input[]>; /** * A set of manually assigned applications. */ manuallyAssignedApps?: pulumi.Input[]>; /** * The name of the monitor. */ name?: pulumi.Input; /** * The Browser Script */ script?: pulumi.Input; /** * A set of tags assigned to the monitor. * * You can specify only the value of the tag here and the `CONTEXTLESS` context and source 'USER' will be added automatically. */ tags?: pulumi.Input[]>; }