mysqlserver.xsd 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
  20. <xs:include schemaLocation="environment.xsd"/>
  21. <xs:element name="MySQLProcess">
  22. <xs:annotation>
  23. <xs:appinfo>
  24. <title>MySQL Server process</title>
  25. </xs:appinfo>
  26. </xs:annotation>
  27. <xs:complexType>
  28. <xs:sequence>
  29. <xs:element name="Notes" maxOccurs="unbounded">
  30. <xs:annotation>
  31. <xs:appinfo>
  32. <viewChildNodes>true</viewChildNodes>
  33. </xs:appinfo>
  34. </xs:annotation>
  35. <xs:complexType>
  36. <xs:sequence>
  37. <xs:element name="Note" type="xs:string" minOccurs="0" maxOccurs="1"/>
  38. </xs:sequence>
  39. <xs:attribute name="severity" use="optional" default="Minor">
  40. <xs:annotation>
  41. <xs:appinfo>
  42. <tooltip>Significance of this note.</tooltip>
  43. <title>Severity</title>
  44. <colIndex>1</colIndex>
  45. </xs:appinfo>
  46. </xs:annotation>
  47. <xs:simpleType>
  48. <xs:restriction base="xs:string">
  49. <xs:enumeration value="Minor"/>
  50. <xs:enumeration value="Normal"/>
  51. <xs:enumeration value="Critical"/>
  52. </xs:restriction>
  53. </xs:simpleType>
  54. </xs:attribute>
  55. <xs:attribute name="date" type="AutoTimeStampType" use="optional">
  56. <xs:annotation>
  57. <xs:appinfo>
  58. <title>Date / Time</title>
  59. <tooltip>Date and time this note was entered</tooltip>
  60. <viewType>readonly</viewType>
  61. <width>120</width>
  62. <colIndex>2</colIndex>
  63. </xs:appinfo>
  64. </xs:annotation>
  65. </xs:attribute>
  66. <xs:attribute name="computer" type="AutoComputerType" use="optional">
  67. <xs:annotation>
  68. <xs:appinfo>
  69. <title>Computer</title>
  70. <tooltip>Computer from which this note was entered</tooltip>
  71. <viewType>readonly</viewType>
  72. <colIndex>3</colIndex>
  73. </xs:appinfo>
  74. </xs:annotation>
  75. </xs:attribute>
  76. <xs:attribute name="user" type="AutoUseridType" use="optional">
  77. <xs:annotation>
  78. <xs:appinfo>
  79. <title>User</title>
  80. <tooltip>User account from which this note was entered</tooltip>
  81. <viewType>readonly</viewType>
  82. <colIndex>4</colIndex>
  83. </xs:appinfo>
  84. </xs:annotation>
  85. </xs:attribute>
  86. </xs:complexType>
  87. </xs:element>
  88. </xs:sequence>
  89. <xs:attribute name="build" type="buildType" use="required">
  90. <xs:annotation>
  91. <xs:appinfo>
  92. <tooltip>The build name to be deployed</tooltip>
  93. <viewType>hidden</viewType>
  94. </xs:appinfo>
  95. </xs:annotation>
  96. </xs:attribute>
  97. <xs:attribute name="buildSet" type="buildSetType" use="required">
  98. <xs:annotation>
  99. <xs:appinfo>
  100. <viewType>hidden</viewType>
  101. </xs:appinfo>
  102. </xs:annotation>
  103. </xs:attribute>
  104. <xs:attribute name="name" type="xs:string" use="required">
  105. <xs:annotation>
  106. <xs:appinfo>
  107. <tooltip>Name for this process</tooltip>
  108. </xs:appinfo>
  109. </xs:annotation>
  110. </xs:attribute>
  111. <xs:attribute name="description" type="xs:string" use="optional" default="MySQL database">
  112. <xs:annotation>
  113. <xs:appinfo>
  114. <tooltip>Description for this process</tooltip>
  115. </xs:appinfo>
  116. </xs:annotation>
  117. </xs:attribute>
  118. <xs:attribute name="computer" type="computerType" use="optional">
  119. <xs:annotation>
  120. <xs:appinfo>
  121. <tooltip>The computer on which the MySQL database is deployed. This is used before host option.</tooltip>
  122. <autogenforwizard>1</autogenforwizard>
  123. </xs:appinfo>
  124. </xs:annotation>
  125. </xs:attribute>
  126. <xs:attribute name="host" type="xs:string" use="optional">
  127. <xs:annotation>
  128. <xs:appinfo>
  129. <tooltip>The host name on which the MySQL database is deployed.</tooltip>
  130. </xs:appinfo>
  131. </xs:annotation>
  132. </xs:attribute>
  133. <xs:attribute name="port" type="xs:nonNegativeInteger" use="optional">
  134. <xs:annotation>
  135. <xs:appinfo>
  136. <tooltip>The port on which the MySQL database is listening.</tooltip>
  137. </xs:appinfo>
  138. </xs:annotation>
  139. </xs:attribute>
  140. </xs:complexType>
  141. </xs:element>
  142. </xs:schema>