DSCResources/DSC_ClusterDisk/DSC_ClusterDisk.schema.mof
[ClassVersion("1.0.0.0"), FriendlyName("ClusterDisk")]
class DSC_ClusterDisk : OMI_BaseResource { [Key, Description("The disk number of the cluster disk.")] String Number; [Write, Description("Define if the cluster disk should be added (Present) or removed (Absent). Default value is `'Present'`."),ValueMap{"Present", "Absent"},Values{"Present", "Absent"}] string Ensure; [Write, Description("The disk label that should be assigned to the disk on the Failover Cluster disk resource.")] String Label; }; |