@pulumiverse/dynatrace
Version:
A Pulumi package for creating and managing Dynatrace cloud resources.
109 lines (108 loc) • 4.5 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
export declare class NetworkMonitorOutage extends pulumi.CustomResource {
/**
* Get an existing NetworkMonitorOutage 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<pulumi.ID>, state?: NetworkMonitorOutageState, opts?: pulumi.CustomResourceOptions): NetworkMonitorOutage;
/**
* Returns true if the given object is an instance of NetworkMonitorOutage. 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 NetworkMonitorOutage;
/**
* Alert if all locations are unable to access my target address
*/
readonly globalConsecutiveOutageCountThreshold: pulumi.Output<number | undefined>;
/**
* Generate a problem and send an alert when the monitor is unavailable at all configured locations.
*/
readonly globalOutages: pulumi.Output<boolean>;
/**
* are unable to access my target address
*/
readonly localConsecutiveOutageCountThreshold: pulumi.Output<number | undefined>;
/**
* Alert if at least
*/
readonly localLocationOutageCountThreshold: pulumi.Output<number | undefined>;
/**
* Generate a problem and send an alert when the monitor is unavailable for one or more consecutive runs at any location.
*/
readonly localOutages: pulumi.Output<boolean>;
/**
* The scope of this setting (MULTIPROTOCOL_MONITOR). Omit this property if you want to cover the whole environment.
*/
readonly scope: pulumi.Output<string | undefined>;
/**
* Create a NetworkMonitorOutage 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: NetworkMonitorOutageArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering NetworkMonitorOutage resources.
*/
export interface NetworkMonitorOutageState {
/**
* Alert if all locations are unable to access my target address
*/
globalConsecutiveOutageCountThreshold?: pulumi.Input<number>;
/**
* Generate a problem and send an alert when the monitor is unavailable at all configured locations.
*/
globalOutages?: pulumi.Input<boolean>;
/**
* are unable to access my target address
*/
localConsecutiveOutageCountThreshold?: pulumi.Input<number>;
/**
* Alert if at least
*/
localLocationOutageCountThreshold?: pulumi.Input<number>;
/**
* Generate a problem and send an alert when the monitor is unavailable for one or more consecutive runs at any location.
*/
localOutages?: pulumi.Input<boolean>;
/**
* The scope of this setting (MULTIPROTOCOL_MONITOR). Omit this property if you want to cover the whole environment.
*/
scope?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a NetworkMonitorOutage resource.
*/
export interface NetworkMonitorOutageArgs {
/**
* Alert if all locations are unable to access my target address
*/
globalConsecutiveOutageCountThreshold?: pulumi.Input<number>;
/**
* Generate a problem and send an alert when the monitor is unavailable at all configured locations.
*/
globalOutages: pulumi.Input<boolean>;
/**
* are unable to access my target address
*/
localConsecutiveOutageCountThreshold?: pulumi.Input<number>;
/**
* Alert if at least
*/
localLocationOutageCountThreshold?: pulumi.Input<number>;
/**
* Generate a problem and send an alert when the monitor is unavailable for one or more consecutive runs at any location.
*/
localOutages: pulumi.Input<boolean>;
/**
* The scope of this setting (MULTIPROTOCOL_MONITOR). Omit this property if you want to cover the whole environment.
*/
scope?: pulumi.Input<string>;
}