tm1.sslconfigs.xsd 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: XQEODP
  5. (C) Copyright IBM Corp. 2013
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
  9. <xs:element name="sslconfigs">
  10. <xs:complexType>
  11. <xs:sequence>
  12. <xs:element name="sslconfig" type="sslconfig" minOccurs="0" maxOccurs="unbounded"/>
  13. </xs:sequence>
  14. </xs:complexType>
  15. </xs:element>
  16. <xs:complexType name="sslconfig">
  17. <xs:sequence>
  18. <xs:element name="adminhost" minOccurs="1" maxOccurs="1">
  19. <xs:annotation>
  20. <xs:documentation>
  21. This parameter specifies the host name address of the machine
  22. running the TM1 server admin host process.
  23. </xs:documentation>
  24. </xs:annotation>
  25. <xs:complexType>
  26. <xs:attribute name="value" type="xs:string" use="required"/>
  27. </xs:complexType>
  28. </xs:element>
  29. <xs:element name="certificateAuthority" minOccurs="1" maxOccurs="1">
  30. <xs:annotation>
  31. <xs:documentation>
  32. This parameter specifies the pathname for the certificate authority
  33. file on this file system. If the pathname is not absolute it will be
  34. relative to the bin/bin64 directory.
  35. </xs:documentation>
  36. </xs:annotation>
  37. <xs:complexType>
  38. <xs:attribute name="file" type="xs:string" use="required"/>
  39. </xs:complexType>
  40. </xs:element>
  41. <xs:element name="certificateId" minOccurs="1" maxOccurs="1">
  42. <xs:annotation>
  43. <xs:documentation>
  44. This parameter species the certificate ID for a certificate in
  45. the authority file that is to be used when securing network
  46. communication with the TM1 admin server &amp; TM1 server processes.
  47. </xs:documentation>
  48. </xs:annotation>
  49. <xs:complexType>
  50. <xs:attribute name="value" type="xs:string" use="required"/>
  51. </xs:complexType>
  52. </xs:element>
  53. <xs:element name="certificateRevocationList" minOccurs="0" maxOccurs="1">
  54. <xs:annotation>
  55. <xs:documentation>
  56. This parameter is optional and is used to specify the pathname
  57. of a file that contains a list of certificates (actually a list of
  58. certificate serial numbers) that have been marked as 'revoked'.
  59. If the pathname is not absolute it will be relative to the bin/bin64
  60. directory.
  61. </xs:documentation>
  62. </xs:annotation>
  63. <xs:complexType>
  64. <xs:attribute name="file" type="xs:string" use="optional"/>
  65. </xs:complexType>
  66. </xs:element>
  67. </xs:sequence>
  68. </xs:complexType>
  69. </xs:schema>