UpgradeStatus upgradeStatusInstance = new UpgradeStatus();
deploymentInstance.setUpgradeStatus(upgradeStatusInstance);
Element upgradeTypeElement = XmlUtility.getElementByTagNameNS(upgradeStatusElement, "http://schemas.microsoft.com/windowsazure", "UpgradeType");
if (upgradeTypeElement != null) {
DeploymentUpgradeType upgradeTypeInstance;
upgradeTypeInstance = DeploymentUpgradeType.valueOf(upgradeTypeElement.getTextContent());
upgradeStatusInstance.setUpgradeType(upgradeTypeInstance);
}
Element currentUpgradeDomainStateElement = XmlUtility.getElementByTagNameNS(upgradeStatusElement, "http://schemas.microsoft.com/windowsazure", "CurrentUpgradeDomainState");