import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class NetworkMonitor extends pulumi.CustomResource { /** * Get an existing NetworkMonitor 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?: NetworkMonitorState, opts?: pulumi.CustomResourceOptions): NetworkMonitor; /** * Returns true if the given object is an instance of NetworkMonitor. 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 NetworkMonitor; /** * Description of the monitor */ readonly description: pulumi.Output; /** * If true, the monitor is enabled */ readonly enabled: pulumi.Output; /** * Frequency of the monitor, in minutes */ readonly frequencyMin: pulumi.Output; /** * The locations to which the monitor is assigned */ readonly locations: pulumi.Output; /** * Name of the monitor */ readonly name: pulumi.Output; /** * Outage handling configuration */ readonly outageHandling: pulumi.Output; /** * Performance thresholds configuration */ readonly performanceThresholds: pulumi.Output; /** * The steps of the monitor */ readonly steps: pulumi.Output; /** * A set of tags assigned to the monitor. */ readonly tags: pulumi.Output; /** * Type of the monitor, possible values: `MULTI_PROTOCOL` */ readonly type: pulumi.Output; /** * Create a NetworkMonitor 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: NetworkMonitorArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NetworkMonitor resources. */ export interface NetworkMonitorState { /** * Description of the monitor */ description?: pulumi.Input; /** * If true, the monitor is enabled */ enabled?: pulumi.Input; /** * Frequency of the monitor, in minutes */ frequencyMin?: pulumi.Input; /** * The locations to which the monitor is assigned */ locations?: pulumi.Input[]>; /** * Name of the monitor */ name?: pulumi.Input; /** * Outage handling configuration */ outageHandling?: pulumi.Input; /** * Performance thresholds configuration */ performanceThresholds?: pulumi.Input; /** * The steps of the monitor */ steps?: pulumi.Input[]>; /** * A set of tags assigned to the monitor. */ tags?: pulumi.Input[]>; /** * Type of the monitor, possible values: `MULTI_PROTOCOL` */ type?: pulumi.Input; } /** * The set of arguments for constructing a NetworkMonitor resource. */ export interface NetworkMonitorArgs { /** * Description of the monitor */ description?: pulumi.Input; /** * If true, the monitor is enabled */ enabled?: pulumi.Input; /** * Frequency of the monitor, in minutes */ frequencyMin?: pulumi.Input; /** * The locations to which the monitor is assigned */ locations: pulumi.Input[]>; /** * Name of the monitor */ name?: pulumi.Input; /** * Outage handling configuration */ outageHandling?: pulumi.Input; /** * Performance thresholds configuration */ performanceThresholds?: pulumi.Input; /** * The steps of the monitor */ steps: pulumi.Input[]>; /** * A set of tags assigned to the monitor. */ tags?: pulumi.Input[]>; /** * Type of the monitor, possible values: `MULTI_PROTOCOL` */ type: pulumi.Input; }