1. Packages
  2. Dynatrace
  3. API Docs
  4. DiskSpecificAnomaliesV2
Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs

dynatrace.DiskSpecificAnomaliesV2

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs

    Create DiskSpecificAnomaliesV2 Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DiskSpecificAnomaliesV2(name: string, args: DiskSpecificAnomaliesV2Args, opts?: CustomResourceOptions);
    @overload
    def DiskSpecificAnomaliesV2(resource_name: str,
                                args: DiskSpecificAnomaliesV2Args,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def DiskSpecificAnomaliesV2(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                disk_id: Optional[str] = None,
                                override_disk_low_space_detection: Optional[bool] = None,
                                override_low_inodes_detection: Optional[bool] = None,
                                override_slow_writes_and_reads_detection: Optional[bool] = None,
                                disk_low_inodes_detection: Optional[DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs] = None,
                                disk_low_space_detection: Optional[DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs] = None,
                                disk_slow_writes_and_reads_detection: Optional[DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs] = None)
    func NewDiskSpecificAnomaliesV2(ctx *Context, name string, args DiskSpecificAnomaliesV2Args, opts ...ResourceOption) (*DiskSpecificAnomaliesV2, error)
    public DiskSpecificAnomaliesV2(string name, DiskSpecificAnomaliesV2Args args, CustomResourceOptions? opts = null)
    public DiskSpecificAnomaliesV2(String name, DiskSpecificAnomaliesV2Args args)
    public DiskSpecificAnomaliesV2(String name, DiskSpecificAnomaliesV2Args args, CustomResourceOptions options)
    
    type: dynatrace:DiskSpecificAnomaliesV2
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DiskSpecificAnomaliesV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DiskSpecificAnomaliesV2Args
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DiskSpecificAnomaliesV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DiskSpecificAnomaliesV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DiskSpecificAnomaliesV2Args
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var diskSpecificAnomaliesV2Resource = new Dynatrace.DiskSpecificAnomaliesV2("diskSpecificAnomaliesV2Resource", new()
    {
        DiskId = "string",
        OverrideDiskLowSpaceDetection = false,
        OverrideLowInodesDetection = false,
        OverrideSlowWritesAndReadsDetection = false,
        DiskLowInodesDetection = new Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs
        {
            Enabled = false,
            CustomThresholds = new Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholdsArgs
            {
                FreeInodesPercentage = 0,
            },
            DetectionMode = "string",
        },
        DiskLowSpaceDetection = new Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs
        {
            Enabled = false,
            CustomThresholds = new Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholdsArgs
            {
                FreeSpacePercentage = 0,
            },
            DetectionMode = "string",
        },
        DiskSlowWritesAndReadsDetection = new Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs
        {
            Enabled = false,
            CustomThresholds = new Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholdsArgs
            {
                WriteAndReadTime = 0,
            },
            DetectionMode = "string",
        },
    });
    
    example, err := dynatrace.NewDiskSpecificAnomaliesV2(ctx, "diskSpecificAnomaliesV2Resource", &dynatrace.DiskSpecificAnomaliesV2Args{
    	DiskId:                              pulumi.String("string"),
    	OverrideDiskLowSpaceDetection:       pulumi.Bool(false),
    	OverrideLowInodesDetection:          pulumi.Bool(false),
    	OverrideSlowWritesAndReadsDetection: pulumi.Bool(false),
    	DiskLowInodesDetection: &dynatrace.DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs{
    		Enabled: pulumi.Bool(false),
    		CustomThresholds: &dynatrace.DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholdsArgs{
    			FreeInodesPercentage: pulumi.Int(0),
    		},
    		DetectionMode: pulumi.String("string"),
    	},
    	DiskLowSpaceDetection: &dynatrace.DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs{
    		Enabled: pulumi.Bool(false),
    		CustomThresholds: &dynatrace.DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholdsArgs{
    			FreeSpacePercentage: pulumi.Int(0),
    		},
    		DetectionMode: pulumi.String("string"),
    	},
    	DiskSlowWritesAndReadsDetection: &dynatrace.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs{
    		Enabled: pulumi.Bool(false),
    		CustomThresholds: &dynatrace.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholdsArgs{
    			WriteAndReadTime: pulumi.Int(0),
    		},
    		DetectionMode: pulumi.String("string"),
    	},
    })
    
    var diskSpecificAnomaliesV2Resource = new DiskSpecificAnomaliesV2("diskSpecificAnomaliesV2Resource", DiskSpecificAnomaliesV2Args.builder()        
        .diskId("string")
        .overrideDiskLowSpaceDetection(false)
        .overrideLowInodesDetection(false)
        .overrideSlowWritesAndReadsDetection(false)
        .diskLowInodesDetection(DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs.builder()
            .enabled(false)
            .customThresholds(DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholdsArgs.builder()
                .freeInodesPercentage(0)
                .build())
            .detectionMode("string")
            .build())
        .diskLowSpaceDetection(DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs.builder()
            .enabled(false)
            .customThresholds(DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholdsArgs.builder()
                .freeSpacePercentage(0)
                .build())
            .detectionMode("string")
            .build())
        .diskSlowWritesAndReadsDetection(DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs.builder()
            .enabled(false)
            .customThresholds(DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholdsArgs.builder()
                .writeAndReadTime(0)
                .build())
            .detectionMode("string")
            .build())
        .build());
    
    disk_specific_anomalies_v2_resource = dynatrace.DiskSpecificAnomaliesV2("diskSpecificAnomaliesV2Resource",
        disk_id="string",
        override_disk_low_space_detection=False,
        override_low_inodes_detection=False,
        override_slow_writes_and_reads_detection=False,
        disk_low_inodes_detection=dynatrace.DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs(
            enabled=False,
            custom_thresholds=dynatrace.DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholdsArgs(
                free_inodes_percentage=0,
            ),
            detection_mode="string",
        ),
        disk_low_space_detection=dynatrace.DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs(
            enabled=False,
            custom_thresholds=dynatrace.DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholdsArgs(
                free_space_percentage=0,
            ),
            detection_mode="string",
        ),
        disk_slow_writes_and_reads_detection=dynatrace.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs(
            enabled=False,
            custom_thresholds=dynatrace.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholdsArgs(
                write_and_read_time=0,
            ),
            detection_mode="string",
        ))
    
    const diskSpecificAnomaliesV2Resource = new dynatrace.DiskSpecificAnomaliesV2("diskSpecificAnomaliesV2Resource", {
        diskId: "string",
        overrideDiskLowSpaceDetection: false,
        overrideLowInodesDetection: false,
        overrideSlowWritesAndReadsDetection: false,
        diskLowInodesDetection: {
            enabled: false,
            customThresholds: {
                freeInodesPercentage: 0,
            },
            detectionMode: "string",
        },
        diskLowSpaceDetection: {
            enabled: false,
            customThresholds: {
                freeSpacePercentage: 0,
            },
            detectionMode: "string",
        },
        diskSlowWritesAndReadsDetection: {
            enabled: false,
            customThresholds: {
                writeAndReadTime: 0,
            },
            detectionMode: "string",
        },
    });
    
    type: dynatrace:DiskSpecificAnomaliesV2
    properties:
        diskId: string
        diskLowInodesDetection:
            customThresholds:
                freeInodesPercentage: 0
            detectionMode: string
            enabled: false
        diskLowSpaceDetection:
            customThresholds:
                freeSpacePercentage: 0
            detectionMode: string
            enabled: false
        diskSlowWritesAndReadsDetection:
            customThresholds:
                writeAndReadTime: 0
            detectionMode: string
            enabled: false
        overrideDiskLowSpaceDetection: false
        overrideLowInodesDetection: false
        overrideSlowWritesAndReadsDetection: false
    

    DiskSpecificAnomaliesV2 Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The DiskSpecificAnomaliesV2 resource accepts the following input properties:

    DiskId string
    The id for the disk anomaly detection
    OverrideDiskLowSpaceDetection bool
    Override low disk space detection settings
    OverrideLowInodesDetection bool
    Override low inodes detection settings
    OverrideSlowWritesAndReadsDetection bool
    Override slow writes and reads detection settings
    DiskLowInodesDetection DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs
    no documentation available
    DiskLowSpaceDetection DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs
    no documentation available
    DiskSlowWritesAndReadsDetection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs
    no documentation available
    diskId String
    The id for the disk anomaly detection
    overrideDiskLowSpaceDetection Boolean
    Override low disk space detection settings
    overrideLowInodesDetection Boolean
    Override low inodes detection settings
    overrideSlowWritesAndReadsDetection Boolean
    Override slow writes and reads detection settings
    diskLowInodesDetection DiskSpecificAnomaliesV2DiskLowInodesDetection
    no documentation available
    diskLowSpaceDetection DiskSpecificAnomaliesV2DiskLowSpaceDetection
    no documentation available
    diskSlowWritesAndReadsDetection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetection
    no documentation available
    diskId string
    The id for the disk anomaly detection
    overrideDiskLowSpaceDetection boolean
    Override low disk space detection settings
    overrideLowInodesDetection boolean
    Override low inodes detection settings
    overrideSlowWritesAndReadsDetection boolean
    Override slow writes and reads detection settings
    diskLowInodesDetection DiskSpecificAnomaliesV2DiskLowInodesDetection
    no documentation available
    diskLowSpaceDetection DiskSpecificAnomaliesV2DiskLowSpaceDetection
    no documentation available
    diskSlowWritesAndReadsDetection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetection
    no documentation available
    disk_id str
    The id for the disk anomaly detection
    override_disk_low_space_detection bool
    Override low disk space detection settings
    override_low_inodes_detection bool
    Override low inodes detection settings
    override_slow_writes_and_reads_detection bool
    Override slow writes and reads detection settings
    disk_low_inodes_detection DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs
    no documentation available
    disk_low_space_detection DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs
    no documentation available
    disk_slow_writes_and_reads_detection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs
    no documentation available
    diskId String
    The id for the disk anomaly detection
    overrideDiskLowSpaceDetection Boolean
    Override low disk space detection settings
    overrideLowInodesDetection Boolean
    Override low inodes detection settings
    overrideSlowWritesAndReadsDetection Boolean
    Override slow writes and reads detection settings
    diskLowInodesDetection Property Map
    no documentation available
    diskLowSpaceDetection Property Map
    no documentation available
    diskSlowWritesAndReadsDetection Property Map
    no documentation available

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DiskSpecificAnomaliesV2 resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing DiskSpecificAnomaliesV2 Resource

    Get an existing DiskSpecificAnomaliesV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DiskSpecificAnomaliesV2State, opts?: CustomResourceOptions): DiskSpecificAnomaliesV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            disk_id: Optional[str] = None,
            disk_low_inodes_detection: Optional[DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs] = None,
            disk_low_space_detection: Optional[DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs] = None,
            disk_slow_writes_and_reads_detection: Optional[DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs] = None,
            override_disk_low_space_detection: Optional[bool] = None,
            override_low_inodes_detection: Optional[bool] = None,
            override_slow_writes_and_reads_detection: Optional[bool] = None) -> DiskSpecificAnomaliesV2
    func GetDiskSpecificAnomaliesV2(ctx *Context, name string, id IDInput, state *DiskSpecificAnomaliesV2State, opts ...ResourceOption) (*DiskSpecificAnomaliesV2, error)
    public static DiskSpecificAnomaliesV2 Get(string name, Input<string> id, DiskSpecificAnomaliesV2State? state, CustomResourceOptions? opts = null)
    public static DiskSpecificAnomaliesV2 get(String name, Output<String> id, DiskSpecificAnomaliesV2State state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    DiskId string
    The id for the disk anomaly detection
    DiskLowInodesDetection DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs
    no documentation available
    DiskLowSpaceDetection DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs
    no documentation available
    DiskSlowWritesAndReadsDetection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs
    no documentation available
    OverrideDiskLowSpaceDetection bool
    Override low disk space detection settings
    OverrideLowInodesDetection bool
    Override low inodes detection settings
    OverrideSlowWritesAndReadsDetection bool
    Override slow writes and reads detection settings
    diskId String
    The id for the disk anomaly detection
    diskLowInodesDetection DiskSpecificAnomaliesV2DiskLowInodesDetection
    no documentation available
    diskLowSpaceDetection DiskSpecificAnomaliesV2DiskLowSpaceDetection
    no documentation available
    diskSlowWritesAndReadsDetection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetection
    no documentation available
    overrideDiskLowSpaceDetection Boolean
    Override low disk space detection settings
    overrideLowInodesDetection Boolean
    Override low inodes detection settings
    overrideSlowWritesAndReadsDetection Boolean
    Override slow writes and reads detection settings
    diskId string
    The id for the disk anomaly detection
    diskLowInodesDetection DiskSpecificAnomaliesV2DiskLowInodesDetection
    no documentation available
    diskLowSpaceDetection DiskSpecificAnomaliesV2DiskLowSpaceDetection
    no documentation available
    diskSlowWritesAndReadsDetection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetection
    no documentation available
    overrideDiskLowSpaceDetection boolean
    Override low disk space detection settings
    overrideLowInodesDetection boolean
    Override low inodes detection settings
    overrideSlowWritesAndReadsDetection boolean
    Override slow writes and reads detection settings
    disk_id str
    The id for the disk anomaly detection
    disk_low_inodes_detection DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs
    no documentation available
    disk_low_space_detection DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs
    no documentation available
    disk_slow_writes_and_reads_detection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs
    no documentation available
    override_disk_low_space_detection bool
    Override low disk space detection settings
    override_low_inodes_detection bool
    Override low inodes detection settings
    override_slow_writes_and_reads_detection bool
    Override slow writes and reads detection settings
    diskId String
    The id for the disk anomaly detection
    diskLowInodesDetection Property Map
    no documentation available
    diskLowSpaceDetection Property Map
    no documentation available
    diskSlowWritesAndReadsDetection Property Map
    no documentation available
    overrideDiskLowSpaceDetection Boolean
    Override low disk space detection settings
    overrideLowInodesDetection Boolean
    Override low inodes detection settings
    overrideSlowWritesAndReadsDetection Boolean
    Override slow writes and reads detection settings

    Supporting Types

    DiskSpecificAnomaliesV2DiskLowInodesDetection, DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs

    Enabled bool
    Detect low inodes number available
    CustomThresholds Lbrlabs.PulumiPackage.Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholds
    no documentation available
    DetectionMode string
    Detection mode for low inodes number available
    Enabled bool
    Detect low inodes number available
    CustomThresholds DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholds
    no documentation available
    DetectionMode string
    Detection mode for low inodes number available
    enabled Boolean
    Detect low inodes number available
    customThresholds DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholds
    no documentation available
    detectionMode String
    Detection mode for low inodes number available
    enabled boolean
    Detect low inodes number available
    customThresholds DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholds
    no documentation available
    detectionMode string
    Detection mode for low inodes number available
    enabled bool
    Detect low inodes number available
    custom_thresholds DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholds
    no documentation available
    detection_mode str
    Detection mode for low inodes number available
    enabled Boolean
    Detect low inodes number available
    customThresholds Property Map
    no documentation available
    detectionMode String
    Detection mode for low inodes number available

    DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholds, DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholdsArgs

    DiskSpecificAnomaliesV2DiskLowSpaceDetection, DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs

    Enabled bool
    Detect low disk space
    CustomThresholds Lbrlabs.PulumiPackage.Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholds
    no documentation available
    DetectionMode string
    Detection mode for low disk space
    Enabled bool
    Detect low disk space
    CustomThresholds DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholds
    no documentation available
    DetectionMode string
    Detection mode for low disk space
    enabled Boolean
    Detect low disk space
    customThresholds DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholds
    no documentation available
    detectionMode String
    Detection mode for low disk space
    enabled boolean
    Detect low disk space
    customThresholds DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholds
    no documentation available
    detectionMode string
    Detection mode for low disk space
    enabled bool
    Detect low disk space
    custom_thresholds DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholds
    no documentation available
    detection_mode str
    Detection mode for low disk space
    enabled Boolean
    Detect low disk space
    customThresholds Property Map
    no documentation available
    detectionMode String
    Detection mode for low disk space

    DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholds, DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholdsArgs

    DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetection, DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs

    Enabled bool
    Detect slow-running disks
    CustomThresholds Lbrlabs.PulumiPackage.Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholds
    no documentation available
    DetectionMode string
    Detection mode for slow running disks
    Enabled bool
    Detect slow-running disks
    CustomThresholds DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholds
    no documentation available
    DetectionMode string
    Detection mode for slow running disks
    enabled Boolean
    Detect slow-running disks
    customThresholds DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholds
    no documentation available
    detectionMode String
    Detection mode for slow running disks
    enabled boolean
    Detect slow-running disks
    customThresholds DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholds
    no documentation available
    detectionMode string
    Detection mode for slow running disks
    enabled bool
    Detect slow-running disks
    custom_thresholds DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholds
    no documentation available
    detection_mode str
    Detection mode for slow running disks
    enabled Boolean
    Detect slow-running disks
    customThresholds Property Map
    no documentation available
    detectionMode String
    Detection mode for slow running disks

    DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholds, DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholdsArgs

    Package Details

    Repository
    dynatrace lbrlabs/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs