As the RNG schema for disk auth secret implies, it requires either
"uuid" or "usage":
<define name='diskAuthSecret'>
<element name='secret'>
<attribute name='type'>
<choice>
<value>ceph</value>
<value>iscsi</value>
</choice>
</attribute>
<choice>
<attribute name='uuid'>
<ref name="UUID"/>
</attribute>
<attribute name='usage'>
<ref name='genericName'/>
</attribute>
</choice>
</element>
</define>
_("only one of uuid and usage can be specified"));
goto error;
}
+
+ if (!authUUID && !authUsage) {
+ virReportError(VIR_ERR_XML_ERROR, "%s",
+ _("either uuid or usage should be "
+ "specified for a secret"));
+ goto error;
+ }
+
if (authUUID != NULL) {
def->auth.secretType = VIR_DOMAIN_DISK_SECRET_TYPE_UUID;
if (virUUIDParse(authUUID,