From 3f9a4ae5fc9776be38e199360b0ab08fa9c019cc Mon Sep 17 00:00:00 2001 From: Brooklyn Date: Tue, 9 Apr 2024 12:55:59 +0200 Subject: [PATCH] Added availablePaths to LogicalUnit model This is necessary for the iSCI multipath status https://github.com/oVirt/ovirt-engine/pull/934 Signed-off-by: Brooklyn Dewolf --- src/main/java/types/LogicalUnit.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/types/LogicalUnit.java b/src/main/java/types/LogicalUnit.java index 4b9271f9..dcd3d4ed 100644 --- a/src/main/java/types/LogicalUnit.java +++ b/src/main/java/types/LogicalUnit.java @@ -33,6 +33,7 @@ public interface LogicalUnit { Integer lunMapping(); Integer size(); Integer paths(); + Integer availablePaths(); LunStatus status(); String volumeGroupId(); String storageDomainId();