DhcpServer.xsd 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ################################################################################
  4. # HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®.
  5. #
  6. # Licensed under the Apache License, Version 2.0 (the "License");
  7. # you may not use this file except in compliance with the License.
  8. # You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. ################################################################################
  18. -->
  19. <!-- edited with XMLSPY v5 rel. 4 U (http://www.xmlspy.com) by Rajeev Moondhra (Seisint, Inc.) -->
  20. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
  21. <xs:include schemaLocation="environment.xsd"/>
  22. <xs:element name="DhcpServerProcess">
  23. <xs:complexType>
  24. <xs:attribute name="build" type="seisint:buildType" use="required">
  25. <xs:annotation>
  26. <xs:appinfo>
  27. <tooltip>The build name to be deployed</tooltip>
  28. <viewType>hidden</viewType>
  29. </xs:appinfo>
  30. </xs:annotation>
  31. </xs:attribute>
  32. <xs:attribute name="buildSet" type="seisint:buildSetType" use="required">
  33. <xs:annotation>
  34. <xs:appinfo>
  35. <viewType>hidden</viewType>
  36. </xs:appinfo>
  37. </xs:annotation>
  38. </xs:attribute>
  39. <xs:attribute name="name" type="xs:string" use="required">
  40. <xs:annotation>
  41. <xs:appinfo>
  42. <tooltip>Name for this DHCP server configuration</tooltip>
  43. </xs:appinfo>
  44. </xs:annotation>
  45. </xs:attribute>
  46. <xs:attribute name="description" type="xs:string" use="optional" default="DHCP server configuration">
  47. <xs:annotation>
  48. <xs:appinfo>
  49. <tooltip>Description for this process</tooltip>
  50. </xs:appinfo>
  51. </xs:annotation>
  52. </xs:attribute>
  53. <xs:attribute name="computer" type="seisint:computerType" use="required">
  54. <xs:annotation>
  55. <xs:appinfo>
  56. <tooltip>Computer on which DHCP server is running.</tooltip>
  57. </xs:appinfo>
  58. </xs:annotation>
  59. </xs:attribute>
  60. <xs:attribute name="routers" type="xs:string" use="optional">
  61. <xs:annotation>
  62. <xs:appinfo>
  63. <tooltip>I.P. addresses of the network routers.</tooltip>
  64. </xs:appinfo>
  65. </xs:annotation>
  66. </xs:attribute>
  67. <xs:attribute name="subnet" type="xs:string" use="optional">
  68. <xs:annotation>
  69. <xs:appinfo>
  70. <tooltip>Multicast I.P. address of the subnet.</tooltip>
  71. </xs:appinfo>
  72. </xs:annotation>
  73. </xs:attribute>
  74. <xs:attribute name="subnetMask" type="xs:string" use="optional" default="255.255.255.0">
  75. <xs:annotation>
  76. <xs:appinfo>
  77. <tooltip>I.P. address of the subnet mask.</tooltip>
  78. </xs:appinfo>
  79. </xs:annotation>
  80. </xs:attribute>
  81. <xs:attribute name="hostnamePrefix" type="xs:string" use="optional" default="NODE">
  82. <xs:annotation>
  83. <xs:appinfo>
  84. <tooltip>Used to generate host names like NODE001002 for computer with I.P. address 192.168.1.2</tooltip>
  85. </xs:appinfo>
  86. </xs:annotation>
  87. </xs:attribute>
  88. <xs:attribute name="addressRangeStart" type="xs:string" use="optional">
  89. <xs:annotation>
  90. <xs:appinfo>
  91. <tooltip>First assignable I.P. address in the range</tooltip>
  92. </xs:appinfo>
  93. </xs:annotation>
  94. </xs:attribute>
  95. <xs:attribute name="addressRangeEnd" type="xs:string" use="optional">
  96. <xs:annotation>
  97. <xs:appinfo>
  98. <tooltip>Last assignable I.P. address in the range</tooltip>
  99. </xs:appinfo>
  100. </xs:annotation>
  101. </xs:attribute>
  102. <xs:attribute name="defaultLeaseTime" type="xs:nonNegativeInteger" use="optional" default="86400">
  103. <xs:annotation>
  104. <xs:appinfo>
  105. <tooltip>Default lease time in seconds for the assigned I.P. addresses.</tooltip>
  106. </xs:appinfo>
  107. </xs:annotation>
  108. </xs:attribute>
  109. <xs:attribute name="maxLeaseTime" type="xs:nonNegativeInteger" use="optional" default="86400">
  110. <xs:annotation>
  111. <xs:appinfo>
  112. <tooltip>Maximum lease time in seconds for the assigned I.P. addresses.</tooltip>
  113. </xs:appinfo>
  114. </xs:annotation>
  115. </xs:attribute>
  116. </xs:complexType>
  117. </xs:element>
  118. </xs:schema>