DSCResources/DSC_DiskAccessPath/DSC_DiskAccessPath.schema.mof
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
[ClassVersion("1.0.0.0"), FriendlyName("DiskAccessPath")] class DSC_DiskAccessPath : OMI_BaseResource { [Key, Description("Specifies the access path folder to the assign the disk volume to.")] String AccessPath; [Write, Description("Specifies no automatic drive letter assignment to the partition: Defaults to True")] Boolean NoDefaultDriveLetter; [Required, Description("Specifies the disk identifier for the disk to modify.")] String DiskId; [Write, Description("Specifies the identifier type the DiskId contains. Defaults to Number."), ValueMap{"Number","UniqueId","Guid","Location"}, Values{"Number","UniqueId","Guid","Location"}] String DiskIdType; [Write, Description("Specifies the size of new volume.")] Uint64 Size; [Write, Description("Define volume label if required.")] String FSLabel; [Write, Description("Specifies the allocation unit size to use when formatting the volume.")] Uint32 AllocationUnitSize; [Write, Description("Specifies the file system format of the new volume."), ValueMap{"NTFS","ReFS"}, Values{"NTFS","ReFS"}] String FSFormat; }; |