public void TestGetConfigurationAndChangeConfiguration()
        {
            IDeployment deployment = new Deployment();
            XDocument configurationXml = deployment.GetConfiguration(
                WindowsAzureAccount.SubscriptionId,
                WindowsAzureAccount.CertificateThumbprint,
                "BeazleyMarketingProfiles-WEuro-Sys",
                DeploymentSlot.Production);
            Assert.IsNotNull(configurationXml);

            string requestId = deployment.ChangeConfiguration(
                WindowsAzureAccount.SubscriptionId,
                WindowsAzureAccount.CertificateThumbprint,
                "BeazleyMarketingProfiles-WEuro-Sys",
                DeploymentSlot.Production,
                configurationXml,
                true,
                "Auto");
            Assert.IsNotNull(requestId);
        }