Michael Pasternak has uploaded a new change for review. Change subject: sdk: regenerate against the latest api ......................................................................
sdk: regenerate against the latest api - to VmPool added MaxUserVMs property Change-Id: I27057a549830315b70ffae41e70c2172cb147186 Signed-off-by: Michael pasternak <[email protected]> --- M ovirt-engine-sdk-java/src/main/java/org/ovirt/engine/sdk/entities/VmPool.java 1 file changed, 33 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine-sdk-java refs/changes/44/15644/1 diff --git a/ovirt-engine-sdk-java/src/main/java/org/ovirt/engine/sdk/entities/VmPool.java b/ovirt-engine-sdk-java/src/main/java/org/ovirt/engine/sdk/entities/VmPool.java index aa3759f..7166b7d 100644 --- a/ovirt-engine-sdk-java/src/main/java/org/ovirt/engine/sdk/entities/VmPool.java +++ b/ovirt-engine-sdk-java/src/main/java/org/ovirt/engine/sdk/entities/VmPool.java @@ -41,6 +41,7 @@ * <element ref="{}cluster" minOccurs="0"/> * <element ref="{}template" minOccurs="0"/> * <element name="prestarted_vms" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> + * <element name="max_user_vms" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * </sequence> * </extension> * </complexContent> @@ -54,7 +55,8 @@ "size", "cluster", "template", - "prestartedVms" + "prestartedVms", + "maxUserVms" }) public class VmPool extends BaseResource @@ -65,6 +67,8 @@ protected Template template; @XmlElement(name = "prestarted_vms") protected Integer prestartedVms; + @XmlElement(name = "max_user_vms") + protected Integer maxUserVms; /** * Gets the value of the size property. @@ -178,4 +182,32 @@ return (this.prestartedVms!= null); } + /** + * Gets the value of the maxUserVms property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaxUserVms() { + return maxUserVms; + } + + /** + * Sets the value of the maxUserVms property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaxUserVms(Integer value) { + this.maxUserVms = value; + } + + public boolean isSetMaxUserVms() { + return (this.maxUserVms!= null); + } + } -- To view, visit http://gerrit.ovirt.org/15644 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I27057a549830315b70ffae41e70c2172cb147186 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine-sdk-java Gerrit-Branch: master Gerrit-Owner: Michael Pasternak <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
