public class CloudShare
extends Base
The schema that defines the CloudShare 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="aeCaRebootRequired"/>
<xs:enumeration value="aeCaActive"/>
<xs:enumeration value="aeCaRunning"/>
</xs:restriction>
</xs:simpleType>
<xs:element name="CloudShare">
<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>
</xs:sequence>
</xs:complexType>
</xs:element>
Constructor and Description |
---|
CloudShare() |
Modifier and Type | Method and Description |
---|---|
com.quantum.dxi.dao.types.CloudShare |
getCloudShare(javax.servlet.http.HttpServletRequest request)
GET /rest/CloudShare
|
com.quantum.dxi.dao.types.CloudShare |
updateCloudShare(javax.servlet.http.HttpServletRequest request,
com.quantum.dxi.dao.types.CloudShare aeca,
boolean delayReboot)
PUT /rest/CloudShare
|
public com.quantum.dxi.dao.types.CloudShare getCloudShare(@Context javax.servlet.http.HttpServletRequest request)
Get the Cloud Share configuration from the system.
Response Entity type: <xs:element name="CloudShare">
public com.quantum.dxi.dao.types.CloudShare updateCloudShare(@Context javax.servlet.http.HttpServletRequest request, com.quantum.dxi.dao.types.CloudShare aeca, boolean delayReboot)
Update the Cloud Share 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="CloudShare">
Response Entity type: <xs:element name="CloudShare">
Copyright © 2011-2025 Quantum Corporation. All Rights Reserved.