@pulumiverse/dynatrace
Version:
A Pulumi package for creating and managing Dynatrace cloud resources.
123 lines (122 loc) • 4.42 kB
TypeScript
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<pulumi.ID>, 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<outputs.HostAnomaliesConnections | undefined>;
/**
* Configuration of high CPU saturation detection
*/
readonly cpu: pulumi.Output<outputs.HostAnomaliesCpu | undefined>;
/**
* Configuration of disk related anomalies
*/
readonly disks: pulumi.Output<outputs.HostAnomaliesDisks | undefined>;
/**
* Configuration of high Garbage Collector activity detection
*/
readonly gc: pulumi.Output<outputs.HostAnomaliesGc | undefined>;
/**
* Configuration of Java related anomalies
*/
readonly java: pulumi.Output<outputs.HostAnomaliesJava | undefined>;
/**
* Configuration of high memory usage detection
*/
readonly memory: pulumi.Output<outputs.HostAnomaliesMemory | undefined>;
/**
* Configuration of network related anomalies
*/
readonly network: pulumi.Output<outputs.HostAnomaliesNetwork | undefined>;
/**
* 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<inputs.HostAnomaliesConnections>;
/**
* Configuration of high CPU saturation detection
*/
cpu?: pulumi.Input<inputs.HostAnomaliesCpu>;
/**
* Configuration of disk related anomalies
*/
disks?: pulumi.Input<inputs.HostAnomaliesDisks>;
/**
* Configuration of high Garbage Collector activity detection
*/
gc?: pulumi.Input<inputs.HostAnomaliesGc>;
/**
* Configuration of Java related anomalies
*/
java?: pulumi.Input<inputs.HostAnomaliesJava>;
/**
* Configuration of high memory usage detection
*/
memory?: pulumi.Input<inputs.HostAnomaliesMemory>;
/**
* Configuration of network related anomalies
*/
network?: pulumi.Input<inputs.HostAnomaliesNetwork>;
}
/**
* The set of arguments for constructing a HostAnomalies resource.
*/
export interface HostAnomaliesArgs {
/**
* Configuration of lost connection detection
*/
connections?: pulumi.Input<inputs.HostAnomaliesConnections>;
/**
* Configuration of high CPU saturation detection
*/
cpu?: pulumi.Input<inputs.HostAnomaliesCpu>;
/**
* Configuration of disk related anomalies
*/
disks?: pulumi.Input<inputs.HostAnomaliesDisks>;
/**
* Configuration of high Garbage Collector activity detection
*/
gc?: pulumi.Input<inputs.HostAnomaliesGc>;
/**
* Configuration of Java related anomalies
*/
java?: pulumi.Input<inputs.HostAnomaliesJava>;
/**
* Configuration of high memory usage detection
*/
memory?: pulumi.Input<inputs.HostAnomaliesMemory>;
/**
* Configuration of network related anomalies
*/
network?: pulumi.Input<inputs.HostAnomaliesNetwork>;
}