@pulumiverse/dynatrace
Version:
A Pulumi package for creating and managing Dynatrace cloud resources.
135 lines (134 loc) • 5.24 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
export declare class VmwareAnomalies extends pulumi.CustomResource {
/**
* Get an existing VmwareAnomalies 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?: VmwareAnomaliesState, opts?: pulumi.CustomResourceOptions): VmwareAnomalies;
/**
* Returns true if the given object is an instance of VmwareAnomalies. 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 VmwareAnomalies;
/**
* no documentation available
*/
readonly droppedPacketsDetection: pulumi.Output<outputs.VmwareAnomaliesDroppedPacketsDetection>;
/**
* no documentation available
*/
readonly esxiHighCpuDetection: pulumi.Output<outputs.VmwareAnomaliesEsxiHighCpuDetection>;
/**
* no documentation available
*/
readonly esxiHighMemoryDetection: pulumi.Output<outputs.VmwareAnomaliesEsxiHighMemoryDetection>;
/**
* no documentation available
*/
readonly guestCpuLimitDetection: pulumi.Output<outputs.VmwareAnomaliesGuestCpuLimitDetection>;
/**
* no documentation available
*/
readonly lowDatastoreSpaceDetection: pulumi.Output<outputs.VmwareAnomaliesLowDatastoreSpaceDetection>;
/**
* no documentation available
*/
readonly overloadedStorageDetection: pulumi.Output<outputs.VmwareAnomaliesOverloadedStorageDetection>;
/**
* no documentation available
*/
readonly slowPhysicalStorageDetection: pulumi.Output<outputs.VmwareAnomaliesSlowPhysicalStorageDetection>;
/**
* no documentation available
*/
readonly undersizedStorageDetection: pulumi.Output<outputs.VmwareAnomaliesUndersizedStorageDetection>;
/**
* Create a VmwareAnomalies 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: VmwareAnomaliesArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering VmwareAnomalies resources.
*/
export interface VmwareAnomaliesState {
/**
* no documentation available
*/
droppedPacketsDetection?: pulumi.Input<inputs.VmwareAnomaliesDroppedPacketsDetection>;
/**
* no documentation available
*/
esxiHighCpuDetection?: pulumi.Input<inputs.VmwareAnomaliesEsxiHighCpuDetection>;
/**
* no documentation available
*/
esxiHighMemoryDetection?: pulumi.Input<inputs.VmwareAnomaliesEsxiHighMemoryDetection>;
/**
* no documentation available
*/
guestCpuLimitDetection?: pulumi.Input<inputs.VmwareAnomaliesGuestCpuLimitDetection>;
/**
* no documentation available
*/
lowDatastoreSpaceDetection?: pulumi.Input<inputs.VmwareAnomaliesLowDatastoreSpaceDetection>;
/**
* no documentation available
*/
overloadedStorageDetection?: pulumi.Input<inputs.VmwareAnomaliesOverloadedStorageDetection>;
/**
* no documentation available
*/
slowPhysicalStorageDetection?: pulumi.Input<inputs.VmwareAnomaliesSlowPhysicalStorageDetection>;
/**
* no documentation available
*/
undersizedStorageDetection?: pulumi.Input<inputs.VmwareAnomaliesUndersizedStorageDetection>;
}
/**
* The set of arguments for constructing a VmwareAnomalies resource.
*/
export interface VmwareAnomaliesArgs {
/**
* no documentation available
*/
droppedPacketsDetection: pulumi.Input<inputs.VmwareAnomaliesDroppedPacketsDetection>;
/**
* no documentation available
*/
esxiHighCpuDetection: pulumi.Input<inputs.VmwareAnomaliesEsxiHighCpuDetection>;
/**
* no documentation available
*/
esxiHighMemoryDetection: pulumi.Input<inputs.VmwareAnomaliesEsxiHighMemoryDetection>;
/**
* no documentation available
*/
guestCpuLimitDetection: pulumi.Input<inputs.VmwareAnomaliesGuestCpuLimitDetection>;
/**
* no documentation available
*/
lowDatastoreSpaceDetection: pulumi.Input<inputs.VmwareAnomaliesLowDatastoreSpaceDetection>;
/**
* no documentation available
*/
overloadedStorageDetection: pulumi.Input<inputs.VmwareAnomaliesOverloadedStorageDetection>;
/**
* no documentation available
*/
slowPhysicalStorageDetection: pulumi.Input<inputs.VmwareAnomaliesSlowPhysicalStorageDetection>;
/**
* no documentation available
*/
undersizedStorageDetection: pulumi.Input<inputs.VmwareAnomaliesUndersizedStorageDetection>;
}