storageServicePropertiesInstance.setLabel(labelInstance);
}
Element statusElement = XmlUtility.getElementByTagNameNS(storageServicePropertiesElement, "http://schemas.microsoft.com/windowsazure", "Status");
if (statusElement != null) {
StorageAccountStatus statusInstance;
statusInstance = StorageAccountStatus.valueOf(statusElement.getTextContent());
storageServicePropertiesInstance.setStatus(statusInstance);
}
Element endpointsSequenceElement = XmlUtility.getElementByTagNameNS(storageServicePropertiesElement, "http://schemas.microsoft.com/windowsazure", "Endpoints");