DSCResources/DSC_ClusterIPAddress/DSC_ClusterIPAddress.schema.mof
[ClassVersion("1.0.0.0"), FriendlyName("ClusterIPAddress")]
class DSC_ClusterIPAddress : OMI_BaseResource { [Key, Description("IP address to add or remove from the Failover Cluster")] String IPAddress; [Key, Description("The address mask for the IP address in the format '255.255.255.0'.")] String AddressMask; [Write, Description("Enforce whether the IP address is present or absent from the Failover Cluster"), ValueMap{"Present", "Absent"},Values{"Present", "Absent"}] String Ensure; }; |