2.2.4.230 ExclusionRangeDataFormatter

The ExclusionRangeDataFormatter complex type is used to format the fields of an exclusion range into a string used to display the result of operations. The string is formatted to include the scope ID, server name and the start and end IP addresses of the exclusion range to uniquely identify the exclusion range.

 <xs:complexType name="ExclusionRangeDataFormatter">
   <xs:complexContent mixed="false">
     <xs:extension base="ipam:IpamObject">
       <xs:sequence>
         <xs:element minOccurs="0" name="EndIPAddress" nillable="true" type="sysnet:IPAddress" />
         <xs:element minOccurs="0" name="ScopeId" nillable="true" type="sysnet:IPAddress" />
         <xs:element minOccurs="0" name="ServerName" nillable="true" type="xsd:string" />
         <xs:element minOccurs="0" name="StartIPAddress" nillable="true" type="sysnet:IPAddress" />
       </xs:sequence>
     </xs:extension>
   </xs:complexContent>
 </xs:complexType>

ScopeId:  This specifies the DHCP scope to which the exclusion range belongs.

ServerName:  This specifies the name of the DHCP server to which the DHCP scope belongs.

StartIPAddress:  This specifies the start IP address of the exclusion range.

EndIPAddress:  This specifies the end IP address of the exclusion range.