mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 06:05:27 +00:00
45 lines
843 B
Plaintext
45 lines
843 B
Plaintext
|
<!-- A Relax NG schema for the libvirt secret properties XML format -->
|
||
|
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
|
||
|
<start>
|
||
|
<ref name='secret'/>
|
||
|
</start>
|
||
|
|
||
|
<define name='secret'>
|
||
|
<element name='secret'>
|
||
|
<optional>
|
||
|
<attribute name='ephemeral'>
|
||
|
<choice>
|
||
|
<value>yes</value>
|
||
|
<value>no</value>
|
||
|
</choice>
|
||
|
</attribute>
|
||
|
</optional>
|
||
|
<optional>
|
||
|
<attribute name='private'>
|
||
|
<choice>
|
||
|
<value>yes</value>
|
||
|
<value>no</value>
|
||
|
</choice>
|
||
|
</attribute>
|
||
|
</optional>
|
||
|
<interleave>
|
||
|
<optional>
|
||
|
<element name='uuid'>
|
||
|
<text/>
|
||
|
</element>
|
||
|
</optional>
|
||
|
<optional>
|
||
|
<element name='description'>
|
||
|
<text/>
|
||
|
</element>
|
||
|
</optional>
|
||
|
<optional>
|
||
|
<element name='volume'>
|
||
|
<text/>
|
||
|
</element>
|
||
|
</optional>
|
||
|
</interleave>
|
||
|
</element>
|
||
|
</define>
|
||
|
</grammar>
|