DSCResources/DSC_DnsServerSecondaryZone/DSC_DnsServerSecondaryZone.schema.mof
[ClassVersion("1.0.0.0"), FriendlyName("DnsServerSecondaryZone")]
class DSC_DnsServerSecondaryZone : OMI_BaseResource { [Key, Description("Name of the secondary zone")] String Name; [Required, Description("IP address or DNS name of the secondary DNS servers")] String MasterServers[]; [Write, Description("Whether the secondary zone should be present or absent."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure; [Read, Description("Type of the DNS server zone")] String Type; }; |