import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class HostAnomalies extends pulumi.CustomResource { /** * Get an existing HostAnomalies 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?: HostAnomaliesState, opts?: pulumi.CustomResourceOptions): HostAnomalies; /** * Returns true if the given object is an instance of HostAnomalies. 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 HostAnomalies; /** * Configuration of lost connection detection */ readonly connections: pulumi.Output; /** * Configuration of high CPU saturation detection */ readonly cpu: pulumi.Output; /** * Configuration of disk related anomalies */ readonly disks: pulumi.Output; /** * Configuration of high Garbage Collector activity detection */ readonly gc: pulumi.Output; /** * Configuration of Java related anomalies */ readonly java: pulumi.Output; /** * Configuration of high memory usage detection */ readonly memory: pulumi.Output; /** * Configuration of network related anomalies */ readonly network: pulumi.Output; /** * Create a HostAnomalies 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?: HostAnomaliesArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering HostAnomalies resources. */ export interface HostAnomaliesState { /** * Configuration of lost connection detection */ connections?: pulumi.Input; /** * Configuration of high CPU saturation detection */ cpu?: pulumi.Input; /** * Configuration of disk related anomalies */ disks?: pulumi.Input; /** * Configuration of high Garbage Collector activity detection */ gc?: pulumi.Input; /** * Configuration of Java related anomalies */ java?: pulumi.Input; /** * Configuration of high memory usage detection */ memory?: pulumi.Input; /** * Configuration of network related anomalies */ network?: pulumi.Input; } /** * The set of arguments for constructing a HostAnomalies resource. */ export interface HostAnomaliesArgs { /** * Configuration of lost connection detection */ connections?: pulumi.Input; /** * Configuration of high CPU saturation detection */ cpu?: pulumi.Input; /** * Configuration of disk related anomalies */ disks?: pulumi.Input; /** * Configuration of high Garbage Collector activity detection */ gc?: pulumi.Input; /** * Configuration of Java related anomalies */ java?: pulumi.Input; /** * Configuration of high memory usage detection */ memory?: pulumi.Input; /** * Configuration of network related anomalies */ network?: pulumi.Input; }