@@ -60,6 +60,30 @@ public class VolumeResponse extends BaseResponse implements ControlledViewEntity
6060 @ Param (description = "id of the virtual machine" )
6161 private String virtualMachineId ;
6262
63+ @ SerializedName ("isoid" )
64+ @ Param (description = "the ID of the ISO attached to the virtual machine" )
65+ private String isoId ;
66+
67+ @ SerializedName ("isoname" )
68+ @ Param (description = "the name of the ISO attached to the virtual machine" )
69+ private String isoName ;
70+
71+ @ SerializedName ("isodisplaytext" )
72+ @ Param (description = "an alternate display text of the ISO attached to the virtual machine" )
73+ private String isoDisplayText ;
74+
75+ @ SerializedName (ApiConstants .TEMPLATE_ID )
76+ @ Param (description = "the ID of the template for the virtual machine. A -1 is returned if the virtual machine was created from an ISO file." )
77+ private String templateId ;
78+
79+ @ SerializedName ("templatename" )
80+ @ Param (description = "the name of the template for the virtual machine" )
81+ private String templateName ;
82+
83+ @ SerializedName ("templatedisplaytext" )
84+ @ Param (description = " an alternate display text of the template for the virtual machine" )
85+ private String templateDisplayText ;
86+
6387 @ SerializedName ("vmname" )
6488 @ Param (description = "name of the virtual machine" )
6589 private String virtualMachineName ;
@@ -451,5 +475,51 @@ public boolean isNeedQuiescevm() {
451475 return this .needQuiescevm ;
452476 }
453477
478+ public String getIsoId () {
479+ return isoId ;
480+ }
481+
482+ public void setIsoId (String isoId ) {
483+ this .isoId = isoId ;
484+ }
485+
486+ public String getIsoName () {
487+ return isoName ;
488+ }
489+
490+ public void setIsoName (String isoName ) {
491+ this .isoName = isoName ;
492+ }
493+
494+ public String getIsoDisplayText () {
495+ return isoDisplayText ;
496+ }
497+
498+ public void setIsoDisplayText (String isoDisplayText ) {
499+ this .isoDisplayText = isoDisplayText ;
500+ }
501+
502+ public String getTemplateId () {
503+ return templateId ;
504+ }
505+
506+ public void setTemplateId (String templateId ) {
507+ this .templateId = templateId ;
508+ }
454509
510+ public String getTemplateName () {
511+ return templateName ;
512+ }
513+
514+ public void setTemplateName (String templateName ) {
515+ this .templateName = templateName ;
516+ }
517+
518+ public String getTemplateDisplayText () {
519+ return templateDisplayText ;
520+ }
521+
522+ public void setTemplateDisplayText (String templateDisplayText ) {
523+ this .templateDisplayText = templateDisplayText ;
524+ }
455525}
0 commit comments