DSCResources/MSFT_DhcpScopeOptionValue/MSFT_DhcpScopeOptionValue.schema.mof

[ClassVersion("1.0.0.0"), FriendlyName("DhcpScopeOptionValue")]
class MSFT_DhcpScopeOptionValue : OMI_BaseResource
{
    [Key, Description("Scope ID to set the option.")] String ScopeId;
    [Key, Description("Option ID, specify an integer between 1 and 255.")] UInt32 OptionId;
    [Write, Description("Option data value.")] String Value[];
    [Key, Description("Vendor class. Use an empty string for default vendor class.")] String VendorClass;
    [Key, Description("User class. Use an empty string for default user class.")] String UserClass;
    [Key, Description("Address family. Currently needs to be IPv4."), ValueMap{"IPv4"}, Values{"IPv4"}] String AddressFamily;
    [Write, Description("Whether the DHCP option should exist."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure;
};