![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/share/libvirt/schemas/ |
Upload File : |
<?xml version="1.0"?> <!-- 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> <include href='basictypes.rng'/> <define name='secret'> <element name='secret'> <optional> <attribute name='ephemeral'> <ref name="virYesNo"/> </attribute> </optional> <optional> <attribute name='private'> <ref name="virYesNo"/> </attribute> </optional> <interleave> <optional> <element name='uuid'> <ref name='UUID'/> </element> </optional> <optional> <element name='description'> <text/> </element> </optional> <optional> <element name='usage'> <choice> <ref name='usagevolume'/> <ref name='usageceph'/> <ref name='usageiscsi'/> <ref name='usagetls'/> <ref name='usagevtpm'/> <!-- More choices later --> </choice> </element> </optional> </interleave> </element> </define> <define name='usagevolume'> <attribute name='type'> <value>volume</value> </attribute> <element name='volume'> <ref name='absFilePath'/> </element> </define> <define name='usageceph'> <attribute name='type'> <value>ceph</value> </attribute> <element name='name'> <ref name='genericName'/> </element> </define> <define name='usageiscsi'> <attribute name='type'> <value>iscsi</value> </attribute> <element name='target'> <ref name='genericName'/> </element> </define> <define name='usagetls'> <attribute name='type'> <value>tls</value> </attribute> <element name='name'> <ref name='genericName'/> </element> </define> <define name='usagevtpm'> <attribute name='type'> <value>vtpm</value> </attribute> <element name='name'> <ref name='genericName'/> </element> </define> </grammar>