diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/ScenarioTests/WebServiceTests.cs b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/ScenarioTests/WebServiceTests.cs index f1d8be40df6d4..d0f957cf38e22 100644 --- a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/ScenarioTests/WebServiceTests.cs +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/ScenarioTests/WebServiceTests.cs @@ -44,7 +44,14 @@ public class WebServiceTests : TestBase private const string ResourceIdFormat = "/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.MachineLearning/webServices/{2}"; private const string ServiceDefinitionJsonFileDogfood = @".\TestData\GraphWebServiceDefinition_Dogfood.json"; - private const string TestServiceDefinitionFile = WebServiceTests.ServiceDefinitionJsonFileDogfood; + private const string ServiceDefinitionJsonFileProduction = @".\TestData\GraphWebServiceDefinition_Prod.json"; + + /// + /// The tests are currently recorded against Azure Production, using the web service definition file specified by ServiceDefinitionJsonFileProduction. + /// When testing new changes to the SDK, you can first record the test against dogfood using the ServiceDefinitionJsonFileDogfood file. Then once everything + /// is working as expected, re-record the test against Prod before submitting an official pull request. + /// + private const string TestServiceDefinitionFile = WebServiceTests.ServiceDefinitionJsonFileProduction; private const int AsyncOperationPollingIntervalSeconds = 5; @@ -53,6 +60,7 @@ public class WebServiceTests : TestBase public WebServiceTests() { ////Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", "SubscriptionId=7b373400-c82e-453b-a97b-c53e14325b8b;Environment=Dogfood;UserId=admin@aad216.ccsctp.net;Password=Pa$$w0rd"); + ////Environment.SetEnvironmentVariable("TEST_CSM_ORGID_AUTHENTICATION", "SubscriptionId=80c77c76-74ba-4c8c-8229-4c3b2957990c;Environment=Prod"); ////Environment.SetEnvironmentVariable("AZURE_TEST_MODE", "Record"); } @@ -61,31 +69,44 @@ public void CreateGetRemoveGraphWebService() { this.RunAMLWebServiceTestScenario((webServiceName, resourceGroupName, resourcesClient, amlServicesClient, cpResourceId) => { - //Validate expected NO-OP behavior on deleting a non existing service - amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName); - - // Create and validate the AML service resource - var serviceDefinition = WebServiceTests.GetServiceDefinitionFromTestData(WebServiceTests.TestServiceDefinitionFile, cpResourceId); - var webService = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, resourceGroupName, webServiceName); - WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, webService, serviceDefinition); - - // Retrieve the AML web service after creation - var retrievedService = amlServicesClient.WebServices.Get(resourceGroupName, webServiceName); - WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, retrievedService); - - // Retrieve the AML web service's keys - WebServiceKeys serviceKeys = amlServicesClient.WebServices.ListKeys(resourceGroupName, webServiceName); - Assert.NotNull(serviceKeys); - Assert.Equal(serviceKeys.Primary, serviceDefinition.Properties.Keys.Primary); - Assert.Equal(serviceKeys.Secondary, serviceDefinition.Properties.Keys.Secondary); - - // Remove the web service - amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName); - - //Validate that the expected not found exception is thrown after deletion when trying to access the service - var expectedCloudException = Assert.Throws(() => amlServicesClient.WebServices.Get(resourceGroupName, webServiceName)); - Assert.NotNull(expectedCloudException.Body); - Assert.True(string.Equals(expectedCloudException.Body.Code, "NotFound")); + bool serviceWasRemoved = false; + try + { + //Validate expected NO-OP behavior on deleting a non existing service + amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName); + + // Create and validate the AML service resource + var serviceDefinition = WebServiceTests.GetServiceDefinitionFromTestData(WebServiceTests.TestServiceDefinitionFile, cpResourceId); + var webService = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, resourceGroupName, webServiceName); + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, webService, serviceDefinition); + + // Retrieve the AML web service after creation + var retrievedService = amlServicesClient.WebServices.Get(resourceGroupName, webServiceName); + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, retrievedService); + + // Retrieve the AML web service's keys + WebServiceKeys serviceKeys = amlServicesClient.WebServices.ListKeys(resourceGroupName, webServiceName); + Assert.NotNull(serviceKeys); + Assert.Equal(serviceKeys.Primary, serviceDefinition.Properties.Keys.Primary); + Assert.Equal(serviceKeys.Secondary, serviceDefinition.Properties.Keys.Secondary); + + // Remove the web service + amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName); + serviceWasRemoved = true; + + //Validate that the expected not found exception is thrown after deletion when trying to access the service + var expectedCloudException = Assert.Throws(() => amlServicesClient.WebServices.Get(resourceGroupName, webServiceName)); + Assert.NotNull(expectedCloudException.Body); + Assert.True(string.Equals(expectedCloudException.Body.Code, "NotFound")); + } + finally + { + // Remove the web service + if (!serviceWasRemoved) + { + WebServiceTests.DisposeOfTestResource(() => amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName)); + } + } }); } @@ -94,38 +115,45 @@ public void CreateAndUpdateOnGraphWebService() { this.RunAMLWebServiceTestScenario((webServiceName, resourceGroupName, resourcesClient, amlServicesClient, cpResourceId) => { - // Create and validate the AML service resource - var serviceDefinition = WebServiceTests.GetServiceDefinitionFromTestData(WebServiceTests.TestServiceDefinitionFile, cpResourceId); - var webService = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, resourceGroupName, webServiceName); - WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, webService, serviceDefinition); - - // Submit some updates to this resource - var serviceUpdates = new WebService + try { - Properties = new WebServicePropertiesForGraph + // Create and validate the AML service resource + var serviceDefinition = WebServiceTests.GetServiceDefinitionFromTestData(WebServiceTests.TestServiceDefinitionFile, cpResourceId); + var webService = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, resourceGroupName, webServiceName); + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, webService, serviceDefinition); + + // Submit some updates to this resource + var serviceUpdates = new WebService { - Description = "description was updated!", - Keys = new WebServiceKeys("f6ae3d003c63457ab4c5997effb5e4dc"), - Diagnostics = new DiagnosticsConfiguration(DiagnosticsLevel.All) - } - }; - var updatedWebService = amlServicesClient.WebServices.PatchWithRequestId(serviceUpdates, resourceGroupName, webServiceName); - - // Validate the updated resource - WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, updatedWebService); - Assert.Equal(serviceUpdates.Properties.Description, updatedWebService.Properties.Description); - Assert.NotNull(updatedWebService.Properties.Diagnostics); - Assert.Equal(serviceUpdates.Properties.Diagnostics.Level, updatedWebService.Properties.Diagnostics.Level); - Assert.True(updatedWebService.Properties.ModifiedOn.Value.CompareTo(webService.Properties.ModifiedOn.Value) > 0); - - // Also fetch the service keys and validate the update there - WebServiceKeys serviceKeys = amlServicesClient.WebServices.ListKeys(resourceGroupName, webServiceName); - Assert.NotNull(serviceKeys); - Assert.Equal(serviceKeys.Primary, serviceUpdates.Properties.Keys.Primary); - Assert.Equal(serviceKeys.Secondary, serviceDefinition.Properties.Keys.Secondary); - - // Remove the web service - amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName); + Properties = new WebServicePropertiesForGraph + { + Description = "description was updated!", + Keys = new WebServiceKeys("f6ae3d003c63457ab4c5997effb5e4dc"), + Diagnostics = new DiagnosticsConfiguration(DiagnosticsLevel.All) + } + }; + var updatedWebService = amlServicesClient.WebServices.PatchWithRequestId(serviceUpdates, resourceGroupName, webServiceName); + + // Validate the updated resource + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, updatedWebService); + Assert.Equal(serviceUpdates.Properties.Description, updatedWebService.Properties.Description); + Assert.NotNull(updatedWebService.Properties.Diagnostics); + Assert.Equal(serviceUpdates.Properties.Diagnostics.Level, updatedWebService.Properties.Diagnostics.Level); + Assert.True(updatedWebService.Properties.ModifiedOn.Value.CompareTo(webService.Properties.ModifiedOn.Value) > 0); + + // Also fetch the service keys and validate the update there + WebServiceKeys serviceKeys = amlServicesClient.WebServices.ListKeys(resourceGroupName, webServiceName); + Assert.NotNull(serviceKeys); + Assert.Equal(serviceKeys.Primary, serviceUpdates.Properties.Keys.Primary); + Assert.Equal(serviceKeys.Secondary, serviceDefinition.Properties.Keys.Secondary); + + + } + finally + { + // Remove the web service + WebServiceTests.DisposeOfTestResource(() => amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName)); + } }); } @@ -134,57 +162,61 @@ public void CreateAndListWebServices() { this.RunAMLWebServiceTestScenario((webServiceName, resourceGroupName, resourcesClient, amlServicesClient, cpResourceId) => { - // Create a few webservices in the same resource group - var serviceDefinition = WebServiceTests.GetServiceDefinitionFromTestData(WebServiceTests.TestServiceDefinitionFile, cpResourceId); - var webService1 = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, resourceGroupName, webServiceName); - WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, webService1, serviceDefinition); - string service2Name = TestUtilities.GenerateName(WebServiceTests.TestServiceNamePrefix); - var webService2 = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, resourceGroupName, service2Name); - WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, service2Name, webService2, serviceDefinition); - string service3Name = TestUtilities.GenerateName(WebServiceTests.TestServiceNamePrefix); - var webService3 = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, resourceGroupName, service3Name); - WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, service3Name, webService3, serviceDefinition); - - // Create a new web service in a different resource group var otherResourceGroupName = TestUtilities.GenerateName(WebServiceTests.TestResourceGroupNamePrefix); - resourcesClient.ResourceGroups.CreateOrUpdate(otherResourceGroupName, new ResourceGroup { Location = WebServiceTests.DefaultLocation }); var otherServiceName = TestUtilities.GenerateName(WebServiceTests.TestServiceNamePrefix); - var otherService = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, otherResourceGroupName, otherServiceName); - WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, otherResourceGroupName, otherServiceName, otherService, serviceDefinition); - - // Validate that only the first 3 services are returned on the get call for web services in a subscription & resource group - var servicesInGroup = amlServicesClient.WebServices.ListInResourceGroup(resourceGroupName); - Assert.NotNull(servicesInGroup); - IList servicesList = servicesInGroup.Value; - Assert.NotNull(servicesList); - Assert.Equal(3, servicesList.Count); - string service1ExpectedId = string.Format(CultureInfo.InvariantCulture, WebServiceTests.ResourceIdFormat, amlServicesClient.SubscriptionId, resourceGroupName, webServiceName); - string service2ExpectedId = string.Format(CultureInfo.InvariantCulture, WebServiceTests.ResourceIdFormat, amlServicesClient.SubscriptionId, resourceGroupName, service2Name); - string service3ExpectedId = string.Format(CultureInfo.InvariantCulture, WebServiceTests.ResourceIdFormat, amlServicesClient.SubscriptionId, resourceGroupName, service3Name); - Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service1ExpectedId, StringComparison.OrdinalIgnoreCase))); - Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service2ExpectedId, StringComparison.OrdinalIgnoreCase))); - Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service3ExpectedId, StringComparison.OrdinalIgnoreCase))); - - // Validate that all services are called when getting the AML service resource list for the subscription - var servicesInSubscription = amlServicesClient.WebServices.List(); - Assert.NotNull(servicesInSubscription); - servicesList = servicesInSubscription.Value; - Assert.NotNull(servicesList); - Assert.True(servicesList.Count >= 4); - Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service1ExpectedId, StringComparison.OrdinalIgnoreCase))); - Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service2ExpectedId, StringComparison.OrdinalIgnoreCase))); - Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service3ExpectedId, StringComparison.OrdinalIgnoreCase))); - string otherServiceExpectedId = string.Format(CultureInfo.InvariantCulture, WebServiceTests.ResourceIdFormat, amlServicesClient.SubscriptionId, otherResourceGroupName, otherServiceName); - Assert.True(servicesList.Any(svc => string.Equals(svc.Id, otherServiceExpectedId, StringComparison.OrdinalIgnoreCase))); - - // Remove the resources created by the test - amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName); - amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, service2Name); - amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, service3Name); - amlServicesClient.WebServices.RemoveWithRequestId(otherResourceGroupName, otherServiceName); - resourcesClient.ResourceGroups.Delete(otherResourceGroupName); + + try + { + // Create a few webservices in the same resource group + var serviceDefinition = WebServiceTests.GetServiceDefinitionFromTestData(WebServiceTests.TestServiceDefinitionFile, cpResourceId); + var webService1 = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, resourceGroupName, webServiceName); + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, webService1, serviceDefinition); + var webService2 = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, resourceGroupName, service2Name); + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, service2Name, webService2, serviceDefinition); + var webService3 = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, resourceGroupName, service3Name); + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, service3Name, webService3, serviceDefinition); + + // Create a new web service in a different resource group + resourcesClient.ResourceGroups.CreateOrUpdate(otherResourceGroupName, new ResourceGroup { Location = WebServiceTests.DefaultLocation }); + var otherService = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, otherResourceGroupName, otherServiceName); + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, otherResourceGroupName, otherServiceName, otherService, serviceDefinition); + + // Validate that only the first 3 services are returned on the get call for web services in a subscription & resource group + var servicesInGroup = amlServicesClient.WebServices.ListInResourceGroup(resourceGroupName); + Assert.NotNull(servicesInGroup); + IList servicesList = servicesInGroup.Value; + Assert.NotNull(servicesList); + Assert.Equal(3, servicesList.Count); + string service1ExpectedId = string.Format(CultureInfo.InvariantCulture, WebServiceTests.ResourceIdFormat, amlServicesClient.SubscriptionId, resourceGroupName, webServiceName); + string service2ExpectedId = string.Format(CultureInfo.InvariantCulture, WebServiceTests.ResourceIdFormat, amlServicesClient.SubscriptionId, resourceGroupName, service2Name); + string service3ExpectedId = string.Format(CultureInfo.InvariantCulture, WebServiceTests.ResourceIdFormat, amlServicesClient.SubscriptionId, resourceGroupName, service3Name); + Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service1ExpectedId, StringComparison.OrdinalIgnoreCase))); + Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service2ExpectedId, StringComparison.OrdinalIgnoreCase))); + Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service3ExpectedId, StringComparison.OrdinalIgnoreCase))); + + // Validate that all services are called when getting the AML service resource list for the subscription + var servicesInSubscription = amlServicesClient.WebServices.List(); + Assert.NotNull(servicesInSubscription); + servicesList = servicesInSubscription.Value; + Assert.NotNull(servicesList); + Assert.True(servicesList.Count >= 4); + Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service1ExpectedId, StringComparison.OrdinalIgnoreCase))); + Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service2ExpectedId, StringComparison.OrdinalIgnoreCase))); + Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service3ExpectedId, StringComparison.OrdinalIgnoreCase))); + string otherServiceExpectedId = string.Format(CultureInfo.InvariantCulture, WebServiceTests.ResourceIdFormat, amlServicesClient.SubscriptionId, otherResourceGroupName, otherServiceName); + Assert.True(servicesList.Any(svc => string.Equals(svc.Id, otherServiceExpectedId, StringComparison.OrdinalIgnoreCase))); + } + finally + { + // Remove the resources created by the test + WebServiceTests.DisposeOfTestResource(() => amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName)); + WebServiceTests.DisposeOfTestResource(() => amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, service2Name)); + WebServiceTests.DisposeOfTestResource(() => amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, service3Name)); + WebServiceTests.DisposeOfTestResource(() => amlServicesClient.WebServices.RemoveWithRequestId(otherResourceGroupName, otherServiceName)); + WebServiceTests.DisposeOfTestResource(() => resourcesClient.ResourceGroups.Delete(otherResourceGroupName)); + } }); } @@ -195,14 +227,18 @@ private void RunAMLWebServiceTestScenario(AMLWebServiceTestDelegate actualTest, using (var context = MockContext.Start(this.GetType().FullName, methodName)) { bool testIsSuccessfull = true; + string cpRpApiVersion = string.Empty; + ResourceManagementClient resourcesClient = null; + + var amlServiceName = TestUtilities.GenerateName(WebServiceTests.TestServiceNamePrefix); + var resourceGroupName = TestUtilities.GenerateName(WebServiceTests.TestResourceGroupNamePrefix); + var commitmentPlanName = TestUtilities.GenerateName(WebServiceTests.TestCommitmentPlanNamePrefix); + var cpDeploymentName = "depl" + commitmentPlanName; + try { - var amlServiceName = TestUtilities.GenerateName(WebServiceTests.TestServiceNamePrefix); - var resourceGroupName = TestUtilities.GenerateName(WebServiceTests.TestResourceGroupNamePrefix); - var commitmentPlanName = TestUtilities.GenerateName(WebServiceTests.TestCommitmentPlanNamePrefix); - // Create a resource group for the AML service - var resourcesClient = context.GetServiceClient(); + resourcesClient = context.GetServiceClient(); var resourceGroupDefinition = new ResourceGroup { Location = WebServiceTests.DefaultLocation @@ -210,22 +246,16 @@ private void RunAMLWebServiceTestScenario(AMLWebServiceTestDelegate actualTest, resourcesClient.ResourceGroups.CreateOrUpdate(resourceGroupName, resourceGroupDefinition); // Create an AML commitment plan resource to associate with the services - var cpDeploymentItems = WebServiceTests.CreateCommitmentPlanResource(resourceGroupName, commitmentPlanName, resourcesClient); + cpRpApiVersion = ResourceProvidersHelper.GetRPApiVersion(resourcesClient, WebServiceTests.MLResourceProviderNamespace, WebServiceTests.CPResourceType); + var cpDeploymentItems = WebServiceTests.CreateCommitmentPlanResource(resourceGroupName, commitmentPlanName, cpDeploymentName, resourcesClient, cpRpApiVersion); var cpResource = cpDeploymentItems.Item2; - + // Create a client for the AML RP and run the actual test var webServicesClient = context.GetServiceClient(); webServicesClient.LongRunningOperationRetryTimeout = WebServiceTests.AsyncOperationPollingIntervalSeconds; + // Run the actual test actualTest(amlServiceName, resourceGroupName, resourcesClient, webServicesClient, cpResource.Id); - - // Delete the deployment with the commitment plan - string cpRpApiVersion = ResourceProvidersHelper.GetRPApiVersion(resourcesClient, WebServiceTests.MLResourceProviderNamespace, WebServiceTests.CPResourceType); - resourcesClient.Resources.Delete(resourceGroupName, WebServiceTests.MLResourceProviderNamespace, string.Empty, WebServiceTests.CPResourceType, commitmentPlanName, cpRpApiVersion); - resourcesClient.Deployments.Delete(resourceGroupName, cpDeploymentItems.Item1.Name); - - // Delete the created resource group - resourcesClient.ResourceGroups.Delete(resourceGroupName); } catch (CloudException cloudEx) { @@ -233,7 +263,21 @@ private void RunAMLWebServiceTestScenario(AMLWebServiceTestDelegate actualTest, Trace.TraceError(WebServiceTests.GenerateCloudExceptionReport(cloudEx)); testIsSuccessfull = false; } - + finally + { + if (resourcesClient != null) + { + // Delete the deployment with the commitment plan + if (cpRpApiVersion != string.Empty) + { + WebServiceTests.DisposeOfTestResource(() => resourcesClient.Resources.Delete(resourceGroupName, WebServiceTests.MLResourceProviderNamespace, string.Empty, WebServiceTests.CPResourceType, commitmentPlanName, cpRpApiVersion)); + WebServiceTests.DisposeOfTestResource(() => resourcesClient.Deployments.Delete(resourceGroupName, cpDeploymentName)); + } + + // Delete the created resource group + WebServiceTests.DisposeOfTestResource(() => resourcesClient.ResourceGroups.Delete(resourceGroupName)); + } + } Assert.True(testIsSuccessfull); } } @@ -285,7 +329,7 @@ private static void ValidateWebServiceResource(string subscriptionId, string res private static string GenerateCloudExceptionReport(CloudException cloudException) { var errorReport = new StringBuilder(); - + string requestId = cloudException.RequestId; if (string.IsNullOrWhiteSpace(requestId) && cloudException.Response != null) { @@ -316,10 +360,9 @@ private static string GenerateCloudExceptionReport(CloudException cloudException return errorReport.ToString(); } - private static Tuple CreateCommitmentPlanResource(string resourceGroupName, string commitmentPlanName, ResourceManagementClient resourcesClient) + private static Tuple CreateCommitmentPlanResource(string resourceGroupName, string commitmentPlanName, string deploymentName, ResourceManagementClient resourcesClient, string cpApiVersion) { - string apiVersion = ResourceProvidersHelper.GetRPApiVersion(resourcesClient, WebServiceTests.MLResourceProviderNamespace, WebServiceTests.CPResourceType); - string deploymentParams = @"{'planName': {'value': '" + commitmentPlanName + "'}, 'planSkuName': {'value': 'PLAN_SKU_NAME'}, 'planSkuTier': {'value': 'PLAN_SKU_TIER'}, 'apiVersion': {'value': '" + apiVersion + "'}}"; + string deploymentParams = @"{'planName': {'value': '" + commitmentPlanName + "'}, 'planSkuName': {'value': 'PLAN_SKU_NAME'}, 'planSkuTier': {'value': 'PLAN_SKU_TIER'}, 'apiVersion': {'value': '" + cpApiVersion + "'}}"; var deploymentProperties = new DeploymentProperties { Template = JObject.Parse(File.ReadAllText(@".\TestData\DeployCommitmentPlanTemplate.json")), @@ -327,10 +370,27 @@ private static Tuple CreateCommitmentPlanRe Mode = DeploymentMode.Incremental }; - var deployment = resourcesClient.Deployments.CreateOrUpdate(resourceGroupName, "depl" + commitmentPlanName, new Deployment(deploymentProperties)); - var cpResource = resourcesClient.Resources.Get(resourceGroupName, WebServiceTests.MLResourceProviderNamespace, string.Empty, WebServiceTests.CPResourceType, commitmentPlanName, apiVersion); + var deployment = resourcesClient.Deployments.CreateOrUpdate(resourceGroupName, deploymentName, new Deployment(deploymentProperties)); + var cpResource = resourcesClient.Resources.Get(resourceGroupName, WebServiceTests.MLResourceProviderNamespace, string.Empty, WebServiceTests.CPResourceType, commitmentPlanName, cpApiVersion); return Tuple.Create(deployment, cpResource); } + + private static void DisposeOfTestResource(Action disposalCall) + { + try + { + disposalCall(); + } + catch (CloudException cloudEx) + { + Trace.TraceWarning("Caught unexpected exception during resource cleanup: "); + Trace.TraceWarning(WebServiceTests.GenerateCloudExceptionReport(cloudEx)); + } + catch (Exception ex) + { + Trace.TraceWarning("Caught unexpected exception during resource cleanup: {0}", ex.Message); + } + } } } diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndListWebServices.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndListWebServices.json index faa7dc5389072..9c1010e737b08 100644 --- a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndListWebServices.json +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndListWebServices.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg3554?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzU1ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg7428?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNzQyOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { @@ -13,7 +13,7 @@ "38" ], "x-ms-client-request-id": [ - "5cdd8c71-d514-4a5d-8ded-8d7baa25aa25" + "3b1b4aeb-b8f3-48cd-9e56-10bd4c150c87" ], "accept-language": [ "en-US" @@ -22,7 +22,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554\",\r\n \"name\": \"amlrg3554\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428\",\r\n \"name\": \"amlrg7428\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -37,16 +37,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1171" + "1199" ], "x-ms-request-id": [ - "83d516c0-25d6-489e-97d9-7e6c9e421fa0" + "1092b271-e095-4db0-9b47-5c55a7e4aa53" ], "x-ms-correlation-request-id": [ - "83d516c0-25d6-489e-97d9-7e6c9e421fa0" + "1092b271-e095-4db0-9b47-5c55a7e4aa53" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191656Z:83d516c0-25d6-489e-97d9-7e6c9e421fa0" + "CENTRALUS:20160510T040946Z:1092b271-e095-4db0-9b47-5c55a7e4aa53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,19 +55,19 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:16:56 GMT" + "Tue, 10 May 2016 04:09:46 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3918c488-cb91-4dbc-a230-223c33c08bec" + "57c842d6-f1a5-4e27-aa6c-ca67f9659389" ], "accept-language": [ "en-US" @@ -76,64 +76,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-10-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"WebServices\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CommitmentPlan\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1391" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14887" - ], - "x-ms-request-id": [ - "eee4832b-5499-4b1e-a514-947b15251921" - ], - "x-ms-correlation-request-id": [ - "eee4832b-5499-4b1e-a514-947b15251921" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191656Z:eee4832b-5499-4b1e-a514-947b15251921" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 May 2016 19:16:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f4f0c50d-9120-4bf8-896f-2201959aad14" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-10-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"WebServices\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CommitmentPlan\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1391" + "1186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -145,16 +91,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14877" + "14999" ], "x-ms-request-id": [ - "ae11f48c-dc32-48f1-8e7d-0891c31917ed" + "d19f80b4-fe42-4378-b659-3fa606a7989d" ], "x-ms-correlation-request-id": [ - "ae11f48c-dc32-48f1-8e7d-0891c31917ed" + "d19f80b4-fe42-4378-b659-3fa606a7989d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192216Z:ae11f48c-dc32-48f1-8e7d-0891c31917ed" + "CENTRALUS:20160510T040946Z:d19f80b4-fe42-4378-b659-3fa606a7989d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -163,25 +109,25 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:22:15 GMT" + "Tue, 10 May 2016 04:09:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg3554/providers/Microsoft.Resources/deployments/deplamlcp4781?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A0NzgxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg7428/providers/Microsoft.Resources/deployments/deplamlcp967?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A5Njc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"string\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"[parameters('apiVersion')]\",\r\n \"name\": \"[parameters('planName')]\",\r\n \"type\": \"Microsoft.MachineLearning/CommitmentPlans\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('planSkuName')]\",\r\n \"tier\": \"[parameters('planSkuTier')]\",\r\n \"capacity\": \"1\"\r\n },\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"planName\": {\r\n \"value\": \"amlcp4781\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"value\": \"2016-04-01-privatepreview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"string\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"[parameters('apiVersion')]\",\r\n \"name\": \"[parameters('planName')]\",\r\n \"type\": \"Microsoft.MachineLearning/CommitmentPlans\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('planSkuName')]\",\r\n \"tier\": \"[parameters('planSkuTier')]\",\r\n \"capacity\": \"1\"\r\n },\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"planName\": {\r\n \"value\": \"amlcp967\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1281" + "1273" ], "x-ms-client-request-id": [ - "50a52fa3-a9ee-4cb5-a53e-1e27efe24512" + "cdff73e3-6f9b-42ca-bee1-15f4760af8ef" ], "accept-language": [ "en-US" @@ -190,10 +136,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.Resources/deployments/deplamlcp4781\",\r\n \"name\": \"deplamlcp4781\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp4781\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-04-01-privatepreview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-05-09T19:16:57.2798079Z\",\r\n \"duration\": \"PT0.1135902S\",\r\n \"correlationId\": \"00e4135b-54c8-469f-a01b-5c8d4bb92427\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.Resources/deployments/deplamlcp967\",\r\n \"name\": \"deplamlcp967\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp967\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-05-10T04:09:47.1846677Z\",\r\n \"duration\": \"PT0.387012S\",\r\n \"correlationId\": \"be354e44-db4e-4933-9508-3e7b1259501e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "756" + "745" ], "Content-Type": [ "application/json; charset=utf-8" @@ -205,19 +151,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg3554/providers/Microsoft.Resources/deployments/deplamlcp4781/operationStatuses/08587387854683114413?api-version=2015-11-01" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg7428/providers/Microsoft.Resources/deployments/deplamlcp967/operationStatuses/08587387534986800122?api-version=2015-11-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1170" + "1198" ], "x-ms-request-id": [ - "00e4135b-54c8-469f-a01b-5c8d4bb92427" + "be354e44-db4e-4933-9508-3e7b1259501e" ], "x-ms-correlation-request-id": [ - "00e4135b-54c8-469f-a01b-5c8d4bb92427" + "be354e44-db4e-4933-9508-3e7b1259501e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191657Z:00e4135b-54c8-469f-a01b-5c8d4bb92427" + "CENTRALUS:20160510T040947Z:be354e44-db4e-4933-9508-3e7b1259501e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -226,14 +172,14 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:16:56 GMT" + "Tue, 10 May 2016 04:09:47 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg3554/providers/Microsoft.Resources/deployments/deplamlcp4781/operationStatuses/08587387854683114413?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A0NzgxL29wZXJhdGlvblN0YXR1c2VzLzA4NTg3Mzg3ODU0NjgzMTE0NDEzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg7428/providers/Microsoft.Resources/deployments/deplamlcp967/operationStatuses/08587387534986800122?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A5Njcvb3BlcmF0aW9uU3RhdHVzZXMvMDg1ODczODc1MzQ5ODY4MDAxMjI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -256,16 +202,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14880" + "14935" ], "x-ms-request-id": [ - "67a3f099-f893-4451-a58e-6ea2a50f134b" + "37c2d05b-7737-437a-9c6d-fe67a25c8991" ], "x-ms-correlation-request-id": [ - "67a3f099-f893-4451-a58e-6ea2a50f134b" + "37c2d05b-7737-437a-9c6d-fe67a25c8991" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191727Z:67a3f099-f893-4451-a58e-6ea2a50f134b" + "WESTUS:20160510T041018Z:37c2d05b-7737-437a-9c6d-fe67a25c8991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -274,14 +220,14 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:17:26 GMT" + "Tue, 10 May 2016 04:10:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg3554/providers/Microsoft.Resources/deployments/deplamlcp4781?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A0NzgxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg7428/providers/Microsoft.Resources/deployments/deplamlcp967?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A5Njc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -289,10 +235,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.Resources/deployments/deplamlcp4781\",\r\n \"name\": \"deplamlcp4781\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp4781\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-04-01-privatepreview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-05-09T19:17:01.4587432Z\",\r\n \"duration\": \"PT4.2925255S\",\r\n \"correlationId\": \"00e4135b-54c8-469f-a01b-5c8d4bb92427\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp4781\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.Resources/deployments/deplamlcp967\",\r\n \"name\": \"deplamlcp967\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp967\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-05-10T04:09:54.0467708Z\",\r\n \"duration\": \"PT7.2491151S\",\r\n \"correlationId\": \"be354e44-db4e-4933-9508-3e7b1259501e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp967\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "838" + "827" ], "Content-Type": [ "application/json; charset=utf-8" @@ -304,16 +250,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14879" + "14934" ], "x-ms-request-id": [ - "9de6e25b-3d73-4bbb-8ce0-36c8315e7ee1" + "f22070ff-cbc3-4739-894e-386cc46d2fed" ], "x-ms-correlation-request-id": [ - "9de6e25b-3d73-4bbb-8ce0-36c8315e7ee1" + "f22070ff-cbc3-4739-894e-386cc46d2fed" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191727Z:9de6e25b-3d73-4bbb-8ce0-36c8315e7ee1" + "WESTUS:20160510T041019Z:f22070ff-cbc3-4739-894e-386cc46d2fed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -322,19 +268,19 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:17:26 GMT" + "Tue, 10 May 2016 04:10:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg3554/providers/Microsoft.MachineLearning//commitmentPlans/amlcp4781?api-version=2016-04-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNDc4MT9hcGktdmVyc2lvbj0yMDE2LTA0LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg7428/providers/Microsoft.MachineLearning//commitmentPlans/amlcp967?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwOTY3P2FwaS12ZXJzaW9uPTIwMTYtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5c2dc2e-fdd3-4c86-a52d-a8ac8da7c633" + "3c92c6fa-c110-40a7-8c25-4af1aa95995f" ], "accept-language": [ "en-US" @@ -343,10 +289,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"etag\": \"00006801-0000-0000-0000-5730e22c0000\",\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4781\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"amlcp4781\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2016-05-09T19:16:59.8956767Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 100.0,\r\n \"amount\": 100.0,\r\n \"includedQuantityMeter\": \"93284d87-d24e-448a-9d4c-c5df44b3bb52\",\r\n \"overageMeter\": \"60c709a8-0783-47cd-a4f8-662814c46aa0\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 10000.0,\r\n \"amount\": 10000.0,\r\n \"includedQuantityMeter\": \"a22f9766-117b-4865-8389-631cb8f852b1\",\r\n \"overageMeter\": \"d9f14fca-2680-44a1-83ca-511364fe3201\"\r\n }\r\n },\r\n \"planMeter\": \"2d38cd70-6831-4e50-acc4-4c72d6ef57c1\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"PLAN_SKU_NAME\",\r\n \"tier\": \"PLAN_SKU_TIER\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", + "ResponseBody": "{\r\n \"etag\": \"00002601-0000-0000-0000-57315f100000\",\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/commitmentPlans/amlcp967\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"amlcp967\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2016-05-10T04:09:51.2072294Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 100.0,\r\n \"amount\": 100.0,\r\n \"includedQuantityMeter\": \"93284d87-d24e-448a-9d4c-c5df44b3bb52\",\r\n \"overageMeter\": \"60c709a8-0783-47cd-a4f8-662814c46aa0\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 10000.0,\r\n \"amount\": 10000.0,\r\n \"includedQuantityMeter\": \"a22f9766-117b-4865-8389-631cb8f852b1\",\r\n \"overageMeter\": \"d9f14fca-2680-44a1-83ca-511364fe3201\"\r\n }\r\n },\r\n \"planMeter\": \"2d38cd70-6831-4e50-acc4-4c72d6ef57c1\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"PLAN_SKU_NAME\",\r\n \"tier\": \"PLAN_SKU_TIER\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "992" + "990" ], "Content-Type": [ "application/json; charset=utf-8" @@ -358,16 +304,16 @@ "no-cache" ], "x-ms-request-id": [ - "37f74a20-9946-4320-aaba-5c31226db4e7" + "bd622b96-d9de-4260-8c7a-73ff24eb88f9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14878" + "14933" ], "x-ms-correlation-request-id": [ - "4a7e47e7-dd5e-4248-a7ca-1cbd6f39f561" + "dd7101ea-06d7-47dd-99b2-aa7219319074" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191728Z:4a7e47e7-dd5e-4248-a7ca-1cbd6f39f561" + "WESTUS:20160510T041019Z:dd7101ea-06d7-47dd-99b2-aa7219319074" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,7 +322,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:17:27 GMT" + "Tue, 10 May 2016 04:10:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -385,19 +331,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws8131?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czgxMzE/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws3814?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czM4MTQ/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4781\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/commitmentPlans/amlcp967\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5158" + "5157" ], "x-ms-client-request-id": [ - "ac6c433e-cb3b-4a2b-801c-b0ea531354c1" + "9d07a842-41e5-4974-bafe-3091db248958" ], "accept-language": [ "en-US" @@ -406,10 +352,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws8131\",\r\n \"name\": \"amlws8131\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4781\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws3814\",\r\n \"name\": \"amlws3814\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/commitmentPlans/amlcp967\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "5423" + "5422" ], "Content-Type": [ "application/json; charset=utf-8" @@ -421,22 +367,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/afa65d68-2bbb-494e-9edb-14d154140178?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/514d3732-85fc-48f3-a5bb-29c0f0915bec?api-version=2016-05-01-preview" ], "Azure-AsyncOperationPercentComplete": [ "0" ], "x-ms-correlation-request-id": [ - "2bfb8043-ba18-45bd-a060-1d789b6adc0c" + "68455cff-e915-4639-9f96-f9176ddc67af" ], "x-ms-request-id": [ - "e265f88b-37cd-493b-afd4-14aa2dae1077" + "8c2c8bb4-7c9d-4a65-a7cb-35e49cae0c18" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191909Z:2bfb8043-ba18-45bd-a060-1d789b6adc0c" + "WESTUS:20160510T041028Z:68455cff-e915-4639-9f96-f9176ddc67af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,7 +391,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:19:09 GMT" + "Tue, 10 May 2016 04:10:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -454,8 +400,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/afa65d68-2bbb-494e-9edb-14d154140178?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2FmYTY1ZDY4LTJiYmItNDk0ZS05ZWRiLTE0ZDE1NDE0MDE3OD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/514d3732-85fc-48f3-a5bb-29c0f0915bec?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzUxNGQzNzMyLTg1ZmMtNDhmMy1hNWJiLTI5YzBmMDkxNWJlYz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -463,7 +409,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/afa65d68-2bbb-494e-9edb-14d154140178\",\r\n \"name\": \"afa65d68-2bbb-494e-9edb-14d154140178\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-09T19:19:09.8335506Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/514d3732-85fc-48f3-a5bb-29c0f0915bec\",\r\n \"name\": \"514d3732-85fc-48f3-a5bb-29c0f0915bec\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-10T04:10:29.3403413Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", "ResponseHeaders": { "Content-Length": [ "353" @@ -478,16 +424,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "e0f39508-ad04-4dea-85d1-9ac40c0e4111" + "4eeffa54-34f7-4cc8-a55b-01aba65e89af" ], "x-ms-request-id": [ - "aacccb72-a538-44ca-8359-09e164211dd4" + "5537a8b6-6ffa-41e4-b2e1-74f7ee81e7c6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14948" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191914Z:e0f39508-ad04-4dea-85d1-9ac40c0e4111" + "WESTUS:20160510T041034Z:4eeffa54-34f7-4cc8-a55b-01aba65e89af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,7 +442,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:19:13 GMT" + "Tue, 10 May 2016 04:10:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -505,8 +451,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/afa65d68-2bbb-494e-9edb-14d154140178?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2FmYTY1ZDY4LTJiYmItNDk0ZS05ZWRiLTE0ZDE1NDE0MDE3OD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/514d3732-85fc-48f3-a5bb-29c0f0915bec?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzUxNGQzNzMyLTg1ZmMtNDhmMy1hNWJiLTI5YzBmMDkxNWJlYz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -514,7 +460,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/afa65d68-2bbb-494e-9edb-14d154140178\",\r\n \"name\": \"afa65d68-2bbb-494e-9edb-14d154140178\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-09T19:19:09.8335506Z\",\r\n \"endTime\": \"2016-05-09T19:19:18.6918663Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/514d3732-85fc-48f3-a5bb-29c0f0915bec\",\r\n \"name\": \"514d3732-85fc-48f3-a5bb-29c0f0915bec\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-10T04:10:29.3403413Z\",\r\n \"endTime\": \"2016-05-10T04:10:37.2188756Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { "Content-Length": [ "380" @@ -529,16 +475,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "568945a1-a794-4b43-845e-c7fc97044ab8" + "529b2f92-909b-4dc0-999b-742e285aacfc" ], "x-ms-request-id": [ - "96342740-1f3d-4e9b-9482-9d20338404a3" + "7ff6e399-d43c-46f3-bea9-566a35afc47c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14947" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191919Z:568945a1-a794-4b43-845e-c7fc97044ab8" + "WESTUS:20160510T041039Z:529b2f92-909b-4dc0-999b-742e285aacfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,7 +493,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:19:19 GMT" + "Tue, 10 May 2016 04:10:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -556,8 +502,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws8131?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czgxMzE/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws3814?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czM4MTQ/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -565,10 +511,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws8131\",\r\n \"name\": \"amlws8131\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-09T19:19:09.0625284Z\",\r\n \"modifiedOn\": \"2016-05-09T19:19:18.7933618Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/f6858e62d8154ba8b93fb1102da877e4/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws3814\",\r\n \"name\": \"amlws3814\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:10:29.1634135Z\",\r\n \"modifiedOn\": \"2016-05-10T04:10:37.3983843Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/a0baeeeff0df48c1a173eab06c60eadc/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "5176" + "5172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -580,16 +526,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "d4ef2e25-99b3-4863-b38f-1d6f98012993" + "e0f32640-7fee-404d-bc3e-089234161230" ], "x-ms-request-id": [ - "4c6ab929-11d2-49c5-b53e-6d6b82d782e2" + "a5176e71-0873-4ba5-bf34-f046d0a494ee" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14946" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191919Z:d4ef2e25-99b3-4863-b38f-1d6f98012993" + "WESTUS:20160510T041039Z:e0f32640-7fee-404d-bc3e-089234161230" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,7 +544,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:19:19 GMT" + "Tue, 10 May 2016 04:10:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -607,19 +553,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws5224?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czUyMjQ/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws2641?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI2NDE/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4781\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/commitmentPlans/amlcp967\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5158" + "5157" ], "x-ms-client-request-id": [ - "1de56441-c67f-4ac6-9e38-ac9c0c39dbcd" + "0fce431e-e150-498a-826e-d2cede7fbcab" ], "accept-language": [ "en-US" @@ -628,10 +574,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws5224\",\r\n \"name\": \"amlws5224\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4781\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws2641\",\r\n \"name\": \"amlws2641\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/commitmentPlans/amlcp967\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "5423" + "5422" ], "Content-Type": [ "application/json; charset=utf-8" @@ -643,22 +589,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/77f8e4cb-c68c-4546-92e8-a8adb0919d64?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/d17ef945-e38b-4255-ba54-5beaf6622b12?api-version=2016-05-01-preview" ], "Azure-AsyncOperationPercentComplete": [ "0" ], "x-ms-correlation-request-id": [ - "aaf16e5b-ec3b-49ed-ab6e-cb636a6f688d" + "116c4f54-2dc7-45cd-8a1f-cf2f35ae3dc0" ], "x-ms-request-id": [ - "333fdd77-7a4d-4f95-8eb1-0bd28ccba628" + "25ff5c15-0c94-49de-af2c-192d17bfab9e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191920Z:aaf16e5b-ec3b-49ed-ab6e-cb636a6f688d" + "WESTUS:20160510T041041Z:116c4f54-2dc7-45cd-8a1f-cf2f35ae3dc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -667,7 +613,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:19:20 GMT" + "Tue, 10 May 2016 04:10:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -676,59 +622,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/77f8e4cb-c68c-4546-92e8-a8adb0919d64?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzc3ZjhlNGNiLWM2OGMtNDU0Ni05MmU4LWE4YWRiMDkxOWQ2ND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/77f8e4cb-c68c-4546-92e8-a8adb0919d64\",\r\n \"name\": \"77f8e4cb-c68c-4546-92e8-a8adb0919d64\",\r\n \"status\": \"Provisioning\",\r\n \"percentComplete\": 0.0\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "289" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-correlation-request-id": [ - "e8e1d541-1e85-45eb-b04a-05606d717f2e" - ], - "x-ms-request-id": [ - "9fef9f60-7d76-47d1-bed5-25b9dbffef1d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191926Z:e8e1d541-1e85-45eb-b04a-05606d717f2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 May 2016 19:19:25 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/77f8e4cb-c68c-4546-92e8-a8adb0919d64?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzc3ZjhlNGNiLWM2OGMtNDU0Ni05MmU4LWE4YWRiMDkxOWQ2ND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/d17ef945-e38b-4255-ba54-5beaf6622b12?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2QxN2VmOTQ1LWUzOGItNDI1NS1iYTU0LTViZWFmNjYyMmIxMj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,7 +631,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/77f8e4cb-c68c-4546-92e8-a8adb0919d64\",\r\n \"name\": \"77f8e4cb-c68c-4546-92e8-a8adb0919d64\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-09T19:19:28.7665062Z\",\r\n \"percentComplete\": 0.44444444444444442\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/d17ef945-e38b-4255-ba54-5beaf6622b12\",\r\n \"name\": \"d17ef945-e38b-4255-ba54-5beaf6622b12\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-10T04:10:43.9410558Z\",\r\n \"percentComplete\": 0.44444444444444442\r\n}", "ResponseHeaders": { "Content-Length": [ "353" @@ -751,67 +646,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "7d3429c6-280c-41b7-a059-838ec8212de1" + "4fe02bde-d15c-4afb-93f9-cc4a044ad94a" ], "x-ms-request-id": [ - "7aa32b3b-4408-4b2e-b25a-9bdcec3a52d8" + "0cce0331-8a39-4368-8683-301bb3be13fc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191931Z:7d3429c6-280c-41b7-a059-838ec8212de1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 May 2016 19:19:30 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/77f8e4cb-c68c-4546-92e8-a8adb0919d64?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzc3ZjhlNGNiLWM2OGMtNDU0Ni05MmU4LWE4YWRiMDkxOWQ2ND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/77f8e4cb-c68c-4546-92e8-a8adb0919d64\",\r\n \"name\": \"77f8e4cb-c68c-4546-92e8-a8adb0919d64\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-09T19:19:28.7665062Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "353" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-correlation-request-id": [ - "b59f28e9-da69-4ce3-811b-a8c4585ecf91" - ], - "x-ms-request-id": [ - "0327e121-887e-4942-a811-3fd69a19f188" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14945" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191936Z:b59f28e9-da69-4ce3-811b-a8c4585ecf91" + "WESTUS:20160510T041046Z:4fe02bde-d15c-4afb-93f9-cc4a044ad94a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -820,7 +664,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:19:36 GMT" + "Tue, 10 May 2016 04:10:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -829,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/77f8e4cb-c68c-4546-92e8-a8adb0919d64?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzc3ZjhlNGNiLWM2OGMtNDU0Ni05MmU4LWE4YWRiMDkxOWQ2ND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/d17ef945-e38b-4255-ba54-5beaf6622b12?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2QxN2VmOTQ1LWUzOGItNDI1NS1iYTU0LTViZWFmNjYyMmIxMj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -838,7 +682,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/77f8e4cb-c68c-4546-92e8-a8adb0919d64\",\r\n \"name\": \"77f8e4cb-c68c-4546-92e8-a8adb0919d64\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-09T19:19:28.7665062Z\",\r\n \"endTime\": \"2016-05-09T19:19:39.2408022Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/d17ef945-e38b-4255-ba54-5beaf6622b12\",\r\n \"name\": \"d17ef945-e38b-4255-ba54-5beaf6622b12\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-10T04:10:43.9410558Z\",\r\n \"endTime\": \"2016-05-10T04:10:49.9469198Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { "Content-Length": [ "380" @@ -853,16 +697,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "72c45a79-486e-4577-b967-e337bc5814de" + "0a033ac9-746c-4c2b-8c65-50fad5bcdede" ], "x-ms-request-id": [ - "70d2c0f5-dfd9-421e-9228-c90ff5ed489c" + "f1c0573c-4882-41bd-900e-65c30fcd6eae" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14944" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191941Z:72c45a79-486e-4577-b967-e337bc5814de" + "WESTUS:20160510T041051Z:0a033ac9-746c-4c2b-8c65-50fad5bcdede" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -871,7 +715,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:19:41 GMT" + "Tue, 10 May 2016 04:10:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -880,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws5224?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czUyMjQ/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws2641?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI2NDE/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -889,10 +733,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws5224\",\r\n \"name\": \"amlws5224\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-09T19:19:20.7763709Z\",\r\n \"modifiedOn\": \"2016-05-09T19:19:39.3037493Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/eef061414e584f26b31ca28c7304aed6/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws2641\",\r\n \"name\": \"amlws2641\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:10:41.4481636Z\",\r\n \"modifiedOn\": \"2016-05-10T04:10:50.0482119Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/fe0d812622be4fb69203d553889c5bbb/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "5176" + "5172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -904,16 +748,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "7f4be1df-6084-48f5-9b5f-34c9a3ad78f7" + "5c2937d0-8a08-463a-b18e-0dd0da0e935b" ], "x-ms-request-id": [ - "0b77fd0c-db95-4937-8a30-b8496d7d84c7" + "8918260a-fe37-459d-9d53-465f53c15acf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14943" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191941Z:7f4be1df-6084-48f5-9b5f-34c9a3ad78f7" + "WESTUS:20160510T041051Z:5c2937d0-8a08-463a-b18e-0dd0da0e935b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -922,7 +766,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:19:41 GMT" + "Tue, 10 May 2016 04:10:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -931,19 +775,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws1292?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czEyOTI/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws6134?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czYxMzQ/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4781\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/commitmentPlans/amlcp967\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5158" + "5157" ], "x-ms-client-request-id": [ - "da39c180-3a4a-4fdd-a8b9-4e3e360ef49d" + "d8f9c2a4-737c-4cc8-88a2-440c0e12cd9e" ], "accept-language": [ "en-US" @@ -952,10 +796,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws1292\",\r\n \"name\": \"amlws1292\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4781\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws6134\",\r\n \"name\": \"amlws6134\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/commitmentPlans/amlcp967\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "5423" + "5422" ], "Content-Type": [ "application/json; charset=utf-8" @@ -967,22 +811,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4d5be1c6-7b57-4153-a48b-c5a32963814f?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/3279fe3b-1b74-4502-800f-86eec50af0bf?api-version=2016-05-01-preview" ], "Azure-AsyncOperationPercentComplete": [ "0" ], "x-ms-correlation-request-id": [ - "e7c8d3dd-074b-4405-9c72-251d0f836bf4" + "3e5366e3-40c5-42fd-8605-0f2cb8c6ca49" ], "x-ms-request-id": [ - "8aa80153-2cfe-46ed-b7b0-7902d6f6bfae" + "386b8569-6807-427b-9b40-7be6abc320c2" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191942Z:e7c8d3dd-074b-4405-9c72-251d0f836bf4" + "WESTUS:20160510T041052Z:3e5366e3-40c5-42fd-8605-0f2cb8c6ca49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -991,7 +835,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:19:42 GMT" + "Tue, 10 May 2016 04:10:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1000,110 +844,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4d5be1c6-7b57-4153-a48b-c5a32963814f?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzRkNWJlMWM2LTdiNTctNDE1My1hNDhiLWM1YTMyOTYzODE0Zj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4d5be1c6-7b57-4153-a48b-c5a32963814f\",\r\n \"name\": \"4d5be1c6-7b57-4153-a48b-c5a32963814f\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-09T19:19:44.9015889Z\",\r\n \"percentComplete\": 0.55555555555555558\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "353" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-correlation-request-id": [ - "54ba831b-e0e7-410e-981f-7784226db2f9" - ], - "x-ms-request-id": [ - "8bc34a46-15dd-4287-9cac-4e98d707a42f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191947Z:54ba831b-e0e7-410e-981f-7784226db2f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 May 2016 19:19:47 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4d5be1c6-7b57-4153-a48b-c5a32963814f?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzRkNWJlMWM2LTdiNTctNDE1My1hNDhiLWM1YTMyOTYzODE0Zj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4d5be1c6-7b57-4153-a48b-c5a32963814f\",\r\n \"name\": \"4d5be1c6-7b57-4153-a48b-c5a32963814f\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-09T19:19:44.9015889Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "353" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-correlation-request-id": [ - "fd49c566-2fc1-4d26-8f4b-39a7d0bbdc11" - ], - "x-ms-request-id": [ - "e27b24f7-188a-4d24-99fc-f727af2c38aa" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191952Z:fd49c566-2fc1-4d26-8f4b-39a7d0bbdc11" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 May 2016 19:19:52 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4d5be1c6-7b57-4153-a48b-c5a32963814f?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzRkNWJlMWM2LTdiNTctNDE1My1hNDhiLWM1YTMyOTYzODE0Zj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/3279fe3b-1b74-4502-800f-86eec50af0bf?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzMyNzlmZTNiLTFiNzQtNDUwMi04MDBmLTg2ZWVjNTBhZjBiZj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1111,7 +853,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4d5be1c6-7b57-4153-a48b-c5a32963814f\",\r\n \"name\": \"4d5be1c6-7b57-4153-a48b-c5a32963814f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-09T19:19:44.9015889Z\",\r\n \"endTime\": \"2016-05-09T19:19:53.5278681Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/3279fe3b-1b74-4502-800f-86eec50af0bf\",\r\n \"name\": \"3279fe3b-1b74-4502-800f-86eec50af0bf\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-10T04:10:52.9764712Z\",\r\n \"endTime\": \"2016-05-10T04:10:57.7558692Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { "Content-Length": [ "380" @@ -1126,16 +868,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "b6eeff2a-e547-4049-b70c-5d057f7ad390" + "13941102-1164-4f1e-af44-432801b437a6" ], "x-ms-request-id": [ - "5b11989a-dcde-49b3-af58-a101884c28e6" + "4bc30008-aa1b-4c59-a30d-8013e8928640" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14942" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191957Z:b6eeff2a-e547-4049-b70c-5d057f7ad390" + "WESTUS:20160510T041057Z:13941102-1164-4f1e-af44-432801b437a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1144,7 +886,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:19:57 GMT" + "Tue, 10 May 2016 04:10:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1153,8 +895,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws1292?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czEyOTI/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws6134?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czYxMzQ/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1162,10 +904,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws1292\",\r\n \"name\": \"amlws1292\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-09T19:19:42.3568182Z\",\r\n \"modifiedOn\": \"2016-05-09T19:19:53.6325272Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/b5b4dc6508f447609f8b3a0b177d7a1b/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws6134\",\r\n \"name\": \"amlws6134\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:10:53.0786582Z\",\r\n \"modifiedOn\": \"2016-05-10T04:10:57.8380223Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/44525bbe533946e796872a317b9bf1e3/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "5176" + "5172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1177,16 +919,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "5a67f2e9-efd7-4317-8cd6-7e38505ecbbb" + "6c24e141-0f9f-4d46-be14-13739642a397" ], "x-ms-request-id": [ - "5d34ad1c-4b30-4d6d-9549-45885c69f146" + "c3d6d8c6-b747-4d99-ab38-a5df2bbea7b8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14941" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191957Z:5a67f2e9-efd7-4317-8cd6-7e38505ecbbb" + "WESTUS:20160510T041057Z:6c24e141-0f9f-4d46-be14-13739642a397" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1195,7 +937,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:19:57 GMT" + "Tue, 10 May 2016 04:10:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1204,8 +946,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg6443?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjQ0Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg753?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNzUzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { @@ -1216,7 +958,7 @@ "38" ], "x-ms-client-request-id": [ - "e7724122-d448-46bd-a08d-eaa59c37848e" + "10a0e8b4-3d60-4f1c-b57e-3d8d113c11b8" ], "accept-language": [ "en-US" @@ -1225,10 +967,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg6443\",\r\n \"name\": \"amlrg6443\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg753\",\r\n \"name\": \"amlrg753\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1240,16 +982,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1169" + "1196" ], "x-ms-request-id": [ - "58e90af1-a427-467f-94ee-72bc575ccdcd" + "ff9d7aa5-564f-4039-9e3e-1e3a8d4e27a9" ], "x-ms-correlation-request-id": [ - "58e90af1-a427-467f-94ee-72bc575ccdcd" + "ff9d7aa5-564f-4039-9e3e-1e3a8d4e27a9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191958Z:58e90af1-a427-467f-94ee-72bc575ccdcd" + "WESTUS:20160510T041058Z:ff9d7aa5-564f-4039-9e3e-1e3a8d4e27a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1258,25 +1000,25 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:19:57 GMT" + "Tue, 10 May 2016 04:10:58 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg6443/providers/Microsoft.MachineLearning/webServices/amlws3621?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNjQ0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czM2MjE/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg753/providers/Microsoft.MachineLearning/webServices/amlws6387?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNjM4Nz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4781\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/commitmentPlans/amlcp967\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5158" + "5157" ], "x-ms-client-request-id": [ - "b5e824dc-e17c-4708-b579-a0b5c7d3edfa" + "cf87298f-339d-4a5c-b56f-bc51d2ed315d" ], "accept-language": [ "en-US" @@ -1285,10 +1027,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg6443/providers/Microsoft.MachineLearning/webServices/amlws3621\",\r\n \"name\": \"amlws3621\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4781\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg753/providers/Microsoft.MachineLearning/webServices/amlws6387\",\r\n \"name\": \"amlws6387\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/commitmentPlans/amlcp967\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "5423" + "5421" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1300,22 +1042,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/45abe50c-87e7-4b8d-bc7c-4a4a9fdc0a3c?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/3d31d517-0cd4-4906-b496-5ccba4063c89?api-version=2016-05-01-preview" ], "Azure-AsyncOperationPercentComplete": [ "0" ], "x-ms-correlation-request-id": [ - "3e0f3f91-4f09-4b54-8ae6-e9894dd1c0ba" + "5fa37bcd-d19e-483e-a502-6ec0912cb9fd" ], "x-ms-request-id": [ - "511abc77-f311-49f0-a2ea-678ef37020dd" + "1302b76a-396c-4e8f-8d13-9d9659b1506e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1195" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T191959Z:3e0f3f91-4f09-4b54-8ae6-e9894dd1c0ba" + "WESTUS:20160510T041059Z:5fa37bcd-d19e-483e-a502-6ec0912cb9fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1324,7 +1066,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:19:58 GMT" + "Tue, 10 May 2016 04:10:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1333,59 +1075,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/45abe50c-87e7-4b8d-bc7c-4a4a9fdc0a3c?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzQ1YWJlNTBjLTg3ZTctNGI4ZC1iYzdjLTRhNGE5ZmRjMGEzYz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/45abe50c-87e7-4b8d-bc7c-4a4a9fdc0a3c\",\r\n \"name\": \"45abe50c-87e7-4b8d-bc7c-4a4a9fdc0a3c\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-09T19:20:02.7842081Z\",\r\n \"percentComplete\": 0.33333333333333331\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "353" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-correlation-request-id": [ - "cc4b6dfe-ff8a-43c6-8a1b-cf8d3a404682" - ], - "x-ms-request-id": [ - "33d9d33f-f0a5-4c93-816a-f2754e804d01" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192004Z:cc4b6dfe-ff8a-43c6-8a1b-cf8d3a404682" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 May 2016 19:20:04 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/45abe50c-87e7-4b8d-bc7c-4a4a9fdc0a3c?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzQ1YWJlNTBjLTg3ZTctNGI4ZC1iYzdjLTRhNGE5ZmRjMGEzYz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/3d31d517-0cd4-4906-b496-5ccba4063c89?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzNkMzFkNTE3LTBjZDQtNDkwNi1iNDk2LTVjY2JhNDA2M2M4OT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,7 +1084,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/45abe50c-87e7-4b8d-bc7c-4a4a9fdc0a3c\",\r\n \"name\": \"45abe50c-87e7-4b8d-bc7c-4a4a9fdc0a3c\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-09T19:20:02.7842081Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/3d31d517-0cd4-4906-b496-5ccba4063c89\",\r\n \"name\": \"3d31d517-0cd4-4906-b496-5ccba4063c89\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-10T04:10:59.7501536Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", "ResponseHeaders": { "Content-Length": [ "353" @@ -1408,16 +1099,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "59446b92-1019-4733-8c25-67b9c036282d" + "6338a416-8a77-48c5-bb5d-299e70b91dfa" ], "x-ms-request-id": [ - "12d1abed-0695-4d5b-b7c7-9ed8a8c7ce59" + "61e1bb9e-315b-473e-b421-7b74b41fa7fe" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14940" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192009Z:59446b92-1019-4733-8c25-67b9c036282d" + "WESTUS:20160510T041105Z:6338a416-8a77-48c5-bb5d-299e70b91dfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1426,7 +1117,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:20:09 GMT" + "Tue, 10 May 2016 04:11:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1435,8 +1126,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/45abe50c-87e7-4b8d-bc7c-4a4a9fdc0a3c?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzQ1YWJlNTBjLTg3ZTctNGI4ZC1iYzdjLTRhNGE5ZmRjMGEzYz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/3d31d517-0cd4-4906-b496-5ccba4063c89?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzNkMzFkNTE3LTBjZDQtNDkwNi1iNDk2LTVjY2JhNDA2M2M4OT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1444,7 +1135,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/45abe50c-87e7-4b8d-bc7c-4a4a9fdc0a3c\",\r\n \"name\": \"45abe50c-87e7-4b8d-bc7c-4a4a9fdc0a3c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-09T19:20:02.7842081Z\",\r\n \"endTime\": \"2016-05-09T19:20:13.4588006Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/3d31d517-0cd4-4906-b496-5ccba4063c89\",\r\n \"name\": \"3d31d517-0cd4-4906-b496-5ccba4063c89\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-10T04:10:59.7501536Z\",\r\n \"endTime\": \"2016-05-10T04:11:06.5416495Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { "Content-Length": [ "380" @@ -1459,16 +1150,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "7bdac7bd-cbe7-40c2-9c2d-8060382936cc" + "983c2ffc-c38c-4767-afa2-e93ed3838232" ], "x-ms-request-id": [ - "e64607ae-ffeb-4bd4-a60c-f6acbbbadbaa" + "ab4549f9-2669-4aca-a4b8-7934ed1868bc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14939" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192014Z:7bdac7bd-cbe7-40c2-9c2d-8060382936cc" + "WESTUS:20160510T041110Z:983c2ffc-c38c-4767-afa2-e93ed3838232" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1477,7 +1168,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:20:14 GMT" + "Tue, 10 May 2016 04:11:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1486,8 +1177,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg6443/providers/Microsoft.MachineLearning/webServices/amlws3621?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNjQ0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czM2MjE/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg753/providers/Microsoft.MachineLearning/webServices/amlws6387?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNjM4Nz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1495,10 +1186,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg6443/providers/Microsoft.MachineLearning/webServices/amlws3621\",\r\n \"name\": \"amlws3621\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-09T19:19:59.2459889Z\",\r\n \"modifiedOn\": \"2016-05-09T19:20:13.5244629Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/b8a9c11fc7b249a6853ef4c56db08dae/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg753/providers/Microsoft.MachineLearning/webServices/amlws6387\",\r\n \"name\": \"amlws6387\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:11:00.3009061Z\",\r\n \"modifiedOn\": \"2016-05-10T04:11:06.7774667Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/482d317d0c134969bd150df8c0d2bc0c/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "5176" + "5171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1510,16 +1201,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "5ac2826d-be64-4815-9c3a-bca349795c16" + "173a7571-9401-483f-bc02-e8f2a716c047" ], "x-ms-request-id": [ - "5fc5e701-008d-4899-b6d8-5d9ac8c5c6ce" + "670c78ba-f6c4-4510-b166-57e742f7ec42" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14938" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192014Z:5ac2826d-be64-4815-9c3a-bca349795c16" + "WESTUS:20160510T041110Z:173a7571-9401-483f-bc02-e8f2a716c047" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1528,7 +1219,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:20:14 GMT" + "Tue, 10 May 2016 04:11:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1537,13 +1228,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c222e76-b2e2-45e1-81ea-5c15ef93e7ae" + "178e773f-aca1-4e27-9497-4e01fe3c0bbb" ], "accept-language": [ "en-US" @@ -1552,10 +1243,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws1292\",\r\n \"name\": \"amlws1292\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-09T19:19:42.3568182Z\",\r\n \"modifiedOn\": \"2016-05-09T19:19:53.6325272Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/b5b4dc6508f447609f8b3a0b177d7a1b/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws5224\",\r\n \"name\": \"amlws5224\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-09T19:19:20.7763709Z\",\r\n \"modifiedOn\": \"2016-05-09T19:19:39.3037493Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/eef061414e584f26b31ca28c7304aed6/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws8131\",\r\n \"name\": \"amlws8131\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-09T19:19:09.0625284Z\",\r\n \"modifiedOn\": \"2016-05-09T19:19:18.7933618Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/f6858e62d8154ba8b93fb1102da877e4/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws2641\",\r\n \"name\": \"amlws2641\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:10:41.4481636Z\",\r\n \"modifiedOn\": \"2016-05-10T04:10:50.0482119Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/fe0d812622be4fb69203d553889c5bbb/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws3814\",\r\n \"name\": \"amlws3814\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:10:29.1634135Z\",\r\n \"modifiedOn\": \"2016-05-10T04:10:37.3983843Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/a0baeeeff0df48c1a173eab06c60eadc/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws6134\",\r\n \"name\": \"amlws6134\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:10:53.0786582Z\",\r\n \"modifiedOn\": \"2016-05-10T04:10:57.8380223Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/44525bbe533946e796872a317b9bf1e3/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2722" + "2710" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1567,16 +1258,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "c474afd6-680e-454a-abad-4704788c5325" + "ece6964c-34fd-4a3d-90d2-f1e9bc1df272" ], "x-ms-request-id": [ - "094c7d12-2337-465c-9572-b946a9af190d" + "488f414f-3254-4b36-9356-1eab936bf4e7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14937" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192015Z:c474afd6-680e-454a-abad-4704788c5325" + "WESTUS:20160510T041110Z:ece6964c-34fd-4a3d-90d2-f1e9bc1df272" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1585,7 +1276,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:20:14 GMT" + "Tue, 10 May 2016 04:11:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1594,13 +1285,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/webServices?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/webServices?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDUtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27c46e72-99dd-4304-b63c-04b83520dc21" + "adcd203d-2204-42d7-9d63-67e2ae78e256" ], "accept-language": [ "en-US" @@ -1609,10 +1300,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws1292\",\r\n \"name\": \"amlws1292\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-09T19:19:42.3568182Z\",\r\n \"modifiedOn\": \"2016-05-09T19:19:53.6325272Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/b5b4dc6508f447609f8b3a0b177d7a1b/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg6443/providers/Microsoft.MachineLearning/webServices/amlws3621\",\r\n \"name\": \"amlws3621\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-09T19:19:59.2459889Z\",\r\n \"modifiedOn\": \"2016-05-09T19:20:13.5244629Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/b8a9c11fc7b249a6853ef4c56db08dae/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws5224\",\r\n \"name\": \"amlws5224\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-09T19:19:20.7763709Z\",\r\n \"modifiedOn\": \"2016-05-09T19:19:39.3037493Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/eef061414e584f26b31ca28c7304aed6/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws8131\",\r\n \"name\": \"amlws8131\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-09T19:19:09.0625284Z\",\r\n \"modifiedOn\": \"2016-05-09T19:19:18.7933618Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/f6858e62d8154ba8b93fb1102da877e4/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws2641\",\r\n \"name\": \"amlws2641\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:10:41.4481636Z\",\r\n \"modifiedOn\": \"2016-05-10T04:10:50.0482119Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/fe0d812622be4fb69203d553889c5bbb/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws3814\",\r\n \"name\": \"amlws3814\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:10:29.1634135Z\",\r\n \"modifiedOn\": \"2016-05-10T04:10:37.3983843Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/a0baeeeff0df48c1a173eab06c60eadc/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws6134\",\r\n \"name\": \"amlws6134\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:10:53.0786582Z\",\r\n \"modifiedOn\": \"2016-05-10T04:10:57.8380223Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/44525bbe533946e796872a317b9bf1e3/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg753/providers/Microsoft.MachineLearning/webServices/amlws6387\",\r\n \"name\": \"amlws6387\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:11:00.3009061Z\",\r\n \"modifiedOn\": \"2016-05-10T04:11:06.7774667Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/482d317d0c134969bd150df8c0d2bc0c/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/ritbhatrp/providers/Microsoft.MachineLearning/webServices/prodwsmay95\",\r\n \"name\": \"prodwsmay95\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T03:38:15.6435929Z\",\r\n \"modifiedOn\": \"2016-05-10T03:47:02.5805157Z\",\r\n \"title\": \"TestMlService\",\r\n \"description\": \"Updated web service description.\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/de9cb0a45b2f4b2eade28e1be1344ddc/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3622" + "4506" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1624,16 +1315,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "7a4199be-2f86-4202-8e26-45859091ccf7" + "d7cc3f34-0bde-4eaa-b73d-1858292c7a0a" ], "x-ms-request-id": [ - "850d23ef-cb79-41bd-a121-cc7392887c5f" + "8f0a9124-60e9-42a1-a8b0-e7e33c9ecc97" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14936" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192015Z:7a4199be-2f86-4202-8e26-45859091ccf7" + "WESTUS:20160510T041115Z:d7cc3f34-0bde-4eaa-b73d-1858292c7a0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1642,7 +1333,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:20:15 GMT" + "Tue, 10 May 2016 04:11:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1651,13 +1342,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws8131?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czgxMzE/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws3814?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czM4MTQ/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43940a57-8bca-4902-bde6-30fcc021edc7" + "92c4ae6f-0043-40c1-a1de-9f341db857c6" ], "accept-language": [ "en-US" @@ -1678,22 +1369,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/33544837-21ca-4ea3-bbb2-4528af3ab5f4?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4beddd18-523e-48b5-99fa-a94db4af3fe7?api-version=2016-05-01-preview" ], "Azure-AsyncOperationPercentComplete": [ "0" ], "x-ms-correlation-request-id": [ - "e28d9200-a23a-4281-b1b6-c920350c359e" + "ce06a09c-8a54-4d25-b55b-1f13569cbf0f" ], "x-ms-request-id": [ - "3de1cf85-32af-4475-9147-fdec00d84aa1" + "8854f981-a3b3-4556-9c6b-05397bb4d901" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1194" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192025Z:e28d9200-a23a-4281-b1b6-c920350c359e" + "WESTUS:20160510T041132Z:ce06a09c-8a54-4d25-b55b-1f13569cbf0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1702,10 +1393,10 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:20:24 GMT" + "Tue, 10 May 2016 04:11:32 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/33544837-21ca-4ea3-bbb2-4528af3ab5f4?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/4beddd18-523e-48b5-99fa-a94db4af3fe7?api-version=2016-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1714,8 +1405,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/33544837-21ca-4ea3-bbb2-4528af3ab5f4?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzMzNTQ0ODM3LTIxY2EtNGVhMy1iYmIyLTQ1MjhhZjNhYjVmND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4beddd18-523e-48b5-99fa-a94db4af3fe7?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzRiZWRkZDE4LTUyM2UtNDhiNS05OWZhLWE5NGRiNGFmM2ZlNz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1723,58 +1414,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/33544837-21ca-4ea3-bbb2-4528af3ab5f4\",\r\n \"name\": \"33544837-21ca-4ea3-bbb2-4528af3ab5f4\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-09T19:20:28.8718716Z\",\r\n \"percentComplete\": 0.6\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "337" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-correlation-request-id": [ - "10d3eb34-1e17-4177-bbda-fa3bcd4d4fa7" - ], - "x-ms-request-id": [ - "87224d35-bd18-4283-a3ff-4a27597faed6" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192030Z:10d3eb34-1e17-4177-bbda-fa3bcd4d4fa7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 May 2016 19:20:30 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/33544837-21ca-4ea3-bbb2-4528af3ab5f4?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzMzNTQ0ODM3LTIxY2EtNGVhMy1iYmIyLTQ1MjhhZjNhYjVmND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/33544837-21ca-4ea3-bbb2-4528af3ab5f4\",\r\n \"name\": \"33544837-21ca-4ea3-bbb2-4528af3ab5f4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-09T19:20:28.8718716Z\",\r\n \"endTime\": \"2016-05-09T19:20:31.2227578Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4beddd18-523e-48b5-99fa-a94db4af3fe7\",\r\n \"name\": \"4beddd18-523e-48b5-99fa-a94db4af3fe7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-10T04:11:34.1073817Z\",\r\n \"endTime\": \"2016-05-10T04:11:35.4517397Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { "Content-Length": [ "380" @@ -1789,16 +1429,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "a243039d-d73a-4232-a939-7e5fdf16cf6b" + "eae36526-312c-41f4-8a76-c09640b552ec" ], "x-ms-request-id": [ - "5cd42ed6-96f7-4613-96d2-d2b71525ba30" + "fbd5c90e-3486-4f75-812c-d72316614d62" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14935" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192035Z:a243039d-d73a-4232-a939-7e5fdf16cf6b" + "WESTUS:20160510T041137Z:eae36526-312c-41f4-8a76-c09640b552ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1807,7 +1447,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:20:35 GMT" + "Tue, 10 May 2016 04:11:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1816,13 +1456,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws5224?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czUyMjQ/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws2641?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI2NDE/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e9adf6e-fe06-4aae-a97a-6e5935691bca" + "b1a3fbd2-0d6d-4c0f-b340-d3e077daef78" ], "accept-language": [ "en-US" @@ -1843,22 +1483,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/d37504d9-2beb-4070-b81b-1e7c39ecf132?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/bf6b3245-6313-484a-a354-b411df12e98b?api-version=2016-05-01-preview" ], "Azure-AsyncOperationPercentComplete": [ "0" ], "x-ms-correlation-request-id": [ - "db9f070c-6d7f-4704-ad2f-b28c104943c5" + "22a42441-067d-4a08-8a82-09e30c3b9a6f" ], "x-ms-request-id": [ - "a6d329dc-aa3a-4e95-a5ca-7ac655227138" + "bd74102e-1de2-457c-aae8-a43db6a0452b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1193" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192038Z:db9f070c-6d7f-4704-ad2f-b28c104943c5" + "WESTUS:20160510T041140Z:22a42441-067d-4a08-8a82-09e30c3b9a6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1867,10 +1507,10 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:20:38 GMT" + "Tue, 10 May 2016 04:11:39 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/d37504d9-2beb-4070-b81b-1e7c39ecf132?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/bf6b3245-6313-484a-a354-b411df12e98b?api-version=2016-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1879,8 +1519,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/d37504d9-2beb-4070-b81b-1e7c39ecf132?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2QzNzUwNGQ5LTJiZWItNDA3MC1iODFiLTFlN2MzOWVjZjEzMj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/bf6b3245-6313-484a-a354-b411df12e98b?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2JmNmIzMjQ1LTYzMTMtNDg0YS1hMzU0LWI0MTFkZjEyZTk4Yj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1888,58 +1528,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/d37504d9-2beb-4070-b81b-1e7c39ecf132\",\r\n \"name\": \"d37504d9-2beb-4070-b81b-1e7c39ecf132\",\r\n \"status\": \"Provisioning\",\r\n \"percentComplete\": 0.0\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "289" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-correlation-request-id": [ - "02cfe4e3-fd12-4d47-a8da-75ca38e1bce0" - ], - "x-ms-request-id": [ - "eb483d23-e15b-4baa-b725-2ed233924e66" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192043Z:02cfe4e3-fd12-4d47-a8da-75ca38e1bce0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 May 2016 19:20:43 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/d37504d9-2beb-4070-b81b-1e7c39ecf132?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2QzNzUwNGQ5LTJiZWItNDA3MC1iODFiLTFlN2MzOWVjZjEzMj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/d37504d9-2beb-4070-b81b-1e7c39ecf132\",\r\n \"name\": \"d37504d9-2beb-4070-b81b-1e7c39ecf132\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-09T19:20:45.8715418Z\",\r\n \"endTime\": \"2016-05-09T19:20:48.1013407Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/bf6b3245-6313-484a-a354-b411df12e98b\",\r\n \"name\": \"bf6b3245-6313-484a-a354-b411df12e98b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-10T04:11:43.6299062Z\",\r\n \"endTime\": \"2016-05-10T04:11:44.8642706Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { "Content-Length": [ "380" @@ -1954,16 +1543,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "27e9976d-7456-4043-96a2-fa2e93c40920" + "ad22a535-45da-4489-8795-207008b033de" ], "x-ms-request-id": [ - "830112ec-42fb-4b46-99ed-471754f902d5" + "d78b8690-b1b7-438c-961a-dfd126ca62a6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14934" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192048Z:27e9976d-7456-4043-96a2-fa2e93c40920" + "WESTUS:20160510T041145Z:ad22a535-45da-4489-8795-207008b033de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1972,7 +1561,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:20:48 GMT" + "Tue, 10 May 2016 04:11:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1981,13 +1570,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg3554/providers/Microsoft.MachineLearning/webServices/amlws1292?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czEyOTI/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg7428/providers/Microsoft.MachineLearning/webServices/amlws6134?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czYxMzQ/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d054238-25e6-4a6f-84fd-129af4a4fd12" + "36fadfc4-cc55-41bf-a98c-399ba058cbc5" ], "accept-language": [ "en-US" @@ -2008,22 +1597,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/189fdd6a-cfb5-47e9-ab1a-9881019e6f23?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/8f20adaf-2c57-4e4e-86b5-e1cf75259848?api-version=2016-05-01-preview" ], "Azure-AsyncOperationPercentComplete": [ "0" ], "x-ms-correlation-request-id": [ - "dfa200b2-2b99-48d8-aa02-13da69839a48" + "28d24e9a-806f-4fc2-8ec3-35a94763c3bf" ], "x-ms-request-id": [ - "4037da5b-bc6c-43b4-bd83-8f35342907f0" + "70b8ce2e-97f0-4b17-b16d-fd8cd70c4c16" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1192" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192050Z:dfa200b2-2b99-48d8-aa02-13da69839a48" + "WESTUS:20160510T041146Z:28d24e9a-806f-4fc2-8ec3-35a94763c3bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2032,10 +1621,10 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:20:49 GMT" + "Tue, 10 May 2016 04:11:46 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/189fdd6a-cfb5-47e9-ab1a-9881019e6f23?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/8f20adaf-2c57-4e4e-86b5-e1cf75259848?api-version=2016-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2044,59 +1633,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/189fdd6a-cfb5-47e9-ab1a-9881019e6f23?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzE4OWZkZDZhLWNmYjUtNDdlOS1hYjFhLTk4ODEwMTllNmYyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/189fdd6a-cfb5-47e9-ab1a-9881019e6f23\",\r\n \"name\": \"189fdd6a-cfb5-47e9-ab1a-9881019e6f23\",\r\n \"status\": \"Provisioning\",\r\n \"percentComplete\": 0.0\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "289" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-correlation-request-id": [ - "0b1ecade-7ce0-47b2-b5fb-93cb9fbc070e" - ], - "x-ms-request-id": [ - "0c3eb574-a489-420c-ba18-d3f6d5c404ee" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192055Z:0b1ecade-7ce0-47b2-b5fb-93cb9fbc070e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 May 2016 19:20:55 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/189fdd6a-cfb5-47e9-ab1a-9881019e6f23?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzE4OWZkZDZhLWNmYjUtNDdlOS1hYjFhLTk4ODEwMTllNmYyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/8f20adaf-2c57-4e4e-86b5-e1cf75259848?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzhmMjBhZGFmLTJjNTctNGU0ZS04NmI1LWUxY2Y3NTI1OTg0OD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2104,7 +1642,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/189fdd6a-cfb5-47e9-ab1a-9881019e6f23\",\r\n \"name\": \"189fdd6a-cfb5-47e9-ab1a-9881019e6f23\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-09T19:20:55.7903631Z\",\r\n \"endTime\": \"2016-05-09T19:20:57.0417214Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/8f20adaf-2c57-4e4e-86b5-e1cf75259848\",\r\n \"name\": \"8f20adaf-2c57-4e4e-86b5-e1cf75259848\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-10T04:11:49.2741175Z\",\r\n \"endTime\": \"2016-05-10T04:11:50.2120506Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { "Content-Length": [ "380" @@ -2119,16 +1657,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "cbbd0054-a5d4-4d86-97c9-fc6c228ba0cd" + "f720624d-378b-4d05-9e3b-93fbc0c95e19" ], "x-ms-request-id": [ - "c2a37350-b378-4c63-9f38-c0e3171e7d9d" + "b7f5101e-48ce-402f-8bb7-9e07dbc7bbc9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14933" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192100Z:cbbd0054-a5d4-4d86-97c9-fc6c228ba0cd" + "WESTUS:20160510T041151Z:f720624d-378b-4d05-9e3b-93fbc0c95e19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2137,7 +1675,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:21:00 GMT" + "Tue, 10 May 2016 04:11:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2146,13 +1684,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg6443/providers/Microsoft.MachineLearning/webServices/amlws3621?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNjQ0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czM2MjE/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg753/providers/Microsoft.MachineLearning/webServices/amlws6387?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNjM4Nz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2a91fa8-1807-45ef-80eb-4ab6b84395d9" + "5abbb9a0-edcf-49e2-8543-d4c2a653c6ef" ], "accept-language": [ "en-US" @@ -2173,22 +1711,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/c58518b3-62a0-47a2-ad37-ad50c7bdcae7?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/73748d9a-1140-4f9e-8caa-1b6574c7cbf4?api-version=2016-05-01-preview" ], "Azure-AsyncOperationPercentComplete": [ "0" ], "x-ms-correlation-request-id": [ - "1992d28e-49a6-4ac7-b238-444b639eb876" + "70ecc85d-df97-4f3e-b485-89ce6dd7c123" ], "x-ms-request-id": [ - "29c8285f-07db-4c75-bc09-f6f9a4dd5c60" + "28abb91a-acbf-4005-afc4-19c5b51bc4c9" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1191" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192102Z:1992d28e-49a6-4ac7-b238-444b639eb876" + "WESTUS:20160510T041151Z:70ecc85d-df97-4f3e-b485-89ce6dd7c123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2197,10 +1735,10 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:21:01 GMT" + "Tue, 10 May 2016 04:11:51 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/c58518b3-62a0-47a2-ad37-ad50c7bdcae7?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/73748d9a-1140-4f9e-8caa-1b6574c7cbf4?api-version=2016-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2209,8 +1747,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/c58518b3-62a0-47a2-ad37-ad50c7bdcae7?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2M1ODUxOGIzLTYyYTAtNDdhMi1hZDM3LWFkNTBjN2JkY2FlNz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/73748d9a-1140-4f9e-8caa-1b6574c7cbf4?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzczNzQ4ZDlhLTExNDAtNGY5ZS04Y2FhLTFiNjU3NGM3Y2JmND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2218,10 +1756,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/c58518b3-62a0-47a2-ad37-ad50c7bdcae7\",\r\n \"name\": \"c58518b3-62a0-47a2-ad37-ad50c7bdcae7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-09T19:21:05.5849231Z\",\r\n \"endTime\": \"2016-05-09T19:21:07.1277017Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/73748d9a-1140-4f9e-8caa-1b6574c7cbf4\",\r\n \"name\": \"73748d9a-1140-4f9e-8caa-1b6574c7cbf4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-10T04:11:52.5789041Z\",\r\n \"endTime\": \"2016-05-10T04:11:53.474476Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { "Content-Length": [ - "380" + "379" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2233,16 +1771,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "84864e29-989a-4fda-b3d8-e95be1e6ec6d" + "f213a4c5-74a0-436e-8428-f8440448660d" ], "x-ms-request-id": [ - "e4306d38-d146-492d-8bd7-19faadd277fd" + "24fdcd8e-956c-40e5-896f-8ca84ee628c4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14932" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192107Z:84864e29-989a-4fda-b3d8-e95be1e6ec6d" + "WESTUS:20160510T041156Z:f213a4c5-74a0-436e-8428-f8440448660d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2251,7 +1789,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:21:06 GMT" + "Tue, 10 May 2016 04:11:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2260,13 +1798,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg6443?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjQ0Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg753?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNzUzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1be6653a-5a46-45d6-a417-dc9147c85dca" + "96e9a247-53fa-4502-807d-937e06e49077" ], "accept-language": [ "en-US" @@ -2290,16 +1828,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1168" + "1190" ], "x-ms-request-id": [ - "40a55bc8-f508-446b-a13d-f3a34b9534e0" + "e0e5cea4-7abb-49aa-8752-1a55c2572226" ], "x-ms-correlation-request-id": [ - "40a55bc8-f508-446b-a13d-f3a34b9534e0" + "e0e5cea4-7abb-49aa-8752-1a55c2572226" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192108Z:40a55bc8-f508-446b-a13d-f3a34b9534e0" + "WESTUS:20160510T041157Z:e0e5cea4-7abb-49aa-8752-1a55c2572226" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2308,17 +1846,17 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:21:08 GMT" + "Tue, 10 May 2016 04:11:57 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzY0NDMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzc1My1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzY0NDMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6WTBORE10VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzc1My1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6YzFNeTFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2341,16 +1879,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14879" + "14931" ], "x-ms-request-id": [ - "ad3f7b2d-3b8b-4d1a-8230-807e965c78be" + "e88bb4bb-9507-4489-8fb0-cccc13af60eb" ], "x-ms-correlation-request-id": [ - "ad3f7b2d-3b8b-4d1a-8230-807e965c78be" + "e88bb4bb-9507-4489-8fb0-cccc13af60eb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192139Z:ad3f7b2d-3b8b-4d1a-8230-807e965c78be" + "WESTUS:20160510T041227Z:e88bb4bb-9507-4489-8fb0-cccc13af60eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2359,17 +1897,17 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:21:38 GMT" + "Tue, 10 May 2016 04:12:27 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzY0NDMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzc1My1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzY0NDMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6WTBORE10VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzc1My1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6YzFNeTFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2389,16 +1927,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14878" + "14928" ], "x-ms-request-id": [ - "1fa0a2cc-d82b-4f37-84de-4288db8ce3ec" + "d13af799-d2df-4e23-b917-eb87618059b7" ], "x-ms-correlation-request-id": [ - "1fa0a2cc-d82b-4f37-84de-4288db8ce3ec" + "d13af799-d2df-4e23-b917-eb87618059b7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192209Z:1fa0a2cc-d82b-4f37-84de-4288db8ce3ec" + "WESTUS:20160510T041258Z:d13af799-d2df-4e23-b917-eb87618059b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2407,19 +1945,19 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:22:08 GMT" + "Tue, 10 May 2016 04:12:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg3554/providers/Microsoft.MachineLearning//commitmentPlans/amlcp4781?api-version=2016-04-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNDc4MT9hcGktdmVyc2lvbj0yMDE2LTA0LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg7428/providers/Microsoft.MachineLearning//commitmentPlans/amlcp967?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwOTY3P2FwaS12ZXJzaW9uPTIwMTYtMDUtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d89ec81f-8372-4cd1-bb1d-d71428367c2c" + "5fa9f391-fdcb-4906-a4dc-01bd620b157a" ], "accept-language": [ "en-US" @@ -2440,16 +1978,16 @@ "no-cache" ], "x-ms-request-id": [ - "ff1aacdd-f184-462f-a3b9-7625f124bdde" + "fee57622-185c-48a5-9888-80a29b01c6e3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1167" + "1189" ], "x-ms-correlation-request-id": [ - "f76e7e87-0920-488d-8ffb-37f7d2fac08f" + "7f9e50ae-114c-4771-97b8-a96f77b69d0b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192225Z:f76e7e87-0920-488d-8ffb-37f7d2fac08f" + "WESTUS:20160510T041259Z:7f9e50ae-114c-4771-97b8-a96f77b69d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2458,7 +1996,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:22:24 GMT" + "Tue, 10 May 2016 04:12:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2467,13 +2005,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg3554/providers/Microsoft.Resources/deployments/deplamlcp4781?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A0NzgxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg7428/providers/Microsoft.Resources/deployments/deplamlcp967?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNzQyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A5Njc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9df6ac34-42f9-4074-b144-60c9bdca3c6a" + "a3c6e240-10cb-40c1-92ed-17029e79df66" ], "accept-language": [ "en-US" @@ -2497,16 +2035,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1166" + "1188" ], "x-ms-request-id": [ - "2a5cedae-3dd3-4415-bfff-d0ce4ef7110e" + "b8f88cb5-307a-4c94-9dce-41fa84d80083" ], "x-ms-correlation-request-id": [ - "2a5cedae-3dd3-4415-bfff-d0ce4ef7110e" + "b8f88cb5-307a-4c94-9dce-41fa84d80083" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192234Z:2a5cedae-3dd3-4415-bfff-d0ce4ef7110e" + "WESTUS:20160510T041300Z:b8f88cb5-307a-4c94-9dce-41fa84d80083" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2515,17 +2053,17 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:22:34 GMT" + "Tue, 10 May 2016 04:13:00 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczNTU0LURFUExBTUxDUDQ3ODEtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc3NDI4LURFUExBTUxDUDk2Ny0iLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczNTU0LURFUExBTUxDUDQ3ODEtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3pOVFUwTFVSRlVFeEJUVXhEVURRM09ERXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc3NDI4LURFUExBTUxDUDk2Ny0iLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzNOREk0TFVSRlVFeEJUVXhEVURrMk55MGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2542,16 +2080,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14876" + "14927" ], "x-ms-request-id": [ - "725cfa66-6ddd-4e33-bdd0-3469b58db4be" + "b49e43d2-b17b-4a5b-80e0-0cb13a3d1c6e" ], "x-ms-correlation-request-id": [ - "725cfa66-6ddd-4e33-bdd0-3469b58db4be" + "b49e43d2-b17b-4a5b-80e0-0cb13a3d1c6e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192304Z:725cfa66-6ddd-4e33-bdd0-3469b58db4be" + "WESTUS:20160510T041330Z:b49e43d2-b17b-4a5b-80e0-0cb13a3d1c6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2560,19 +2098,19 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:23:03 GMT" + "Tue, 10 May 2016 04:13:30 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg3554?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzU1ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg7428?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNzQyOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e556002a-5433-474b-bfea-5e801a9e1f46" + "f1e124e6-d850-4071-88dc-f0a634936a90" ], "accept-language": [ "en-US" @@ -2596,16 +2134,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1165" + "1187" ], "x-ms-request-id": [ - "232f7e97-486a-4a35-bcf7-c6bbe95e457e" + "3f757b9f-9e4c-4f54-8c0f-9460e08adb2b" ], "x-ms-correlation-request-id": [ - "232f7e97-486a-4a35-bcf7-c6bbe95e457e" + "3f757b9f-9e4c-4f54-8c0f-9460e08adb2b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192310Z:232f7e97-486a-4a35-bcf7-c6bbe95e457e" + "WESTUS:20160510T041331Z:3f757b9f-9e4c-4f54-8c0f-9460e08adb2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2614,17 +2152,17 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:23:09 GMT" + "Tue, 10 May 2016 04:13:31 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzM1NTQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzc0MjgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzM1NTQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6TTFOVFF0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzc0MjgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6YzBNamd0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2647,16 +2185,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14875" + "14926" ], "x-ms-request-id": [ - "50754978-fdcf-44ce-878d-1e3275d27ed6" + "419f9b71-87a9-4cbf-98b6-dd2312fdc5f1" ], "x-ms-correlation-request-id": [ - "50754978-fdcf-44ce-878d-1e3275d27ed6" + "419f9b71-87a9-4cbf-98b6-dd2312fdc5f1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192340Z:50754978-fdcf-44ce-878d-1e3275d27ed6" + "WESTUS:20160510T041401Z:419f9b71-87a9-4cbf-98b6-dd2312fdc5f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2665,17 +2203,17 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:23:40 GMT" + "Tue, 10 May 2016 04:14:00 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzM1NTQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzc0MjgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzM1NTQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6TTFOVFF0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzc0MjgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6YzBNamd0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2695,16 +2233,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14874" + "14923" ], "x-ms-request-id": [ - "b8ee24ff-b45e-4b1c-95e3-e0f8390dfeba" + "c1f127d8-25f1-4d9e-be75-74db47db6460" ], "x-ms-correlation-request-id": [ - "b8ee24ff-b45e-4b1c-95e3-e0f8390dfeba" + "c1f127d8-25f1-4d9e-be75-74db47db6460" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T192410Z:b8ee24ff-b45e-4b1c-95e3-e0f8390dfeba" + "WESTUS:20160510T041431Z:c1f127d8-25f1-4d9e-be75-74db47db6460" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2713,7 +2251,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:24:09 GMT" + "Tue, 10 May 2016 04:14:31 GMT" ] }, "StatusCode": 200 @@ -2721,18 +2259,18 @@ ], "Names": { "RunAMLWebServiceTestScenario": [ - "amlws8131", - "amlrg3554", - "amlcp4781" + "amlws3814", + "amlrg7428", + "amlcp967" ], "CreateAndListWebServices": [ - "amlws5224", - "amlws1292", - "amlrg6443", - "amlws3621" + "amlws2641", + "amlws6134", + "amlrg753", + "amlws6387" ] }, "Variables": { - "SubscriptionId": "7b373400-c82e-453b-a97b-c53e14325b8b" + "SubscriptionId": "80c77c76-74ba-4c8c-8229-4c3b2957990c" } } \ No newline at end of file diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndUpdateOnGraphWebService.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndUpdateOnGraphWebService.json index efd30da0ca664..d71c0e5427676 100644 --- a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndUpdateOnGraphWebService.json +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndUpdateOnGraphWebService.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5420?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTQyMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6518?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjUxOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { @@ -13,7 +13,7 @@ "38" ], "x-ms-client-request-id": [ - "333f054e-8e65-4be9-b188-99c486c8551d" + "cff222e7-fba0-40ef-8a0f-e76a50ea6cea" ], "accept-language": [ "en-US" @@ -22,7 +22,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420\",\r\n \"name\": \"amlrg5420\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518\",\r\n \"name\": \"amlrg6518\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -37,16 +37,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1199" ], "x-ms-request-id": [ - "6093a3fc-0f5c-45df-bba1-493fbb01152d" + "6b594225-3bcd-48f7-a873-e12d2d9bd57e" ], "x-ms-correlation-request-id": [ - "6093a3fc-0f5c-45df-bba1-493fbb01152d" + "6b594225-3bcd-48f7-a873-e12d2d9bd57e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T050948Z:6093a3fc-0f5c-45df-bba1-493fbb01152d" + "CENTRALUS:20160510T041949Z:6b594225-3bcd-48f7-a873-e12d2d9bd57e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,19 +55,19 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:09:47 GMT" + "Tue, 10 May 2016 04:19:49 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b3075b9-b458-45f4-b8a8-85e6aac99809" + "e6544c9f-4252-447e-b44e-fdf7b3ee5e64" ], "accept-language": [ "en-US" @@ -76,10 +76,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-10-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"WebServices\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CommitmentPlan\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1391" + "1186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,16 +91,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14965" ], "x-ms-request-id": [ - "82608f0c-eeb1-4b34-9e1c-43de23532af1" + "42dd3b1d-becc-46db-8c0b-4be727b3d94e" ], "x-ms-correlation-request-id": [ - "82608f0c-eeb1-4b34-9e1c-43de23532af1" + "42dd3b1d-becc-46db-8c0b-4be727b3d94e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T050948Z:82608f0c-eeb1-4b34-9e1c-43de23532af1" + "CENTRALUS:20160510T041949Z:42dd3b1d-becc-46db-8c0b-4be727b3d94e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109,79 +109,25 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:09:47 GMT" + "Tue, 10 May 2016 04:19:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "50f811a2-1a60-4b5f-9726-a5917889fe40" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-10-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"WebServices\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CommitmentPlan\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1391" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" - ], - "x-ms-request-id": [ - "3a8ee2ba-1e55-4dc6-ab5e-3b7fcadf82d7" - ], - "x-ms-correlation-request-id": [ - "3a8ee2ba-1e55-4dc6-ab5e-3b7fcadf82d7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051100Z:3a8ee2ba-1e55-4dc6-ab5e-3b7fcadf82d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 08 May 2016 05:11:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5420/providers/Microsoft.Resources/deployments/deplamlcp1746?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTQyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AxNzQ2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6518/providers/Microsoft.Resources/deployments/deplamlcp3910?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AzOTEwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"string\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"[parameters('apiVersion')]\",\r\n \"name\": \"[parameters('planName')]\",\r\n \"type\": \"Microsoft.MachineLearning/CommitmentPlans\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('planSkuName')]\",\r\n \"tier\": \"[parameters('planSkuTier')]\",\r\n \"capacity\": \"1\"\r\n },\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"planName\": {\r\n \"value\": \"amlcp1746\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"value\": \"2016-04-01-privatepreview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"string\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"[parameters('apiVersion')]\",\r\n \"name\": \"[parameters('planName')]\",\r\n \"type\": \"Microsoft.MachineLearning/CommitmentPlans\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('planSkuName')]\",\r\n \"tier\": \"[parameters('planSkuTier')]\",\r\n \"capacity\": \"1\"\r\n },\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"planName\": {\r\n \"value\": \"amlcp3910\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1281" + "1274" ], "x-ms-client-request-id": [ - "5e951016-4ab3-4a92-a15a-eba3342eadc3" + "f880ad3a-1ba0-42d3-aa4d-d00f610be51d" ], "accept-language": [ "en-US" @@ -190,10 +136,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.Resources/deployments/deplamlcp1746\",\r\n \"name\": \"deplamlcp1746\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp1746\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-04-01-privatepreview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-05-08T05:09:48.9247315Z\",\r\n \"duration\": \"PT0.3627044S\",\r\n \"correlationId\": \"0dcbacb1-1b22-414a-979d-bb6ef2bb3e79\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.Resources/deployments/deplamlcp3910\",\r\n \"name\": \"deplamlcp3910\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp3910\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-05-10T04:19:50.797482Z\",\r\n \"duration\": \"PT0.5414725S\",\r\n \"correlationId\": \"07ae06ab-53d0-42da-b835-a60706ae8815\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "756" + "748" ], "Content-Type": [ "application/json; charset=utf-8" @@ -205,19 +151,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5420/providers/Microsoft.Resources/deployments/deplamlcp1746/operationStatuses/08587389226969156261?api-version=2015-11-01" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6518/providers/Microsoft.Resources/deployments/deplamlcp3910/operationStatuses/08587387528952216556?api-version=2015-11-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "1198" ], "x-ms-request-id": [ - "0dcbacb1-1b22-414a-979d-bb6ef2bb3e79" + "07ae06ab-53d0-42da-b835-a60706ae8815" ], "x-ms-correlation-request-id": [ - "0dcbacb1-1b22-414a-979d-bb6ef2bb3e79" + "07ae06ab-53d0-42da-b835-a60706ae8815" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T050949Z:0dcbacb1-1b22-414a-979d-bb6ef2bb3e79" + "CENTRALUS:20160510T041951Z:07ae06ab-53d0-42da-b835-a60706ae8815" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -226,14 +172,14 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:09:48 GMT" + "Tue, 10 May 2016 04:19:51 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5420/providers/Microsoft.Resources/deployments/deplamlcp1746/operationStatuses/08587389226969156261?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTQyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AxNzQ2L29wZXJhdGlvblN0YXR1c2VzLzA4NTg3Mzg5MjI2OTY5MTU2MjYxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6518/providers/Microsoft.Resources/deployments/deplamlcp3910/operationStatuses/08587387528952216556?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AzOTEwL29wZXJhdGlvblN0YXR1c2VzLzA4NTg3Mzg3NTI4OTUyMjE2NTU2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -256,16 +202,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14960" ], "x-ms-request-id": [ - "eb54b2f7-f05c-4517-bf36-591bc0e52fd3" + "6a3a357b-71f7-4336-821d-2a1a8d654207" ], "x-ms-correlation-request-id": [ - "eb54b2f7-f05c-4517-bf36-591bc0e52fd3" + "6a3a357b-71f7-4336-821d-2a1a8d654207" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051019Z:eb54b2f7-f05c-4517-bf36-591bc0e52fd3" + "CENTRALUS:20160510T042021Z:6a3a357b-71f7-4336-821d-2a1a8d654207" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -274,14 +220,14 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:10:18 GMT" + "Tue, 10 May 2016 04:20:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5420/providers/Microsoft.Resources/deployments/deplamlcp1746?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTQyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AxNzQ2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6518/providers/Microsoft.Resources/deployments/deplamlcp3910?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AzOTEwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -289,10 +235,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.Resources/deployments/deplamlcp1746\",\r\n \"name\": \"deplamlcp1746\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp1746\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-04-01-privatepreview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-05-08T05:09:55.8627477Z\",\r\n \"duration\": \"PT7.3007206S\",\r\n \"correlationId\": \"0dcbacb1-1b22-414a-979d-bb6ef2bb3e79\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp1746\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.Resources/deployments/deplamlcp3910\",\r\n \"name\": \"deplamlcp3910\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp3910\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-05-10T04:19:57.9653078Z\",\r\n \"duration\": \"PT7.7092983S\",\r\n \"correlationId\": \"07ae06ab-53d0-42da-b835-a60706ae8815\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp3910\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "838" + "831" ], "Content-Type": [ "application/json; charset=utf-8" @@ -304,16 +250,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14959" ], "x-ms-request-id": [ - "279b8f8e-8d56-4732-8a1f-ba847c773f38" + "746de034-c0b9-4679-8680-a78b0bc92779" ], "x-ms-correlation-request-id": [ - "279b8f8e-8d56-4732-8a1f-ba847c773f38" + "746de034-c0b9-4679-8680-a78b0bc92779" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051019Z:279b8f8e-8d56-4732-8a1f-ba847c773f38" + "CENTRALUS:20160510T042021Z:746de034-c0b9-4679-8680-a78b0bc92779" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -322,19 +268,19 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:10:18 GMT" + "Tue, 10 May 2016 04:20:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5420/providers/Microsoft.MachineLearning//commitmentPlans/amlcp1746?api-version=2016-04-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTQyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwMTc0Nj9hcGktdmVyc2lvbj0yMDE2LTA0LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6518/providers/Microsoft.MachineLearning//commitmentPlans/amlcp3910?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwMzkxMD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18009395-b106-4197-bf55-97754c5f2b66" + "24fecbab-2a3f-44c2-9979-910a8d156eb1" ], "accept-language": [ "en-US" @@ -343,7 +289,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"etag\": \"00001501-0000-0000-0000-572eca200000\",\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.MachineLearning/commitmentPlans/amlcp1746\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"amlcp1746\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2016-05-08T05:09:51.9527661Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 100.0,\r\n \"amount\": 100.0,\r\n \"includedQuantityMeter\": \"93284d87-d24e-448a-9d4c-c5df44b3bb52\",\r\n \"overageMeter\": \"60c709a8-0783-47cd-a4f8-662814c46aa0\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 10000.0,\r\n \"amount\": 10000.0,\r\n \"includedQuantityMeter\": \"a22f9766-117b-4865-8389-631cb8f852b1\",\r\n \"overageMeter\": \"d9f14fca-2680-44a1-83ca-511364fe3201\"\r\n }\r\n },\r\n \"planMeter\": \"2d38cd70-6831-4e50-acc4-4c72d6ef57c1\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"PLAN_SKU_NAME\",\r\n \"tier\": \"PLAN_SKU_TIER\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", + "ResponseBody": "{\r\n \"etag\": \"00002901-0000-0000-0000-5731616b0000\",\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.MachineLearning/commitmentPlans/amlcp3910\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"amlcp3910\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2016-05-10T04:19:54.0114785Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 100.0,\r\n \"amount\": 100.0,\r\n \"includedQuantityMeter\": \"93284d87-d24e-448a-9d4c-c5df44b3bb52\",\r\n \"overageMeter\": \"60c709a8-0783-47cd-a4f8-662814c46aa0\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 10000.0,\r\n \"amount\": 10000.0,\r\n \"includedQuantityMeter\": \"a22f9766-117b-4865-8389-631cb8f852b1\",\r\n \"overageMeter\": \"d9f14fca-2680-44a1-83ca-511364fe3201\"\r\n }\r\n },\r\n \"planMeter\": \"2d38cd70-6831-4e50-acc4-4c72d6ef57c1\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"PLAN_SKU_NAME\",\r\n \"tier\": \"PLAN_SKU_TIER\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", "ResponseHeaders": { "Content-Length": [ "992" @@ -358,16 +304,16 @@ "no-cache" ], "x-ms-request-id": [ - "179f8879-f32c-42da-a87d-fd0e343bf6f8" + "6b2861df-31c5-4003-9830-0fce26b0a3f5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14958" ], "x-ms-correlation-request-id": [ - "4d4e0e78-83ba-4616-8486-318f4283a8fd" + "f50a81db-aa96-4b8a-bad6-0c14da8ebcfd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051019Z:4d4e0e78-83ba-4616-8486-318f4283a8fd" + "CENTRALUS:20160510T042022Z:f50a81db-aa96-4b8a-bad6-0c14da8ebcfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,7 +322,7 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:10:19 GMT" + "Tue, 10 May 2016 04:20:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -385,10 +331,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.MachineLearning/webServices/amlws2197?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNTQyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIxOTc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.MachineLearning/webServices/amlws5569?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNjUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Njk/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.MachineLearning/commitmentPlans/amlcp1746\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.MachineLearning/commitmentPlans/amlcp3910\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -397,7 +343,7 @@ "5158" ], "x-ms-client-request-id": [ - "98df50c0-35e2-428e-84d5-fe644371fc38" + "f4c88106-e7b7-41db-8c3e-3f51b16c141f" ], "accept-language": [ "en-US" @@ -406,7 +352,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.MachineLearning/webServices/amlws2197\",\r\n \"name\": \"amlws2197\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.MachineLearning/commitmentPlans/amlcp1746\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.MachineLearning/webServices/amlws5569\",\r\n \"name\": \"amlws5569\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.MachineLearning/commitmentPlans/amlcp3910\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "5423" @@ -421,22 +367,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/7781e19b-cbc5-4105-b451-d833919ae03e?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/e0f9d08d-b690-42f6-b83e-ae13966292e6?api-version=2016-05-01-preview" ], "Azure-AsyncOperationPercentComplete": [ "0" ], "x-ms-correlation-request-id": [ - "59fa2391-c122-4c2a-b623-4c0351beabd9" + "32235332-2c62-4d15-96d0-411009d30c4c" ], "x-ms-request-id": [ - "8375a91e-b236-4c4f-a015-78913e18ee66" + "51d02fbd-ac60-45fd-a1f9-e0d47344103f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1168" + "1199" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051022Z:59fa2391-c122-4c2a-b623-4c0351beabd9" + "CENTRALUS:20160510T042031Z:32235332-2c62-4d15-96d0-411009d30c4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,7 +391,7 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:10:22 GMT" + "Tue, 10 May 2016 04:20:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -454,8 +400,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/7781e19b-cbc5-4105-b451-d833919ae03e?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzc3ODFlMTliLWNiYzUtNDEwNS1iNDUxLWQ4MzM5MTlhZTAzZT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/e0f9d08d-b690-42f6-b83e-ae13966292e6?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2UwZjlkMDhkLWI2OTAtNDJmNi1iODNlLWFlMTM5NjYyOTJlNj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -463,61 +409,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/7781e19b-cbc5-4105-b451-d833919ae03e\",\r\n \"name\": \"7781e19b-cbc5-4105-b451-d833919ae03e\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-08T05:10:22.506499Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/e0f9d08d-b690-42f6-b83e-ae13966292e6\",\r\n \"name\": \"e0f9d08d-b690-42f6-b83e-ae13966292e6\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-10T04:20:32.7170048Z\",\r\n \"percentComplete\": 0.55555555555555558\r\n}", "ResponseHeaders": { "Content-Length": [ - "352" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-correlation-request-id": [ - "c28e5812-180b-447b-84b8-fbaae3ed8661" - ], - "x-ms-request-id": [ - "42376a51-cec8-40ed-835d-7984a3b68025" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051027Z:c28e5812-180b-447b-84b8-fbaae3ed8661" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 08 May 2016 05:10:26 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/7781e19b-cbc5-4105-b451-d833919ae03e?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzc3ODFlMTliLWNiYzUtNDEwNS1iNDUxLWQ4MzM5MTlhZTAzZT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/7781e19b-cbc5-4105-b451-d833919ae03e\",\r\n \"name\": \"7781e19b-cbc5-4105-b451-d833919ae03e\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-08T05:10:22.506499Z\",\r\n \"percentComplete\": 0.77777777777777779\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "352" + "353" ], "Content-Type": [ "application/json; charset=utf-8" @@ -529,16 +424,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "d7e56d8b-0f21-44f2-9b1f-0e76d6e77e80" + "04b309eb-0178-4b60-9576-3b63cc8dcf4a" ], "x-ms-request-id": [ - "bee3b7d7-c0f8-44b3-b82c-768fcb0404f9" + "30e47067-3db3-4413-becc-3693f8deedfb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14999" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051032Z:d7e56d8b-0f21-44f2-9b1f-0e76d6e77e80" + "CENTRALUS:20160510T042036Z:04b309eb-0178-4b60-9576-3b63cc8dcf4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -547,7 +442,7 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:10:32 GMT" + "Tue, 10 May 2016 04:20:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -556,8 +451,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/7781e19b-cbc5-4105-b451-d833919ae03e?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzc3ODFlMTliLWNiYzUtNDEwNS1iNDUxLWQ4MzM5MTlhZTAzZT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/e0f9d08d-b690-42f6-b83e-ae13966292e6?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2UwZjlkMDhkLWI2OTAtNDJmNi1iODNlLWFlMTM5NjYyOTJlNj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -565,10 +460,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/7781e19b-cbc5-4105-b451-d833919ae03e\",\r\n \"name\": \"7781e19b-cbc5-4105-b451-d833919ae03e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-08T05:10:22.506499Z\",\r\n \"endTime\": \"2016-05-08T05:10:33.0522263Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/e0f9d08d-b690-42f6-b83e-ae13966292e6\",\r\n \"name\": \"e0f9d08d-b690-42f6-b83e-ae13966292e6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-10T04:20:32.7170048Z\",\r\n \"endTime\": \"2016-05-10T04:20:41.2252286Z\",\r\n \"percentComplete\": 0.88888888888888884\r\n}", "ResponseHeaders": { "Content-Length": [ - "379" + "396" ], "Content-Type": [ "application/json; charset=utf-8" @@ -580,16 +475,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "cd0cf668-be0d-4fc1-95a7-c1a3e98b82f2" + "1e2ee3de-6ea6-4caf-8e8d-26181d7101ac" ], "x-ms-request-id": [ - "c610dd54-647a-42b2-814f-274134764227" + "37904401-e052-47ff-ab43-69acec563d34" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "14998" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051037Z:cd0cf668-be0d-4fc1-95a7-c1a3e98b82f2" + "CENTRALUS:20160510T042041Z:1e2ee3de-6ea6-4caf-8e8d-26181d7101ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,7 +493,7 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:10:37 GMT" + "Tue, 10 May 2016 04:20:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -607,8 +502,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.MachineLearning/webServices/amlws2197?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNTQyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIxOTc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.MachineLearning/webServices/amlws5569?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNjUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Njk/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -616,10 +511,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.MachineLearning/webServices/amlws2197\",\r\n \"name\": \"amlws2197\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-08T05:10:22.3024752Z\",\r\n \"modifiedOn\": \"2016-05-08T05:10:33.1592611Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/bfb6b4158ae44eec992d97fcfb48e750/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.MachineLearning/webServices/amlws5569\",\r\n \"name\": \"amlws5569\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:20:30.1289623Z\",\r\n \"modifiedOn\": \"2016-05-10T04:20:41.3807737Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/9f2709dece064615b725f6a9741af651/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "5176" + "5172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -631,16 +526,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "cc8d6110-5f22-41f4-95dd-632a42811fdd" + "48bfa3b9-1c3b-4346-be10-3f347fd3cd7d" ], "x-ms-request-id": [ - "42e67a84-a993-4847-91ee-1c914636a964" + "b9d7b562-49fa-443b-b84b-f0d538d1a6d7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "14997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051038Z:cc8d6110-5f22-41f4-95dd-632a42811fdd" + "CENTRALUS:20160510T042041Z:48bfa3b9-1c3b-4346-be10-3f347fd3cd7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -649,7 +544,7 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:10:37 GMT" + "Tue, 10 May 2016 04:20:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -658,8 +553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.MachineLearning/webServices/amlws2197?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNTQyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIxOTc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.MachineLearning/webServices/amlws5569?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNjUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Njk/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -667,10 +562,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.MachineLearning/webServices/amlws2197\",\r\n \"name\": \"amlws2197\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-08T05:10:22.3024752Z\",\r\n \"modifiedOn\": \"2016-05-08T05:10:51.2878296Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"description was updated!\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/bfb6b4158ae44eec992d97fcfb48e750/swagger.json\",\r\n \"readOnly\": false,\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.MachineLearning/webServices/amlws5569\",\r\n \"name\": \"amlws5569\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:20:30.1289623Z\",\r\n \"modifiedOn\": \"2016-05-10T04:20:50.0826005Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"description was updated!\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/9f2709dece064615b725f6a9741af651/swagger.json\",\r\n \"readOnly\": false,\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "5220" + "5216" ], "Content-Type": [ "application/json; charset=utf-8" @@ -682,16 +577,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "ea35dd82-1c44-49f0-b9cf-1de3c7eb3f75" + "d26a0aed-de92-4451-a3a1-8a7e243f5f99" ], "x-ms-request-id": [ - "d5050f70-d3b3-498b-820a-2252c71c889a" + "7c0dfe88-3d64-4e6a-b057-488abdcf053b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" + "14994" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051054Z:ea35dd82-1c44-49f0-b9cf-1de3c7eb3f75" + "CENTRALUS:20160510T042053Z:d26a0aed-de92-4451-a3a1-8a7e243f5f99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -700,7 +595,7 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:10:54 GMT" + "Tue, 10 May 2016 04:20:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -709,8 +604,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.MachineLearning/webServices/amlws2197?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNTQyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIxOTc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.MachineLearning/webServices/amlws5569?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNjUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Njk/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"description\": \"description was updated!\",\r\n \"keys\": {\r\n \"primary\": \"f6ae3d003c63457ab4c5997effb5e4dc\"\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -721,7 +616,7 @@ "232" ], "x-ms-client-request-id": [ - "31cec885-3f47-4315-8ac6-27589e472b95" + "e0be4d03-b3c1-4893-964d-e19bdc541d55" ], "accept-language": [ "en-US" @@ -730,10 +625,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.MachineLearning/webServices/amlws2197\",\r\n \"name\": \"amlws2197\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"createdOn\": \"2016-05-08T05:10:22.3024752Z\",\r\n \"modifiedOn\": \"2016-05-08T05:10:39.243666Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/bfb6b4158ae44eec992d97fcfb48e750/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.MachineLearning/webServices/amlws5569\",\r\n \"name\": \"amlws5569\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"createdOn\": \"2016-05-10T04:20:30.1289623Z\",\r\n \"modifiedOn\": \"2016-05-10T04:20:42.4536811Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/9f2709dece064615b725f6a9741af651/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "5178" + "5175" ], "Content-Type": [ "application/json; charset=utf-8" @@ -745,22 +640,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/713059e1-e6e4-43ed-9786-8cfc17efe20f?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/c94b2a0b-535d-438d-95b1-03202c3f4029?api-version=2016-05-01-preview" ], "Azure-AsyncOperationPercentComplete": [ "0" ], "x-ms-correlation-request-id": [ - "0ed85349-4a0c-461d-b5c3-7360ac85dbac" + "7e88b7d5-ef7a-4c19-907a-dd253bb8d9d3" ], "x-ms-request-id": [ - "b0cee00f-56db-403a-8b0c-0f1ae5451849" + "c44022bc-93ea-4c76-ad8b-b66ea26d7d5f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1167" + "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051039Z:0ed85349-4a0c-461d-b5c3-7360ac85dbac" + "CENTRALUS:20160510T042042Z:7e88b7d5-ef7a-4c19-907a-dd253bb8d9d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -769,7 +664,7 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:10:38 GMT" + "Tue, 10 May 2016 04:20:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -778,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/713059e1-e6e4-43ed-9786-8cfc17efe20f?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzcxMzA1OWUxLWU2ZTQtNDNlZC05Nzg2LThjZmMxN2VmZTIwZj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/c94b2a0b-535d-438d-95b1-03202c3f4029?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2M5NGIyYTBiLTUzNWQtNDM4ZC05NWIxLTAzMjAyYzNmNDAyOT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -787,7 +682,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/713059e1-e6e4-43ed-9786-8cfc17efe20f\",\r\n \"name\": \"713059e1-e6e4-43ed-9786-8cfc17efe20f\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-08T05:10:43.0865205Z\",\r\n \"percentComplete\": 0.33333333333333331\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/c94b2a0b-535d-438d-95b1-03202c3f4029\",\r\n \"name\": \"c94b2a0b-535d-438d-95b1-03202c3f4029\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-10T04:20:43.5813198Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", "ResponseHeaders": { "Content-Length": [ "353" @@ -802,16 +697,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "2f70f286-410e-4ef1-986c-715fc27fe94d" + "16062de3-6a05-4576-b57d-9f29f61849ab" ], "x-ms-request-id": [ - "eb10cbed-2ea1-4b35-937e-b00936e9f8b3" + "ff2e0087-9a6c-4b1c-ae83-46e303c57aa2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14996" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051044Z:2f70f286-410e-4ef1-986c-715fc27fe94d" + "CENTRALUS:20160510T042048Z:16062de3-6a05-4576-b57d-9f29f61849ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -820,7 +715,7 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:10:44 GMT" + "Tue, 10 May 2016 04:20:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -829,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/713059e1-e6e4-43ed-9786-8cfc17efe20f?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzcxMzA1OWUxLWU2ZTQtNDNlZC05Nzg2LThjZmMxN2VmZTIwZj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/c94b2a0b-535d-438d-95b1-03202c3f4029?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2M5NGIyYTBiLTUzNWQtNDM4ZC05NWIxLTAzMjAyYzNmNDAyOT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -838,58 +733,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/713059e1-e6e4-43ed-9786-8cfc17efe20f\",\r\n \"name\": \"713059e1-e6e4-43ed-9786-8cfc17efe20f\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-08T05:10:43.0865205Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "353" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-correlation-request-id": [ - "c1da579a-a6e7-4ca6-81d6-6d2b5ee84be6" - ], - "x-ms-request-id": [ - "7087e439-5ef0-415d-a337-ca5d877398fd" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051049Z:c1da579a-a6e7-4ca6-81d6-6d2b5ee84be6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sun, 08 May 2016 05:10:48 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/713059e1-e6e4-43ed-9786-8cfc17efe20f?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzcxMzA1OWUxLWU2ZTQtNDNlZC05Nzg2LThjZmMxN2VmZTIwZj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/713059e1-e6e4-43ed-9786-8cfc17efe20f\",\r\n \"name\": \"713059e1-e6e4-43ed-9786-8cfc17efe20f\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-08T05:10:43.0865205Z\",\r\n \"endTime\": \"2016-05-08T05:10:51.2092199Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/c94b2a0b-535d-438d-95b1-03202c3f4029\",\r\n \"name\": \"c94b2a0b-535d-438d-95b1-03202c3f4029\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-10T04:20:43.5813198Z\",\r\n \"endTime\": \"2016-05-10T04:20:50.0177075Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { "Content-Length": [ "380" @@ -904,16 +748,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "4365ed13-e80a-4628-b3ab-9158298a55c0" + "3f9d898e-557e-4e28-a355-517a74cb168a" ], "x-ms-request-id": [ - "e9c79061-f10f-4e16-ac0a-813f0a645c60" + "1433e467-c9d0-4b79-8581-8d5423477e86" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "14995" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051054Z:4365ed13-e80a-4628-b3ab-9158298a55c0" + "CENTRALUS:20160510T042053Z:3f9d898e-557e-4e28-a355-517a74cb168a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -922,7 +766,7 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:10:54 GMT" + "Tue, 10 May 2016 04:20:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -931,13 +775,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.MachineLearning/webServices/amlws2197/listKeys?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNTQyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIxOTcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.MachineLearning/webServices/amlws5569/listKeys?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNjUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1NjkvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc58b20-4909-4b10-9f79-f0cf6623c265" + "ef0d00c8-5b96-4d5a-a959-93a18268d1aa" ], "accept-language": [ "en-US" @@ -961,16 +805,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "ef7a0190-60d7-4482-9261-9199cffdf580" + "50f313d9-f35c-4c8b-ae4f-58e6a5a185a2" ], "x-ms-request-id": [ - "017af9ff-3d24-496f-adae-5dee29fb5d14" + "f1779ef6-6a01-4283-9545-55ecdbfa0599" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" + "14993" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051054Z:ef7a0190-60d7-4482-9261-9199cffdf580" + "CENTRALUS:20160510T042053Z:50f313d9-f35c-4c8b-ae4f-58e6a5a185a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -979,7 +823,7 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:10:54 GMT" + "Tue, 10 May 2016 04:20:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -988,13 +832,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5420/providers/Microsoft.MachineLearning/webServices/amlws2197?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNTQyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIxOTc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6518/providers/Microsoft.MachineLearning/webServices/amlws5569?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNjUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Njk/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d17b298d-53dc-4f17-85b8-7ead100b88a7" + "b7cf81a6-a4b2-4727-bf5a-1c8a73a16baf" ], "accept-language": [ "en-US" @@ -1015,22 +859,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/fc061f65-1d46-46cb-85bf-0cf6a3216229?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/3a454899-e1ad-4484-a8a6-2c708b6afdf1?api-version=2016-05-01-preview" ], "Azure-AsyncOperationPercentComplete": [ "0" ], "x-ms-correlation-request-id": [ - "0228d73b-78ab-4bae-b51d-60015f230268" + "94a9aa16-8fd4-432c-a46c-8dc44e54441b" ], "x-ms-request-id": [ - "f1a56682-42a3-4f55-816e-23333d583fb1" + "bc97675a-1905-4912-aa88-da9c78a7763f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1166" + "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051055Z:0228d73b-78ab-4bae-b51d-60015f230268" + "CENTRALUS:20160510T042054Z:94a9aa16-8fd4-432c-a46c-8dc44e54441b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1039,10 +883,10 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:10:55 GMT" + "Tue, 10 May 2016 04:20:53 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/fc061f65-1d46-46cb-85bf-0cf6a3216229?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/3a454899-e1ad-4484-a8a6-2c708b6afdf1?api-version=2016-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1051,8 +895,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/fc061f65-1d46-46cb-85bf-0cf6a3216229?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2ZjMDYxZjY1LTFkNDYtNDZjYi04NWJmLTBjZjZhMzIxNjIyOT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/3a454899-e1ad-4484-a8a6-2c708b6afdf1?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzNhNDU0ODk5LWUxYWQtNDQ4NC1hOGE2LTJjNzA4YjZhZmRmMT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1060,7 +904,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/fc061f65-1d46-46cb-85bf-0cf6a3216229\",\r\n \"name\": \"fc061f65-1d46-46cb-85bf-0cf6a3216229\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-08T05:10:58.4804884Z\",\r\n \"endTime\": \"2016-05-08T05:10:59.6929988Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/3a454899-e1ad-4484-a8a6-2c708b6afdf1\",\r\n \"name\": \"3a454899-e1ad-4484-a8a6-2c708b6afdf1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-10T04:20:57.4732411Z\",\r\n \"endTime\": \"2016-05-10T04:20:58.5205252Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { "Content-Length": [ "380" @@ -1075,16 +919,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "de9bc35b-fbc5-4c45-b82e-a4e9703651a8" + "569defb7-6a26-4489-992a-1b09806d8ca2" ], "x-ms-request-id": [ - "7e69757c-b885-4891-b6ce-1893aaf3355f" + "b1f3453f-e400-4179-8a64-e56098574fe1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" + "14992" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051100Z:de9bc35b-fbc5-4c45-b82e-a4e9703651a8" + "CENTRALUS:20160510T042059Z:569defb7-6a26-4489-992a-1b09806d8ca2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1093,7 +937,7 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:10:59 GMT" + "Tue, 10 May 2016 04:20:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1102,13 +946,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5420/providers/Microsoft.MachineLearning//commitmentPlans/amlcp1746?api-version=2016-04-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTQyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwMTc0Nj9hcGktdmVyc2lvbj0yMDE2LTA0LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6518/providers/Microsoft.MachineLearning//commitmentPlans/amlcp3910?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjUxOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwMzkxMD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44a0319e-223d-4b6f-826d-ac05c2392f35" + "7a5c55b2-7c4a-4d41-9b51-1ebb8e8646e6" ], "accept-language": [ "en-US" @@ -1129,16 +973,16 @@ "no-cache" ], "x-ms-request-id": [ - "067cc4f2-a9a1-4ee1-a1a4-1ac899ef8647" + "0f7a76a4-9d1e-4a5b-9034-0bd7d5b1e14c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1196" ], "x-ms-correlation-request-id": [ - "71b0e68f-fdc3-4e4c-870f-a66c7729cc3b" + "238d3327-db2f-46cd-ba0d-6f328142eaed" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051101Z:71b0e68f-fdc3-4e4c-870f-a66c7729cc3b" + "CENTRALUS:20160510T042100Z:238d3327-db2f-46cd-ba0d-6f328142eaed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1147,7 +991,7 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:11:00 GMT" + "Tue, 10 May 2016 04:21:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1156,13 +1000,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5420/providers/Microsoft.Resources/deployments/deplamlcp1746?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTQyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AxNzQ2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6518/providers/Microsoft.Resources/deployments/deplamlcp3910?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjUxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AzOTEwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c97e1be-7529-4778-98d9-8a958711df81" + "a36bf579-e1a8-4a3b-94f9-0a404a98f460" ], "accept-language": [ "en-US" @@ -1186,16 +1030,67 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1174" + "1195" + ], + "x-ms-request-id": [ + "d08548f7-51e3-4941-933a-ce3a2eb83b96" + ], + "x-ms-correlation-request-id": [ + "d08548f7-51e3-4941-933a-ce3a2eb83b96" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20160510T042101Z:d08548f7-51e3-4941-933a-ce3a2eb83b96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 10 May 2016 04:21:01 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc2NTE4LURFUExBTUxDUDM5MTAtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc2NTE4LURFUExBTUxDUDM5MTAtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzJOVEU0TFVSRlVFeEJUVXhEVURNNU1UQXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" ], "x-ms-request-id": [ - "80f15f94-39f6-4453-b712-b86ce4951729" + "00671894-452e-421e-8078-b0980b82a836" ], "x-ms-correlation-request-id": [ - "80f15f94-39f6-4453-b712-b86ce4951729" + "00671894-452e-421e-8078-b0980b82a836" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051101Z:80f15f94-39f6-4453-b712-b86ce4951729" + "CENTRALUS:20160510T042131Z:00671894-452e-421e-8078-b0980b82a836" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1204,17 +1099,17 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:11:01 GMT" + "Tue, 10 May 2016 04:21:31 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc1NDIwLURFUExBTUxDUDE3NDYtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc2NTE4LURFUExBTUxDUDM5MTAtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc1NDIwLURFUExBTUxDUDE3NDYtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzFOREl3TFVSRlVFeEJUVXhEVURFM05EWXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc2NTE4LURFUExBTUxDUDM5MTAtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzJOVEU0TFVSRlVFeEJUVXhEVURNNU1UQXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1231,16 +1126,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14990" ], "x-ms-request-id": [ - "cfda30fa-f781-4533-9a4e-23838726262a" + "cdb933e2-d635-45d9-800d-73b8291fab45" ], "x-ms-correlation-request-id": [ - "cfda30fa-f781-4533-9a4e-23838726262a" + "cdb933e2-d635-45d9-800d-73b8291fab45" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051131Z:cfda30fa-f781-4533-9a4e-23838726262a" + "CENTRALUS:20160510T042201Z:cdb933e2-d635-45d9-800d-73b8291fab45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1249,19 +1144,19 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:11:31 GMT" + "Tue, 10 May 2016 04:22:00 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5420?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTQyMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6518?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjUxOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f72950df-b6e5-4c04-8ecf-522124d8151a" + "fcaabd79-72a5-451d-b05d-ee7f0bbe2d3e" ], "accept-language": [ "en-US" @@ -1285,16 +1180,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1173" + "1194" ], "x-ms-request-id": [ - "bde82d09-9d07-42db-b73c-79820f90ad33" + "c6a79bba-4b09-4bfd-ad9a-4440536d021f" ], "x-ms-correlation-request-id": [ - "bde82d09-9d07-42db-b73c-79820f90ad33" + "c6a79bba-4b09-4bfd-ad9a-4440536d021f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051132Z:bde82d09-9d07-42db-b73c-79820f90ad33" + "CENTRALUS:20160510T042202Z:c6a79bba-4b09-4bfd-ad9a-4440536d021f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1303,17 +1198,17 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:11:31 GMT" + "Tue, 10 May 2016 04:22:02 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzU0MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzY1MTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzU0MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6VTBNakF0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzY1MTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6WTFNVGd0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1336,16 +1231,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "14989" ], "x-ms-request-id": [ - "b7157320-eac4-4d33-be60-f91fc4112d1c" + "f4d683f4-c84a-4a95-9d02-0d942abec671" ], "x-ms-correlation-request-id": [ - "b7157320-eac4-4d33-be60-f91fc4112d1c" + "f4d683f4-c84a-4a95-9d02-0d942abec671" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051202Z:b7157320-eac4-4d33-be60-f91fc4112d1c" + "CENTRALUS:20160510T042232Z:f4d683f4-c84a-4a95-9d02-0d942abec671" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1354,17 +1249,17 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:12:01 GMT" + "Tue, 10 May 2016 04:22:32 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzU0MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzY1MTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzU0MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6VTBNakF0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzY1MTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6WTFNVGd0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1384,16 +1279,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14988" ], "x-ms-request-id": [ - "3bcc91db-78da-4016-9401-c79df5f2f2a5" + "a8a3aeb6-84d0-439f-8f91-dd5999d2f053" ], "x-ms-correlation-request-id": [ - "3bcc91db-78da-4016-9401-c79df5f2f2a5" + "a8a3aeb6-84d0-439f-8f91-dd5999d2f053" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160508T051232Z:3bcc91db-78da-4016-9401-c79df5f2f2a5" + "CENTRALUS:20160510T042302Z:a8a3aeb6-84d0-439f-8f91-dd5999d2f053" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1402,7 +1297,7 @@ "no-cache" ], "Date": [ - "Sun, 08 May 2016 05:12:32 GMT" + "Tue, 10 May 2016 04:23:02 GMT" ] }, "StatusCode": 200 @@ -1410,12 +1305,12 @@ ], "Names": { "RunAMLWebServiceTestScenario": [ - "amlws2197", - "amlrg5420", - "amlcp1746" + "amlws5569", + "amlrg6518", + "amlcp3910" ] }, "Variables": { - "SubscriptionId": "7b373400-c82e-453b-a97b-c53e14325b8b" + "SubscriptionId": "80c77c76-74ba-4c8c-8229-4c3b2957990c" } } \ No newline at end of file diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebService.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebService.json index 11ace7f074bea..e5af1e1f4ea2c 100644 --- a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebService.json +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebService.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5057?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTA1Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6278?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjI3OD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { @@ -13,7 +13,7 @@ "38" ], "x-ms-client-request-id": [ - "d7e5dbc5-a9b1-4394-a503-f7c0a78763aa" + "fc74c3bd-b0b2-46b1-ae68-4ade05356782" ], "accept-language": [ "en-US" @@ -22,7 +22,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057\",\r\n \"name\": \"amlrg5057\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278\",\r\n \"name\": \"amlrg6278\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "179" @@ -37,16 +37,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-request-id": [ - "dfd2d67a-68af-48e6-9091-a3ced68e9ff7" + "be278c87-af8b-42f4-977e-fe13868bc25c" ], "x-ms-correlation-request-id": [ - "dfd2d67a-68af-48e6-9091-a3ced68e9ff7" + "be278c87-af8b-42f4-977e-fe13868bc25c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185706Z:dfd2d67a-68af-48e6-9091-a3ced68e9ff7" + "CENTRALUS:20160510T043016Z:be278c87-af8b-42f4-977e-fe13868bc25c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,73 +55,19 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:57:06 GMT" + "Tue, 10 May 2016 04:30:16 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ed008a03-1d96-4640-942d-f8ea4f12b5d8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-10-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"WebServices\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CommitmentPlan\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1391" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-request-id": [ - "4cf11bf7-e4f2-4fe7-b2a8-ed9c6afbdbfe" - ], - "x-ms-correlation-request-id": [ - "4cf11bf7-e4f2-4fe7-b2a8-ed9c6afbdbfe" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185706Z:4cf11bf7-e4f2-4fe7-b2a8-ed9c6afbdbfe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 May 2016 18:57:06 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7064a8ab-e81f-4769-831b-597ee9c42ea5" + "ca843789-8260-41c1-97fe-4020cc3df9a7" ], "accept-language": [ "en-US" @@ -130,10 +76,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-10-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"WebServices\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CommitmentPlan\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\",\r\n \"2016-04-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registering\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1391" + "1186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -145,16 +91,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14987" ], "x-ms-request-id": [ - "6b94ad34-bc99-4dda-9cc9-7260191dadc5" + "9849d93f-758f-4c74-aa95-299e7d8f2d2d" ], "x-ms-correlation-request-id": [ - "6b94ad34-bc99-4dda-9cc9-7260191dadc5" + "9849d93f-758f-4c74-aa95-299e7d8f2d2d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185802Z:6b94ad34-bc99-4dda-9cc9-7260191dadc5" + "CENTRALUS:20160510T043016Z:9849d93f-758f-4c74-aa95-299e7d8f2d2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -163,25 +109,25 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:58:02 GMT" + "Tue, 10 May 2016 04:30:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5057/providers/Microsoft.Resources/deployments/deplamlcp2785?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AyNzg1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6278/providers/Microsoft.Resources/deployments/deplamlcp7076?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjI3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3MDc2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"string\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"[parameters('apiVersion')]\",\r\n \"name\": \"[parameters('planName')]\",\r\n \"type\": \"Microsoft.MachineLearning/CommitmentPlans\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('planSkuName')]\",\r\n \"tier\": \"[parameters('planSkuTier')]\",\r\n \"capacity\": \"1\"\r\n },\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"planName\": {\r\n \"value\": \"amlcp2785\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"value\": \"2016-04-01-privatepreview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"string\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"[parameters('apiVersion')]\",\r\n \"name\": \"[parameters('planName')]\",\r\n \"type\": \"Microsoft.MachineLearning/CommitmentPlans\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('planSkuName')]\",\r\n \"tier\": \"[parameters('planSkuTier')]\",\r\n \"capacity\": \"1\"\r\n },\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"planName\": {\r\n \"value\": \"amlcp7076\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1281" + "1274" ], "x-ms-client-request-id": [ - "64553fdd-32e9-4150-8cfd-e2bb1aa76e34" + "ecdd031f-e9c0-4883-8844-dd5faa0c9115" ], "accept-language": [ "en-US" @@ -190,10 +136,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.Resources/deployments/deplamlcp2785\",\r\n \"name\": \"deplamlcp2785\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp2785\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-04-01-privatepreview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-05-09T18:57:07.5720549Z\",\r\n \"duration\": \"PT0.1578645S\",\r\n \"correlationId\": \"c5db180f-bfad-406b-adb4-f3f6e619c974\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.Resources/deployments/deplamlcp7076\",\r\n \"name\": \"deplamlcp7076\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp7076\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-05-10T04:30:17.1003157Z\",\r\n \"duration\": \"PT0.4676323S\",\r\n \"correlationId\": \"a49c20e2-b717-4c95-8753-89bc59ec3731\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "756" + "749" ], "Content-Type": [ "application/json; charset=utf-8" @@ -205,19 +151,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5057/providers/Microsoft.Resources/deployments/deplamlcp2785/operationStatuses/08587387866580635015?api-version=2015-11-01" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6278/providers/Microsoft.Resources/deployments/deplamlcp7076/operationStatuses/08587387522688449875?api-version=2015-11-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-request-id": [ - "c5db180f-bfad-406b-adb4-f3f6e619c974" + "a49c20e2-b717-4c95-8753-89bc59ec3731" ], "x-ms-correlation-request-id": [ - "c5db180f-bfad-406b-adb4-f3f6e619c974" + "a49c20e2-b717-4c95-8753-89bc59ec3731" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185707Z:c5db180f-bfad-406b-adb4-f3f6e619c974" + "CENTRALUS:20160510T043017Z:a49c20e2-b717-4c95-8753-89bc59ec3731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -226,14 +172,14 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:57:07 GMT" + "Tue, 10 May 2016 04:30:17 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5057/providers/Microsoft.Resources/deployments/deplamlcp2785/operationStatuses/08587387866580635015?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AyNzg1L29wZXJhdGlvblN0YXR1c2VzLzA4NTg3Mzg3ODY2NTgwNjM1MDE1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6278/providers/Microsoft.Resources/deployments/deplamlcp7076/operationStatuses/08587387522688449875?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjI3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3MDc2L29wZXJhdGlvblN0YXR1c2VzLzA4NTg3Mzg3NTIyNjg4NDQ5ODc1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -256,16 +202,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14986" ], "x-ms-request-id": [ - "e3792f4a-04eb-42b3-842e-9ae2f7fbee99" + "4230c48f-f206-4bfa-b615-4ba57157d318" ], "x-ms-correlation-request-id": [ - "e3792f4a-04eb-42b3-842e-9ae2f7fbee99" + "4230c48f-f206-4bfa-b615-4ba57157d318" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185737Z:e3792f4a-04eb-42b3-842e-9ae2f7fbee99" + "CENTRALUS:20160510T043047Z:4230c48f-f206-4bfa-b615-4ba57157d318" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -274,14 +220,14 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:57:37 GMT" + "Tue, 10 May 2016 04:30:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5057/providers/Microsoft.Resources/deployments/deplamlcp2785?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AyNzg1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6278/providers/Microsoft.Resources/deployments/deplamlcp7076?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjI3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3MDc2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -289,10 +235,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.Resources/deployments/deplamlcp2785\",\r\n \"name\": \"deplamlcp2785\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp2785\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-04-01-privatepreview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-05-09T18:57:24.0381113Z\",\r\n \"duration\": \"PT16.6239209S\",\r\n \"correlationId\": \"c5db180f-bfad-406b-adb4-f3f6e619c974\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp2785\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.Resources/deployments/deplamlcp7076\",\r\n \"name\": \"deplamlcp7076\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp7076\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-05-10T04:30:22.8218628Z\",\r\n \"duration\": \"PT6.1891794S\",\r\n \"correlationId\": \"a49c20e2-b717-4c95-8753-89bc59ec3731\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp7076\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "839" + "831" ], "Content-Type": [ "application/json; charset=utf-8" @@ -304,16 +250,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14985" ], "x-ms-request-id": [ - "66764a6f-bc32-421f-ade2-788e51b0e0be" + "aaaf9757-b45d-41b2-85c1-5cc155c11412" ], "x-ms-correlation-request-id": [ - "66764a6f-bc32-421f-ade2-788e51b0e0be" + "aaaf9757-b45d-41b2-85c1-5cc155c11412" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185737Z:66764a6f-bc32-421f-ade2-788e51b0e0be" + "CENTRALUS:20160510T043047Z:aaaf9757-b45d-41b2-85c1-5cc155c11412" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -322,19 +268,19 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:57:37 GMT" + "Tue, 10 May 2016 04:30:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5057/providers/Microsoft.MachineLearning//commitmentPlans/amlcp2785?api-version=2016-04-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwMjc4NT9hcGktdmVyc2lvbj0yMDE2LTA0LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6278/providers/Microsoft.MachineLearning//commitmentPlans/amlcp7076?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjI3OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNzA3Nj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33cf962e-2561-427d-a646-8e6e75d812db" + "14fc1ea4-61c1-48c9-a2be-e0b6e85c8847" ], "accept-language": [ "en-US" @@ -343,7 +289,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"etag\": \"00004101-0000-0000-0000-5730dd900000\",\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.MachineLearning/commitmentPlans/amlcp2785\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"amlcp2785\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2016-05-09T18:57:18.6291751Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 100.0,\r\n \"amount\": 100.0,\r\n \"includedQuantityMeter\": \"93284d87-d24e-448a-9d4c-c5df44b3bb52\",\r\n \"overageMeter\": \"60c709a8-0783-47cd-a4f8-662814c46aa0\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 10000.0,\r\n \"amount\": 10000.0,\r\n \"includedQuantityMeter\": \"a22f9766-117b-4865-8389-631cb8f852b1\",\r\n \"overageMeter\": \"d9f14fca-2680-44a1-83ca-511364fe3201\"\r\n }\r\n },\r\n \"planMeter\": \"2d38cd70-6831-4e50-acc4-4c72d6ef57c1\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"PLAN_SKU_NAME\",\r\n \"tier\": \"PLAN_SKU_TIER\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", + "ResponseBody": "{\r\n \"etag\": \"00002f01-0000-0000-0000-573163de0000\",\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.MachineLearning/commitmentPlans/amlcp7076\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"amlcp7076\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2016-05-10T04:30:20.8639686Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 100.0,\r\n \"amount\": 100.0,\r\n \"includedQuantityMeter\": \"93284d87-d24e-448a-9d4c-c5df44b3bb52\",\r\n \"overageMeter\": \"60c709a8-0783-47cd-a4f8-662814c46aa0\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 10000.0,\r\n \"amount\": 10000.0,\r\n \"includedQuantityMeter\": \"a22f9766-117b-4865-8389-631cb8f852b1\",\r\n \"overageMeter\": \"d9f14fca-2680-44a1-83ca-511364fe3201\"\r\n }\r\n },\r\n \"planMeter\": \"2d38cd70-6831-4e50-acc4-4c72d6ef57c1\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"PLAN_SKU_NAME\",\r\n \"tier\": \"PLAN_SKU_TIER\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", "ResponseHeaders": { "Content-Length": [ "992" @@ -358,16 +304,16 @@ "no-cache" ], "x-ms-request-id": [ - "b76ddbb2-0473-49fd-9ef3-3ef299844f3e" + "7030831a-9be9-401d-8c7e-15b2ff928dce" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14984" ], "x-ms-correlation-request-id": [ - "699c7fe9-94fc-4976-b62d-41d73f99ed61" + "64fff055-aa97-4cbe-9009-684fff4e60ce" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185738Z:699c7fe9-94fc-4976-b62d-41d73f99ed61" + "CENTRALUS:20160510T043048Z:64fff055-aa97-4cbe-9009-684fff4e60ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,7 +322,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:57:37 GMT" + "Tue, 10 May 2016 04:30:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -385,13 +331,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.MachineLearning/webServices/amlws8637?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNTA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czg2Mzc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.MachineLearning/webServices/amlws1973?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNjI3OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE5NzM/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f883454-6ef5-480d-9723-19e054cf2904" + "d18c45d5-ed0f-494b-a1de-cad86f99249f" ], "accept-language": [ "en-US" @@ -412,13 +358,13 @@ "1199" ], "x-ms-request-id": [ - "939e1105-2677-4874-bb74-0976daff72c5" + "c303456b-82d3-4571-ac92-5fa34c8d0a93" ], "x-ms-correlation-request-id": [ - "939e1105-2677-4874-bb74-0976daff72c5" + "c303456b-82d3-4571-ac92-5fa34c8d0a93" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185739Z:939e1105-2677-4874-bb74-0976daff72c5" + "CENTRALUS:20160510T043054Z:c303456b-82d3-4571-ac92-5fa34c8d0a93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,19 +373,19 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:57:38 GMT" + "Tue, 10 May 2016 04:30:53 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.MachineLearning/webServices/amlws8637?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNTA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czg2Mzc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.MachineLearning/webServices/amlws1973?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNjI3OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE5NzM/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25802651-c967-49ed-9073-2cf3604c9ef9" + "aea0fb4d-6dbe-4340-918f-561dad221e36" ], "accept-language": [ "en-US" @@ -460,22 +406,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/ee2e92d8-4445-4c45-8f12-d0785c83bf28?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4b7da585-e94b-47e9-bb82-9fd864d62267?api-version=2016-05-01-preview" ], "Azure-AsyncOperationPercentComplete": [ "0" ], "x-ms-correlation-request-id": [ - "e8d68e9b-8349-4832-8a34-cdecba98c0e1" + "655d901e-1689-4787-9b0d-c80d1a5ed7fb" ], "x-ms-request-id": [ - "83f92300-db92-4c3a-9d90-afdd283200c6" + "951d2b93-7a2c-4eaf-b106-8394a066a0e9" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185757Z:e8d68e9b-8349-4832-8a34-cdecba98c0e1" + "CENTRALUS:20160510T043108Z:655d901e-1689-4787-9b0d-c80d1a5ed7fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,10 +430,10 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:57:57 GMT" + "Tue, 10 May 2016 04:31:07 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/ee2e92d8-4445-4c45-8f12-d0785c83bf28?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/4b7da585-e94b-47e9-bb82-9fd864d62267?api-version=2016-05-01-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -496,10 +442,10 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.MachineLearning/webServices/amlws8637?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNTA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czg2Mzc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.MachineLearning/webServices/amlws1973?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNjI3OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE5NzM/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.MachineLearning/commitmentPlans/amlcp2785\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.MachineLearning/commitmentPlans/amlcp7076\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -508,7 +454,7 @@ "5158" ], "x-ms-client-request-id": [ - "fa0a9d2e-ae11-4a5c-aa28-819c90e2a4cb" + "55f0b80a-70cc-4c61-a1fb-7170faf4a3f5" ], "accept-language": [ "en-US" @@ -517,7 +463,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.MachineLearning/webServices/amlws8637\",\r\n \"name\": \"amlws8637\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.MachineLearning/commitmentPlans/amlcp2785\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.MachineLearning/webServices/amlws1973\",\r\n \"name\": \"amlws1973\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\",\r\n \"key\": \"WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.MachineLearning/commitmentPlans/amlcp7076\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "5423" @@ -532,22 +478,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/96c1b467-3600-45a6-9c16-6315b28e634b?api-version=2016-05-01-preview" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4db2c06d-91e0-40f1-84be-6247b97e2df6?api-version=2016-05-01-preview" ], "Azure-AsyncOperationPercentComplete": [ "0" ], "x-ms-correlation-request-id": [ - "e2ae2c84-01bb-447c-9197-82c317c0eb7b" + "df981b40-924a-4f05-b9d1-0c88634edd0d" ], "x-ms-request-id": [ - "79e94920-05ac-4b8c-99ba-94dd57ccc013" + "de452aab-d7bd-4b7c-a75c-53cf06f72dfc" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185741Z:e2ae2c84-01bb-447c-9197-82c317c0eb7b" + "CENTRALUS:20160510T043056Z:df981b40-924a-4f05-b9d1-0c88634edd0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,7 +502,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:57:40 GMT" + "Tue, 10 May 2016 04:30:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -565,8 +511,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/96c1b467-3600-45a6-9c16-6315b28e634b?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzk2YzFiNDY3LTM2MDAtNDVhNi05YzE2LTYzMTViMjhlNjM0Yj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4db2c06d-91e0-40f1-84be-6247b97e2df6?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzRkYjJjMDZkLTkxZTAtNDBmMS04NGJlLTYyNDdiOTdlMmRmNj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -574,7 +520,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/96c1b467-3600-45a6-9c16-6315b28e634b\",\r\n \"name\": \"96c1b467-3600-45a6-9c16-6315b28e634b\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-09T18:57:45.1521759Z\",\r\n \"percentComplete\": 0.33333333333333331\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4db2c06d-91e0-40f1-84be-6247b97e2df6\",\r\n \"name\": \"4db2c06d-91e0-40f1-84be-6247b97e2df6\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-10T04:30:58.0219164Z\",\r\n \"percentComplete\": 0.55555555555555558\r\n}", "ResponseHeaders": { "Content-Length": [ "353" @@ -589,16 +535,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "877771f7-3124-4afe-808b-40e2cebc5caa" + "21c060c8-4643-479f-b8fd-a6b74f021608" ], "x-ms-request-id": [ - "3918a216-4ad2-45b4-b927-476f8287fdda" + "5ed3d91d-f008-43d4-bd09-b98eb391dc4b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14998" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185746Z:877771f7-3124-4afe-808b-40e2cebc5caa" + "CENTRALUS:20160510T043102Z:21c060c8-4643-479f-b8fd-a6b74f021608" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -607,7 +553,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:57:45 GMT" + "Tue, 10 May 2016 04:31:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -616,8 +562,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/96c1b467-3600-45a6-9c16-6315b28e634b?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzk2YzFiNDY3LTM2MDAtNDVhNi05YzE2LTYzMTViMjhlNjM0Yj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4db2c06d-91e0-40f1-84be-6247b97e2df6?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzRkYjJjMDZkLTkxZTAtNDBmMS04NGJlLTYyNDdiOTdlMmRmNj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -625,10 +571,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/96c1b467-3600-45a6-9c16-6315b28e634b\",\r\n \"name\": \"96c1b467-3600-45a6-9c16-6315b28e634b\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-09T18:57:45.1521759Z\",\r\n \"percentComplete\": 0.77777777777777779\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4db2c06d-91e0-40f1-84be-6247b97e2df6\",\r\n \"name\": \"4db2c06d-91e0-40f1-84be-6247b97e2df6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-10T04:30:58.0219164Z\",\r\n \"endTime\": \"2016-05-10T04:31:07.0798258Z\",\r\n \"percentComplete\": 0.88888888888888884\r\n}", "ResponseHeaders": { "Content-Length": [ - "353" + "396" ], "Content-Type": [ "application/json; charset=utf-8" @@ -640,16 +586,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "06376f69-ba9e-490b-a532-ae2782ddd6b9" + "98a62e1d-5164-4cba-8db3-aee35fc024a2" ], "x-ms-request-id": [ - "624aa006-f9f6-4767-8131-2d235cdb54c0" + "8421aa9c-f2b4-4ad6-b04c-37132e64559d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185751Z:06376f69-ba9e-490b-a532-ae2782ddd6b9" + "CENTRALUS:20160510T043107Z:98a62e1d-5164-4cba-8db3-aee35fc024a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -658,7 +604,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:57:51 GMT" + "Tue, 10 May 2016 04:31:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -667,8 +613,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/96c1b467-3600-45a6-9c16-6315b28e634b?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzk2YzFiNDY3LTM2MDAtNDVhNi05YzE2LTYzMTViMjhlNjM0Yj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.MachineLearning/webServices/amlws1973?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNjI3OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE5NzM/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,10 +622,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/96c1b467-3600-45a6-9c16-6315b28e634b\",\r\n \"name\": \"96c1b467-3600-45a6-9c16-6315b28e634b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-09T18:57:45.1521759Z\",\r\n \"endTime\": \"2016-05-09T18:57:51.8990262Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.MachineLearning/webServices/amlws1973\",\r\n \"name\": \"amlws1973\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:30:57.1795711Z\",\r\n \"modifiedOn\": \"2016-05-10T04:31:07.1528662Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/26f11015665f448591614e3110a1a48e/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "380" + "5172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -691,16 +637,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "473c59ca-2f90-4fc3-8a8c-e2930f8e7e93" + "e89edf48-42ff-4576-bfdd-56d5d6fa5589" ], "x-ms-request-id": [ - "4238f877-64de-4cbc-8144-022c41ff1616" + "42876d9b-831a-4b13-b34a-5339586f0b1f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14996" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185756Z:473c59ca-2f90-4fc3-8a8c-e2930f8e7e93" + "CENTRALUS:20160510T043107Z:e89edf48-42ff-4576-bfdd-56d5d6fa5589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -709,7 +655,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:57:56 GMT" + "Tue, 10 May 2016 04:31:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -718,64 +664,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.MachineLearning/webServices/amlws8637?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNTA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czg2Mzc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.MachineLearning/webServices/amlws8637\",\r\n \"name\": \"amlws8637\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-09T18:57:40.8833814Z\",\r\n \"modifiedOn\": \"2016-05-09T18:57:51.9630301Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/7387bea9e45044818066c0a163089199/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "5176" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-correlation-request-id": [ - "06d3b0fe-80c3-43ed-8697-a100823c218b" - ], - "x-ms-request-id": [ - "0cc352b4-8aa5-4c80-86a8-37e055ae706a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185756Z:06d3b0fe-80c3-43ed-8697-a100823c218b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 May 2016 18:57:56 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.MachineLearning/webServices/amlws8637?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNTA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czg2Mzc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.MachineLearning/webServices/amlws1973?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNjI3OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE5NzM/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80444591-3c7a-4935-b889-37311a8c24a0" + "3f935af0-155e-4f7b-bbb5-da6e8176b15f" ], "accept-language": [ "en-US" @@ -784,10 +679,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.MachineLearning/webServices/amlws8637\",\r\n \"name\": \"amlws8637\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-09T18:57:40.8833814Z\",\r\n \"modifiedOn\": \"2016-05-09T18:57:51.9630301Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml-int.net/subscriptions/7b373400c82e453ba97bc53e14325b8b/services/7387bea9e45044818066c0a163089199/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1675\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.MachineLearning/webServices/amlws1973\",\r\n \"name\": \"amlws1973\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T04:30:57.1795711Z\",\r\n \"modifiedOn\": \"2016-05-10T04:31:07.1528662Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/26f11015665f448591614e3110a1a48e/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "5176" + "5172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -799,16 +694,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "f983e287-c265-428a-ad5e-3bb58a43e6ae" + "0bea9576-f225-4136-af2b-477448dad70b" ], "x-ms-request-id": [ - "d912f220-694d-4fe3-a039-25dfb4e413cf" + "5f1be4fd-ced6-46a0-825c-dacd3acb0f55" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14995" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185756Z:f983e287-c265-428a-ad5e-3bb58a43e6ae" + "CENTRALUS:20160510T043107Z:0bea9576-f225-4136-af2b-477448dad70b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -817,7 +712,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:57:56 GMT" + "Tue, 10 May 2016 04:31:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -826,13 +721,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.MachineLearning/webServices/amlws8637?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNTA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czg2Mzc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.MachineLearning/webServices/amlws1973?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNjI3OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE5NzM/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0523d68b-7df6-4974-ad43-5015d3781492" + "51faac96-3289-4a4d-8c47-f7765adfdb5e" ], "accept-language": [ "en-US" @@ -841,7 +736,7 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The specified resource was not found.\",\r\n \"details\": [\r\n {\r\n \"code\": \"WebServiceNotFound\",\r\n \"message\": \"No Web Service could be found with the provided name: amlws8637.\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The specified resource was not found.\",\r\n \"details\": [\r\n {\r\n \"code\": \"WebServiceNotFound\",\r\n \"message\": \"No Web Service could be found with the provided name: amlws1973.\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "274" @@ -856,16 +751,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "d8e56b91-fdee-45b8-87e0-f493fec63fa9" + "96f61ee7-e0fd-4049-b772-2a96973aea4a" ], "x-ms-request-id": [ - "f4246438-fd8d-47d7-8d9a-13d11cb5e0fa" + "bf07f6ad-0878-4587-a9a9-1626fc55145b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14992" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185802Z:d8e56b91-fdee-45b8-87e0-f493fec63fa9" + "CENTRALUS:20160510T043113Z:96f61ee7-e0fd-4049-b772-2a96973aea4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -874,7 +769,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:58:02 GMT" + "Tue, 10 May 2016 04:31:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -883,13 +778,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourceGroups/amlrg5057/providers/Microsoft.MachineLearning/webServices/amlws8637/listKeys?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlR3JvdXBzL2FtbHJnNTA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czg2MzcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg6278/providers/Microsoft.MachineLearning/webServices/amlws1973/listKeys?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNjI3OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE5NzMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d2396b5-5e13-42bf-99f7-cce5bc87f9ca" + "0ba5dec6-b939-475d-8ac6-f8f16e27b6ce" ], "accept-language": [ "en-US" @@ -913,16 +808,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "fb931d34-78c9-454b-bdde-b63bdfa3a7c2" + "aef66a5f-7ef9-48bb-b3d2-bba7d4a2a119" ], "x-ms-request-id": [ - "456ce5b0-a415-461e-aa9d-c34c4eb25f34" + "ba430181-eb1b-435a-acc1-5e827eace72d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14994" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185756Z:fb931d34-78c9-454b-bdde-b63bdfa3a7c2" + "CENTRALUS:20160510T043107Z:aef66a5f-7ef9-48bb-b3d2-bba7d4a2a119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -931,7 +826,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:57:56 GMT" + "Tue, 10 May 2016 04:31:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -940,8 +835,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/ee2e92d8-4445-4c45-8f12-d0785c83bf28?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2VlMmU5MmQ4LTQ0NDUtNGM0NS04ZjEyLWQwNzg1YzgzYmYyOD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4b7da585-e94b-47e9-bb82-9fd864d62267?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzRiN2RhNTg1LWU5NGItNDdlOS1iYjgyLTlmZDg2NGQ2MjI2Nz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -949,10 +844,10 @@ "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/ee2e92d8-4445-4c45-8f12-d0785c83bf28\",\r\n \"name\": \"ee2e92d8-4445-4c45-8f12-d0785c83bf28\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-09T18:57:57.8820109Z\",\r\n \"endTime\": \"2016-05-09T18:57:59.120687Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/4b7da585-e94b-47e9-bb82-9fd864d62267\",\r\n \"name\": \"4b7da585-e94b-47e9-bb82-9fd864d62267\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-10T04:31:11.6688575Z\",\r\n \"endTime\": \"2016-05-10T04:31:13.0060671Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { "Content-Length": [ - "379" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -964,16 +859,16 @@ "no-cache" ], "x-ms-correlation-request-id": [ - "504f5b95-bae8-4f67-ae42-4505adc675f4" + "74600957-4020-4352-9f2f-b82ae5dcef86" ], "x-ms-request-id": [ - "65d74e1d-accd-4746-bd95-bb286d3fab49" + "b5d8db86-1e75-4d77-86fd-937e98543112" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14993" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185802Z:504f5b95-bae8-4f67-ae42-4505adc675f4" + "CENTRALUS:20160510T043113Z:74600957-4020-4352-9f2f-b82ae5dcef86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -982,7 +877,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:58:02 GMT" + "Tue, 10 May 2016 04:31:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -991,13 +886,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5057/providers/Microsoft.MachineLearning//commitmentPlans/amlcp2785?api-version=2016-04-01-privatepreview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwMjc4NT9hcGktdmVyc2lvbj0yMDE2LTA0LTAxLXByaXZhdGVwcmV2aWV3", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6278/providers/Microsoft.MachineLearning//commitmentPlans/amlcp7076?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjI3OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNzA3Nj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c278b61-c76c-42ad-8c22-466941d75d25" + "becc6767-4c1a-4a48-821f-8360fe9ced8f" ], "accept-language": [ "en-US" @@ -1018,16 +913,16 @@ "no-cache" ], "x-ms-request-id": [ - "87bbf3ee-6cec-4794-a792-961433689f3f" + "7f029580-8dc8-4695-9bde-07a2314e8d61" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "4ebae0ad-f51d-4c3e-a5d2-4bedde637bba" + "cde81d00-9c6b-47ee-aaba-efbd251e3870" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185803Z:4ebae0ad-f51d-4c3e-a5d2-4bedde637bba" + "CENTRALUS:20160510T043218Z:cde81d00-9c6b-47ee-aaba-efbd251e3870" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1036,7 +931,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:58:03 GMT" + "Tue, 10 May 2016 04:32:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1045,13 +940,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5057/providers/Microsoft.Resources/deployments/deplamlcp2785?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTA1Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AyNzg1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6278/providers/Microsoft.Resources/deployments/deplamlcp7076?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjI3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3MDc2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f5c9df-c240-4764-ba75-1a019d39a052" + "5cf6c074-7b86-4e1d-98a4-2d3289dbb494" ], "accept-language": [ "en-US" @@ -1075,67 +970,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "9c181d38-45d6-4fc7-99cb-b747452de96b" - ], - "x-ms-correlation-request-id": [ - "9c181d38-45d6-4fc7-99cb-b747452de96b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185803Z:9c181d38-45d6-4fc7-99cb-b747452de96b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 May 2016 18:58:03 GMT" - ], - "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc1MDU3LURFUExBTUxDUDI3ODUtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc1MDU3LURFUExBTUxDUDI3ODUtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzFNRFUzTFVSRlVFeEJUVXhEVURJM09EVXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "1195" ], "x-ms-request-id": [ - "c4cc2f91-be14-432d-89db-b8dfec147fde" + "1c9b6aea-d423-4ed7-b4a7-39b9e83022a2" ], "x-ms-correlation-request-id": [ - "c4cc2f91-be14-432d-89db-b8dfec147fde" + "1c9b6aea-d423-4ed7-b4a7-39b9e83022a2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185833Z:c4cc2f91-be14-432d-89db-b8dfec147fde" + "CENTRALUS:20160510T043219Z:1c9b6aea-d423-4ed7-b4a7-39b9e83022a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1144,17 +988,17 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:58:33 GMT" + "Tue, 10 May 2016 04:32:18 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc1MDU3LURFUExBTUxDUDI3ODUtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc2Mjc4LURFUExBTUxDUDcwNzYtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc1MDU3LURFUExBTUxDUDI3ODUtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzFNRFUzTFVSRlVFeEJUVXhEVURJM09EVXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc2Mjc4LURFUExBTUxDUDcwNzYtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzJNamM0TFVSRlVFeEJUVXhEVURjd056WXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1171,16 +1015,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14991" ], "x-ms-request-id": [ - "b28400b6-282a-4402-af77-e6d3626fb636" + "cae2425f-e8ab-4b56-9589-61fee79d64a1" ], "x-ms-correlation-request-id": [ - "b28400b6-282a-4402-af77-e6d3626fb636" + "cae2425f-e8ab-4b56-9589-61fee79d64a1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185904Z:b28400b6-282a-4402-af77-e6d3626fb636" + "CENTRALUS:20160510T043249Z:cae2425f-e8ab-4b56-9589-61fee79d64a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1189,19 +1033,19 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:59:03 GMT" + "Tue, 10 May 2016 04:32:48 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/resourcegroups/amlrg5057?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTA1Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg6278?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNjI3OD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "332db4b1-afcf-445f-90c5-9c9ecc6b7841" + "4a9e0c86-a983-445d-bd3b-1aebe8e7ce70" ], "accept-language": [ "en-US" @@ -1225,16 +1069,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-request-id": [ - "4d547658-7967-4b7b-adb9-2ce5675d0e53" + "f4ad3638-0f98-4af8-8f2d-77633478f76f" ], "x-ms-correlation-request-id": [ - "4d547658-7967-4b7b-adb9-2ce5675d0e53" + "f4ad3638-0f98-4af8-8f2d-77633478f76f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185904Z:4d547658-7967-4b7b-adb9-2ce5675d0e53" + "CENTRALUS:20160510T043251Z:f4ad3638-0f98-4af8-8f2d-77633478f76f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1243,17 +1087,17 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:59:03 GMT" + "Tue, 10 May 2016 04:32:50 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzUwNTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzYyNzgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzUwNTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6VXdOVGN0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzYyNzgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6WXlOemd0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1276,16 +1120,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14990" ], "x-ms-request-id": [ - "c6804ef5-78fa-41a5-aadd-fdbe7df70c46" + "f0307f73-3866-49f1-a541-cde3b89239ed" ], "x-ms-correlation-request-id": [ - "c6804ef5-78fa-41a5-aadd-fdbe7df70c46" + "f0307f73-3866-49f1-a541-cde3b89239ed" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T185934Z:c6804ef5-78fa-41a5-aadd-fdbe7df70c46" + "CENTRALUS:20160510T043321Z:f0307f73-3866-49f1-a541-cde3b89239ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1294,17 +1138,17 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 18:59:33 GMT" + "Tue, 10 May 2016 04:33:21 GMT" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzUwNTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzYyNzgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7b373400-c82e-453b-a97b-c53e14325b8b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzUwNTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2IzNzM0MDAtYzgyZS00NTNiLWE5N2ItYzUzZTE0MzI1YjhiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6VXdOVGN0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzYyNzgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6WXlOemd0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1324,16 +1168,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14989" ], "x-ms-request-id": [ - "584c93ae-9864-48f1-a59b-0bb811927d20" + "02d84f13-8dfe-47cf-bea9-458f857ece14" ], "x-ms-correlation-request-id": [ - "584c93ae-9864-48f1-a59b-0bb811927d20" + "02d84f13-8dfe-47cf-bea9-458f857ece14" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160509T190004Z:584c93ae-9864-48f1-a59b-0bb811927d20" + "CENTRALUS:20160510T043351Z:02d84f13-8dfe-47cf-bea9-458f857ece14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1342,7 +1186,7 @@ "no-cache" ], "Date": [ - "Mon, 09 May 2016 19:00:04 GMT" + "Tue, 10 May 2016 04:33:51 GMT" ] }, "StatusCode": 200 @@ -1350,12 +1194,12 @@ ], "Names": { "RunAMLWebServiceTestScenario": [ - "amlws8637", - "amlrg5057", - "amlcp2785" + "amlws1973", + "amlrg6278", + "amlcp7076" ] }, "Variables": { - "SubscriptionId": "7b373400-c82e-453b-a97b-c53e14325b8b" + "SubscriptionId": "80c77c76-74ba-4c8c-8229-4c3b2957990c" } } \ No newline at end of file diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Prod.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Prod.json new file mode 100644 index 0000000000000..0ded5c67063c9 --- /dev/null +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Prod.json @@ -0,0 +1,178 @@ +{ + "properties": { + "title": "ServiceTitle", + "description": "This is some service description", + "readOnly": "false", + "keys": { + "primary": "S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==", + "secondary": "S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==" + }, + "storageAccount": { + "name": "rpbestest1", + "key": "WaE2n0G4e/RIWqhShWYMISPPOko8fhBFSPWoVGAOkTFjHc/iJpiPQN2PSJD3VxMnOzK9TQ+JYVn6mUIYf6J6MA==" + }, + "commitmentPlan": { + "id": "/subscriptions/325f8243-f630-45ec-8a57-6c173a30cfca/resourceGroups/rg1/providers/Microsoft.MachineLearning/commitmentPlans/cptest" + }, + "assets": { + "asset1": { + "name": "Apply Math Operation", + "type": "Module", + "locationInfo": { + "uri": "aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571" + } + } + }, + "parameters": { + "category": "Trigonometric", + "trigonometric Function": "Sin", + "column Set": "{\"isFilter\":true,\"rules\":[{\"ruleType\":\"ColumnTypes\",\"exclude\":false,\"columnTypes\":[\"Numeric\"],\"columnKinds\":[\"All\"]}]}", + "output mode": "ResultOnly" + }, + "input": { + "title": "", + "description": "", + "type": "object", + "properties": { + "input1": { + "title": "", + "description": "", + "type": "object", + "properties": { + "Class": { + "type": "Number", + "format": "Double", + "x-ms-isnullable": false + }, + "sepal-length": { + "type": "Number", + "format": "Double", + "x-ms-isnullable": false + }, + "sepal-width": { + "type": "Number", + "format": "Double", + "x-ms-isnullable": false + }, + "petal-length": { + "type": "Number", + "format": "Double", + "x-ms-isnullable": false + }, + "petal-width": { + "type": "Number", + "format": "Double", + "x-ms-isnullable": false + } + } + } + } + }, + "output": { + "title": "", + "description": "", + "type": "object", + "properties": { + "output1": { + "title": "", + "description": "", + "type": "object", + "properties": { + "Class": { + "type": "Number", + "format": "Double", + "x-ms-isnullable": false + }, + "sepal-length": { + "type": "Number", + "format": "Double", + "x-ms-isnullable": false + }, + "sepal-width": { + "type": "Number", + "format": "Double", + "x-ms-isnullable": false + }, + "petal-length": { + "type": "Number", + "format": "Double", + "x-ms-isnullable": false + }, + "petal-width": { + "type": "Number", + "format": "Double", + "x-ms-isnullable": false + } + } + } + } + }, + "packageType": "Graph", + "package": { + "Nodes": { + "node1": { + "inputId": "input1" + }, + "node2": { + "assetId": "asset1", + "parameters": { + "Category": "Trigonometric", + "Trigonometric Function": "Sin", + "Column Set": "{\"isFilter\":true,\"rules\":[{\"ruleType\":\"ColumnTypes\",\"exclude\":false,\"columnTypes\":[\"Numeric\"],\"columnKinds\":[\"All\"]}]}", + "Output mode": "ResultOnly" + } + }, + "node3": { + "outputId": "output1" + } + }, + "Edges": [ + { + "sourceNodeId": "node1", + "targetNodeId": "node2", + "targetPortId": "Dataset" + }, + { + "sourceNodeId": "node2", + "sourcePortId": "Results dataset", + "targetNodeId": "node3" + } + ], + "GraphParameters": { + "Category": { + "description": "", + "Links": [ + { + "NodeId": "node2", + "ParameterKey": "Category" + } + ] + }, + "Trigonometric Function": { + "Links": [ + { + "NodeId": "node2", + "ParameterKey": "Trigonometric Function" + } + ] + }, + "Column Set": { + "Links": [ + { + "NodeId": "node2", + "ParameterKey": "Column Set" + } + ] + }, + "Output mode": { + "Links": [ + { + "NodeId": "node2", + "ParameterKey": "Output mode" + } + ] + } + } + } + } +} \ No newline at end of file