public class Dae
extends Base
The schema that defines the Dae resource is defined below.
<xs:simpleType name="AeStateType">
<xs:restriction base="xs:string">
<xs:enumeration value="aeNone"/>
<xs:enumeration value="aeDaeRebootRequired"/>
<xs:enumeration value="aeDaeActive"/>
<xs:enumeration value="aeDaeRunning"/>
<xs:enumeration value="aeVeeamRebootRequired"/>
<xs:enumeration value="aeVeeamActive"/>
<xs:enumeration value="aeVeeamRunning"/>
<xs:enumeration value="aeIscRebootRequired"/>
<xs:enumeration value="aeIscActive"/>
<xs:enumeration value="aeIscRunning"/>
</xs:restriction>
</xs:simpleType>
<xs:element name="Dae">
<xs:complexType>
<xs:sequence>
<xs:element name="AeState" type="AeStateType" minOccurs="0">
<xs:annotation>
<xs:documentation>Read only, returned by GET.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Enabled" type="xs:boolean" minOccurs="0">
<xs:annotation>
<xs:documentation>PUT will enable or disable the feature, GET returns the setting.
Enabling or disabling this feature will require a system reboot.
</xs:documentation>
</xs:annotation>
<xs:element name="EnableGuacamole" type="xs:boolean" minOccurs="0">
<xs:annotation>
<xs:documentation>Use in PUT to enable or disable Apache Guacamole for VNC access to the VM.
If enabled, the password is required. GET returns the setting.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Password" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Use in PUT to set the password for Apache Guacamole. The Guacamole user name is admin.
Not returned by GET.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
| Constructor and Description |
|---|
Dae() |
| Modifier and Type | Method and Description |
|---|---|
com.quantum.dxi.dao.types.Dae |
getDaeXml(javax.servlet.http.HttpServletRequest request)
GET /rest/Dae
|
com.quantum.dxi.dao.types.Dae |
setDae(javax.servlet.http.HttpServletRequest request,
com.quantum.dxi.dao.types.Dae settings,
boolean delayReboot)
Deprecated.
As of 1.1, replaced by
#updateDae(HttpServletRequest, com.quantum.dxi.dao.types.Dae)
|
com.quantum.dxi.dao.types.Dae |
updateDae(javax.servlet.http.HttpServletRequest request,
com.quantum.dxi.dao.types.Dae settings,
boolean delayReboot)
PUT /rest/Dae
|
public com.quantum.dxi.dao.types.Dae getDaeXml(@Context
javax.servlet.http.HttpServletRequest request)
Get the DAE configuration from the system.
Response Entity type: <xs:element name="Dae">
public com.quantum.dxi.dao.types.Dae updateDae(@Context
javax.servlet.http.HttpServletRequest request,
com.quantum.dxi.dao.types.Dae settings,
boolean delayReboot)
Update the DAE configuration on the system.
Enabling or disabling this feature will require a system reboot.
Supported query parameters are:
?delayReboot=true Delay the reboot until a more convenient time. In order for changes to take effect the system must be rebooted.
Request Entity type: <xs:element name="Dae">
Response Entity type: <xs:element name="Dae">
public com.quantum.dxi.dao.types.Dae setDae(@Context
javax.servlet.http.HttpServletRequest request,
com.quantum.dxi.dao.types.Dae settings,
boolean delayReboot)
#updateDae(HttpServletRequest, com.quantum.dxi.dao.types.Dae)
Update the DAE configuration on the system.
Enabling or disabling this feature will require a system reboot.
Supported query parameters are:
?delayReboot=true Delay the reboot until a more convenient time. In order for changes to take effect the system must be rebooted.
Request Entity type: <xs:element name="Dae">
Response Entity type: <xs:element name="Dae">
Copyright © 2011-2023 Quantum Corporation. All Rights Reserved.