123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ################################################################################
- # HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- ################################################################################
- -->
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
- <xs:include schemaLocation="environment.xsd"/>
- <xs:element name="MySQLProcess">
- <xs:annotation>
- <xs:appinfo>
- <title>MySQL Server process</title>
- </xs:appinfo>
- </xs:annotation>
- <xs:complexType>
- <xs:sequence>
- <xs:element name="Notes" maxOccurs="unbounded">
- <xs:annotation>
- <xs:appinfo>
- <viewChildNodes>true</viewChildNodes>
- </xs:appinfo>
- </xs:annotation>
- <xs:complexType>
- <xs:sequence>
- <xs:element name="Note" type="xs:string" minOccurs="0" maxOccurs="1"/>
- </xs:sequence>
- <xs:attribute name="severity" use="optional" default="Minor">
- <xs:annotation>
- <xs:appinfo>
- <tooltip>Significance of this note.</tooltip>
- <title>Severity</title>
- <colIndex>1</colIndex>
- </xs:appinfo>
- </xs:annotation>
- <xs:simpleType>
- <xs:restriction base="xs:string">
- <xs:enumeration value="Minor"/>
- <xs:enumeration value="Normal"/>
- <xs:enumeration value="Critical"/>
- </xs:restriction>
- </xs:simpleType>
- </xs:attribute>
- <xs:attribute name="date" type="AutoTimeStampType" use="optional">
- <xs:annotation>
- <xs:appinfo>
- <title>Date / Time</title>
- <tooltip>Date and time this note was entered</tooltip>
- <viewType>readonly</viewType>
- <width>120</width>
- <colIndex>2</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="computer" type="AutoComputerType" use="optional">
- <xs:annotation>
- <xs:appinfo>
- <title>Computer</title>
- <tooltip>Computer from which this note was entered</tooltip>
- <viewType>readonly</viewType>
- <colIndex>3</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="user" type="AutoUseridType" use="optional">
- <xs:annotation>
- <xs:appinfo>
- <title>User</title>
- <tooltip>User account from which this note was entered</tooltip>
- <viewType>readonly</viewType>
- <colIndex>4</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- <xs:attribute name="build" type="buildType" use="required">
- <xs:annotation>
- <xs:appinfo>
- <tooltip>The build name to be deployed</tooltip>
- <viewType>hidden</viewType>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="buildSet" type="buildSetType" use="required">
- <xs:annotation>
- <xs:appinfo>
- <viewType>hidden</viewType>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="name" type="xs:string" use="required">
- <xs:annotation>
- <xs:appinfo>
- <tooltip>Name for this process</tooltip>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="description" type="xs:string" use="optional" default="MySQL database">
- <xs:annotation>
- <xs:appinfo>
- <tooltip>Description for this process</tooltip>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="computer" type="computerType" use="optional">
- <xs:annotation>
- <xs:appinfo>
- <tooltip>The computer on which the MySQL database is deployed. This is used before host option.</tooltip>
- <autogenforwizard>1</autogenforwizard>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="host" type="xs:string" use="optional">
- <xs:annotation>
- <xs:appinfo>
- <tooltip>The host name on which the MySQL database is deployed.</tooltip>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="port" type="xs:nonNegativeInteger" use="optional">
- <xs:annotation>
- <xs:appinfo>
- <tooltip>The port on which the MySQL database is listening.</tooltip>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- </xs:complexType>
- </xs:element>
- </xs:schema>
|